@charset "utf-8";

/*===================
FAQ
===================*/

/* main.faq{
  padding-bottom: 190px;
} */

.faq__nav-list{
  margin: 0 auto;
  width: 92%;
  max-width: 954px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:2%;
}

.faq__nav-item{
  /* width: calc((100% / 4) +  10px); */
  max-width: 236px;
  position: relative;
  border-bottom: 1px solid #444444;
}
.faq__nav-item:hover{
  opacity: .7;
}
.faq__nav-item::before{
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 8px;
  background-image: url(../imgs/common/faq_anc.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 15px;
}
.faq__nav-item a{
  width: 100%;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.2em;
}
.faq__nav-item span{
  padding-left: 24px;
  
}


/* 共通s */
.faqSection{
  padding-top: 110px;
}
.faqSection__ttlWrap{
  margin-bottom: 20px;
  padding-left: 55px;
  position: relative;
}
.faqSection__ttlWrap::after{
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  background-color: #e6e6e6;
  top: 20px;
  left: 0;
  position: absolute;
}
.faqSection__title{
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.2em;
}
.faqSection__title--en{
  display: block;
  padding-left: 4px;
  font-size: 14px;
  font-family: "aviano", serif;
  font-weight: 400;
  color: #a58b51;
  line-height: 1.71;
}


.accordion-title {
  cursor: pointer;
}
.js-accordion-title{
  cursor: pointer;
}
.js-accordion-content {
  display: none;
}
.faqSection__item{
  margin-bottom: 19px;
  background-color: #dadada;
  border-radius: 37px;
}
.faqSection__item:last-child{
  margin-bottom: 0;
}

.accordion-item{
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.faqSection__question{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 28px 41px;
  position: relative;
}

.faqSection__question::before {
  background: #444444; /* 線の色 */
  content: "";
  height: 2px; /* 線の太さ */
  position: absolute;
  right: 50px;
  top: 50%; /* 線の位置を縦中央に */
  transform: rotate(90deg); /* 線を縦に */
  transition: transform .3s ease-in-out;
  width: 15px; /* 線の幅 */
}
.faqSection__question::after {
  background: #444444; /* 線の色 */
  content: "";
  height: 2px; /* 線の太さ */
  position: absolute;
  right: 50px;
  top: 50%; /* 線の位置を縦中央に */
  transition: opacity .3s ease-in-out;
  width: 15px; /* 線の幅 */
}

.faqSection__question.open::after{
  opacity: 0;
}
.faqSection__question.open::before{
   transform: rotate(180deg);
}

.faqSection__question span{
  width: 24px;
  font-size: 23px;
  font-family: "aviano", serif;
  font-weight: 400;
  color: #444444;
  line-height: 1.4;
  text-align: center;
}

.info-area__title{
  width: calc(100% - 55px);
  padding-left: 23px;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.75;
}

.faqSection__answer{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 41px 24px 41px;
    position: relative;
}
.faqSection__answer span{
    width: 24px;
    font-size: 24px;
    font-family: "aviano", serif;
    font-weight: 400;
    color: #444444;
    line-height: 1.3;
    text-align: center;
}
.info-area__text{
    width: calc(100% - 24px);
    padding-left: 23px;
    padding-bottom: 3px;
    font-size: 14px;
    line-height: 1.82;
    letter-spacing: 0.18em;
}


/* RESERVE */
.faqSection:first-child{
  padding-top: 100px;
}

/* STAY */

/* FACILITY */

/* SERVICE */
.faqSection.service{
  margin-bottom: 0;
}

@media screen and (max-width: 980px) {
  .faq__nav-item span{
    padding-left: 15px;
  }
}

@media screen and (max-width:800px) {
  .faq__wrap{
    padding-bottom: 30px;
  }
  .faqSection:first-child{
    padding-top: 80px
  }
   .faqSection__ttlWrap{
    padding-left: 30px;
    margin-bottom: 10px;
  }
  .faqSection__ttlWrap::after{
    width: 25px;
  }
  .faqSection__title{
    font-size: 18px;
  }
  .faq__nav-list{
    flex-wrap: wrap;
    justify-content: center;
    gap:5%;
  }

 
  .faq__nav-item{
    margin-bottom: 20px;
    width: calc(95% / 2);
  }
  .faq__nav-item a {
    display: block;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }
   .faq__nav-item span{
    padding-left: 0;
  }
  .faqSection__question{
    padding: 20px;
  }
  .faqSection__answer{
    padding: 0 20px 20px 20px;
  }
.faqSection__question::before {
    right: 25px;
  }
  .faqSection__question::after {
    right: 25px;
  }

  .faqSection__question span{
    font-size: 20px;
  }
  .faqSection__answer span{
    font-size: 20px;
  }
  }

@media screen and (max-width:500px) {
  .faq__nav-list{
    display: block;
    width: 236px;
    margin: 0 auto;
  }
   .faq__nav-item{
    width: 100%;
   }
   .faqSection{
      padding-top: 50px;
   }
   .faqSection__question {
        padding:15px;
    }
   .faqSection__answer {
        padding: 0 15px 20px 15px;
  }
  .info-area__title {
    padding-left: 18px;
    font-size: 15px;
  }
  .info-area__text{
    padding-left: 18px;
    width: 100%;
    font-size: 13px;
  }
  .faqSection__item {
    border-radius: 25px;
  }
}

