/* .pane-header{
  position: relative;
  z-index: 10000;
} */
@media screen and (max-width: 768px) {
  .pane-header .cmn-header {
    z-index: 10000;
  }
}
@media screen and (min-width: 769px) {
  .view--pc {
    display: block !important;
  }
  .view--sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .view--pc {
    display: none !important;
  }
  .view--sp {
    display: block !important;
  }
}
.pane-main {
  margin-bottom: 0 !important;
}

.wrapper > .pane-main {
  padding-bottom: 0 !important;
}

@-webkit-keyframes wave {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(3px, 0, 0);
            transform: translate3d(3px, 0, 0);
  }
}

@keyframes wave {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(3px, 0, 0);
            transform: translate3d(3px, 0, 0);
  }
}
@-webkit-keyframes scaling {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes scaling {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-down {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.page {
  font-family: "Noto Serif JP", serif;
}
.page p {
  font-size: 16px;
}
.page em {
  vertical-align: baseline;
}
.page .block {
  display: block;
}
.page .hidden {
  display: none;
}
.page .FadeSlideUp {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
}
.page .FadeSlideUp.-active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
}
.page .inner {
  width: 980px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .inner {
    width: 100%;
  }
}
.page .kv {
  height: 500px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page .kv {
    height: 130.2vw;
  }
}
.page .kv_img {
  display: block;
  width: auto !important;
  height: 100% !important;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  aspect-ratio: 3.84;
  min-width: 1920px;
}
@media screen and (max-width: 768px) {
  .page .kv_img {
    min-width: 100%;
  }
}
.page .intro {
  padding-top: 80px;
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .intro {
    padding-top: 13.8vw;
    max-width: 89.6vw;
  }
}
.page .intro_text {
  text-align: center;
  margin-top: 56px;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .page .intro_text {
    font-size: 6.3vw;
    margin-top: 12vw;
  }
}
.page .intro_text em {
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
  font-size: 24px;
  color: #3c6288;
}
@media screen and (max-width: 768px) {
  .page .intro_text em {
    font-size: 4.4vw;
    margin-bottom: 4.9vw;
  }
}
.page .intro_text em::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -2px;
  background-color: #9abfe3;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
@media screen and (max-width: 768px) {
  .page .intro_text em::before {
    height: 0.5vw;
    bottom: -4px;
    left: -3vw;
  }
}
.page .intro_text.-active em::before {
  -webkit-transition: -webkit-transform 0.5s 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.5s 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.5s 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 768px) {
  .page .intro_text.-active em::before {
    -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
  }
}
.page .intro_common {
  position: relative;
  border: 1px solid #3c6288;
  padding: 44px 0;
}
@media screen and (max-width: 768px) {
  .page .intro_common {
    padding: 8.3vw 5.7vw;
  }
}
.page .intro_common_balloon {
  width: 50px;
  height: 26px;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin: auto;
  stroke: #3c6288;
  stroke-width: 1;
  stroke-linecap: round;
}
@media screen and (max-width: 768px) {
  .page .intro_common_balloon {
    width: 7.8vw;
    height: 3.9vw;
  }
}
.page .intro_common_title {
  display: table;
  position: absolute;
  right: 0;
  bottom: calc(100% - 0.5em);
  left: 0;
  padding: 0 40px;
  margin: auto;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #3c6288;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .page .intro_common_title {
    font-size: 4.6vw;
    padding: 0 7.8vw;
  }
}
.page .intro_common_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 26px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 550px;
  gap: 26px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page .intro_common_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.2vw;
    width: unset;
  }
}
.page .intro_common_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  line-height: 1.5;
}
.page .intro_common_item:nth-child(5) {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.page .intro_common_item svg {
  width: 28.8px;
  height: 24px;
  fill: #9abfe3;
  margin-right: 8px;
}
.page .intro_common_item p {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page .intro_common_item p {
    font-size: 3.6vw;
  }
}
.page .intro_common_item em {
  position: relative;
  font-weight: 500;
}
.page .intro_common_item em::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -2px;
  background-color: #9abfe3;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
@media screen and (max-width: 768px) {
  .page .intro_common_item em::before {
    height: 0.3vw;
    bottom: -4px;
  }
}
.page .intro_common_item.-active em::before {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.page .tvcm {
  text-align: center;
  margin: 60px auto 80px;
  max-width: 750px;
  width: 96%;
}
@media screen and (max-width: 768px) {
  .page .tvcm {
    max-width: 89.6vw;
    margin: 10.4vw auto 12.4vw;
    width: 100%;
  }
}
.page .tvcm__wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.page .tvcm__wrap img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 9999;
}
.page .tvcm__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page .point {
  padding-top: 100px;
  margin-bottom: 113px;
}
@media screen and (max-width: 768px) {
  .page .point {
    padding: 0;
    margin-bottom: 11.7vw;
  }
}
.page .point_title {
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page .point_title {
    font-size: 3.6vw;
  }
}
.page .point_title em {
  display: block;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page .point_title em {
    font-size: 5.2vw;
  }
}
.page .point_slider {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .page .point_slider {
    margin-top: 7.8vw;
  }
}
.page .point_text {
  text-align: center;
  font-weight: 500;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .page .point_text {
    font-size: 3.4vw;
    margin-top: 2.6vw;
  }
}
.page .point_img {
  aspect-ratio: 1;
}
.page .point .swiper-slide {
  max-width: 382px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .page .point .swiper-slide {
    max-width: 66.7vw;
    width: 100% !important;
  }
}
.page .point .swiper-slide img {
  max-width: 364px;
  width: 100% !important;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .point .swiper-slide img {
    max-width: 100%;
  }
}
.page .anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 980px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .anchor {
    max-width: 89.6vw;
    gap: 3.5vw;
  }
}
.page .anchor_btn {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .page .anchor_btn {
    width: 43vw;
  }
}
.page .anchor_btn_heading {
  color: #3C6288;
  font-size: 18px;
  margin-bottom: 8px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page .anchor_btn_heading {
    font-size: 3.4vw;
    margin-bottom: 1.8vw;
  }
}
.page .anchor_btn_text {
  display: block;
  border-radius: 15px;
  border: 2px solid #3C6288;
  text-align: center;
  position: relative;
  padding: 30px 40px;
}
@media screen and (max-width: 768px) {
  .page .anchor_btn_text {
    border-radius: 2vw;
    border: 0.5vw solid #3C6288;
    padding: 8.9vw 2.6vw 11.7vw;
  }
}
.page .anchor_btn_text:visited {
  text-decoration: none !important;
}
.page .anchor_btn_text::after {
  content: "";
  background-image: url(/ec/img/usr/pg/c/l-summer-suit/25ss/anchor_arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 24px;
  height: 13px;
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .page .anchor_btn_text::after {
    width: 5.2vw;
    height: 2.9vw;
    bottom: 2.3vw;
  }
}
.page .anchor_btn_text_top {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 6px;
  font-weight: 500;
  color: #3C6288;
}
@media screen and (max-width: 768px) {
  .page .anchor_btn_text_top {
    font-size: 2.9vw;
    margin-bottom: 2.6vw;
  }
}
.page .anchor_btn_text_bottom {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  color: #3C6288;
}
@media screen and (max-width: 768px) {
  .page .anchor_btn_text_bottom {
    font-size: 3.8vw;
    line-height: 2;
  }
}
.page .anchor_btn_text_bottom em {
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page .anchor_btn_text_bottom em {
    font-size: 4.2vw;
    letter-spacing: -0.03em;
  }
}
.page .anchor_btn_text_bottom em::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -2px;
  background-color: #9abfe3;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
@media screen and (max-width: 768px) {
  .page .anchor_btn_text_bottom em::before {
    height: 0.5vw;
    bottom: -4px;
  }
}
.page .anchor_btn_text_bottom.-active em::before {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.page .image-slider-section .circle-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .circle-thumbs {
    gap: 1vw;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.page .image-slider-section .circle-thumbs .circle {
  cursor: pointer;
  border: none;
  outline: 1px solid transparent;
  outline-offset: 4px;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: outline-color 0.1s;
  transition: outline-color 0.1s;
}
.page .image-slider-section .circle-thumbs .circle.active {
  outline-color: #707070;
}
.page .image-slider-section .circle-thumbs .circle img {
  display: block;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .circle-thumbs .circle img {
    width: 19.5vw;
    height: 19.5vw;
  }
}
.page .image-slider-section .slider-text-container {
  max-width: 980px;
  margin: 0 auto 96px;
  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;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .slider-text-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 16.7vw;
  }
}
.page .image-slider-section .slider-text-container .slider {
  width: 43.87%;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .slider-text-container .slider {
    width: 79.2vw;
    margin-bottom: 7.8vw;
  }
}
.page .image-slider-section .slider-text-container .slider .slick-prev, .page .image-slider-section .slider-text-container .slider .slick-next {
  width: 20px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .slider-text-container .slider .slick-prev, .page .image-slider-section .slider-text-container .slider .slick-next {
    width: 3.5vw;
    height: 7vw;
  }
}
.page .image-slider-section .slider-text-container .slider .slick-prev {
  background-image: url("/ec/img/usr/pg/c/l-summer-suit/25ss/slider_prev_arrow.png");
  left: -35px;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .slider-text-container .slider .slick-prev {
    left: -7.2vw;
  }
}
.page .image-slider-section .slider-text-container .slider .slick-next {
  background-image: url("/ec/img/usr/pg/c/l-summer-suit/25ss/slider_next_arrow.png");
  right: -35px;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .slider-text-container .slider .slick-next {
    right: -7.2vw;
  }
}
.page .image-slider-section .slider-text-container .slider .slick-slide img {
  width: 100%;
  display: block;
}
.page .image-slider-section .slider-text-container .slide-texts {
  width: 43.16%;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .slider-text-container .slide-texts {
    width: 79.2vw;
  }
}
.page .image-slider-section .slider-text-container .slide-texts .text-item {
  display: none;
  font-size: 1rem;
  line-height: 1.5;
}
.page .image-slider-section .slider-text-container .slide-texts .text-item_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .slider-text-container .slide-texts .text-item_info {
    margin-bottom: 4.2vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page .image-slider-section .slider-text-container .slide-texts .text-item_info .item--name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .slider-text-container .slide-texts .text-item_info .item--name {
    font-size: 3.8vw;
  }
}
.page .image-slider-section .slider-text-container .slide-texts .text-item_info .item--price {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .slider-text-container .slide-texts .text-item_info .item--price {
    font-size: 3.8vw;
  }
}
.page .image-slider-section .slider-text-container .slide-texts .text-item_info .item--btn {
  width: 87px;
  margin-left: 28px;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .slider-text-container .slide-texts .text-item_info .item--btn {
    width: 22.5vw;
    margin-left: 3.5vw;
  }
}
.page .image-slider-section .slider-text-container .slide-texts .text-item_info.border {
  border-bottom: 1px solid #9ABFE3;
  margin-bottom: 0;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .slider-text-container .slide-texts .text-item_info.border {
    padding-bottom: 4.2vw;
    border-bottom: 0.3vw solid #9ABFE3;
  }
}
.page .image-slider-section .slider-text-container .slide-texts .text-item_detail {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page .image-slider-section .slider-text-container .slide-texts .text-item_detail {
    margin-top: 3.6vw;
    font-size: 3.4vw;
    line-height: 1.62;
  }
}
.page .image-slider-section .slider-text-container .slide-texts .text-item.active {
  display: block;
}
.page .orthodox {
  margin-top: 80px;
  border-bottom: 1px solid #B8B8B8;
}
@media screen and (max-width: 768px) {
  .page .orthodox {
    margin-top: 16.7vw;
  }
}
.page .orthodox_top {
  position: relative;
  display: block;
  max-width: 980px;
  margin: 0 auto 74px;
  padding: 40px 0;
  background-color: #eff6fc;
}
@media screen and (max-width: 768px) {
  .page .orthodox_top {
    margin-bottom: 15.6vw;
    padding: 8.3vw 5.2vw;
  }
}
.page .orthodox_top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 30px 0 30px;
  border-color: #eff6fc transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 768px) {
  .page .orthodox_top::after {
    border-width: 5.9vw 5.9vw 0 5.9vw;
  }
}
.page .orthodox_heading {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page .orthodox_heading {
    font-size: 5.2vw;
    line-height: 1.65;
    margin-bottom: 5.9vw;
  }
}
.page .orthodox_heading em {
  position: relative;
  font-weight: 500;
}
.page .orthodox_heading em::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -2px;
  background-color: #9abfe3;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
@media screen and (max-width: 768px) {
  .page .orthodox_heading em::before {
    height: 0.3vw;
    bottom: -4px;
  }
}
.page .orthodox_heading.-active em::before {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.page .item--area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .item--area {
    display: block;
    max-width: 79.2vw;
    margin-bottom: 15.6vw;
  }
}
.page .item--area .item--sec {
  width: 45.8%;
  margin-bottom: 77px;
}
@media screen and (max-width: 768px) {
  .page .item--area .item--sec {
    width: 100%;
    margin-bottom: 10.4vw;
  }
}
.page .item--area .item--sec_heading {
  font-size: 34px;
  line-height: 1.5;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page .item--area .item--sec_heading {
    font-size: 6.4vw;
    margin-bottom: 5.2vw;
  }
}
.page .item--area .item--sec .item--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page .item--area .item--sec .item--list li {
  width: 44.76%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page .item--area .item--sec .item--list li {
    width: 35.9vw;
  }
}
.page .item--area .item--sec .item--list li img {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page .item--area .item--sec .item--list li img {
    margin-bottom: 2.3vw;
  }
}
.page .item--area .item--sec .item--list li p {
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .page .item--area .item--sec .item--list li p {
    font-size: 3.8vw;
    margin-bottom: 1.3vw;
    text-underline-offset: 2px;
  }
}
.page .relaxation {
  padding: 100px 0;
  margin-bottom: 100px;
  border-bottom: 1px solid #9ABFE3;
}
@media screen and (max-width: 768px) {
  .page .relaxation {
    padding: 16.7vw 0 7.8vw;
    margin-bottom: 15.1vw;
    border-bottom: 0.3vw solid #9ABFE3;
  }
}
.page .relaxation_top {
  position: relative;
  display: block;
  max-width: 980px;
  margin: 0 auto 74px;
  padding: 40px 0;
  background-color: #eff6fc;
}
@media screen and (max-width: 768px) {
  .page .relaxation_top {
    padding: 8.3vw 0;
    margin-bottom: 15.6vw;
  }
}
.page .relaxation_top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 30px 0 30px;
  border-color: #eff6fc transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 768px) {
  .page .relaxation_top::after {
    border-width: 5.9vw 5.9vw 0 5.9vw;
  }
}
.page .relaxation_top .relaxation_deco {
  font-size: 24px;
  color: #3C6288;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page .relaxation_top .relaxation_deco {
    font-size: 4.2vw;
    margin-bottom: 5.2vw;
  }
}
@media screen and (max-width: 768px) {
  .page .relaxation_top .circle-thumbs {
    max-width: 44.3vw;
    margin: 0 auto;
  }
}
.page .relaxation_heading {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page .relaxation_heading {
    font-size: 5.2vw;
    margin-bottom: 5.9vw;
  }
}
.page .relaxation_heading em {
  position: relative;
  font-weight: 500;
}
.page .relaxation_heading em::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -2px;
  background-color: #9abfe3;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
@media screen and (max-width: 768px) {
  .page .relaxation_heading em::before {
    height: 0.8vw;
    bottom: -4px;
  }
}
.page .relaxation_heading.-active em::before {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 768px) {
  .page .relaxation .text-item .item--price {
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .page .relaxation .text-item_info {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
}
@media screen and (max-width: 768px) {
  .page .relaxation .text-item_info_sp {
    width: 53.1vw;
  }
}
.page .relaxation .text-item_info_sp .item--name {
  margin-bottom: 1.3vw;
}
@media screen and (max-width: 768px) {
  .page .relaxation .item--area {
    margin-bottom: 0;
  }
}
.page .relaxation .item--list {
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page .relaxation .item--list img {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page .relaxation .item--list img {
    margin-bottom: 2.3vw;
  }
}
.page .relaxation .item--list .item--name {
  font-size: 16px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .page .relaxation .item--list .item--name {
    font-size: 3.8vw;
    line-height: 1.655;
    margin-bottom: 1.3vw;
  }
}
.page .relaxation .item--list .item--price {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .page .relaxation .item--list .item--price {
    font-size: 3.8vw;
  }
}
.page .recommend {
  text-align: center;
  margin-bottom: 136px;
}
@media screen and (max-width: 768px) {
  .page .recommend {
    margin-bottom: 26vw;
  }
}
.page .recommend_heading {
  font-size: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page .recommend_heading {
    font-size: 5.2vw;
    margin-bottom: 8.7vw;
  }
}
.page .recommend .bnr_area {
  max-width: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .recommend .bnr_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 65.1vw;
    gap: 7.8vw;
  }
}

#scrollButton {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 146px;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 768px) {
  #scrollButton {
    display: none;
    position: fixed;
    top: unset;
    bottom: 50px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1000;
    width: 73vw;
    transition: opacity 0.4s ease;
  }
}

/* ローディングスクリーンを前面にかぶせる
#loading-screen {
  position: fixed;
  left: 0;
  width: 100vw;
  background-color: #E8ECEF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  top: 0;
  height: 100vh;
}

#loading-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;


  transform: scale(1.1);
  animation: scaleIn 5.0s ease-out forwards;
}


@keyframes scaleIn {
  to {
    transform: scale(1);
  }
} */