html {
  scroll-behavior: smooth;
}

section {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: normal;
}

.app-container {
  margin-top: 44px;
  padding-top: 0;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  /* 下に50pxずらして配置 */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
  /* 元の位置に戻す */
}

@media only print, screen and (min-width: 751px) {
  #header {
    width: calc(100% - 40px);
    background: #252a32;
    margin: 0;
    padding: 0px;
  }

  /* header {
      background: none;
      position: absolute;
      z-index: 10;
  } */

  .app-container {
    padding-top: 44px;
  }

}

.main-visual {
  background: #252a32;
  padding: 0 0 100px 0;
}

.main-visual__inner {
  position: relative;
  margin: 0 50px;
}

.video-bg {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 45px;
}

/* 黒いオーバーレイ */
.overlay {
  position: absolute;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 45px;
  margin: 0 auto;

  ul.la-sort {
    position: absolute;
    right: 32px;
    top: 16px;
    font-size: 14px;

    li {
      display: inline-flex;
      transition: 0.6s;

      &::after {
        content: '/';
        color: #fff;
        margin-left: 4px;
      }

      &:nth-child(4) {
        &::after {
          content: none;
        }
      }

      a {
        color: #fff;
      }

      &:hover {
        opacity: 0.6;
        color: #fff;
      }
    }

    .arrow {
      position: relative;
      display: inline-block;
      width: 40px;
      height: 1px;
      margin-left: 5px;
      border-radius: 9999px;
      background-color: #fff;
    }

    .arrow::before {
      content: '';
      position: absolute;
      top: calc(50% - 1px);
      right: 0;
      width: 12px;
      height: 1px;
      border-radius: 9999px;
      background-color: #fff;
      transform: rotate(35deg);
      transform-origin: calc(100% - 1px) 50%;
    }
  }
}

@media only print, screen and (max-width: 750px) {
  .overlay {
    ul.la-sort {
      right: 0;
      left: 0;
      text-align: center;
    }
  }
}

/* ロゴ中央配置 */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  aspect-ratio: 16 / 9;

  h1 {
    z-index: 3;
  }
}

.logo-container img {
  max-width: 160px;
  height: auto;
}

@media only print, screen and (max-width: 750px) {
  .main-visual__inner {
    margin: 50px 20px 0;
  }

  .video-bg {
    aspect-ratio: 9 / 16;
  }

  .overlay {
    aspect-ratio: 9 / 16;
  }
}

.bg-navy {
  background: #252a32;
}

.about-cocono {
  background: #252a32;
  height: auto;
  margin: 0 auto;
  max-width: 1200px;
  padding-bottom: 120px;

  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

.about-cocono__logo {
  display: block;
  margin: 0 auto 60px;
  max-width: 390px;
}

.about-cocono__inner {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;

  img {
    max-width: 720px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    z-index: 2;
  }

  .about-cocono__text {
    margin: 70px 0 0 -250px;
    background: hsl(0deg 0% 100% / 95%);
    padding: 100px 70px;
    max-width: 720px;
    width: 100%;
    z-index: 3;
    border-radius: 12px;
    box-sizing: initial;
    text-align: center;

    h2 {
      color: #004471;
      font-family: serif;
      font-size: 2.6rem;
      line-height: 1.8;
      padding: 0 0 30px;
      letter-spacing: 4px;
    }

    p {
      line-height: 2;
      color: #333;
    }
  }
}

@media only print, screen and (max-width: 750px) {
  .about-cocono__text p {
    text-align: left;
    font-size: 1.4rem;
  }

  .main-visual {
    padding: 0px 0 50px 0;
    margin-bottom: -1px;
    margin-top: -2rem;
  }

  .logo-container {
    aspect-ratio: 9 / 16;

    img {
      max-width: 120px;
    }
  }

  .about-cocono {
    padding: 0 25px 25px 25px;
  }

  .about-cocono__logo {
    margin: 0px auto 50px;
    width: 80%;
  }

  .about-cocono__inner {
    margin: 0 auto;
    flex-wrap: wrap;

    .about-cocono__text {
      margin: -30px 0 0 0;
      padding: 40px 18px;
      z-index: 3;
      width: 83%;

      h2 {
        font-size: 1.76rem;
        padding: 0 0 12px;
      }
    }
  }
}

.tabs {
  margin: auto;
  position: relative;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.top {
  padding: 120px 0;
}

.bottom {
  padding: 50px 0 120px 0;
}

.tab-buttons button {
  padding: 6px 45px;
  cursor: pointer;
  border: 2px solid #252a32;
  background-color: #fff;
  transition: background-color 0.3s;
  border-radius: 50px;
  font: initial;
  font-weight: bold;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 0.82em;
  transition: all 0.3s ease;
  color: #252a32;
  height: 35.5px;

  &:lang(ko),
  &:lang(zh-cmn-Hans),
  &:lang(zh-cmn-Hant) {
    font-size: 1em;
  }

  &:lang(zh-cmn-Hans),
  &:lang(zh-cmn-Hant) {
    line-height: 20px;
  }

  &:lang(ko){
    line-height: 21.5px;
  }

  &:hover {
    /* opacity: 0.3; */
    background-color: #252a32;
    color: #fff;
  }
}

.tab-buttons button.active {
  background-color: #252a32;
  color: white;
  border-color: #252a32;
}

.tab-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, height 0.4s ease;
}

.tab-content.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
}

@media (max-width: 750px) {
  .top {
    padding: 50px 0 60px;
  }

  .bottom {
    padding: 30px 0 60px 0;
  }

  .tab-buttons {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .tab-buttons button {
    width: 38%;
    text-align: center;
  }
}

.floor-title {
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  text-align: center;

  img {
    text-align: center;
    max-width: 43px;
    width: 100%;
    height: auto;
  }

  h2 {
    font-size: 2.6rem;
    line-height: 1.2;
    color: #252a32;
    font-family: serif;
    letter-spacing: 12px;
    margin: 10px 0 60px;

    span {
      font-size: 1.28rem;
      font-family: 'Noto Sans Japanese', sans-serif;
    }
  }
}

.floor-map {
  display: flex;
  width: 1440px;
  margin: 0 auto 11.2rem;

  .floor-map__img {
    position: relative;
    width: 50%;
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* または contain */
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .bg-image.active {
    opacity: 1;
  }

  .floor-map__img--3f {
    background-image: url(/assets/frontend/img/special/coconosusukino/3f/3f-img-01.jpg) no-repeat center center;
  }

  .floor-map__img--1f {
    background-image: url(/assets/frontend/img/special/coconosusukino/1f/1f-img-01.jpg) !important;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .floor-map__img--b1f {
    background-image: url(/assets/frontend/img/special/coconosusukino/b1f/b1f-img-01.jpg) no-repeat center center;
  }

  .floor-map__info {
    width: 50%;
    background-color: #fafafa;
    position: relative;
    display: inline-block;

    img {
      width: 720px;
    }
  }
}

.floor-map .icon-arrow-right-small:before {
  content: '\e904';
  color: #252a32;
  font-family: 'Noto Sans JP', 'Noto Sans Japanese', 'icomoon' !important;
}

@media (max-width: 750px) {
  .floor-title img {
    max-width: 35px;
  }

  .floor-title h2 {
    font-size: 2rem;
    padding: 0 20px;
    margin-bottom: 30px;
    line-height: 1.6;

    span {
      font-size: 1.4rem;
    }
  }

  .floor-map {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 8rem;
    width: 100%;

    .floor-map__img {
      width: 100%;
      height: 26vh;
      background-color: #fff;
      margin-bottom: 4rem;
    }

    a {
      border: solid 1px #252a32;
      color: #252a32;
      padding: 15px 25px;

      &:hover {
        opacity: 0.6;
      }
    }
  }
}

.floor-list {
  background: #f2f2f2;
  padding: 95px 0 20px 0;

  .floor-list__about {
    padding: 0 0 50px;
    max-width: 1150px;
    margin: 0 auto;

    h3 {
      color: #004471;
      font-family: serif;
      font-size: 2.6rem;
      line-height: 1.8;
      padding: 0 0 30px;
      text-align: center !important;
      letter-spacing: 4px;
    }

    p {
      line-height: 2;
      color: #333;
      text-align: center;
    }
  }

  .floor-list__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    .floor-list__item {
      width: 45%;
      margin-bottom: 35px;
      background: #fff;
      border-radius: 12px;
      padding: 30px 25px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: stretch;
      box-sizing: initial;

      p {
        line-height: 1.6;
        color: #252a32;
        font-weight: bold;

        span {
          font-weight: normal;
          font-size: 1.28rem;
          margin-top: 0.5rem;
          display: block;
        }
      }
    }
  }
}

@media (max-width: 750px) {
  .floor-list {
    padding: 40px 10px 0;

    .floor-list__about {
      padding: 0 0 30px;

      h3 {
        font-size: 1.76rem;
        padding: 0 0 12px;
      }

      p {
        text-align: left;
        font-size: 14px;
      }
    }

    .floor-list__inner {
      /* padding: 10px; */
      justify-content: center;

      .floor-list__item {
        width: 97%;
        padding: 20px 18px;
        margin-bottom: 20px;

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

.shop-name {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-grow: 1;
  gap: 10px;

  img {
    max-height: 55px;
    width: auto;
  }

  h4 {
    font-family: 'Noto Sans Japanese', sans-serif;
    line-height: 1.4;
    color: #004471;
    font-weight: bold;
    font-size: 2rem;

    span {
      font-size: 1.6rem;
      color: #999;
    }
  }
}

.shop-img {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 20px;

  img {
    border-radius: 5px;
    width: 46vw;
    max-width: 344px;
  }

  .shop-img__info {
    display: flex;
    flex-direction: column;

    img {
      margin-bottom: 5px;
      width: 100%;
    }

    dl {
      font-size: 1.2rem;
      color: #333;

      dd {
        margin-bottom: 5px;
        padding: 0 0 0 21px;
        line-height: 1.8;

        &:nth-child(1) {
          background: url(/assets/frontend/img/special/coconosusukino/icon-phone.svg) left 1px no-repeat;
        }

        &:nth-child(2) {
          background: url(/assets/frontend/img/special/coconosusukino/icon-money.svg?0512) left 1px no-repeat;
          display: flex;

          .lun::before {
            content: '';
            background-image: url(/assets/frontend/img/special/coconosusukino/icon-sun.svg?0513);
            background-repeat: no-repeat;
            display: inline-block;
            width: 10px;
            height: 10px;
            margin-right: 3px;
          }

          .din::before {
            content: '';
            background-image: url(/assets/frontend/img/special/coconosusukino/icon-night.svg?05);
            background-repeat: no-repeat;
            display: inline-block;
            width: 10px;
            height: 10px;
            margin-right: 3px;
            margin-left: 5px;
          }
        }

        &:nth-child(3) {
          background: url(/assets/frontend/img/special/coconosusukino/icon-chair.svg) left 1px no-repeat;
          padding: 0 0 0 21px;
        }

        &:nth-child(4) {
          background: url(/assets/frontend/img/special/coconosusukino/icon-time.svg) left 1px no-repeat;
          padding: 0 0 0 21px;
          margin-bottom: 0;
        }
      }

      dd.column {
        flex-direction: column;

        .din::before {
          margin-left: 0px;
        }
      }
    }
  }
}

@media (max-width: 750px) {
  .shop-img {
    flex-direction: column;
    margin-bottom: 0;
    gap: 0;

    img {
      width: 100%;
      max-width: 100%;
    }

    .shop-img__info {
      flex-direction: row;
      gap: 15px;
      margin: 20px 0;

      dl {
        dd {
          font-weight: normal;

          /* &:nth-child(2) {
                      flex-direction: column;

                      .din::before {
                          margin-left: 0;
                      }
                  } */
        }
      }

      img {
        width: 14.7rem;
        margin-bottom: 0;
      }
    }
  }
}

@media (max-width: 480px) {
  .shop-img {
    img {
      width: 100%;
      max-height: 25vh;
    }
  }
}

.--4col {
  .floor-list__inner {
    gap: 8px;
    justify-content: flex-start;
    max-width: 1220px;

    .floor-list__item {
      width: 22%;
      padding: 25px 15px;

      .shop-name {
        h4 {
          line-height: 1.2;
          font-size: 1.8rem;

          span {
            margin-top: 0.5rem;
            display: block;
            font-size: 1.4rem;
          }
        }
      }
    }
  }

  .shop-img {
    flex-direction: column;
    margin-bottom: 0;

    img {
      width: 100%;
    }
  }
}

@media (max-width: 750px) {
  .--4col {
    .floor-list__inner {
      justify-content: center;
      padding: 0 0 20px;

      .floor-list__item {
        width: 40%;
        margin-bottom: 5px;
        padding: 20px 14px;

        .shop-name {
          flex-direction: column-reverse;
          justify-content: flex-end;
          gap: 12px;

          img {
            margin: 0 auto;
          }
        }
      }
    }

    .shop-img {
      .shop-img__info {
        dl {
          dd {
            &:nth-child(2) {
              flex-direction: column;

              .din::before {
                margin-left: 0;
              }
            }

            a[href^='tel:'] {
              pointer-events: none;
              text-decoration: none;
              color: #333;
            }
          }

          dd.noncolumn {
            flex-direction: row;

            &:nth-child(2) {
              ::before {
                margin-left: 5px;
              }
            }
          }
        }
      }
    }

    .shop-img {
      /* flex-grow: 1; */

      img {
        margin-bottom: 0;
      }

      .shop-img__info {
        margin: 10px 0 0 0;
      }
    }
  }
}

/*予約カレンダー*/
.box_reserve {
  clear: both;
  background-color: #252a32;
  padding: 10px;
  margin: 15px 0 0;
}

.reserve_ttl {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3px;
}

.reserve_otherday_button a {
  background: #fff;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 12px;
  color: #252a32;
}

.reserve_otherday_button a:first-child {
  display: none;
}

.box_reserve .ttl_cld {
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin: 0 0 7px;
}

.box_reserve .reserve_week {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}

.box_reserve .reserve_week .item_cld {
  background-color: #fff;
  width: calc((94vw - 26px) / 7);
  margin: 0 1px 0 0;
  height: 75px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.reserve_week li:first-child {
  border-radius: 4px 0 0 4px;
}

.reserve_week li:last-child {
  border-radius: 0 4px 4px 0;
}

.box_reserve .reserve_week .item_cld:last-child {
  margin: 0;
}

.box_reserve .reserve_week .item_cld dt {
  margin: 0 0 7px;
}

.box_reserve .reserve_week .item_cld dd {
  font-size: 14px;
}

.box_reserve .reserve_week .item_cld .reserve_check,
.box_reserve .reserve_week .item_cld .icon-circle,
.box_reserve .reserve_week .item_cld .icon-triangle {
  color: #e26762;
}

.box_reserve .reserve_week .item_cld .icon-cross {
  color: #8f8f8f;
}

.reserve_week .saturday dt {
  color: #4f82b1;
}

.reserve_week .sunday dt {
  color: #c65651;
}

@media only print, screen and (min-width: 751px) {
  .box_reserve {
    padding: 15px;
    margin: 25px auto 0;
  }

  .box_reserve .ttl_cld {
    font-size: 14px;
    margin: 0 0 10px;
  }

  .box_reserve .reserve_week {
    width: 100%;
    font-size: 13px;
  }

  .box_reserve .reserve_week .item_cld {
    width: calc((100% - 6px) / 7);
    height: 70px;
  }

  .box_reserve .reserve_week .item_cld dt {
    margin: 0 0 5px;
  }
}

.more-cocono {
  background: url(/assets/frontend/img/special/coconosusukino/more-cocono-bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 120px 50px;

  .more-cocono__inner {
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    text-align: center;

    img.more-cocono__logo {
      margin-bottom: 35px;
      max-width: 158px;
      height: auto;
    }

    h3 {
      font-size: 2.6rem;
      color: #fff;
      font-family: serif;
      line-height: 1.5;
      letter-spacing: 8px;
      font-weight: normal;
      /* margin-bottom: 35px; */

      span a {
        font-size: 1.4rem;
        font-family: 'Noto Sans Japanese', sans-serif;
        color: #fff;
        transition: 0.5s;
        word-wrap: break-word;

        &:hover {
          text-decoration: underline;
        }
      }
    }

    .official-sns-item {
      background-color: #fff;
    }
  }
}

@media (max-width: 750px) {
  .more-cocono {
    padding: 80px 30px;

    .more-cocono__inner {
      h3 {
        font-size: 2.08rem;
        /* margin-bottom: 40px; */
        line-height: 1.5;

        span a {
          font-size: 1.6rem;
          line-height: 1.5;
          padding-top: 1rem;
          display: block;
          word-wrap: break-word;
        }
      }
    }
  }
}

.popup {
  display: none;
  position: absolute;
  background-color: #fff;
  padding: 10px;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  pointer-events: none;
  width: 30%;
  font-size: 12px;
  color: #333;
  border-radius: 12px;
  text-align: center;
  z-index: 1000;
  transition: all 0.7s ease-in-out;

  /* ::before {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border-top: 15px solid #fff;
      border-right: 15px solid transparent;
      border-left: 15px solid transparent;
  } */
}

.popup img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 5px;
}

.map-container {
  position: relative;
  transition: all 0.7s ease-in-out;

  .area-hovered .popup {
    display: block;
  }
}

.mb00 {
  margin-bottom: 0 !important;
}

body {
  position: relative;
  /* 擬似要素の基準位置にするため */
  background-color: #fff;
  /* 下半分の背景色 */
  margin: 0;
  height: 100vh;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #252a32;
  /* 上半分の背景色 */
  z-index: -1;
  /* bodyのコンテンツより後ろに表示 */
}

contents {
  background: #fff;
}

footer nav > .relation li a:after {
  position: absolute;
  top: 30px;
  top: calc(50% - 7px);
  font-family: 'Noto Sans JP', 'Noto Sans Japanese', 'icomoon' !important;
}

@media (min-width: 769px) {
  #header {
    height: 80px;
    background-color: #252a32;

    .inner-right {
      background: #252a32 !important;
      background-color: #252A32!;
    }
  }

  .sp_box {
    display: none;
  }
}

@media (max-width: 768px) {
  #header {
    height: 55px;
    background-color: #252a32;
  }

  .pc_box {
    display: none !important;
  }
}

.official-sns-wrapper {
  margin: 20px;
  padding: 20px 10px;
  border-radius: 8px;
}
.official-sns-wrapper .text_m {
  text-align: center;
  font-size: 14px;
  color: #fff;
  line-height: 132%;
}
.official-sns-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.official-sns-item {
  margin-top: 10px;
  width: 44px;
  height: 44px;
  background-color: #efefef;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.official-sns-item + .official-sns-item {
  margin-left: 10px;
}
.official-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.official-sns-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.fa-arrow:before {
  content: '\e315';
  vertical-align: middle;
  font-size: 2.5rem;
  font-weight: 300;
}

.modal-area {
  display: none;
}
