/* --- CSS Variables & Reset --- */
:root {
  /* Define font families for easy use */
  --font-gothic: 'Noto Sans JP', sans-serif;
  --font-mincho: 'Zen Old Mincho', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Basic Body & Typography --- */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  /* Set the default font to the Gothic style */
  font-family: var(--font-gothic);

  /* Set the line spacing as requested */
  line-height: 1.5;

  /* Flexbox layout to push footer to the bottom */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-old-mincho-medium {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-old-mincho-semibold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.zen-old-mincho-bold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.zen-old-mincho-black {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
}


/* --- Utility Class --- */

/* --- Hero --- */
.hero {
  width: 100%;
  object-fit: cover;
  height: calc(100vh - 100px);
  max-height: 600px;
  position: relative;
  background: url(../images/webp/hero-bg_sp.webp) center center / cover no-repeat;
}

.hero__main-copy {
  width: calc(100% - 40px);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(54, 142, 231, .1));
  z-index: 2;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}


/* --- About --- */
.about {
  width: 100%;
  padding: 40px 0px 80px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../images/webp/about-bg_sp.webp) left top / cover no-repeat;
}

.about__intro {
  width: 100%;
  padding: 0 16px;
}

.about__concept {
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__logo {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  gap: 9px;
}

.about__logo-img {
  width: 40px;
  height: auto;
}

.about__logo-text {
  color: #898989;
  font-size: 10px;
}

.about__subcopy {
  color: #898989;
  font-size: 12px;
}

.about__desc {
  color: #4D4D4D;
  font-size: 14px;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 400;
  text-align: center;
  line-height: 2;
}

.about__bold {
  font-weight: 700;
}


/* --- Price --- */
.price {
  width: 100%;
  padding: 80px 0 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.price__image {
  position: absolute;
}

.price__image--dessert {
  width: auto;
  height: 150px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  filter: drop-shadow(0 4px 15.3px rgba(0, 0, 0, 0.39));
}

.price__image--wine {
  width: auto;
  height: 136px;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  filter: drop-shadow(0 4px 15.3px rgba(0, 0, 0, 0.39));
}

.price__image--pool {
  width: auto;
  height: 120px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  filter: drop-shadow(0 4px 15.3px rgba(0, 0, 0, 0.39));
}

.price__detail {
  position: relative;
  padding: 16px 32px;
  background: rgba(255, 255, 255, .9);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.price__title {
  color: #ff968d;
  font-size: 14px;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 500;
  line-height: 1;
  background: #fff0ef;
  padding: 4px 12px;
}

.price__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.price__normal {
  color: #716161;
  font-size: 12px;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 500;
}

.price__label {
  font-size: 12px;
}

.price__amount {
  font-size: 18px;
}

.price__tax {
  font-size: 12px;
}

.price__special {
  position: relative;
  padding-left: 26px;
}

.price__special::before {
  content: "";
  display: block;
  width: 22px;
  height: 5px;
  background: url(../images/svg/arrow_brown.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 16px;
  left: 0;
}

.price__special-amount {
  color: #716161;
  margin: 0 0 4px 0;
}

.price__amount-large {
  font-size: 22px;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 500;
}

.price__special-note {
  color: #8a8181;
  font-size: 12px;
  margin: 0;
}


/* --- Event --- */
.event {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 60px;
  background: url(../images/webp/event-bg_spv2.webp) no-repeat bottom right / contain, #C7EBFE;
  position: relative;
  z-index: 0;
}

.event__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
}

.event__title-sp {
  display: block;
  width: 189px;
  height: 68px;
}

.event__title-pc {
  display: none;
}

.event__content-section {
  width: 100%;
  padding: 0;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 24px;
  margin-bottom: 20px;
}

.event__item-blue {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 40px 24px;
}

.event__item-pink {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 40px 24px;
}

.event__text-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.event__image--blue {
  width: 100%;
  height: 100%;
  position: relative;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .4));
}

.event__image--pink {
  width: 100%;
  height: 100%;
  position: relative;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .4));
}

.event__date-blue {
  color: #7C8A9B;
  font-weight: bold;
  text-align: left;
}

.event__date-pink {
  color: #9b7c7c;
  font-weight: bold;
  text-align: left;
}

.event__item-title-blue {
  color: #4C5D65;
  font-size: 20px;
  text-align: left;
}

.event__item-title-pink {
  color: #796666;
  font-size: 20px;
  text-align: left;
}

.event__description-blue {
  font-family: var(--font-gothic);
  font-size: 14px;
  color: #7C8A9B;
  line-height: 1.5;
  text-align: left;
}

.event__bold {
  font-weight: 700;
}

.event__description-pink {
  font-family: var(--font-gothic);
  font-size: 14px;
  color: #9b7c7c;
  line-height: 1.5;
  text-align: left;
}

.event__detail {
  width: 100%;
  border: 1px solid #999999;
}

.event__details-button-blue {
  width: 100%;
  font-size: 14px;
  color: #4C5D65;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
}

.event__details-button-pink {
  width: 100%;
  font-size: 14px;
  color: #796666;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
}

.event__dropdown-arrow-blue {
  font-size: 12px;
  color: #4C5D65;
  transition: transform 0.3s ease;
}

.event__dropdown-arrow-pink {
  font-size: 12px;
  color: #796666;
  transition: transform 0.3s ease;
}

.event__details-button-blue.active .event__dropdown-arrow,
.event__details-button-pink.active .event__dropdown-arrow {
  transform: rotate(180deg);
}

.text-blue {
  color: #4C5D65;
}

.text-pink {
  color: #665050;
}

.event__dropdown {
  width: 100%;
  background: white;
  border-top: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.event__dropdown-content {
  padding: 16px;
}

.event__dropdown-event-details-list {
  width: 100%;
  border-collapse: collapse;
}

.event__dropdown.open {
  max-height: 400px;
}

.event__dropdown-content {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event__dropdown.open .event__dropdown-content {
  opacity: 1;
}

.event__dropdown-event-details-list {
  margin-bottom: 16px;
}

.event__dropdown-detail-row {
  display: flex;
  margin-bottom: 16px;
  align-items: flex-start;
}

.event__dropdown-detail-row:last-child {
  margin-bottom: 0;
}

.event__dropdown-detail-label {
  min-width: 60px;
  margin-right: 16px;
  flex-shrink: 0;
  vertical-align: top;
}

.event__dropdown-detail-value {
  flex: 1;
  vertical-align: top;
}

.event__dropdown-program-list {
  flex: 1;
}

.event__dropdown-program-item {
  margin-bottom: 4px;
}

.event__dropdown-program-item:last-child {
  margin-bottom: 0;
}

.event__dropdown-disclaimer {
  color: #999999;
  margin-top: 16px;
}

.event__apply-button {
  color: #fff;
  width: 100%;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

.event__apply-button::before {
  content: "";
  display: block;
  width: 33px;
  height: 6px;
  background: url(../images/svg/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}

.event__apply-button-bg-color-blue {
  background: #60A7C8;
}

.event__apply-button-bg-color-blue:hover {
  background: #5c99b5;
}

.event__apply-button-bg-color-pink {
  background: #dd8a9d;
}

.event__apply-button-bg-color-pink:hover {
  background: #c9758a;
}

.event__limit-badge-blue {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 100px;
  height: 100px;
  background: #60A7C8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(16deg);
  z-index: 10;
}

.event__limit-badge-pink {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 100px;
  height: 100px;
  background: #dd8a9d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(16deg);
  z-index: 10;
}

.event__badge-content {
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.event__item-blue--december::before {
  content: "";
  display: block;
  width: 89px;
  height: 40px;
  background: url(../images/svg/december-text.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: 24px;
}

.event__item-pink--november::before {
  content: "";
  display: block;
  width: 82px;
  height: 40px;
  background: url(../images/svg/november-text.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: 24px;
}

.event__image--blue {
  display: block;
}
.event__image--pink {
  display: block;
}

/* --- Customer voice --- */
.voice {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 40px 0 0;
}

.voice__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
}

.voice__content {
  position: relative;
  background:
    url(../images/webp/voice__content_spv2.webp) no-repeat center center / contain, #FEDAE1;
  padding: 40px 16px 64px 16px;
}

.voice__decoration-img--on-left {
  display: none;
}

.voice__decoration-img--under-left {
  display: none;
}

.voice__decoration-img--on-right {
  display: none;
}

.voice__decoration-img--under-right {
  display: none;
}

.voice__desc {
  color: #5F8697;
  font-size: 14px;
  text-align: center;
  margin: 0 0 24px 0;
}

.voice__bold {
  font-weight: 700;
}

.voice__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.voice__item {
  height: 100px;
  position: relative;
  background: #FFF;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.voice__item::after {
  content: "";
  display: block;
  width: 24px;
  height: 20px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  bottom: -20px;
  right: 40px;
}

.voice__item-img {
  width: 100px;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}

.voice__text {
  color: #567F91;
  font-size: 14px;
  flex: 1;
}

.voice__item:nth-of-type(2) .voice__text {
  color: #DD8A9D;
}

.voice__title--sp {
  display: block;
}
.voice__title--pc {
  display: none;
}

/* --- FAQ --- */
.faq {
  background: url(../images/webp/faq_bg.webp) no-repeat center top / contain, #fff;
  padding: 40px 16px 80px 16px;
  position: relative;
}

.faq__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
}

.faq__title-sp {
  display: block;
}

.faq__title-pc {
  display: none;
}

.faq__content {
  width: 100%;
  max-width: 800px;
  padding: 12px;
  margin: 0 auto;
  background-color: #F5FBFF;
}

.accordion {
  border: 1px solid #567f91;
  padding: 12px;
  background: #f5fbff;
  width: 100%;
  box-sizing: border-box;
}

.accordion__contents {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion__item {
  border-bottom: 2px solid #567f91;
  padding: 8px 8px 16px 8px;
  width: 100%;
  box-sizing: border-box;
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px 8px 0;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  gap: 10px;
}

.accordion__header:hover {
  opacity: 0.8;
}

.accordion__header.active .accordion__icon {
  transform: translateY(-50%) rotate(180deg);
}

.accordion__question-text {
  color: #567f91;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  font-weight: bold;
}

.accordion__icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.accordion__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.accordion__panel-content {
  display: flex;
  flex-direction: column;
}

.accordion__panel.active {
  max-height: 200px;
  padding: 12px 0 0 0;
}

.accordion__panel-content p {
  color: #567f91;
  margin: 0;
  font-weight: bold;
}


/* --- Service --- */
.service {
  background: #FFF6F8;
  padding: 80px 16px 120px 16px;
  position: relative;
}

.service__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
}

.service__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.service__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 24px;
  object-fit: cover;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .1));
}

.service__banner--sp {
  display: block;
}

.service__banner--pc {
  display: none;
}

/* --- Footer --- */
.footer__contents {
  display: block;
  padding: 80px 16px;
}

.footer__contents-logo {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__info-item {
  color: #4389AF;
  font-size: 14px;
}

.footer__info-label {
  padding-bottom: 8px;
}

.footer__contents-contact-icons {
  display: flex;
  gap: 16px;
}

.footer-copyright {
  text-align: center;
  color: #4389AF;
  font-size: 10px;
  padding-bottom: 40px;
}

.footer__social-section--pc {
  display: none;
}

.footer__social-section--sp {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 40px;
}

.footer-social-section-mobile {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 16px;
}

.footer__button--sp {
  display: block;
}

.footer__button--pc {
  display: none;
}

.phone-modal {
  display: none;
}

.copyright-text {
  text-align: center;
}

.title-sp {
  display: block;
}

.title-pc {
  display: none;
}


/*For PC*/
@media (min-width: 768px) {

  .title-sp {
    display: none;
  }

  .title-pc {
    display: block;
  }


  /* --- Hero --- */
  .hero {
    height: calc(100vh - 160px);
    max-height: 700px;
    background: url(../images/webp/hero-bg_pc.webp) center center / cover no-repeat;
  }

  .hero__main-copy {
    width: 920px;
    height: 250px;
    bottom: 16px;
  }

  /* --- Main Content --*/
  .main-content {
    background: url(../images/webp/main_bg_pcv2.webp) top left / cover no-repeat;
  }


  /* --- About --- */
  .about {
    background: none;
    padding: 80px 0 120px 0;
    margin: 0 auto;
  }

  .about__intro {
    line-height: 150%;
  }

  .about__logo-img {
    width: 66px;
  }

  .about__logo-text {
    font-size: 16px;
  }

  .about__desc {
    font-size: 20px;
    margin-bottom: 80px;
  }

  .about__subcopy {
    font-size: 16px;
  }

  .price {
    padding: 160px 16px 340px;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 400px;
    position: relative;
  }

  .price__detail {
    align-items: center;
    gap: 16px;
    background: transparent;
  }

  .price__title {
    font-size: 26px;
    padding: 8px 24px;
  }

  .price__label {
    font-size: 20px;
  }

  .price__special {
    padding-left: 40px;
  }

  .price__special::before {
    width: 33px;
    height: 7px;
    top: 30px;
  }

  .price__special-note {
    font-size: 16px;
  }

  .price__image--dessert {
    width: auto;
    height: 360px;
  }

  .price__image--wine {
    width: auto;
    height: 380px;
    top: 100px;
  }

  .price__image--pool {
    width: auto;
    height: 270px;
  }


  /* --- Event --- */
  .event {
    width: 100%;
    padding: 120px 0 160px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 12%, #C7EBFE 12%, #C7EBFE 100%);
    margin: 0 auto;
    position: relative;
  }

  .event::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/webp/event_bg_pcv2.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    pointer-events: none;
    z-index: 0;
  }

  .event__title {
    padding-bottom: 48px;
  }

  .event__content-section {
    width: 100%;
    max-width: 1100px;
    background: transparent;
    display: flex;
    flex-direction: row;
    gap: 48px;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .event__item-blue {
    width: 100%;
    max-width: 1100px;
    background: #FFFFFF;
    padding: 64px 48px 88px;
    margin-left: 8px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 48px;
  }

  .event__item-pink {
    width: 100%;
    max-width: 1100px;
    background: #FFFFFF;
    padding: 64px 48px 88px;
    margin-left: 48px;
    margin-bottom: 56px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 48px;
  }

  .event__apply-button::before {
    right: 40px;
  }

  .event__image--blue {
    width: 682px;
    height: 336px;
    position: absolute;
    right: -174px;
    top: 64px;
  }

  .event__image--pink {
    width: 682px;
    height: 336px;
    position: absolute;
    right: 584px;
    top: 72px;
  }

  .event__text-content {
    width: 460px;
  }

  .event__date-blue,
  .event__date-pink {
    font-size: 20px;
  }

  .event__item-title-blue,
  .event__item-title-pink {
    font-size: 32px;
  }

  .event__description-blue,
  .event__description-pink {
    font-size: 14px;
  }

  .event__apply-button {
    font-size: 16px;
  }

  .event__dropdown__detail-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }

  .event__dropdown-detail-value {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }

  .event__dropdown-disclaimer {
    color: #999999;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
  }

  .event__limit-badge-blue {
    position: absolute;
    left: 420px;
    top: -40px;
    background: #60A7C8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(16.512deg);
    z-index: 10;
    width: 160px;
    height: 160px;
  }

  .event__limit-badge-pink {
    position: absolute;
    right: -15px;
    top: -40px;
    background: #dd8a9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(16.512deg);
    z-index: 10;
    width: 160px;
    height: 160px;
  }

  .event__badge-content {
    font-size: 26px;
  }

  .event__item-blue--december::before {
    width: 165px;
    height: 74px;
    left: auto;
    top: -34px;
  }

  .event__item-pink--november::before {
    width: 138px;
    height: 70px;
    left: auto;
    right: 372px;
    top: -34px;
  }

  .event__title-sp {
    display: none;
  }

  .event__title-pc {
    display: block;
  }

  .event__dropdown-arrow {
    font-size: 14px;
  }

  .event__dropdown-detail-label {
    font-size: 14px;
    min-width: 80px;
  }

  .event__dropdown-detail-value {
    font-size: 14px;
  }

  .program-item {
    font-size: 14px;
  }

  .event__dropdown-disclaimer {
    font-size: 12px;
  }


  /* --- Customer voice --- */
  .voice {
    padding-top: 120px;
  }

  .voice__title {
    padding-bottom: 48px;
  }

  .voice__content {
    background: #FEDAE1;
    padding: 80px 0 120px;
  }

  .voice__decoration-img--on-left {
    display: block;
    position: absolute;
    top: -240px;
    left: -140px;
    width: 520px;
  }

  .voice__decoration-img--under-left {
    display: block;
    position: absolute;
    bottom: -120px;
    left: 10px;
    width: 240px;
  }

  .voice__decoration-img--on-right {
    display: block;
    position: absolute;
    top: -140px;
    right: -20px;
    width: 480px;
  }

  .voice__decoration-img--under-right {
    display: block;
    position: absolute;
    bottom: -100px;
    right: -120px;
    width: 360px;
  }

  .voice__desc {
    font-size: 16px;
  }

  .voice__items {
    padding: 0 16px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
  }

  .voice__item {
    height: auto;
    padding: 48px 24px;
    flex-direction: column;
    gap: 24px;
    flex: 1;
  }

  .voice__item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }

  .voice__item::after {
    width: 44px;
    height: 38px;
    bottom: -38px;
    right: 50%;
    transform: translateX(50%);
  }

  .voice__item-img {
    width: 240px;
    height: 160px;
  }

  .voice__text {
    font-size: 20px;
    text-align: center;
    word-break: keep-all;
  }

  .voice__title--sp {
    display: none;
  }
  .voice__title--pc {
    display: block;
  }



  /* --- FAQ --- */
  .faq {
    padding: 120px 16px 160px;
    margin: 0 auto;
    background-size: auto 1300px;
  }

  .faq__title {
    padding-bottom: 48px;
  }

  .faq__title-sp {
    display: none;
  }
  .faq__title-pc {
    display: block;
  }

  .faq__content {
    width: 100%;
    max-width: 1100px;
    padding: 24px;
  }

  .accordion {
    padding: 60px;
  }

  .accordion__question-text {
    font-size: 20px;
  }

  .accordion__panel-content {
    font-size: 20px;
    gap: 0;
  }


  /* --- Service --- */
  .service {
    padding: 80px 0 120px;
  }

  .service__title {
    padding-bottom: 48px;
  }

  .service__title-both {
    width: auto;
    height: 34px;
  }

  .service__list {
    width: 100%;
    max-width: 1100px;
    padding: 0 16px;
    display: flex;
    flex-direction: row;
  }

  .service__banner--sp {
    display: none;
  }

  .service__banner--pc {
    display: block;
  }


  /* --- Footer --- */
  .footer__contents {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 120px 0 20px;
  }

  .footer-pc-logo-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
  }

  .footer__contents-logo {
    width: 240px;
    height: 100px;
  }

  .footer__contents-logo--img {
    width: 240px;
    height: 100px;
    object-fit: contain;
  }

  .footer__contents-social-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__social-section--pc {
    display: flex;
    gap: 16px;
    padding-top: 40px;
  }

  .footer__social-section--sp {
    display: none;
  }

  .footer-pc-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    overflow: hidden;
  }

  .footer-pc-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .footer__contents-info-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
  }

  .footer__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer__info-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer__info-label {
    width: 200px;
    color: #4389AF;
    font-size: 14px;
    font-family: Noto Sans JP;
    font-weight: 400;
    line-height: 21px;
    padding: 0;
  }

  .footer__info-value {
    color: #4389AF;
    font-size: 14px;
    font-family: Noto Sans JP;
    font-weight: 400;
    line-height: 21px;
  }

  .footer__contents-contact-icons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__contents-contact-icon {
    background: #4389AF;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .footer__contents-contact-icon img {
    width: 40px;
    height: 40px;
  }

  .footer__button--sp {
    display: none;
  }

  .footer__button--pc {
    display: block;
  }

  .footer-copyright {
    width: 1100px;
    margin: 0 auto;
    text-align: center;
    color: #4389AF;
    font-size: 10px;
    font-family: Noto Sans JP;
    font-weight: 400;
    line-height: 15px;
  }

  .price__amount {
    color: #716161;
    font-size: 26px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 500;
    line-height: 39px;
  }

  .price__tax {
    color: #716161;
    font-size: 16px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 500;
    line-height: 24px;
  }

  .price__special-amount {
    color: #716161;
    font-size: 40px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 500;
    line-height: 60px;
  }

  .price__amount-large {
    color: #716161;
    font-size: 40px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 500;
    line-height: 60px;
  }


  /* modal */
  .phone-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .phone-modal__content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
  }

  .phone-modal__close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
  }

  .phone-modal__close:hover,
  .phone-modal__close:focus {
    color: #000;
  }

  .phone-modal h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.2rem;
  }

  .phone-modal__phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    margin: 20px 0;
  }

  .phone-modal__phone-description {
    color: #666;
    font-size: 0.9rem;
    margin: 10px 0 0 0;
  }
}