@charset "UTF-8";

/* SLICK */
.slide-room .slick-dots{
  right: 1.5em;
  width: fit-content;
  top: 100%;
  bottom: 0;
  z-index: 10;
}
.slide-room .slick-dots li{
  width: 1.5em;
  height: 3em;
  margin: 0;
}
.slide-room .slick-dots li button {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide-room .slick-dots li button:before{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  background-color: var(--c-black);
  border-radius: 50%;
  opacity: .5;
}
.slide-room .slick-dots li.slick-active button:before {
  opacity: 1;
}

@media (min-width: 769px) {
  .slide-room .slick-dots{
    right: 0;
    left: 0;
    margin-left: auto;
  }
  .slide-room.slick-dotted.slick-slider{
    margin-bottom: 0;
  }
}/*  */



/* =================================
PRICE /price/
================================== */
.sec_price {
  overflow: hidden;
}
.price_sec_ttl{
  position: relative;
  font-size: 2.1em;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .8em 0;
  margin-bottom: .7em;
  color: var(--c-gold);
  text-align: center;
}
.price_sec_ttl::before,
.price_sec_ttl::after{
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.price_sec_ttl::before{
  left: 0;
  top: 0;
}
.price_sec_ttl::after{
  left: 0;
  bottom: 0;
}
.price_cost_img_box{
  padding: 1em 0 4em;
  max-width: 34em;
  margin: auto;
}

.price_block{
  padding: 1.5em 0;
}
.price_block_ttl{
  font-size: 1.9em;
  font-weight: 600;
  padding: .7em 0;
}
.price_block_ttl .en{
  font-size: 1.1em;
  margin-right: 0.2em;
  vertical-align: -.02em;
}

/* TABLE */
.price_table_ttl{
  font-size: 1.7em;
  font-weight: 600;
  padding: .5em 0;
}
.price_table_desc{
  font-size: 1.15em;
  font-weight: 400;
  line-height: 1.8;
  padding: .5em 0 1.5em;
}
.price_table{
  width: 100%;
  text-align: center;
  margin: .5em 0;
}
.price_table th,
.price_table td{
  font-size: 1.05em;
  border: 1px solid var(--c-grey-l);
  padding: 1.2em .3em;
}

.price_table th,
.price_table thead td{
  background: #fafafa;
}
.price_table th {
  font-size: 1.2em;
  width: 38%;
  letter-spacing: .02em;
}
.price_table tbody td{
  font-size: 1.6em;
  background: #fff;
  letter-spacing: .04em;
}

.price_table_box{
  padding: 1em 0;
}

@media (max-width:769px){
  ._studio.price_table_box {
    width: calc(100% + 4em);
    margin-left: -2em;
    padding: 0 2em;
    overflow-x: scroll;
  }
  ._studio .price_table{
    width: 126%;
  }
}/*  */

._studio .price_table th{
  width: 12%;
}
._studio .price_table td{
  width: 22%;
}
._studio .price_table tbody td{
  font-size: 1.5em;
}

/* 
 */
.price_all_sec{
  background-color: #fff;
  padding: 6em 0;
}
.price_all_img{
  margin: 3em auto 1em;
  max-width: 40em;
}

.price_sec_desc{
  font-size: 1.2em;
  font-weight: 500;
  padding: .6em 0;
  line-height: 1.9;
}
.price_sec_desc p{
  padding: .4em 0;
}



/* =================================
利用規約 /terms/
================================== */

/* tab */

.terms_nav{
  display: flex;
  justify-content: space-between;
  padding: 2em 0;
  margin: auto;
  max-width: 30em;
}
.terms_nav li{
  position: relative;
  display: block;
  width: 50%;
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
  padding: .7em 0;
  cursor: pointer;
  transition: color .3s;
}
.terms_nav li::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--c-gold);
  transition: width .1s ease;
}
.terms_nav li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 96%;
  height: 1px;
  background-color: var(--color-grey-txt);
  transition: width .1s ease;
  z-index: -1;
}

.terms_nav li:hover{
  color: var(--c-gold);
}
.terms_nav li:hover::before{
  width: 100%;
}
@media (min-width: 769px) {
  .terms_nav{
    max-width: 20em;
  }
}/*  */


.terms_ttl{
  font-size: 2.2em;
  font-weight: 500;
  text-align: center;
  padding: 1em 0 .4em;
  border-bottom: 1px solid var(--c-grey-d2);
  margin-bottom: .3em;
}

.terms_sec{
  padding: 1.2em 0;
}
.terms_sec_ttl{
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .3em 0;
}
.terms_sec_ttl .line1{
  display: block;
  font-size: .8em;
  margin-bottom: .3em;
}
.terms_sec_ttl .line2{
  letter-spacing: .02em;
}
.terms_sec p,
.terms_ul,
.terms_ol {
  font-size: 1.1rem;
  line-height: 1.6;
  padding: .5em 0;
}
.terms_ul,
.terms_ol{
  padding-left: 1.2em;
  /* font-family: "ZenKakuGothicNew",sans-serif; */
}
.terms_ul li,
.terms_ol li{
  padding: .3em 0;
}
.terms_ul > li{
  list-style: disc;
}
.terms_ol > li{
  list-style: inherit;
}
.terms_ol .terms_ul li{
  padding: .2em 0;
}
li.no_list{
  font-weight: 500;
  list-style: none;
  margin-left: -1.2em;
  margin-bottom: .2em;
}
.terms_sec a{
  font-weight: 500;
  text-decoration: underline;
}


/* =================================
/experience/
================================== */

/* EXP TOP ================*/
.exp_top_ttl {
  font-size: 2.2em;
  letter-spacing: .05em;
  padding: .3em 0 .6em ;
  margin-bottom: .3em;
  color: var(--c-green);
}
.exp_top_sub{
  position: relative;
  font-size: 1.35em;
  font-weight: 600;
  margin-bottom: .8em;
}

.exp_top_label{
  position: relative;
  font-size: 1.25em;
  padding: .5em 0;
  padding-left: 3em;
  color: var(--c-gold);
  margin-top: 1.5em;
}
.exp_top_label::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 2.8em;
  height: 1px;
  background-color: currentColor;
}

[data-page="exp"] .top_acceess_gmap_box{
  aspect-ratio: 4 / 3;
}
[data-page="exp_store"] .top_access_flex{
  padding: 1em 0;
}

@media (min-width: 769px) {
  .exp_top_label{
    margin-top: 0;
  }
  [data-page="exp"] .top_access_flex{
    align-items: flex-start;
  }
  [data-page="exp_store"] .top_access_flex{
    align-items: flex-start;
    padding: 2em 0;
  }
  [data-page="exp"] .top_acceess_detail_box {
    margin-top: 0;
  }
}/*  */


.sec_ex_time{
  background-color: var(--c-grey2);
}
.sec_time_table{
  background-color: var(--c-grey-bg);
}


/* EX ABOUT + EX PLAN================*/
.ex_about_copy {
  font-size: 1.7em;
  padding: 1em 0;
  line-height: 1.9;
}
.ex_about_list{
  padding: .5em 0;
}
.ex_about_list_box{
  padding: 2em 0;
}
.ex_about_txt_wrap{
  padding: 1em 0;
}
.ex_about_list_ttl{
  font-size: 1.6em;
  padding: 1em 0;
  letter-spacing: .03em;
}
.ex_about_list_ttl + .sec_desc{
  padding-top: 0;
}
.ex_about_box.flex{
  display: flex;
  flex-wrap: wrap;
}
.ex_about_box.flex img{
  width: 50%;
}


@media (min-width: 769px) {
  .ex_about_list_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0 4em;
  }
  .ex_about_list_box:nth-child(even){
    flex-direction: row-reverse;
  }
  .ex_about_list_ttl {
    font-size: 1.8em;
  }
  .ex_about_img_wrap{
    width: 55%;
  }
  .ex_about_txt_wrap{
    width: 40%;
  }
  .ex_about_copy {
    font-size: 2em;
    padding: 1em 0 0;
  }
}/*  */


/* EX PLAN ================*/
.ex_plan_num{
  position: relative;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: .5em;
}
.ex_plan_num::before{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: calc(100% - 5em);
  height: 1px;
  background-color: var(--c-gold);
}

.ex_plan_list{
  padding: .5em 0;
}
.ex_plan_list_box{
  padding: 3em 0;
}
.ex_plan_ttl{
  font-size: 1em;
  padding: 1.2em 0;
}

.ex_plan_ttl .copy{
  display: block;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.6;
}
.ex_plan_ttl .ttl{
  font-size: 2.7em;
}
.ex_plan_ttl .ttl._l{
  font-size: 3.2em;
}
.ex_plan_ttl .sub{
  display: block;
  font-size: 1.1em;
  margin-top: .2em;
}

@media (min-width: 769px) {
  .ex_plan_pc_flex{
    display: flex;
    justify-content: space-between;
  }
  .ex_plan_img_wrap{
    width: 48%;
  }
  .ex_plan_txt_wrap{
    width: 46%;
  }
  .ex_plan_ttl {
    font-size: 1.2em;
  }
  /* .ex_plan_ttl .sub{
    display: inline-block;
  } */
  .ex_plan_txt_wrap .sec_desc{
    padding-top: 0;
  }
}/*  */


/* EX TIME ================*/
.ex_time_wrap{
  padding: 2em 0;
}
.ex_time_list_ttl{
  font-size: 1.6em;
  padding: 0.6em 0;
}
.ex_time_list{
  display: flex;
  justify-content: space-between;
  font-size: 1.3em;
  line-height: 1.7;
  padding: .7em 0;
}
.ex_time_list dt{
  position: relative;
  font-weight: 600;
  width: 7%;
}
.ex_time_list dt::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 88%;
  background-color: var(--c-grey-txt);
  margin: auto;
}
.ex_time_list dd{
  width: 89%;
}

@media (min-width: 769px) {
  .ex_time_pc_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1em;
  }
  .ex_time_wrap{
    width: 50%;
    padding: 0;
  }
  .ex_time_img{
    width: 45%;
  }
}/*  */



/* EX PLAN ================*/
.sec_ex_plan{
  max-width: 51em;
  margin: auto;
}
.sec_ex_plan .room_detail_list{
  font-size: 1.1em;
}
.sec_ex_plan .room_detail_list_block{
  padding-bottom: 2em;
}


/* 茶道の基本的な流れ ==============*/
.about_flow_list li{
  position:relative;
  background-color: #fff;
  padding: 1.5em;
  margin: 2em 0;
}
.about_flow_ttl {
  font-size: 1.8em;
  line-height: 1.35;
  text-align: center;
  padding: .9em 0 .1em;
}
.about_flow_num{
  position: relative;
  width: fit-content;
  display: block;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin: 0 auto .2em;
  color: var(--c-gold);
}
.about_flow_num::after,
.about_flow_num::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 2em;
  height: 1px;
  background-color: currentColor;
}
.about_flow_num::after{
  left: 150%;
}
.about_flow_num::before{
  right: 150%;
}
.about_flow_time {
  font-size: 1.15em;
  text-align: center;
  margin-bottom: 0;
}
.about_flow_desc {
  font-size: 1.25em;
  padding: .6em 0 .1em;
}
.about_flow_list li:not(:last-child)::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: auto;
  display: block;
  width: 2em;
  height: 1.5em;
  background-color: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.about_flow_img{
  width: 100%;
  aspect-ratio: 3/2;
}
@media (min-width: 769px){
  .about_flow_wrap {
    width: 80%;
    padding-top: 3em;
    padding-left: 6em;
  }
  .about_flow_list li{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
  }
  .about_flow_img{
    width: 48%;
  }
  .about_flow_detail_box{
    width: 50%;
  }
  .about_flow_ttl {
    font-size: 2em;
    padding: .3em 0;
  }
  .about_flow_num {
    margin: 0 auto .4em;
  }
}/*  */


/* /exp/reserve/ 埋め込み要素矯正 */
@media screen and (max-width: 480px) {
  .aHCuF > .sc-ktEKTO {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
  .daebdC {
      min-width: 160px !important;
  }
}


/* POP UP 
====================================*/
.popup_btn {
  cursor: pointer;
  display: block;
  font-weight: bold;
  padding: .15em 0;
  transition: opacity .5s;
  
  color: var(--c-red);
}
.popup_btn + label:hover{
  opacity: .5;
}
.kiyaku-btn{
  position: relative;
  padding:0 .1em .6em;
}
.kiyaku-btn::after{
  content: "";
  position: absolute;
  width: 100%;
  height: .2em;
  background-color: #000;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.popup_content {
  display: none;
  position: fixed;
  top: 6.2em;
  left: 0;
  right: 0;
  z-index: 998!important;
  width: 94%;
  max-width: 68em;
  height: 82%;
  border-radius: .4em;
  margin: auto;
  /* background-color: #fff; */
  overflow: scroll;
}
.popup_content-inner {
  padding: 1em 1.5em;
}

/* チェック状態 ============== */
body._popup {
  overflow: hidden;
}
.popup_block input,
.popup_close_btn{
  display: none;
}
._popup .popup_bg{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .85);
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 997;
  text-indent: -999999px;
  overflow: hidden;
}
._popup .popup_close_btn{
  /* background: rgba(255, 255, 255, 0.7); */
  color: var(--c-grey-bg);
  display: inline-block;
  position: fixed;
  right: .3em;
  top: .25em;
  z-index: 999;
  /* width: 1.6em; */
  /* line-height: 1.6em; */
  font-size: 3em;
  font-weight: 100;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}
._popup .popup_content {
  display: block;
}
._popup .popup_bg,
._popup .popup_close-btn{
  display: block;
}

@media (min-width:769px){
  .popup_content-inner {
    padding: 1em 4em;
  }
  ._popup .popup_bg {
    right: .5em;
  }

}/* min-width:769px */