@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Old+Mincho&display=swap");

.button-frame {
  position: relative;
  width: 314px;
  height: 50px;
}

.button-frame .button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  background-color: #94CBBC;
  background-image: url(../img/ic_arrow.svg);
  background-position: 80%;
  border-radius: 27px;
  box-shadow: 4px 4px 0px rgba(104, 173, 154, 0.2);
  border: 2px solid #D6D6D6;
  text-decoration: unset;
}

.button-frame .button:not(.submit):hover {
  opacity: 0.7 !important;
}

.button-frame .dec {
  bottom: -22px;
  left: -16px;
  width: 50px;
}

.slide-menu,
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: row;
  width: 100%;
}

.slide-menu {
  z-index: 995;
  transform: translateY(-100%);
  transition: transform 0.4s ease-out;
  overflow: hidden;
}

.slide-menu nav {
  container-type: inline-size;
  width: 100%;
  height: 83vh;
  max-height: 704px;
  background-image: url(../img/bg_slide_menu.webp);
  background-size: 100% 100%;
}

.slide-menu nav .content {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: -webkit-fill-available;
  padding: 64px 40px 50px;
}

.slide-menu nav .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  margin-bottom: 32px;
}

.slide-menu nav .content .top .close-button {
  cursor: pointer;
}

.slide-menu nav .content .top .close-button:hover {
  transform: scale(1.05);
}

.slide-menu nav ul {
  list-style: none;
  flex: 1 1 auto;
  padding-bottom: 32px;
  font-family: "Noto Serif JP";
  overflow-y: scroll;
}

.slide-menu nav ul li,
.slide-menu nav ul a {
  line-height: 1;
}

.slide-menu nav ul li:not(:last-child) {
  margin-bottom: 32px;
}

.slide-menu nav .button-frame {
  flex: 0 0 50px;
}

.slide-menu.is-open {
  transform: translateY(0);
}

.slide-menu::before,
.slide-menu::after {
  content: "";
  flex: 1 1 calc(100vw - 600px);
}

.overlay {
  height: 100%;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.overlay div {
  container-type: inline-size;
  width: 100%;
  background-color: rgba(70, 70, 70, 0.8);
}

.overlay::before,
.overlay::after {
  content: "";
  flex: 1 1 calc(100vw - 600px);
}

@media (min-width: 768px) {

  .slide-menu nav,
  .overlay div {
    max-width: 480px;
  }

  .slide-menu nav {
    max-height: unset;
  }
}

:root {
  --section-gutter: 28px;
}

html {
  font-size: 10px;
}

html * {
  margin: 0;
  padding: 0;
  text-decoration: unset;
  background-repeat: no-repeat;
  color: #464646;
  font-size: 1.4rem;
  font-weight: 400;
}

html p,
html a,
html dt,
html dd,
html li {
  line-height: 1.8;
}

body {
  margin: 0;
  background-image: url(../img/back.webp);
  background-size: cover;
  font-family: "Noto Sans JP";
}

/* Error message style (unified) */
.input_err {
  display: none;
  color: #E696AA;
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

section {
  font-size: 0;
}

nav a:not(.button):hover {
  opacity: 0.7;
}

.gutter-x {
  padding-right: 20px;
  padding-left: 20px;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

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

.dec {
  position: absolute;
  z-index: 4;
}

.section-bottom-shape {
  width: 100%;
  object-fit: cover;
}

.section-bottom-shape.bg-white {
  background-color: white;
}

.section-bottom-shape.bg-gold {
  background-color: #FCFAF8;
}

.pc-wrapper {
  display: flex;
  flex-flow: row;
  height: 100vh;
}

.pc-wrapper .side {
  display: flex;
  justify-content: center;
  padding-top: 122px;
}

.pc-wrapper .side>div {
  display: none;
  padding: 10px var(--section-gutter);
}

.pc-wrapper .side.side-left img.logo {
  display: block;
  margin-bottom: 48px;
}

.pc-wrapper .side.side-left .anchor-list {
  list-style: none;
  margin-bottom: 66px;
  padding: 0;
}

.pc-wrapper .side.side-left .anchor-list li {
  margin-bottom: 20px;
}

.pc-wrapper .side.side-left .anchor-list li a {
  color: #454545;
  font-family: "Noto Serif JP";
  font-size: 16px;
}

.pc-wrapper .side.side-right>div {
  width: -webkit-fill-available;
  max-width: calc(300px + var(--section-gutter) * 2);
}

.pc-wrapper .side.side-right .qr-code {
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 38px;
  align-items: center;
  width: max-content;
  margin: 20% auto 0;
  padding: 36px 70px 50px;
  background-color: #FCF9F6;
  border-radius: 20px;
}

.qr-code {
  background-color: #FFFFFF !important;

  p {
    color: #94CBBC !important;
    font-size: 1.6rem;
  }
}

.pc-wrapper .side.side-right .qr-code p {
  margin: 0;
  font-family: "Noto Serif JP";
  font-size: 16px;
  line-height: 1;
}

.pc-wrapper .side.side-right .qr-code img {
  width: 160px;
  aspect-ratio: 1/1;
}

.sp-wrapper {
  container-type: inline-size;
  width: 100%;
  background-color: white;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-y: auto;
  overflow-x: hidden;
}

.sp-wrapper .sp-container {
  max-width: 600px;
}

header {
  position: relative;
}

header>div {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: end;
  width: auto;
  padding: 24px 20px;
  z-index: 100;
}

header>div .hamburger-button {
  display: block;
  cursor: pointer;
}

header>div .hamburger-button:hover {
  transform: scale(1.05);
}

header>div .hamburger-button img {
  width: 44px;
}

header>img {
  width: 100%;
}

.section-title {
  text-align: center;

  img {
    height: 35px;
    margin: 30px 0 7px;
  }

  .title-img {
    margin: 10px 0;
  }

  h2 {
    color: #68AD9A;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 40px;
  }
}

a {
  cursor: pointer;
}

.side-left {
  h3 {
    font-family: Noto Serif JP;
    font-weight: 500;
    font-size: 2rem;
    color: #458B78;
  }

  p {
    font-family: Noto Serif JP;
    color: #68AD9A;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 60px;
  }

  .anchor-list {
    li {
      margin-bottom: 13px !important;

      a {
        color: #458B78 !important;
      }
    }
  }
}



/* モーダル */

.modal-header {
  border-bottom: none;
  justify-content: flex-end;

  .recommendModal-close {
    background-image: url(../img/modal-close.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    border: none;
    margin: 12px;
    background-color: unset;
  }
}

*,
*::before,
*::after {
  box-sizing: content-box;
}

section#introduction {
  padding: 10px var(--section-gutter);
  padding-top: 50px;
  background-image: url(../img/Intro-back.webp);
  background-size: 100% 100%;
  padding-bottom: 75px;

  h2 {

    span {
      color: #C9CAB0;
      font-size: 1.3rem;
      margin-left: 32px;
      display: block;

      &::after {
        background-image: url(../img/speech-bubble.webp);
        content: '';
        width: 200px;
        height: 40px;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        left: 0;
      }
    }

    img {
      padding-top: 38px;
    }
  }

  img {
    width: 308px;
    margin: 0 auto;
    display: block;
  }

  p {
    font-size: 1.6rem;
    line-height: 30px;
    padding: 25px 0 51px;
  }

  .event-container {
    background-color: #ffffff;
    padding: 0px 12px 40px;
    margin-top: 40px;
    position: relative;
    margin-bottom: 40px;



    &::before,
    &::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 102%;
      height: 5px;
      background-color: #88C2B2;
    }

    &::after {
      bottom: 0px;
    }

    h3 {
      text-align: center;
      padding: 20px 0 16px;
      font-size: 1.3rem;
      font-weight: 600;
      line-height: 2;
    }

    table {
      width: 100%;
      table-layout: fixed;
      border-collapse: collapse;
      font-size: 13.5px;
      line-height: 1.5;

      td {
        padding: 10px 0;
        line-height: 1.8;
        border-bottom: 0.5px solid #94CBBC;
        border-top: 0.5px solid #94CBBC;
      }

      .label {
        padding-left: 5px;
        font-weight: 400;
        font-size: 1.2rem;
      }

      .value {
        width: 70%;
        font-weight: 500;
        font-size: 1.4rem;
        line-height: 1;

        .span {
          font-size: 1rem;
        }
      }
    }

  }
}

section#recommend {
  padding: 33px var(--section-gutter);

  .recommend {
    background-color: rgba(100, 139, 117, 0.05);
    border-radius: 8px;
    position: relative;
    overflow: visible;
    margin: 50px auto;
    text-align: center;
    padding-bottom: 35px;

    >img {
      height: 35px;
      margin: 25px 0 10px;
    }

    .recommend_decoration {
      img {
        width: 193px;
      }

      h2 {
        font-size: 2rem;
        color: #94CCBC;
        margin: 10px auto 30px;
      }

      &::after {
        background-image: url(../img/recommend-decoration.webp);
        content: '';
        width: 70px;
        height: 133px;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: -29px;
        right: -18px;
      }
    }

    .recommend-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      padding: 1rem;
      gap: 4px;

      .recommend-card {
        position: relative;
        overflow: visible;
        text-align: center;
        width: 112.5%;
        background-color: #ffffff;
        overflow: hidden;

        img {
          width: 100%;
          object-fit: cover;
          aspect-ratio: 3 / 2;
        }

        &:nth-child(1),
        &:nth-child(3) {
          transform: translateX(-11%) !important;
          box-shadow: 2px 2px 4px -1px #94CBBC33;
          border-radius: 25px 0 0 0;

          .image-wrapper {
            margin-left: 0;
          }
        }

        &:nth-child(3) {
          border-radius: 0 0 0 25px;
        }

        &:nth-child(2),
        &:nth-child(4) {
          box-shadow: 2px 2px 4px -1px #94CBBC33;
          border-radius: 0 25px 0 0;

          .image-wrapper {
            margin-left: auto;
          }
        }

        &:nth-child(4) {
          border-radius: 0 0 25px 0;
        }

        .recommend-title {
          margin-top: 10px;
          font-weight: 400;
          line-height: 1.5;
          text-align: left;
          padding: 0 12px;
          height: 76px;
        }

        button {
          border: none;
          background-color: unset;
          color: #94CBBC;
          bottom: 16px;
          right: 10px;
          position: absolute;
          display: flex;
          gap: 8px;
          align-items: center;

          &::after {
            content: "";
            background-image: url(../img/recommend_arrow.webp);
            background-repeat: no-repeat;
            background-size: contain;
            width: 9px;
            height: 8px;
          }
        }
      }
    }
  }
}

section#pick-up {
  padding: 15px var(--section-gutter) 63px;
  background-color: #f8f8f8;
  position: relative;

  >img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 17%;

    &:nth-child(2) {
      top: 56%;
    }
  }



  .pick-up_card {
    background-color: #ffffff;
    position: relative;
    width: 77%;
    margin: 20px 0 25px auto;
    border-radius: 10px;
    padding: 20px 30px 15px;
    box-shadow: 4px 4px 4px 0px #CCCCCC26;

    a {
      .pick-up_carte {
        width: 26%;
        position: absolute;
        right: 18px;
        transform: rotate(10deg);
        top: 115px;
        box-shadow: 2px 3px 2px 0px #9898981A;
      }

      .pick-up_text {
        line-height: 23px;
      }

      p {
        display: flex;
        align-items: center;
        justify-content: flex-end;

        &::after {
          content: "";
          background-image: url(../img/green_arrow.webp);
          background-repeat: no-repeat;
          background-size: contain;
          height: 6px;
          width: 12px;
          margin: 15px 5px 0px 10px;
        }
      }

      span {
        display: block;
        color: #68AD9A;
      }

      &.collapsed p::after {
        content: "";
        transform: translateY(-50%) rotate(180deg);
        margin-top: 9px;
      }

      &:not(.collapsed) p {
        content: "";
        transform: translateY(-50%) rotate(0deg);
        margin-top: 7px;
      }

      &:not(.collapsed) p span {
        display: none;
      }
    }
  }

  .pick-up_card_title {
    display: flex;
    align-items: center;

    img {
      position: absolute;
      left: -26px;
      width: 100px;
      aspect-ratio: 1 / 1;
    }

    h3 {
      font-size: 1.5rem;
      color: #68AD9A;
      font-weight: 500;
      padding: 15px 0 15px 50px;
    }

  }

  .pick-up_card:nth-last-of-type(2) {
    position: relative;

    &::before {
      content: "参加者限定";
      background-color: #68AD9A;
      position: absolute;
      top: 0;
      right: 0;
      padding: 2px 15px;
      color: #ffffff;
      border-radius: 0 10px;
    }
  }



  .pick-up_img {
    width: 100%;
    aspect-ratio: 3 / 1.7;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
  }
}

section#contents {
  padding: 34px var(--section-gutter) 10px;



  .content_head {
    img {
      width: 100%;
      margin: 10px 0 5px;
    }

    img:nth-of-type(2) {
      transform: rotate(180deg);
      margin-bottom: 50px;
    }

    div {
      display: flex;
      justify-content: center;
      align-items: center;

    }

    .content-number {
      width: 70px;
    }

    h3 {
      color: #68AD9A;
      font-weight: 500;
      font-size: 1.5rem;
      margin-left: 8px;
    }
  }


  .content1 {

    .content-no1 {
      width: 100%;
      aspect-ratio: 3 / 1.35;
      object-fit: cover;
    }

    .more-button {
      bottom: -13px;
      right: 0px;
      left: auto;
      width: 71px;
      border-radius: 0 0 8px 0;
      height: auto;
      margin: 0;
      position: absolute;
      border: none;
      padding: 2px 0;
      color: white;
      background-color: #68AD9A;
    }

    .content-custombtn {
      padding: 6px 17px;
      width: auto;
      bottom: 25px;
    }

    .contents1-title {
      margin-top: 15px;
      font-size: 1.5rem;
      line-height: 1.5;
      color: #68AD9A;
      text-align: center;
    }

    .contents1-card {
      position: relative;
      overflow: visible;
      text-align: center;
      margin-top: 15px;
      margin-bottom: 10px;

      .most-popular_icon {
        position: absolute;
        width: 24%;
        left: -9px;
        top: -30px;
      }
    }

    .recommend-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 60px;

      .image-wrapper {
        position: relative;
        aspect-ratio: 1 / 1;
        overflow: visible;
        cursor: pointer;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
        }
      }

      &:nth-child(1),
      &:nth-child(3) {
        .image-wrapper {
          margin-left: 0;
        }
      }

      &:nth-child(2),
      &:nth-child(4) {

        .image-wrapper {
          margin-left: auto;

        }
      }
    }
  }

  .grooms {
    >div {
      padding: 25px 45px;
      background-color: #68AD9A1A;
      margin-left: calc(-1 * var(--section-gutter));
      margin-right: calc(-1 * var(--section-gutter));
      border-radius: 15px;
      margin-bottom: 100px;
    }

    h3 {
      color: #68AD9A;
      font-size: 1.5rem;
      margin-bottom: 14px;
      font-weight: 500;
    }

    ul {
      list-style: none;
      margin: 0;
      padding: 0;
      margin-left: 0 !important;

      li {
        margin: 7px 0;
        padding-left: 20px;
      }

      li::before {
        background-image: url(../img/grooms_check.webp);
        content: '';
        width: 12px;
        height: 12px;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 5px;
        left: 0;
      }
    }
  }

  .content2 {
    margin-bottom: 86px;

    &>p {
      line-height: 27px;
    }

    .contents2-wrapper {
      display: flex;
      gap: 10px;
      margin: 21px 0 36px;
      margin-left: calc(var(--section-gutter) *-1);
      width: calc(100% + var(--section-gutter) *2);

      .slick-slide {
        margin-right: 10px;
        float: none !important;
      }

      .slick-track {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: flex-start;
      }

      .slick-slide:first-child {
        margin-left: 30px;
      }

      .contents2-card {
        background-color: #f6f6f6;
        aspect-ratio: 1.3 / 2;
        width: 55%;
        border-radius: 10px;
        height: fit-content;
        padding-bottom: 19px;

        a {
          height: 100%;
        }

        img {
          width: -webkit-fill-available;
        }

        .contents2_text {
          padding: 16px 7px 17px 17px;

          h3 {
            font-size: 1.3rem;
            height: 35px;
          }

          dl {
            display: flex;

            &:nth-child(2) {
              margin-top: -3px;
            }

            dt::after {
              content: "|";
              padding: 0 5px;
            }
          }

          span {
            display: block;
            margin: 15px 0 -4px;
            position: relative;

            &::before {
              content: "";
              border-bottom: 1px solid #000000;
              width: 46px;
              position: absolute;
              height: 10px;
              left: 0;
            }

            &::after {
              content: "↓";
              margin-left: 2px;
            }
          }

          p {
            font-size: 1.6rem;
          }
        }
      }

      .contents2-card_last {
        height: -webkit-fill-available;
        aspect-ratio: 1.3 / 2;
        max-height: 100%;
        position: relative;
        display: flex;
        flex-direction: column;

        .card_last_wrapper {
          padding: 0 20px;

          .contents2_last-text {
            position: absolute;
            width: calc(100% - 40px);
            top: 23%;

            img:nth-of-type(2) {
              transform: rotate(180deg);
            }

            p {
              font-size: 1.2rem;
              line-height: 27px;
            }
          }

          .button {
            position: absolute;
            bottom: 22px;
            width: calc(100% - 40px);
            font-size: 1.3rem;
            box-shadow: 0px 2px 0px rgba(104, 173, 154, 0.2);
            background-color: #94CBBC;
            color: #ffffff;
            border-radius: 25px;
            padding: 7px 0;
            display: flex;
            align-items: center;
            justify-content: center;

            &::after {
              content: "";
              background-image: url(../img/white_arrow.webp);
              background-repeat: no-repeat;
              background-size: contain;
              height: 13px;
              width: 13px;
              margin-left: 5px;

            }
          }
        }
      }
    }
  }

  .content3 {
    p {
      font-size: 1.5rem;
      color: #68AD9A;
      font-weight: 500;
      text-align: center;
      margin: 15px 0 35px;
    }

    .content3_img {
      display: grid;
      gap: 5px;
      grid-template-columns: repeat(2, 1fr);

      img {
        width: 100%;
        object-fit: cover;
      }
    }

    li {
      list-style: none;
      color: #68AD9A;
    }

    >ul {
      border: 1px solid #72B2A1;
      border-radius: 10px;
      padding: 17px 30px;
      box-shadow: 8px 8px 0px 0 rgba(104, 173, 154, 0.102);
      background-color: #ffffff;
      z-index: 1;
      position: relative;

      li {
        display: flex;
        align-items: center;
        gap: 7px;
        line-height: 24px;
        font-size: 1.4rem;
      }

      li::before {
        background-image: url(../img/content03_check.webp);
        content: '';
        width: 15px;
        height: 15px;
        background-size: contain;
        background-repeat: no-repeat;
      }

      p {
        text-align: left;
        margin: auto auto 12px;
      }

      span {
        font-size: 1.4rem;
        color: #68AD9A;
        margin-top: 12px;
        display: block;
      }
    }

    .content3_counseling {
      background: linear-gradient(180deg, rgba(104, 173, 154, 0.1) 62.02%, rgba(104, 173, 154, 0) 100%);
      margin-left: calc(-1 * var(--section-gutter));
      margin-right: calc(-1 * var(--section-gutter));
      position: relative;
      top: -50px;
      padding: 115px calc(var(--section-gutter)) 50px;

      h2 {
        color: #68AD9A;
        font-weight: 500;
        font-size: 2rem;
        margin-bottom: 25px;
        text-align: center;
      }

      p {
        background-color: #ffffff;
        font-size: 1.1rem;
        margin: 10px 9px;
        text-align: initial;
        padding: 10px 17px;
        width: fit-content;
        box-shadow: 1px 1px 3.1px 1px #0000001A;
        border-radius: 15px 30px 30px 0;
      }

      ul {
        li {
          display: flex;
          align-items: center;
        }

        li:nth-child(odd)::before {
          background-image: url(../img/content03_icon.webp);
          content: '';
          width: 33px;
          height: 33px;
          background-size: contain;
          background-repeat: no-repeat;
        }

        li:nth-child(even)::after {
          background-image: url(../img/content03_icon.webp);
          content: '';
          width: 33px;
          height: 33px;
          background-size: contain;
          background-repeat: no-repeat;
        }


        li:nth-child(even) {
          p {
            text-align: right;
            margin-left: auto;
            border-radius: 30px 15px 0 30px;
          }
        }

        span {
          color: #68AD9A;
          font-size: 1.34rem;
          font-weight: 600;
        }
      }
    }
  }
}

section#presents {
  padding: 10px var(--section-gutter) 70px;

  &>div {
    background-color: #94CBBC1A;
    padding: 7px 0;
    border-radius: 250px 250px 50px 50px;

    .presents-wrapper {
      padding: 96px 31px 50px 20px;
      border: 2px solid #C9CAB0;
      margin: 0 7px;
      border-radius: 250px 250px 50px 50px;

      >span {
        display: flex;
        justify-content: center;
        margin-left: 11%;

        img {
          width: 170px;
        }

        &::after {
          content: "";
          background-image: url(../img/presents_decoration.webp);
          background-repeat: no-repeat;
          background-size: contain;
          width: 42px;
          height: 26px;
          margin: -14px 0 0 -5px;
        }
      }


      h3 {
        color: #C9CAB0;
        font-weight: 500;
        font-size: 1.5rem;
        text-align: center;
        margin-top: 16px;
      }

      ul {
        margin: 45px 0 10px;

        li {
          list-style: none;
          display: flex;
          align-items: center;



          img {
            height: 50px;
            margin-right: 10px;
          }

          div {
            p {
              font-weight: 500;
              font-size: 1.8rem;
              color: #BDBE9F;
              line-height: 24px;
              margin: 7px 0px;
              border-bottom: solid 5px #C9CAB066;
              height: 18px;
              width: fit-content;
            }

            span {
              font-size: 1rem;
              line-height: 12px;
              display: block;
            }
          }
        }

        .presents_diamond {
          justify-content: center;
          margin: 20px 0;

          img {
            width: 10px;
            height: 10px;
            margin: 0;
          }
        }
      }
    }



  }
}

section#gallery {
  padding: 10px var(--section-gutter);
  padding-bottom: 90px;

  .gallery {
    display: flex;
    flex-flow: wrap;
    gap: 3px;
    margin-bottom: 30px;

    a {
      width: calc((100% - 6px) / 3);
      height: auto;

      img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
      }

      img.position-left-top {
        object-position: left top;
      }

      img.position-right-bottom {
        object-position: right bottom;
      }
    }
  }
}

section#voice {
  padding: 10px var(--section-gutter) 54px;
  background-color: #68AD9A1A;

  ul {
    li {
      display: flex;
      align-items: center;
      background-color: #ffffff;
      padding: 25px 15px;
      border-radius: 10px;
      margin-bottom: 24px;
      list-style: none;

      img {
        width: 80px;
      }

      p {
        line-height: 18px;
        font-size: 1rem;
        margin: 0 12px;
      }
    }
  }
}

section#staffmessage {
  padding: 31px var(--section-gutter) 71px;

  ul {
    li {
      background-color: #0000000D;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      margin: 30px 0;

      img {
        width: 33%;
      }

      div {
        padding: 0 20px;

        a {
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        a::after {
          background-image: url(../img/Instagram_icon.webp);
          content: '';
          width: 25px;
          height: 25px;
          background-size: contain;
          background-repeat: no-repeat;
        }

        h3 {
          font-family: Noto Serif JP;
          font-weight: 600;
          font-size: 1.8rem;
          letter-spacing: 6px;
          color: #68AD9A;

        }

        p {
          font-size: 1rem;
          margin-top: 8px;
        }
      }
    }
  }
}

section#faq {
  padding: 31px var(--section-gutter) 71px;
  background: #68AD9A1A;

  .accordion-item {
    margin-bottom: 16px;
    padding: 10px 15px;
    background-color: #68AD9A1A;

    p {
      margin-bottom: 7px;

      button {
        font-size: 1.3rem;
        color: #68AD9A;
        background-color: unset;
        border: none;
        padding: 0;
        width: 100%;
        text-align: left;
        position: relative;
        transition: color 0.3s ease;

        &::before {
          content: "Q";
          font-size: 1.5rem;
          font-weight: 600;
          font-family: "Noto Sans JP";
          color: #68AD9A;
          margin-right: 3px;
        }

        &::after {
          position: absolute;
          right: 0;
          top: 50%;
          font-size: 1.5rem;
          transition: transform 0.3s ease;
        }

        &.collapsed::after {
          content: "+";
          transform: translateY(-50%) rotate(90deg);
        }

        &:not(.collapsed)::after {
          content: "-";
          transform: translateY(-50%) rotate(0deg);
        }
      }
    }

    .answer {
      font-size: 1.3rem;
      color: #68AD9A;
      border-top: 0.5px solid #68AD9A;
      padding: 13px 13px 0;
    }
  }
}


section#access {
  padding: 60px var(--section-gutter) 94px;

  .access-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #68AD9A;

    h2 {
      font-size: 1.5rem;
      font-weight: 500;
      color: #68AD9A;
      margin: 15px 0 36px;
    }
  }

  .access_items {
    background-color: #0000000D;
    border-radius: 10px;
    padding: 30px 26px;

    h3 {
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 7px;
      display: flex;
      align-items: center;
      gap: 8px;

      &::before {
        content: "";
        background-image: url(../img/map_icon.webp);
        width: 16px;
        height: 20px;
        background-size: contain;
        background-repeat: no-repeat;
      }
    }

    p {
      font-size: 1.4rem;
      margin-bottom: 22px;
    }

    .map {
      iframe {
        height: 50vh;
        width: 100%;
      }
    }
  }
}

section#getback {
  padding: 31px var(--section-gutter) 43px;
  background-color: #68AD9A1A;


  &>div {
    position: relative;

    h3 {
      color: #68AD9A;
      font-family: Noto Sans JP;
      font-size: 2.2rem;
      line-height: 38px;
      padding: 10% 0 30px;
    }

    img {
      width: calc(100% + var(--section-gutter) * 2.1);
      position: absolute;
      right: -32px;
      top: 0px;
    }
  }

  .getback-wrapper {
    position: relative;
    z-index: 1;
    padding: 17px 0 0;

    span {
      color: #68AD9A;
    }

    p {
      background-color: #ffffff;
      border: 1px solid #68AD9A;
      border-radius: 22px;
      height: 35px;
      display: flex;
      align-items: center;
      font-size: 2.2rem;
      justify-content: space-between;
      padding-left: 27px;
      margin: 10px 0;

      &::after {
        content: "";
        background-image: url(../img/search.webp);
        height: 31px;
        width: 85px;
        background-size: contain;
        background-repeat: no-repeat;
        margin-right: 2px;
      }
    }
  }
}

section#reservation {
  padding: 50px var(--section-gutter) 23px;
  background-image: url(../img/reservation_back-img.webp);
  background-size: cover;

  .reservation-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #68AD9A;

    h2 {
      font-size: 1.5rem;
      font-weight: 500;
      color: #68AD9A;
      margin: 20px 0 36px;
    }
  }

  >p {
    color: #00000099;
    text-align: center;
    text-align: center;
    display: block;
    margin-top: 110px;
  }

  .reservation_restart {
    color: #68AD9A;
    border: 1px solid #68AD9A;
    margin-top: 60px;
    padding: 15px 0;
    font-size: 1.6rem;
  }

  >img {
    width: 35px;
    margin: 100px auto;
    display: block;
  }

  form {

    dl {
      margin: 34px 0 63px;

      dt {
        margin: 16px 0 3px;
        font-size: 1.5rem;
      }

      dd {

        input {
          width: 100%;
          border: none;
          height: 45px;
          padding-left: 8px;
        }

        p:has(+ #email) {
          color: #E696AA; /* unify with other .input_err */
          font-size: 1.2rem;
        }
      }

      .note {
        font-size: 1.1rem;
        margin-top: -6px;
        display: block;
        margin-bottom: 8px;
      }

      .description {
        color: #A63F3F;

        &:first-child {
          margin-top: 8px;
        }

        &:last-of-type {
          margin-bottom: 8px;
        }
      }
    }

    label {
      width: 100%;

      select {
        width: calc(100% - 20px);
        border: none;
        height: 45px;
        border-radius: 25px;
        padding-left: 20px;
        outline: none;
        appearance: none;

        background-image: url(../img/reservation_arrow.webp);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right 21px center;
        background-size: 12px auto;
        background-color: #ffffff;
      }
    }

    option {
      &:nth-child(1) {
        color: #00000099;

      }
    }

    .button-frame .button.submit:not(.btn-on) {
      opacity: 0.5;
      pointer-events: none;
    }

    .button-frame .button.submit.btn-on:hover {
      opacity: 0.7;
      cursor: pointer;
    }
  }

  footer {
    p {
      color: #68AD9A;
      margin-top: 96px;
      text-align: center;
      font-weight: 500;
      font-size: 1.5rem;
    }
  }
}


@media (min-width: 600px) {
  :root {
    --section-gutter: 32px;
  }

  .pc-wrapper .side {
    position: relative;
    flex: 1 1 calc(100vw - 600px);
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .sp-wrapper {
    max-width: 480px;
  }
}

@media (min-width: 1200px) {
  .hamburger-button {
    display: none !important;
  }

  .side>div {
    display: block !important;
  }
}

/*# sourceMappingURL=styles.css.map */

/* アニメーションの定義 */
@keyframes fadeInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim {
  opacity: 0;
}

.anim.is-animated {
  animation: fadeInFromBottom 0.8s ease-out forwards;
}

/* content1 モーダル編集 */
#contentModal .modal-content {
  background-color: #F8F8F8;
  border-radius: 10px;
  border: none;

  .modal-header {
    background-color: #94CBBC80;
    border-radius: 10px 10px 0 0;

    .recommendModal-close {
      width: 18px;
      height: 18px;
      margin: 8px;
      padding-bottom: 10px;
    }
  }

  .modal-body {
    padding: 0 25px;

    >img {
      box-shadow: 4px 4px 4px 0px #94CBBC26;
      margin-top: -18px;
      aspect-ratio: 5 / 3;
      object-fit: cover;
      width: 100%;
    }

    .modal-title {
      color: #68AD9A;
      font-weight: 500;
      font-size: 1.6rem;
      padding: 16px 0;
      text-align: center;
    }

    p {
      line-height: 21px;
      margin-bottom: 176px;
      text-align: center;
    }

    div {
      background-color: #94CBBC80;
      position: absolute;
      bottom: 20px;
      left: 0;
      margin: 10px 0 23px;
      width: 100%;

      img {
        position: absolute;
        top: -15px;
        width: 70px;
        left: 31px;
      }

      p {
        margin: 28px 30px !important;
      }
    }
  }
}

/* 動画用モーダル編集 */
#videoModal.movie {
  .modal-content {
    background-color: unset;
    border: none;
    height: auto;
    width: 95%;


    .recommendModal-close {
      background-color: unset;
      position: absolute;
      top: 20px;
      right: 20px;
      width: 18px;
      height: 18px;
      z-index: 1;
      border: none;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-image: url(../img/modal-close_white.webp);
    }

    .modal-body {
      .ratio-video {
        --bs-aspect-ratio: calc(1920 / 1080 * 100%);
        /* 約177.78% → 9:16 縦長 */
      }
    }
  }

  video {
    width: 100%;
    display: block;
    border-radius: 0;
  }
}



/* recommend モーダル編集 */
#recommendModal {
  .modal-content {
    background-color: #F8F8F8;
    border-radius: 10px;
    border: none;

    .modal-body {
      padding: 0 20px;

      >img {
        width: 35px;
        height: 35px;
        margin: 0 auto 15px;
        display: block;
      }

      .modal-title {
        font-weight: 500;
        font-size: 2.2rem;
        text-align: center;
      }

      div {
        position: relative;
        background-color: #ffffff;
        border-radius: 20px;
        padding: 28px 15px;
        margin: 30px 0;

        img {
          width: 110px;
          position: absolute;
          left: -8px;
          bottom: 19%;
        }

        h4 {
          font-size: 2.2rem;
          margin-left: 120px;
          margin-bottom: 11px;
        }

        .problems-list {
          margin-left: 120px;
        }
      }

      .solutions {

        img {
          right: 0;
          left: auto;
          top: -67px;
          width: 135px;
        }

        h4 {
          margin-left: 10px;
        }

        .solutions-list {
          margin-left: 25px;
        }
      }
    }
  }
}

#planModal .modal-content {

  .modal-body {
    padding: 0 10px 86px;

    img {
      width: 80px;
      margin: 0 auto;
      display: block;
    }

    h3 {
      font-size: 1.3rem;
      font-weight: 500;
      color: #68AD9A;
      text-align: center;
      margin: 12px 0 35px;
    }

    h4 {
      color: #68AD9A;
      border: 1px solid #68AD9A;
      width: fit-content;
      padding: 3px 16px;
      border-radius: 5px;
      margin: 30px 26px 5px;
    }

    ul {
      margin-left: 38px;

      li {
        color: #68AD9A;
      }
    }

    ul li::marker {
      font-size: 0.6em;
    }
  }
}
