@charset "UTF-8";
/*-------------------------------------------
Common class
-------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.75;
  color: #333333;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*-------------------------------------------
共通パーツの指定
-------------------------------------------*/
.u-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 80px;
}
@media screen and (max-width: 768px) {
  .u-wrapper {
    width: 100%;
    padding: 64px 20px;
  }
}

/* サブタイトル */
.subTitle {
  color: #A88657;
  text-align: center;
  margin-bottom: 40px;
}
.subTitle__en {
  font-family: "Pinyon Script";
  font-size: 36px;
  line-height: 1;
}

/* readmoreボタン */
.readmore-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 360px;
  background-color: #A88657;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 1;
}
.readmore-btn:hover {
  opacity: 0.7;
}

.readmore-btn a {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Zen Old Mincho";
  padding: 16px 24px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .readmore-btn a {
    font-size: 18px;
  }
}

.u-bkGray {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  background-color: #F6F6F6;
}

/*-------------------------------------------
Header
-------------------------------------------*/
/*除算用にmathモジュールをインポート*/
.header {
  width: 200px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    width: 100vw;
    height: 80px;
  }
}

.header__inner {
  padding: 40px 16px 24px;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .header__inner {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__logo {
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid #BBBBBB;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header__logo {
    padding-bottom: 0px;
    border-bottom: none;
  }
}

.header__logo-sp {
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid #BBBBBB;
  line-height: 1;
}

.header__logoText1 {
  font-size: 24px;
  font-weight: 700;
}

.header__logoText2 {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 24px 0px;
}

.header__menuLink {
  display: block;
  width: 100%;
}

.header__menuList,
.header__snsLink {
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 1;
}
.header__menuList:hover,
.header__snsLink:hover {
  opacity: 0.6;
}

.header__menuLink.active {
  color: #A88657; /* アクティブ状態の色 */
}

.header__contact {
  width: 100%;
  padding: 8px 16px;
  background-color: #A88657;
  color: #fff;
}

.header_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.header__snsLogo {
  width: 40px;
  height: 40px;
}

.header__toggleBtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__toggleBtn {
    display: block;
    width: 35px;
    height: 24px;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 20;
  }
}

.header__hamburgerLine {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #333333;
  border-radius: 3px;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header__hamburgerLine:nth-child(1) {
  top: 0px;
}
.header__hamburgerLine:nth-child(2) {
  top: 12px;
}
.header__hamburgerLine:nth-child(3) {
  top: 24px;
}

/*ハンバーガーメニュークリック時、×になる*/
.header__toggleBtn.js-open .header__hamburgerLine:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
          transform: translateY(11px) rotate(-45deg);
}

.header__toggleBtn.js-open .header__hamburgerLine:nth-child(2) {
  -webkit-transform: translateY(-1px) rotate(45deg);
          transform: translateY(-1px) rotate(45deg);
}

.header__toggleBtn.js-open .header__hamburgerLine:nth-child(3) {
  display: none;
}

/*ハンバーガーメニュークリック時背景*/
.header__mask {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 100vh;
  right: -120%;
  top: 0px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__maskInner {
  width: 60.8333333333%;
  padding: 64px 0px;
  margin: 0 auto;
}

.header__maskLink {
  position: relative;
  cursor: pointer;
}

.header__mask.js-open {
  right: 0;
  z-index: 10;
}

/*-------------------------------------------
 Front Page
-------------------------------------------*/
/*除算用にmathモジュールをインポート*/
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
}

.main-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .main-content {
    margin-left: 0px;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

.fv__mvWrapper {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv__mvWrapper {
    margin-top: 80px;
  }
}

.fv__mvWrapper video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.fvMessage {
  padding: 40px 80px;
  font-family: "Zen Old Mincho";
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fvMessage {
    padding: 40px 20px;
  }
}

.fvMessage__line {
  content: "";
  width: 1px;
  height: 50px;
  background-color: #333333;
  margin: 0 auto;
}

.fvMessage__title {
  font-size: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 479px) {
  .fvMessage__title {
    font-size: 20px;
  }
}

.pickup .u-wrapper {
  padding: 80px 35px;
}
@media screen and (max-width: 768px) {
  .pickup .u-wrapper {
    padding: 64px 0px;
  }
}

.swiper {
  height: 474px;
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 40px;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pickup-item {
  display: block;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 40px;
}

.pickup-img {
  aspect-ratio: 310/174;
  width: 100%;
  margin-bottom: 16px;
}
.pickup-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pickup-title {
  font-size: 18px;
  font-family: "Zen Old Mincho";
  font-weight: 600;
  color: #A88657;
  margin-bottom: 8px;
}

.swiper-pagination {
  text-align: center;
  display: inline-block;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #E6E6E6;
  opacity: 1;
  border-radius: 50%;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #A88657;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -10px !important;
}

.plan__tab_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .plan__tab_buttons {
    gap: 16px;
  }
}

.plan__tab-button {
  display: block;
  width: 100%;
  max-width: 280px;
  padding: 8px;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  color: #BBB;
  position: relative;
  border-bottom: 1px solid #BBB;
}
.plan__tab-button.is-active {
  color: #A88657;
  border-bottom: 1px solid #A88657;
}
@media screen and (max-width: 768px) {
  .plan__tab-button {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  .plan__tab-button {
    font-size: clamp(10px, 3.2vw, 14px);
  }
}

.plan__tab-img {
  aspect-ratio: 640/426;
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .plan__tab-img {
    width: 100%;
    max-width: none;
  }
}
.plan__tab-img img {
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.plan__tab-bottom {
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .plan__tab-bottom {
    width: 100%;
    max-width: none;
  }
}

.plan__tab-title {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  font-family: "Zen Old Mincho";
  color: #A88657;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid #A88657;
}

.plan__tab-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.plan__tab-content {
  display: none;
}

.plan__tab-content.is-active {
  display: block;
}

.feature__items {
  max-width: 920px;
  margin: 0 auto;
}

.feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .feature__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
  }
}

.feature__item-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .feature__item-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.feature__item-last {
  margin-bottom: 0px;
}

.feature__contents-img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .feature__contents-img {
    width: 100%;
    max-width: none;
    height: 50%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.feature__contents-img img {
  width: 100%;
  height: auto;
  display: block;
}

.feature__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 280px;
  background-color: #fff;
  padding: 24px 16px;
  position: absolute;
  top: 78%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Zen Old Mincho";
}
@media screen and (max-width: 768px) {
  .feature__content {
    position: static;
    max-width: none;
    height: 50%;
    max-height: 205px;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@media screen and (max-width: 479px) {
  .feature__content {
    max-height: none;
  }
}

.feature__content-reverse {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .feature__content-reverse {
    position: static;
  }
}

.feature__content-title {
  color: #A88657;
  margin-bottom: 17px;
  font-size: 20px;
  text-align: center;
}

.gallery-area {
  max-width: 920px;
  margin: 0 auto;
}

.flex-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .flex-gallery {
    gap: 8px;
  }
}

.gallery-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gallery-row {
    gap: 8px;
  }
}

.row-1 {
  height: 153px;
}
@media screen and (max-width: 768px) {
  .row-1 {
    height: 90px;
  }
}

.row-2 {
  height: 282px;
}
@media screen and (max-width: 768px) {
  .row-2 {
    height: 120px;
  }
}

.row-3 {
  height: 153px;
}
@media screen and (max-width: 768px) {
  .row-3 {
    height: 90px;
  }
}

.gallery-row-img {
  position: relative;
  display: block;
  border: 0 solid transparent;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  will-change: transform;
}
.gallery-row-img::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0 solid rgba(255, 255, 255, 0.6);
  opacity: 0;
  -webkit-transition: border-width 0.4s;
  transition: border-width 0.4s;
}
.gallery-row-img:hover::after, .gallery-row-img:focus::after {
  cursor: pointer;
  opacity: 1;
  border-width: 8px;
}
.gallery-row-img:hover img, .gallery-row-img:focus img {
  -webkit-transform: scale(1.1) rotate(1deg);
          transform: scale(1.1) rotate(1deg);
}

.gallery-row-img img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.7);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
}
.image-modal.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.image-modal .modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.image-modal .modal-imageWrapper {
  position: relative;
  max-width: 580px;
  max-height: 660px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .image-modal .modal-imageWrapper {
    max-width: 300px;
    max-height: 450px;
  }
}
.image-modal .modal-imageWrapper::after {
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 8px solid rgba(255, 255, 255, 0.6);
}
.image-modal .modal-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.image-modal .modal-close {
  position: absolute;
  top: -48px;
  right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  color: #A88657;
  border: none;
  font-size: 24px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.contact__layout {
  width: 100%;
  height: auto;
  background: url("/wp-content/themes/serene-wedding/img/contact-cta.png") no-repeat center center/cover;
  position: relative;
  margin-bottom: 24px;
}
.contact__layout::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.contact__wrapper {
  padding: 76px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "Zen Old Mincho";
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact__wrapper {
    padding: 40px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.contact__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.contact__text_top-en {
  font-size: 24px;
  font-weight: 700;
}

.contact__text_top-ja,
.contact__text_bottom {
  font-weight: 600;
}

.contact__right {
  width: 100%;
  max-width: 440px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
  background-color: #fff;
  padding: 16px 24px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .contact__right {
    width: 100%;
    font-size: 18px;
  }
}
.contact__right:hover {
  opacity: 0.8;
}

.sns__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .sns__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sns__instagram {
  width: 50%;
  height: 266px;
  background: url("/wp-content/themes/serene-wedding/img/instagram-cta.png") no-repeat center center/cover;
  position: relative;
}
.sns__instagram::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.sns__instagram:hover::after {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sns__instagram {
    width: 100%;
    height: 200px;
  }
}

.sns__instagram-contents,
.sns__facebook-contents {
  width: 100%;
  height: 100%;
}

.sns__instagram-link,
.sns__facebook-link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 24px;
  color: #fff;
  font-family: "Zen Old Mincho";
  position: relative;
  z-index: 1;
}

.sns__instagram-img {
  width: 40px;
  height: 40px;
}
.sns__instagram-img img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.sns__facebook {
  width: 50%;
  height: 266px;
  background: url("/wp-content/themes/serene-wedding/img/facebook-cta.png") no-repeat center center/cover;
  position: relative;
}
.sns__facebook::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.sns__facebook:hover::after {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sns__facebook {
    width: 100%;
    height: 200px;
  }
}

.sns__facebook-img {
  width: 34px;
  height: 34px;
}
.sns__facebook-img img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

/*-------------------------------------------
Footer
-------------------------------------------*/
/*除算用にmathモジュールをインポート*/
.footer {
  width: 100vw;
  height: auto;
  padding: 40px 80px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }
}

.footer__wrapper {
  width: 100%;
  padding-left: 200px;
}
@media screen and (max-width: 768px) {
  .footer__wrapper {
    padding-left: 0px;
  }
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 24px;
  margin: 0 auto;
  font-family: "Zen Old Mincho";
  font-weight: 700;
  border-bottom: 1px solid #BBB;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__logo {
  font-size: 24px;
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    margin-bottom: 24px;
    margin-right: 0px;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav {
    width: 100%;
    font-size: 14px;
  }
}

.footer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .footer__lists {
    gap: 14px;
  }
}

.footer__list {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 1;
}
.footer__list:hover {
  opacity: 0.6;
}

.footer__bottom {
  text-align: center;
}

.copyright {
  padding-top: 24px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 12px;
  }
}