.headline {
  position: relative;
}
.headline__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (768px <= width) {
  .headline__img img {
    aspect-ratio: 2/1;
  }
}
.headline__label {
  position: absolute;
  left: 0;
  bottom: 20%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(10 / var(--spSize) * 100vw) 0;
  color: #fff;
  line-height: 1;
}
@media (768px <= width) {
  .headline__label {
    gap: 2rem 0;
    top: 0;
    padding-top: 31.75%;
  }
}
.headline__label .en {
  font-size: 4.4rem;
  font-family: var(--ff-ci);
  letter-spacing: 0.06em;
}
@media (768px <= width) {
  .headline__label .en {
    font-size: 8.8rem;
  }
}
.headline__label .jp {
  font-size: 1.4rem;
  font-family: var(--ff-shippori);
}
@media (768px <= width) {
  .headline__label .jp {
    font-size: 2.8rem;
  }
}

.subhead {
  position: relative;
  padding-left: 32px;
  font-size: 1.8rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 0.8);
}
@media (768px <= width) {
  .subhead {
    font-size: 2.4rem;
  }
}
.subhead::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--clr-blue);
  display: block;
  position: absolute;
  left: 0;
  top: 0.7em;
}

#ankerlink {
  margin-top: 0;
}

#faqarea {
  position: relative;
}

.faq {
  position: relative;
  padding-top: calc(280 / var(--spSize) * 100vw);
  padding-left: calc(30 / var(--spSize) * 100vw);
  padding-right: calc(30 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .faq {
    padding-top: 28rem;
    padding-left: max(50% - 800px, 5rem);
    padding-right: max(50% - 800px, 5rem);
    display: grid;
    grid-template-columns: 5fr 11fr;
    gap: 0 10%;
  }
}
.faq::after {
  content: "";
  width: 33%;
  height: 1px;
  background-color: var(--clr-blue);
  position: absolute;
  left: calc(30 / var(--spSize) * 100vw);
  top: calc(160 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .faq::after {
    width: 30rem;
    left: max(50% - 800px, 5rem);
    right: max(50% - 800px, 5rem);
    top: 16rem;
  }
}
.faq::before {
  content: "";
  width: calc(690 / var(--spSize) * 100vw);
  height: 1px;
  position: absolute;
  left: calc(30 / var(--spSize) * 100vw);
  top: calc(160 / var(--spSize) * 100vw);
  border-top: 1px dotted #cac9c4;
}
@media (768px <= width) {
  .faq::before {
    width: auto;
    left: max(50% - 800px, 5rem);
    right: max(50% - 800px, 5rem);
    top: 16rem;
  }
}
.faq .title {
  font-size: 2.8rem;
  font-family: var(--ff-shippori);
}
@media (768px <= width) {
  .faq .title {
    font-size: 4rem;
  }
}
.faq .content {
  margin-top: calc(60 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .faq .content {
    margin-top: 0;
  }
}
.faq dl {
  border-bottom: 1px solid #cac9c4;
}
.faq dt {
  border-top: 1px solid #cac9c4;
  font-size: 2rem;
  font-family: var(--ff-shippori);
  line-height: 1.8;
  padding: calc(60 / var(--spSize) * 100vw) 0;
  padding-right: calc(140 / var(--spSize) * 100vw);
  position: relative;
}
.faq dt::after {
  content: "";
  width: calc(45 / var(--spSize) * 100vw);
  height: calc(45 / var(--spSize) * 100vw);
  display: block;
  position: absolute;
  right: calc(50 / var(--spSize) * 100vw);
  top: calc(50% - 22.5 / var(--spSize) * 100vw);
  background: url(../images/learning-timeshare/faq/accordion_minus.webp) center/contain no-repeat;
}
@media (768px <= width) {
  .faq dt::after {
    right: 5rem;
    width: 4.5rem;
    height: 4.5rem;
    top: calc(50% - 2.25rem);
  }
}
.faq dt.open::after {
  background-image: url(../images/learning-timeshare/faq/accordion_plus.webp);
}
@media (768px <= width) {
  .faq dt {
    font-size: 2.8rem;
    padding: 6rem 0;
    padding-right: 14rem;
  }
}
.faq dd {
  margin-left: calc(30 / var(--spSize) * 100vw);
  border-top: 1px dotted #cac9c4;
  color: #666;
  line-height: 1.8;
  padding: calc(50 / var(--spSize) * 100vw) 0;
  display: none;
}
@media (768px <= width) {
  .faq dd {
    margin-left: 3rem;
    padding: 5rem 0;
    font-size: 2rem;
  }
}

#faq04 {
  padding-bottom: calc(180 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  #faq04 {
    padding-bottom: 18rem;
  }
}