@charset "UTF-8";
html,
body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width: 1100px) {
  html,
  body {
    overflow: visible;
  }
}

.contents-nav {
  margin-top: 0;
}

.global-footer {
  background-color: #fff;
}

#summer2025 {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: url(../img/bg_top_pc.webp) center/cover no-repeat;
  background-attachment: fixed;
}
#summer2025 a {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#summer2025 a:hover {
  opacity: 0.7;
}
#summer2025 .ff_serif {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
#summer2025 .ff_mincho {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}
#summer2025 .ff_cormorant {
  font-family: "Cormorant", serif;
  font-weight: 400;
  font-style: normal;
}
#summer2025 .ff_cinzel {
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-style: normal;
}
#summer2025 .ff_mukta {
  font-family: "Mukta Malar", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#summer2025 .ff_bodoni {
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-style: normal;
}
#summer2025 .ff_zkg {
  font-family: "Zen Kaku Gothic New", serif;
  font-style: normal;
}
#summer2025 video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
#summer2025 img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
#summer2025 .col_bg_fixed {
  display: none;
}

/*--- フッター固定ナビ ---*/
.footer_nav_wrap {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5019607843);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 1000;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
.footer_nav_wrap .footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 0;
}
.footer_nav_wrap .footer_nav_list {
  width: 25%;
}
.footer_nav_wrap .footer_nav_list a {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.2;
  height: 3rem;
  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;
}
.footer_nav_wrap .footer_nav_list a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer_nav_wrap .footer_nav_list:not(:last-child) a {
  border-right: dotted 1px #dcdcdc;
}
.footer_nav_wrap.is_show {
  display: block;
}

/*--- フェードインアニメーション ---*/
/* ノーマルフェード */
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.75s;
  transition: opacity 0.75s;
}

/* 下からフェードイン */
.fade_up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.75s, -webkit-transform 0.75s;
  transition: opacity 0.75s, -webkit-transform 0.75s;
  transition: opacity 0.75s, transform 0.75s;
  transition: opacity 0.75s, transform 0.75s, -webkit-transform 0.75s;
}

/* 左からフェードイン */
.fade_left {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity 1.35s, -webkit-transform 1.35s;
  transition: opacity 1.35s, -webkit-transform 1.35s;
  transition: opacity 1.35s, transform 1.35s;
  transition: opacity 1.35s, transform 1.35s, -webkit-transform 1.35s;
}

/* 右からフェードイン */
.fade_right {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: opacity 1.35s, -webkit-transform 1.35s;
  transition: opacity 1.35s, -webkit-transform 1.35s;
  transition: opacity 1.35s, transform 1.35s;
  transition: opacity 1.35s, transform 1.35s, -webkit-transform 1.35s;
}

/* 拡大 */
.scale {
  opacity: 0;
  -webkit-transition: opacity 1.35s;
  transition: opacity 1.35s;
}

@-webkit-keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
}

@keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
}
@-webkit-keyframes scale {
  0% {
    opacity: 0;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale {
  0% {
    opacity: 0;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.rotation {
  opacity: 0;
}

/* アニメーション完了 */
.js_anime.inview {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.rotation.inview {
  opacity: 1;
  -webkit-animation: rotate 0.5s linear;
          animation: rotate 0.5s linear;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.scale.inview {
  opacity: 1;
  -webkit-animation: scale 1s linear;
          animation: scale 1s linear;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/* 同階層の要素をタイミングをずらしてフェードイン */
.fade_delay.inview {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.fade_delay2.inview {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

/*--- 共通スタイル ---*/
.contents_wrap {
  background-color: #F8F8F8;
}

.mv_box {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}
.mv_box::before, .mv_box::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.mv_box::before {
  background: url(../img/logo_mv.svg) center/contain no-repeat;
  top: 28px;
  left: 17px;
  max-width: 101px;
  max-height: 42px;
}
.mv_box::after {
  background: url(../img/mv_txt.svg) center/contain no-repeat;
  top: 112px;
  left: 36px;
  max-width: 99px;
  max-height: 299px;
}
.mv_box .mv_image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.mv_box .mv_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0); /* 初期状態：上端から見えない */
  -webkit-transition: -webkit-clip-path 0.5s ease-in-out;
  transition: -webkit-clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out, -webkit-clip-path 0.5s ease-in-out;
}
.mv_box .mv_image img.active {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.mv_box .mv_image img.fade-out {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
.mv_box .mv_image.img_top {
  max-width: 65%;
  width: 100%;
  max-height: 354px;
  top: 20px;
  right: 17px;
}
.mv_box .mv_image.img_left {
  max-width: 44%;
  width: 100%;
  max-height: 15%;
  bottom: 16%;
  left: 32px;
}
.mv_box .mv_image.img_right {
  max-width: 24%;
  width: 100%;
  max-height: 21%;
  bottom: 4%;
  right: 50px;
}

.section .sec_inner {
  padding: 0 25px;
  max-width: 1000px;
  margin: 0 auto;
}
.section.look_section {
  margin-bottom: 78px;
}

/*--- INDEX ---*/
.index_wrap {
  margin-bottom: 3.4rem;
}
.index_wrap .index_head {
  margin-left: 20px;
  padding-left: 20px;
  font-size: 14px;
  margin-bottom: 12px;
  position: relative;
}
.index_wrap .index_head::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #000;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.index_wrap .index_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.index_wrap .index_list li a {
  width: 100%;
  position: relative;
}
.index_wrap .index_list li a::after {
  content: "";
  background: url(../img/arrow_index.svg) center/contain no-repeat;
  display: block;
  width: 23px;
  height: 23px;
  position: absolute;
  bottom: 8px;
  right: 8px;
}
.index_wrap .index_list li a img {
  width: 100%;
}

.lead_txt {
  padding-bottom: 66px;
  position: relative;
}
.lead_txt::after {
  content: "";
  display: block;
  background: url(../img/arrow_lead.svg) center/contain no-repeat;
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: updown 1.5s ease-in-out infinite;
          animation: updown 1.5s ease-in-out infinite;
}
.lead_txt p {
  text-align: center;
  font-size: 14px;
}

@-webkit-keyframes updown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
}

@keyframes updown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
}
/*--- 共通メニュー＋注意事項 ---*/
.common {
  padding-bottom: 2.2rem;
}
.common .category_list {
  margin: 0 28px 38px;
}
.common .category_list .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 0;
}
.common .category_list .nav li {
  width: 100%;
}
.common .category_list .nav li a {
  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: 1rem;
  height: 57px;
  font-size: 15px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #000;
  position: relative;
}
.common .category_list .nav li a::before, .common .category_list .nav li a::after {
  content: "";
  position: absolute;
}
.common .category_list .nav li a::before {
  background: url(../img/icon_common_nav_think.svg) center/contain no-repeat;
  width: 79px;
  height: 40px;
  top: -20px;
  left: -22px;
}
.common .category_list .nav li a::after {
  background: url(../img/icon_common_nav_arrow.svg) center/contain no-repeat;
  width: 29px;
  height: 45px;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: translate 0.1s linear;
  transition: translate 0.1s linear;
}
.common .category_list .nav li a:hover::after {
  translate: 4px 0;
}

.caution_txt_list li {
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.8;
}
.caution_txt_list li::before {
  content: "※";
  margin-right: 2px;
}

/*--- アイテム列 ---*/
.item_inner_wrap {
  margin-top: 4rem;
}
.item_inner_wrap .shop_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  position: relative;
  z-index: 2;
}
.item_inner_wrap .shop_head .shop_num {
  font-size: 4.6rem;
  line-height: 1;
}
.item_inner_wrap .shop_head .shop_num::before {
  content: "No.";
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  font-family: "Mukta Malar", sans-serif;
  font-weight: 400;
}
.item_inner_wrap .item_photo_box {
  margin-top: -2rem;
}
.item_inner_wrap .item_photo_box .slider_wrap {
  position: relative;
}
.item_inner_wrap .item_photo_box .slider_wrap .lead_txt {
  position: absolute;
}
.item_inner_wrap .item_photo_box .look_slider {
  width: 100%;
  position: relative;
  margin-left: auto;
  padding-bottom: 48px;
}
.item_inner_wrap .item_photo_box .look_slider::before {
  content: "";
  width: 90%;
  height: 82%;
  border: 2px solid #086A17;
  position: absolute;
  top: calc(50% - 24px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}
.item_inner_wrap .item_photo_box .look_slider .look_txt {
  position: absolute;
  max-width: 46px;
  top: 4%;
  right: 4.9%;
  z-index: 2;
}
.item_inner_wrap .item_photo_box .look_slider .look_txt img {
  width: 100%;
}
.item_inner_wrap .item_photo_box .look_slider .look_txt.l_1 {
  max-width: 23px;
}
.item_inner_wrap .item_photo_box .look_slider .swiper-wrapper {
  height: 100%;
}
.item_inner_wrap .item_photo_box .look_slider .swiper-slide {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  cursor: pointer;
  z-index: 3;
}
.item_inner_wrap .item_photo_box .look_slider .swiper-slide:hover {
  opacity: 0.7;
}
.item_inner_wrap .item_photo_box .look_slider .swiper-slide::before {
  content: "商品情報はこちら";
  display: inline-block;
  background: url(../img/icon_plus.svg) rgba(0, 0, 0, 0.3) right 10px center/auto no-repeat;
  padding: 2px 28px 2px 10px;
  border-radius: 3rem;
  color: #fff;
  font-size: 11px;
  position: absolute;
  bottom: 30px;
  left: 10px;
  z-index: 1;
  letter-spacing: 0.06em;
}
.item_inner_wrap .item_photo_box .look_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item_inner_wrap .item_photo_box .look_slider .swiper-pagination {
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 2px;
  position: relative;
}
.item_inner_wrap .item_photo_box .look_slider .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.5);
  width: 6px;
  height: 6px;
  vertical-align: top;
  margin: -2px 4px 0;
}
.item_inner_wrap .item_photo_box .look_slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000000;
}
.item_inner_wrap .item_photo_box .look_slider .swiper-button-next {
  bottom: 13px;
  top: auto;
  right: auto;
  left: 100%;
}
.item_inner_wrap .item_photo_box .look_slider .swiper-button-next::after {
  content: "";
}
.item_inner_wrap .item_description {
  margin-bottom: 2.4rem;
  line-height: 1.83;
}
.item_inner_wrap .movie_box {
  margin: 2.5rem auto;
  text-align: center;
}
.item_inner_wrap .movie_box video {
  width: 80%;
  max-width: 260px;
}
.item_inner_wrap:nth-child(2) .look_slider::before, .item_inner_wrap:nth-child(5) .look_slider::before, .item_inner_wrap:nth-child(8) .look_slider::before {
  border: 2px solid #213380;
}
.item_inner_wrap:nth-child(3) .look_slider::before, .item_inner_wrap:nth-child(6) .look_slider::before, .item_inner_wrap:nth-child(9) .look_slider::before {
  border: 2px solid #000000;
}

.shop_info {
  margin-top: 1.6rem;
  padding-bottom: 8px;
}
.shop_info .shop {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.64;
  margin-bottom: 10px;
}
.shop_info .shop a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.shop_info .shop small {
  font-family: "Noto Sans JP", serif;
  font-size: 1.2rem;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  line-height: 1;
}
.shop_info .shop.nolink a {
  pointer-events: none;
}
.shop_info .shop span {
  font-family: "Noto Sans JP", serif;
  font-size: 12px;
  padding-left: 1em;
}
.shop_info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #EAEAEA;
  padding: 7px 0 7px 17px;
  border-radius: 100vmax;
  max-width: 200px;
}
.shop_info ul li {
  line-height: 1.2;
  margin-right: 16px;
}
.shop_info ul li + li::before {
  content: "｜";
  margin-right: 16px;
}

/*--- スライド＋モーダル ---*/
.js_modal_open:hover {
  opacity: 1;
}

.modal {
  display: none;
  width: 100%;
  height: calc(100vh - 65px);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

.modal_bg {
  background: rgba(111, 111, 111, 0.85);
  width: 100%;
  height: 100vh;
  position: absolute;
}

.modal_content {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  overflow-x: auto;
}
@media screen and (min-width: 1100px) {
  .modal_content {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: 40rem;
  }
}
.modal_content .modal_content_inner {
  background-color: #383838;
  padding: 64px 45px 120px;
  height: calc(100vh - 65px);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (min-width: 1100px) {
  .modal_content .modal_content_inner {
    height: 670px;
    max-height: 100%;
  }
}
.modal_content .modal_content_inner::-webkit-scrollbar {
  display: none;
}
.modal_content .js_modal_close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 100px;
  height: 80px;
}
.modal_content .js_modal_close::before, .modal_content .js_modal_close::after {
  content: "";
  width: 1.6rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.modal_content .js_modal_close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal_content .js_modal_close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.modal_content .modal_scroll {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 65vh;
}
@media screen and (min-width: 1100px) {
  .modal_content .modal_scroll {
    height: 500px;
    max-height: 100%;
  }
}
.modal_content .modal_scroll::-webkit-scrollbar {
  display: none;
}
.modal_content .img {
  width: 100%;
  max-width: 286px;
  margin: 0 auto 12px;
}
.modal_content .item_detail {
  color: #fff;
}
.modal_content .item_detail .item_category {
  font-size: 16px;
  font-weight: 600;
  padding-left: 15px;
  position: relative;
}
.modal_content .item_detail .item_category::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal_content .item_detail .item_name {
  line-height: 1.2;
  margin-bottom: 12px;
}
.modal_content .item_detail .item_price {
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}
.modal_content .item_detail .item_price small {
  font-size: 0.7em;
}
.modal_content .item_detail .item_indent {
  line-height: 1.2;
  text-indent: -1em;
  padding-left: 1em;
}
.modal_content .swiper-pagination {
  top: 320px;
  bottom: auto;
}
.modal_content .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 4px !important;
  background: #000 !important;
  opacity: 0.15 !important;
  border-radius: 0 !important;
}
.modal_content .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
}
.modal_content .swiper-button-prev.first {
  left: 55px;
}
.modal_content .swiper-button-next.first {
  right: 55px;
}
.modal_content .swiper-button-prev.first,
.modal_content .swiper-button-next.first {
  border: none;
  outline: none;
  color: inherit;
  top: 220px;
}
.modal_content .swiper-button-next.first:after,
.modal_content .swiper-button-prev.first:after {
  content: "";
  display: inline-block;
  background: url(../img/arrow_prev.webp) center/contain no-repeat;
  width: 25px;
  height: 42px;
}
.modal_content .swiper-button-next.first:after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.modal_content .swiper-button-prev.secondary {
  left: 20px;
}
.modal_content .swiper-button-next.secondary {
  right: 20px;
}
.modal_content .swiper-button-prev.secondary,
.modal_content .swiper-button-next.secondary {
  border: none;
  outline: none;
  color: inherit;
  top: auto;
  bottom: 50px;
  width: 63px;
  height: 45px;
}
.modal_content .swiper-button-next.secondary:after,
.modal_content .swiper-button-prev.secondary:after {
  display: block;
  content: "";
  width: 63px;
  height: 45px;
}
.modal_content .swiper-button-next.secondary:after {
  background: url(../img/arrow_next_second.webp) center/contain no-repeat;
}
.modal_content .swiper-button-prev.secondary:after {
  background: url(../img/arrow_prev_second.webp) center/contain no-repeat;
}

/*--- THINK SUMMER ---*/
.think_slider {
  margin-bottom: 50px;
}
.think_slider .swiper-slide img {
  width: 100%;
}

/*--- PC 表示 ---*/
#summer2025 {
  /*--- PCスマホ幅で表示 ---*/
  /*--- PC タイトル・メニュー ---*/
}
@media screen and (min-width: 1100px) {
  #summer2025 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #summer2025 .col_bg_fixed {
    display: block;
  }
  #summer2025 .contents_wrap {
    width: 100%;
    max-width: 375px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    overflow: hidden;
    -webkit-box-shadow: 0 3px 25px rgba(0, 0, 0, 0.1);
            box-shadow: 0 3px 25px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  #summer2025 .col_left {
    position: sticky;
    top: 0;
    left: 0;
    width: 55vw;
    height: 100vh;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #summer2025 .col_right {
    position: sticky;
    top: 0;
    right: 0;
    width: calc(100% - (55vw + 375px));
    height: 100vh;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
#summer2025 .lp_header {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 50;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 75%;
}
#summer2025 .lp_header .title {
  max-width: 33rem;
  margin: 0 auto 5rem;
  -webkit-mask-image: url("../img/logo_title.svg");
          mask-image: url("../img/logo_title.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: relative;
  aspect-ratio: 412/203;
}
#summer2025 .lp_header .title::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}
#summer2025 .lp_header .pc_nav .category_list {
  margin: 0;
}
#summer2025 .lp_header .pc_nav .category_list .nav {
  gap: 35px 18px;
}
#summer2025 .lp_header .pc_nav .category_list .nav li {
  width: calc(50% - 9px);
}
#summer2025 .lp_header .pc_nav .category_list .nav li a::before {
  left: -12px;
}
#summer2025 .lp_header .pc_nav .category_list .nav li a.active {
  background-color: #5A5A5A;
  color: #fff;
  border: none;
}
#summer2025 .lp_header .pc_nav .category_list .nav li a.active::after {
  background: url(../img/icon_common_nav_active.svg) center/contain no-repeat;
}

/*--- 下層共通 ---*/
.content_ttl {
  font-size: 32px;
  font-weight: 500 !important;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1;
}