﻿@charset "UTF-8";

/*//////////////////////////////////////////////////

Title : LP CSS

//////////////////////////////////////////////////*/


/* ========================================================
                   * Custom Properties *
========================================================= */

:root {
  --main-color: #ffe94d;
  --title-color: #d6a825;
}


/* ========================================================
                      * Layout style *
========================================================= */
/*
html {
  font-size: 62.5%;
}*/

main {
  max-width: 100%;
}

footer {
  margin-top: 0;
}

.topic-path {
  margin-right: 0;
  margin-left: 0;
}

#share {
  z-index: 200 !important;
}

#Wrap {
  padding-top: calc(88 * 53rem/750);
}

#header_bottom {
  height: 0;
  z-index: -1;
  visibility: hidden;
}

#header #header_bottom.active {
  height: auto;
  z-index: auto;
  visibility: visible;
}

#header #header_bottom .inner {
  opacity: 0;
  padding: 0;
  transition: all .3s ease;
}

#header #header_bottom.active .inner {
  opacity: 1;
}


/* PC用*/
@media (min-width: 769px) {

  #header #header_bottom.active .inner {
    padding: 1.5rem 0;
  }

  #header #header_bottom.active .inner {
    top: 0;
    animation: hdrfx2 .2s ease 0s 1 forwards;
  }

}

/* SP用*/
@media (max-width: 768px) {

  #header #header_bottom.active .inner {
    top: 0;
    animation: hdrfx3 .2s ease 0s 1 forwards;
    transition: none;
  }

  @keyframes hdrfx3 {
    100% {
      top: calc(0 * (100vw / 428));
    }
  }

  #header #header_bottom.active .inner {
    padding: calc(10 * (100vw / 390)) calc(15 * (100vw / 390));
  }

  #header.scroll #header_bottom.active .inner {
    animation: hdrfx2 .2s ease 0s 1 forwards;
  }

}

.header_search_box .search_cate_list ul li {
  text-align: left;
}

/* ===================
  LP Contents
=================== */

.lp_contents {
  position: relative;
  margin: 0 auto;
  letter-spacing: 0;
  color: #383330;
  font-size: 1.4rem;
  font-family: 'futura-pt', 'Noto Sans JP', sans-serif;
  background: #fcf5c5;
}

#FooterWrap {
  position: relative;
  z-index: 2;
}

.lp_contents *,
.lp_contents *:before,
.lp_contents *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.lp_contents ul,
.lp_contents li {
  list-style: none;
}

.lp_contents a:hover {}

.lp_contents img {
  max-width: 100%;
  /* width: auto; */
}

.lp_contents sup {
  font-size: calc(12 * 53rem/750);
}

.lp_contents a,
.lp_contents a:before,
.lp_contents a:after,
.lp_contents a img {
  transition: opacity .3s ease-in-out,
    color .3s ease-in-out,
    background-color .3s ease-in-out,
    background-image .3s ease-in-out,
    border-color .3s ease-in-out,
    text-shadow .3s ease-in-out,
    text-weight .3s ease-in-out;
}

.lp_contents h1 {
  padding: 0;
}

/* ===================
  　　 General
=================== */

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

.lp_contents .txt_bold {
  font-weight: 500;
}

.section {
  position: relative;
  z-index: 2;
}

/* ===================
  　　　Animation
=================== */


/* -- keyframes -- */

@keyframes opa0 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes opa1 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes opa2 {
  0% {
    opacity: 0;
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes tra1 {
  100% {
    transform: translateX(0);
  }
}

@keyframes tra2 {
  100% {
    transform: translateY(0);
  }
}

.ef {
  opacity: 0;
}

.ef.effect {
  animation: opa1 1.6s cubic-bezier(0.51, 0.21, 0.41, 1) 0s 1 forwards;
}

.ef-top {
  opacity: 0;
  transform: translateY(50px);
}

.ef-top.effect {
  animation: opa1 1.6s cubic-bezier(0.51, 0.21, 0.41, 1) 0s 1 forwards, tra3 1s cubic-bezier(0.51, 0.21, 0.41, 1) 0s 1 forwards;
}

/* ===================
  　Section Common
=================== */

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.inner {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* ===================
     Text Setting
=================== */

.txt_cont {
  text-align: center;
  line-height: 1.7;
}


/* ===================
  Button Setting
=================== */

.btn_wrap {
  text-align: center;
}

/* ===================
  　CONTENTS INNER
=================== */

.lp_contents_inner {
  overflow: hidden;
  width: 100%;
  margin: auto;
  background: #f7f5f4;
}


/* ===================
  　　　INTRO
=================== */

.intro_section {
  background: var(--main-color);
  background-image: url(../../img/202506/intro_bg_star.svg);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 100%;
}

.intro_section .mv_area {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: auto;
}

.intro_section .mv_area::before {
  position: absolute;
  top: calc(56 * 53rem / 750);
  right: calc(102 * 53rem / 750);
  width: calc(195 * 53rem / 750);
  height: calc(195 * 53rem / 750);
  background: url(../../img/202506/mv_ck.svg) no-repeat;
  background-size: 100% 100%;
  content: "";
  z-index: -1;
  animation: spin 30s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ---- COUNT DOWN ---- */
.countdown_area {
  width: calc(650 * 53rem/750);
  height: calc(376 * 53rem/750);
  margin: calc(0 * 53rem/750) auto calc(67 * 53rem/750);
  padding: calc(175 * 53rem/750) 0 0;
  background: url(../../img/202506/countdown_bg_01.svg?250616) no-repeat;
  background-size: 100% 100%;
}

.countdown_area.countdown_before {
  background: url(../../img/202506/countdown_bg_01.svg?250616) no-repeat;
  background-size: 100% 100%;
}

.countdown_area.countdown_after {
  background: url(../../img/202506/countdown_bg_02.svg?250616) no-repeat;
  background-size: 100% 100%;
}

.countdown_set {
  display: flex;
  align-items: center;
  color: #383330;
  width: calc(380 * 53rem / 750);
  margin-left: calc(78 * 53rem / 750);
  gap: calc(9 * 53rem / 750);
}

.countdown_set #days,
.countdown_set #hours,
.countdown_set #minutes,
.countdown_set #seconds {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(250 * 53rem / 750);
  height: calc(80 * 53rem / 750);
  text-align: center;
  font-size: calc(74 * 53rem / 750);
  letter-spacing: 0.02em;
}

.countdown_set #days::after,
.countdown_set #hours::after,
.countdown_set #minutes::after,
.countdown_set #seconds::after {
  position: absolute;
  right: 0;
  left: 0;
  bottom: calc(-40 * 53rem/750);
  text-align: center;
  font-size: calc(24 * 53rem/750);
  letter-spacing: 0.01em;
}

.countdown_set .txt_time {
  padding: 0 1rem 1rem;
  font-size: calc(74 * 53rem/750);
}

.countdown_set #days {
  margin-right: calc(30 * 53rem / 750);
}

.countdown_set #days::after {
  content: "DAYS";
}

.countdown_set #hours::after {
  content: "HOURS";
}

.countdown_set #minutes::after {
  content: "MINUTES";
}

.countdown_set #seconds::after {
  content: "SECONDS";
}

/* ---- BRAND ---- */

.intro_section .pickup_brand {
  width: 100%;
  height: calc(360 * 53rem / 750);
  margin: auto auto calc(10 * 53rem/750);
}

.intro_section .pickup_brand span {
  display: block;
  width: 180%;
  height: calc(80* 53rem/750);
  background-image: url(../../img/202506/intro_brand.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
  border-top: 1px solid #383330;
  border-bottom: 1px solid #383330;
  animation: scrollBackground 26s linear infinite;
  line-height: 0;
}

.intro_section .pickup_brand span img {
  opacity: 0;
}

.pickup_brand_01 {
  transform: rotate(353deg);
  position: relative;
  top: calc(35 * 53rem / 750);
  left: calc(-400 * 53rem / 750);
}

.pickup_brand_02 {
  transform: rotate(6deg);
  position: relative;
  top: calc(157 * 53rem / 750);
  left: calc(-80 * 53rem / 750);
}


/* ---- INTRO EVENT ---- */

.intro_section .intro_event {
  width: calc(650 * 53rem/750);
  margin: auto auto calc(130 * 53rem/750);
}

/* ---- INTRO TXT ---- */

.intro_section .intro_txt {
  position: relative;
  width: calc(680 * 53rem/750);
  margin: auto auto calc(130 * 53rem/750);
}

.intro_section .intro_txt::before {
  transform: translateX(-100%);
  opacity: 0;
  position: absolute;
  top: calc(-53 * 53rem/750);
  left: 0;
  width: calc(136 * 53rem/750);
  height: calc(148 * 53rem/750);
  background: url(../../img/202506/character_06.svg) no-repeat;
  content: "";
}

.intro_section .intro_txt.effect::before {
  animation: slideRight 1s ease-out forwards;
}

@keyframes slideRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.intro_section .intro_txt::after {
  transform: translateX(100%);
  opacity: 0;
  position: absolute;
  bottom: calc(-65 * 53rem / 750);
  right: calc(10 * 53rem / 750);
  width: calc(125 * 53rem/750);
  height: calc(177 * 53rem/750);
  background: url(../../img/202506/character_07.svg) no-repeat;
  content: "";
}

.intro_section .intro_txt.effect::after {
  animation: slideLeft 1s ease-out 0.2s forwards;
}

@keyframes slideLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


/* ===================
  　　　EVENT01
=================== */

.event_section {}

.event01_section {}

.event01_section .ttl_main {
  margin-bottom: calc(20 * 53rem/750);
  padding-top: 0;
}

.event01_section .ttl_main::before {
  position: absolute;
  top: calc(120 * 53rem/750);
  left: calc(90 * 53rem/750);
  width: calc(134 * 53rem/750);
  height: calc(185 * 53rem/750);
  background: url(../../img/202506/character_01.svg) no-repeat;
  animation: yurayura 2s linear infinite;
  content: "";
}

@keyframes yurayura {

  0%,
  100% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);
  }
}

.event01_section .ttl_sub {
  width: calc(585 * 53rem/750);
  margin: auto auto calc(40 * 53rem/750);
}

.event01_section .txt_content {
  margin-bottom: calc(10 * 53rem/750);
  font-size: calc(28 * 53rem/750);
  line-height: 1.6;
  text-align: center;
}

.event01_section .txt_content .txt_kigou {
  margin-left: -0.3em;
  margin-right: 0.4em;
  letter-spacing: -0.5em;
}

.event01_section .img_comingsoon {
  width: calc(342 * 53rem/750);
  margin: auto;
  padding-bottom: calc(90 * 53rem/750);
}

/* ---- limited kit ---- */

.limited_kit_wrap {
  padding-bottom: calc(100 * 53rem/750);
}

.limited_kit_list .slick-track {
  display: flex;
}

.limited_kit_list .item_list__item {
  height: auto;
  margin-top: calc(40 * 53rem/750);
  margin-bottom: calc(40 * 53rem/750);
  padding: 0 calc(25 * 53rem/750);
}

.limited_kit_list .item_list__item>a,
.limited_kit_list .item_list__item_inner {
  display: block;
  height: 100%;
}

.limited_kit_list .item_list__item_inner {
  position: relative;
  padding: calc(50 * 53rem/750);
  border-radius: calc(80 * 53rem/750);
  border: 1px solid #383330;
  background: #fff;
}

.limited_kit_list .item_list__off {
  width: fit-content;
  padding: calc(10 * 53rem/750) calc(30 * 53rem/750);
  background: #fff;
  border: 1px solid #383330;
  border-radius: 50%;
  font-size: calc(28 * 53rem/750);
  font-weight: 600;
  text-align: center;
  line-height: 0.8;
}

.limited_kit_list .item_list__off span {
  display: inline-block;
  font-size: calc(35 * 53rem/750);
}

.limited_kit_list .item_list__brand {
  padding: calc(10 * 53rem/750);
  font-size: calc(28 * 53rem/750);
  background: var(--main-color);
  text-align: center;
}

.limited_kit_list .item_list__img {
  overflow: hidden;
  height: auto;
  margin-bottom: calc(25 * 53rem/750);
  border-radius: calc(20 * 53rem/750);
  line-height: 0;
}

.limited_kit_list .item_list__title {
  margin-bottom: calc(20 * 53rem/750);
  font-size: calc(28 * 53rem/750);
}

.limited_kit_list .item_list__title span {
  font-size: .8em;
}

.limited_kit_list .item_list__title sup {
  font-size: calc(22 * 53rem/750);
}

.limited_kit_list .item_list__title .txt_sm {
  display: inline-block;
  padding-top: calc(10 * 53rem/750);
  font-size: calc(23 * 53rem/750);
  line-height: 1.7;
}

.limited_kit_list .item_list__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.limited_kit_list .item_list__price {
  font-size: calc(28 * 53rem/750);
}

.limited_kit_list .item_list__btn {
  display: flex;
  width: calc(184 * 53rem / 750);
  height: calc(67 * 53rem / 750);
  border-radius: calc(200 * 53rem / 750);
  background: var(--main-color);
  border-bottom: 4px solid #383330;
  font-size: calc(27 * 53rem / 750);
  font-weight: 500;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.02em;
}

.limited_kit_wrap .slick-dots li {
  width: calc(15 * 53rem / 750);
  margin: 0 calc(15 * 53rem / 750);
}

.limited_kit_wrap .slick-dots li button {
  width: calc(15 * 53rem / 750);
  height: calc(15 * 53rem / 750);
  padding: 0;
}

.limited_kit_wrap .slick-dots li button:before {
  opacity: 1;
  width: calc(15 * 53rem / 750);
  height: calc(15 * 53rem / 750);
  margin: 0;
  padding: 0;
  border-radius: 100%;
  background-color: #e2e2e2;
  content: "";
}

.limited_kit_wrap .slick-dots li.slick-active button:before {
  background-color: #808080;
}

.limited_kit_wrap .slick-prev,
.limited_kit_wrap .slick-next {
  opacity: 1;
  z-index: 10;
  width: calc(75 * 53rem / 750);
  height: calc(82.5 * 53rem / 750);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
}

.limited_kit_wrap .slick-prev {
  left: calc(62 * 53rem / 750);
  background-image: url(../../img/202506/icn_arw_prev.svg);
}

.limited_kit_wrap .slick-next {
  right: calc(62 * 53rem / 750);
  background-image: url(../../img/202506/icn_arw_next.svg);
}

.limited_kit_wrap .slick-prev::before,
.limited_kit_wrap .slick-next::before {
  display: none;
}

.limited_kit_wrap .btn_more {
  width: calc(650 * 53rem / 750);
  margin: calc(90 * 53rem / 750) auto 0;
}

/* ---- limited item ---- */

.limited_item_wrap {
  width: calc(700 * 53rem / 750);
  margin: auto;
  padding-top: calc(100 * 53rem/750);
  padding-bottom: calc(100 * 53rem/750);
  border-top: 1px solid #afafaf;
  background: url(../../img/202506/limited_item_bg.svg) no-repeat center calc(70 * 53rem / 750);
  background-size: calc(525 * 53rem / 750);
}

.limited_item_wrap .ttl_section {
  margin-bottom: calc(70 * 53rem / 750);
  color: var(--title-color);
  font-size: calc(44 * 53rem/750);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1;
}

.limited_item_list {
  margin-bottom: calc(70 * 53rem / 750);
}

.limited_item_list ul {
  display: flex;
  gap: calc(100 * 53rem / 750) calc(40 * 53rem / 750);
  flex-wrap: wrap;
  margin: 0 calc(20 * 53rem / 750);
}

.limited_item_list li {
  width: calc(310 * 53rem / 750);
}

.limited_item_list .item_list__img {
  overflow: hidden;
  margin-bottom: calc(30 * 53rem/750);
  border-radius: calc(30 * 53rem/750);
  border: 1px solid #383330;
  line-height: 0;
}

.limited_item_list .item_list__brand {
  padding: calc(10 * 53rem/750);
  background: #383330;
  font-size: calc(28 * 53rem/750);
  text-align: center;
  color: #fff;
}

.limited_item_wrap .btn_more {
  width: calc(650 * 53rem / 750);
  margin: calc(90 * 53rem / 750) auto 0;
}

.limited_item_list .item_list__title {
  margin-bottom: calc(30 * 53rem/750);
  font-size: calc(28 * 53rem/750);
}

.limited_item_list .item_list__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.limited_item_list .item_list__price {
  margin-bottom: calc(50 * 53rem / 750);
  font-size: calc(28 * 53rem/750);
}

.limited_item_list .item_list__btn {
  display: flex;
  width: calc(290 * 53rem / 750);
  height: calc(70 * 53rem / 750);
  border-radius: calc(200 * 53rem / 750);
  background: var(--main-color);
  border-bottom: 4px solid #383330;
  font-size: calc(27 * 53rem / 750);
  font-weight: 500;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.02em;
}


/* ===================
  　　　EVENT02
=================== */

.event02_section {
  padding-bottom: calc(100 * 53rem/750);
}

.event02_section .ttl_main {
  margin-bottom: calc(5 * 53rem/750);
  padding-top: 0;
}

.event02_section .ttl_main::before {
  position: absolute;
  top: calc(60 * 53rem / 750);
  right: calc(70 * 53rem / 750);
  width: calc(140 * 53rem/750);
  height: calc(181 * 53rem/750);
  background: url(../../img/202506/character_02.svg) no-repeat;
  animation: yurayura 2s linear infinite;
  content: "";
}

.event02_section .ttl_sub {
  width: calc(649 * 53rem/750);
  margin: auto auto calc(20 * 53rem/750);
}

.event02_section .txt_content {
  margin-bottom: calc(40 * 53rem/750);
  font-size: calc(28 * 53rem/750);
  line-height: 1.6;
  text-align: center;
}

.event02_section .txt_content sup {
  font-size: calc(18 * 53rem/750);
}

.event02_section .txt_content .txt_sm {
  display: inline-block;
  padding-top: calc(30 * 53rem/750);
  font-size: calc(23 * 53rem/750);
}

.event02_section .ttl_section {
  width: calc(700 * 53rem/750);
  margin: calc(65 * 53rem/750) auto;
  padding: calc(65 * 53rem/750) 0 0;
  border-top: 1px solid #AFAFAF;
  font-size: calc(35 * 53rem/750);
  color: var(--title-color);
  text-align: center;
  font-weight: normal;
}

/* ---- SLIDEBAR ---- */

.js_item_slidebar02,
.js_item_slidebar02 * {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.js_item_slidebar02::-webkit-scrollbar,
.js_item_slidebar02 *::-webkit-scrollbar {
  display: none;
}

.js_item_slidebar02 .simplebar-content .item_list {
  display: inline-block;
  white-space: nowrap;
  padding-right: calc(10 * 53rem/750);
}

.js_item_slidebar02 .simplebar-content .item_list .item_list__inner {
  display: flex;
  flex-wrap: nowrap;
  padding-right: calc(18 * 53rem/750);
}

.js_item_slidebar02 .simplebar-scrollbar::before {
  background: #808080;
  border-radius: 0;
  height: calc(7 * 53rem/750) !important;
}

.js_item_slidebar02 .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.js_item_slidebar02 .simplebar-track.simplebar-horizontal {
  background: #f5f5f5;
  height: calc(7 * 53rem/750) !important;
  margin: 0 calc(60 * 53rem/750);
  padding: 0;
}

.js_item_slidebar02 .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  top: 0;
  height: 2px;
}

.js_item_slidebar02 .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  right: calc(-22 * 53rem/750);
  left: calc(-22 * 53rem/750);
}

.js_item_slidebar02 .simplebar-track.simplebar-vertical {
  display: none;
}

/* ---- //SLIDEBAR ---- */

.event_section .js_item_slider .slick-dots li button:not(.slick-active button) {
  background-color: #E2E2E2;
}

.js_item_slidebar02 .simplebar-track.simplebar-horizontal {
  background-color: #E2E2E2;
}

.event_section .event_list {
  position: relative;
  z-index: 10;
  margin-top: calc(10 * 53rem/750);
  margin-bottom: calc(65 * 53rem/750);
  padding: 0 0 calc(10 * 53rem/750);
}

.event_section .event_list .item_list__title {
  display: block;
  overflow: visible;
}

.event_section .event_list .icn_rank {
  display: none;
}

.event_section .event_list .item_list__item {
  width: calc(300 * 53rem/750);
  margin-right: calc(10 * 53rem/750);
  margin-left: calc(10 * 53rem/750);
}

.event_section .event_list .item_list__item:first-child {
  margin-left: calc(35 * 53rem/750);
}

.event_section .item_list_common .item_list__item {
  margin-bottom: calc(65 * 53rem/750);
  padding-bottom: calc(35 * 53rem/750);
}

.event_list .item_list__brand {
  height: calc(40 * 53rem/750);
  margin: calc(10 * 53rem/750) 0;
  text-align: center;
}

.event_list .item_list__brand.brand_etvos img {
  width: calc(143 * 53rem/750);
}

.event_list .item_list__brand.brand_ao {}

.event_list .item_list__brand.brand_ao img {
  width: calc(176 * 53rem/750);
}

.event_list .item_list__brand.brand_toone img {
  width: calc(160 * 53rem/750);
}

.event_list .item_list__brand.brand_refa img {
  width: calc(118 * 53rem/750);
}

.event_list .item_list__brand.brand_mirai img {
  width: calc(154 * 53rem/750);
}

.event_list .item_list__brand.brand_lovec img {
  width: calc(200 * 53rem/750);
}

.event_list .item_list__brand.brand_sb img {
  width: calc(150 * 53rem/750);
}

.event_list .item_list__brand.brand_nahrin img {
  width: calc(140 * 53rem/750);
}

.event_list .item_list__brand.brand_femmue img {
  width: calc(140 * 53rem/750);
}

.event_list .item_list__brand.logo_lacasta img {
  width: calc(140 * 53rem/750);
}

.event02_section .btn_more {
  width: calc(650 * 53rem/750);
  margin: auto;
}

/* ===================
  　　　EVENT03
=================== */

.event03_section {
  padding-bottom: calc(100 * 53rem/750);
  background: url(../../img/202506/event_bg.svg) no-repeat center calc(643 * 53rem/750);
  background-size: calc(605 * 53rem/750);
}

.event03_section .ttl_main {
  margin-bottom: calc(20 * 53rem/750);
  padding-top: 0;
}

.event03_section .ttl_main::before {
  position: absolute;
  top: calc(155 * 53rem / 750);
  left: calc(80 * 53rem/750);
  width: calc(134 * 53rem/750);
  height: calc(185 * 53rem/750);
  background: url(../../img/202506/character_03.svg) no-repeat;
  animation: yurayura 2s linear infinite;
  content: "";
}

.event03_section .ttl_sub {
  width: calc(649 * 53rem/750);
  margin: auto auto calc(20 * 53rem/750);
}

.event03_section .txt_content {
  margin-bottom: calc(50 * 53rem/750);
  font-size: calc(23 * 53rem/750);
  line-height: 1.6;
  text-align: center;
}

.event03_section .event_brand {
  width: calc(680 * 53rem/750);
  margin: auto auto calc(50 * 53rem/750);
}

.event03_section .btn_more {
  width: calc(680 * 53rem/750);
  margin: auto auto calc(100 * 53rem/750);
}

.event03_section .ttl_point {
  width: calc(567 * 53rem/750);
  margin: auto auto calc(40 * 53rem/750);
}

.event03_section .txt_brand_area {
  font-size: calc(28 * 53rem/750);
  text-align: center;
}

.event03_section .txt_brand_area .txt_sm {
  font-size: calc(23 * 53rem/750);
  color: #595757;
}

.event03_section .txt_commingsoon {
  position: relative;
  width: calc(700 * 53rem/750);
  margin: calc(-60 * 53rem/750) auto auto;
}

.event03_section .txt_commingsoon::before {
  position: absolute;
  top: calc(0 * 53rem / 750);
  right: calc(20 * 53rem / 750);
  width: calc(112 * 53rem/750);
  height: calc(149 * 53rem/750);
  background: url(../../img/202506/character_08.svg) no-repeat 0 0;
  background-size: 100% 100%;
  animation: yurayura 6s linear infinite;
  content: "";
}

/* ---- Brand List ---- */

.cont_brandlist {
  width: calc(700 * 53rem/750);
  margin: calc(30 * 53rem/750) auto calc(50 * 53rem/750);
  padding-top: calc(40 * 53rem/750);
  padding-bottom: calc(42 * 53rem/750);
  border: 1px solid #383330;
  border-radius: calc(50 * 53rem/750);
  background: #fff;
}

.cont_brandlist::before {
  position: absolute;
  top: calc(-130 * 53rem / 750);
  right: calc(20 * 53rem / 750);
  width: calc(112 * 53rem/750);
  height: calc(149 * 53rem/750);
  background: url(../../img/202506/character_08.svg) no-repeat 0 0;
  background-size: 100% 100%;
  content: "";
}

.brand_list {}

.brand_list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: calc(0 * 53rem/750) calc(0 * 53rem/750);
}

.brand_list ul li {
  width: 33.333%;
  line-height: 1;
  height: calc(110 * 53rem/750);
  text-align: center;
}

.brand_list ul li img {
  width: auto;
  max-height: 100%;
  vertical-align: middle;
}

.logo_sb {
  width: calc(99 * 53rem/750);
}

.logo_celvoke {
  width: calc(122 * 53rem/750);
}

.logo_toone {
  width: calc(169 * 53rem/750);
}

.logo_femmue {
  width: calc(132 * 53rem/750);
}

/* -- Accodion -- */

.event_section .acc_cont {
  display: none;
}

.event_section .acc_btn {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 0;
  cursor: pointer;
  text-align: center;
  pointer-events: none;
  margin-top: calc(-10 * 53rem/750);
  margin-bottom: 0;
  padding-bottom: calc(50 * 53rem/750);
  font-size: calc(35 * 53rem/750);
}

.event_section .acc_on+.acc_btn {
  width: 100%;
  pointer-events: all;
  margin-top: 0;
  padding-bottom: calc(0 * 53rem/750) !important;
  position: relative;
}

/*アコーディオングラデーション*/
.event_section .acc_btn::before {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* top: calc(-120*(100vw / 755)); */
  height: calc(241 * 53rem / 750);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 100%) 70%);
  content: "";
}

.event_section .acc_on+.acc_btn::before {
  display: block;
}

.event_section .acc_btn .icn_btn {
  position: relative;
  display: inline-block;
  line-height: 1;
  width: calc(320 * 53rem/750);
  height: calc(39 * 53rem/750);
  background: url(../../img/202506/btn_viewallbrands.svg) no-repeat 0 0;
  background-size: 100% 100%;
}

.event_section .acc_btn.active .icn_btn {
  width: calc(142 * 53rem/750);
  height: calc(39 * 53rem/750);
  margin-top: calc(40 * 53rem/750);
  background-image: url(../../img/202506/btn_viewclose.svg);
}

.event_section .acc_btn.active::before {
  display: none;
}

.event_section .acc_btn.active .icn_btn {
  padding-left: 0;
}

.event_section .acc_btn.active .icn_btn::after {
  transform: rotate(226deg);
}

.event_section .acc_btn.active .icn_btn span {
  display: none;
}

/* ===================
  　　　CALENDAR
=================== */

.calendar_section {
  padding-bottom: calc(100 * 53rem/750);
}

.calendar_section .ttl_main {
  padding-top: calc(0 * 53rem/750);
}

.calendar_section .calendar_wrap {
  position: relative;
}

.calendar_section .img_calendar {
  margin-top: calc(-60 * 53rem/750);
  padding: 0 calc(20 * 53rem/750);
}

.calendar_section .btn_viewmore {
  position: absolute;
  top: calc(441 * 53rem / 750);
  right: calc(209 * 53rem / 750);
  z-index: 2;
  width: calc(202 * 53rem / 750);
  cursor: pointer;
}

/* ===================
  　　　CONTENTS
=================== */

.contents_section {}

.contents_section .ttl_main {
  padding-top: calc(0 * 53rem/750);
}

.contents_list {
  margin: 0 calc(20 * 53rem/750);
}

.contents_list ul {
  margin-bottom: calc(80 * 53rem/750);
  gap: calc(50 * 53rem/750);
  flex-direction: column;
}

.contents_list ul li {
  width: 100%;
  margin-bottom: calc(65 * 53rem/750);
}

.contents_list li a {
  display: flex;
  gap: calc(33 * 53rem/750);
  align-items: center;
  position: relative;
  z-index: 4;
  width: auto !important;
}

.contents_list .img_area {
  overflow: hidden;
  width: calc(260 * 53rem/750);
  height: calc(260 * 53rem/750);
  border-radius: calc(40 * 53rem/750);
  border: 1px solid #383330;
}

.contents_list .img_area img {
  height: 100%;
}

.contents_list li:first-child,
.contents_list .colum_full,
.contents_list li:last-child {
  width: 100% !important;
}

.contents_list .colum_full {
  padding: 0 calc(20 * 53rem/750) calc(60 * 53rem/750);
}

.contents_list .colum_full p {
  text-align: left;
}

.contents_section .txt_center {
  padding-top: calc(90 * 53rem/750);
}

.contents_section .txt_center img {
  width: calc(337 * 53rem/750);
  margin: auto;
}

.contents_list .txt_area {
  width: calc(404 * 53rem/750);
  padding: 0;
  margin-bottom: calc(-10 * 53rem/750);
  font-size: calc(28 * 53rem/750);
  line-height: 1.75;
  text-align: left;
}

.contents_list .img_area.comingsoon.comingsoon_half::before {
  background-image: url(../img/main/img_contents_06_sp.png?240627);
}

.contents_list .youtube_area {
  overflow: hidden;
}

.contents_list .youtube_area iframe {
  width: 100%;
  height: 50vw;
}

.contents_list .youtube_area.comingsoon iframe {
  height: 37vw;
}

.contents_section .img_comingsoon {
  width: calc(220 * 53rem/750);
  margin: auto;
}

.contents_wrap+.line_coupon {
  margin-top: calc(70 * 53rem/750);
  padding-top: calc(100 * 53rem/750);
}

.contents_wrap+.line_coupon::before {
  top: calc(-20 * 53rem / 750);
}

/* ---- Line Coupon ---- */
.line_coupon {
  position: relative;
  width: calc(680 * 53rem/750);
  margin: calc(-120 * 53rem/750) auto calc(100 * 53rem/750);
  padding-top: calc(250 * 53rem/750);
  background: url(../../img/202506/line_bg.svg) no-repeat top center;
  background-size: calc(622 * 53rem/750);
}

.line_coupon::before {
  position: absolute;
  top: calc(95 * 53rem / 750);
  left: calc(33 * 53rem / 750);
  width: calc(112 * 53rem/750);
  height: calc(149 * 53rem/750);
  background: url(../../img/202506/character_05.svg) no-repeat 0 0;
  background-size: 100% 100%;
  animation: yurayura 2s linear infinite;
  content: "";
}

.line_coupon .ttl_main_02 {
  margin-bottom: calc(37 * 53rem/750);
  font-size: calc(45 * 53rem/750);
}

.line_coupon .txt_sub {
  margin-bottom: calc(53 * 53rem/750);
  font-size: calc(28 * 53rem/750);
  line-height: 2;
}

.line_coupon .line_btn {
  width: calc(650 * 53rem/750);
  margin: auto auto calc(98 * 53rem/750);
}


/* ---- コンテンツスライダー ---- */

.contents_wrap {
  position: relative;
  z-index: 2;
  padding-bottom: calc(60 * 53rem/750);
}

.contents_wrap::before {
  position: absolute;
  width: calc(700 * 53rem/750);
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border-bottom: 1px solid #afafaf;
  content: "";
}

.contents_slide {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.contents_slide .img_area {
  height: calc(530 * 53rem / 750);
  margin-bottom: calc(30 * 53rem/750);
}

.contents_slide .img_area img {
  width: 100%;
  height: 100%;
  border-radius: calc(45 * 53rem/750);
  border: 1px solid #383330;
  object-fit: cover;
}

.contents_slide .ttl_area {
  padding: calc(15 * 53rem/750) calc(5 * 53rem/750) 0;
  font-size: calc(24 * 53rem/750);
  font-weight: 600;
  text-align: left;
}

.contents_slide .txt_area {
  padding: calc(15 * 53rem/750) calc(5 * 53rem/750) calc(30 * 53rem/750);
  font-size: calc(23 * 53rem/750);
  text-align: left;
  word-break: break-all;
  line-height: 1.8;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  width: calc(100% / 5);
  box-sizing: border-box;
}

.swiper-pagination-bullet {
  background: #333;
}

.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

.swiper-slide-number {
  margin: calc(40 * 53rem/750) 0 calc(80 * 53rem/750);
  font-size: calc(33 * 53rem/750);
  text-align: center;
}

/* ---- モーダル ---- */

.contents_btn_all {
  width: calc(170 * 53rem/750);
  margin-top: calc(-130 * 53rem/750);
  margin-right: calc(60 * 53rem/750);
  margin-left: auto;
}

.contents_btn_all img {
  cursor: pointer;
}

.modal_contents_list {
  background-color: rgba(0, 0, 0, 0.5);
}

.modal_contents_list .modal-content {
  display: flex;
}

.modal_contents_list .modal_content_inner {
  height: 80vh;
  background: #fff;
  padding: calc(50 * 53rem/750) 0 0;
  border-radius: calc(50 * 53rem/750);
}

.modal_cont_list {
  overflow: hidden;
  overflow-y: scroll;
  height: 68vh;
}

.modal_cont_list ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: calc(50 * 53rem/750) calc(30 * 53rem/750);
  padding: 0 0 0 calc(30 * 53rem / 750);
}

.modal_cont_list li a {
  display: block;
}

.modal_cont_list ul li {
  width: 44.6%;
}

.modal_cont_list .img_area {
  margin-bottom: calc(10 * 53rem/750);
}

.modal_cont_list .img_area img {
  width: 100%;
  height: auto;
  border-radius: calc(25 * 53rem/750);
  border: 1px solid #383330;
}

.modal_cont_list .ttl_area {
  padding: calc(15 * 53rem/750) calc(5 * 53rem/750) 0;
  font-size: calc(24 * 53rem/750);
  font-weight: 600;
  text-align: left;
}

.modal_cont_list .txt_area {
  padding: calc(15 * 53rem/750) calc(5 * 53rem/750) 0;
  font-size: calc(23 * 53rem/750);
  text-align: left;
  word-break: break-all;
  line-height: 1.7;
}

.modal_contents_list .modal_content_inner .close-modal {
  top: auto;
  margin-top: auto;
  bottom: calc(40 * 53rem/750);
}


/* ===================
  　　　ABOUT
=================== */

.about_section {
  background: #F7F5F4;
}

.about_area {
  position: relative;
  overflow: hidden;
  padding: calc(65 * 53rem/750) 0 calc(100 * 53rem/750);
  font-size: calc(28 * 53rem/750);
}

.about_area .ttl_main_02 {
  margin-bottom: calc(60 * 53rem/750);
  font-size: calc(55 * 53rem/750);
  text-align: center;
  color: var(--title-color);
  font-weight: 500;
}

.about_area .about_img {
  width: 100%;
  margin-bottom: calc(75 * 53rem/750);
  line-height: 1;
}

.about_area .about_cont {
  padding: 0;
}

.about_area .about_cont p {
  font-size: calc(28 * 53rem/750);
  line-height: 2.2;
  text-align: center;
}

.about_area .about_cont .cont_btn {
  padding: calc(50 * 53rem/750) calc(50 * 53rem/750) calc(120 * 53rem/750);
  text-align: right;
}

.about_area .about_cont .cont_btn a {
  color: #595757;
  text-decoration: underline;
}

.about_area .logo_area {
  width: calc(340 * 53rem/750);
  margin: auto;
}



/* ===================
  　Page Menu
=================== */

.lp_menu {
  opacity: 0;
  transition: opacity .3s ease-in-out;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 33;
  font-size: 1.4rem;
  background: var(--main-color);
}

.lp_menu.fixed {
  opacity: 1;
}

/* -- Fixed -- */

.lp_menu_inner {
  overflow: hidden;
  overflow-x: scroll;
  position: relative;
  z-index: 20;
}

.lp_menu ul {
  display: flex;
  align-items: center;
  width: 100%;
}

.lp_menu li {
  width: auto;
  min-width: calc(304 * 53rem/750);
}

.lp_menu li a::before {
  background-color: #595757;
}

.lp_menu li:first-child a::before {
  display: none;
}

.lp_menu li a {
  padding: calc(20 * 53rem/750) calc(38 * 53rem/750);
  font-size: calc(34 * 53rem/750);
  line-height: 1.3;
}

.lp_menu li:nth-child(3) {
  min-width: calc(400 * 53rem/750);
}

.lp_menu li:last-child .txt_bold {
  margin-bottom: calc(20 * 53rem/750);
}

/* ---- MENU LIST ---- */

.lp_menu_list {}

.lp_menu_list ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
}

.lp_menu_list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #383330;
  font-size: calc(13 * 53rem/750);
  font-weight: 500;
  text-align: center;
  gap: calc(4 * 53rem/750);
  padding: calc(25 * 53rem/750) 0 calc(25 * 53rem/750);
  font-size: calc(34 * 53rem/750);
  line-height: 1.3;
}

.lp_menu_list li a::before,
.lp_menu_list li:last-child::before {
  position: absolute;
  top: 1rem;
  left: 0rem;
  bottom: 1rem;
  width: 1px;
  background: #383330;
  content: "";
}

.lp_menu_list li:nth-child(2) a {
  font-size: calc(34 * 53rem/750);
}

.lp_menu_list li:nth-child(3) a {
  font-size: calc(31 * 53rem/750);
}

.lp_menu_list li:last-child {
  position: relative;
  width: 100%;
}

.lp_menu_list li:last-child::before {
  display: none;
}

.lp_menu_list li a::before {
  top: 50%;
  left: 0;
  bottom: calc(24* 53rem/750);
  height: calc(140* 53rem/750);
  transform: translateY(-50%);
}

.anime_bar {
  width: 100%;
  height: calc(80* 53rem/750);
  /* 高さは必要に応じて調整してください */
  background-image: url(../../img/202506/organic_border.svg);
  /* 画像のURLを指定してください */
  background-repeat: repeat-x;
  background-color: #383330;
  background-size: 100% 100%;
  animation: scrollBackground 26s linear infinite;
}

@keyframes scrollBackground {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -100rem 0;
  }

}

.lp_menu_top {
  padding: calc(60* 53rem/750) 0;
  background: #fff;
}

.lp_menu_top li a::after {
  position: absolute;
  left: 50%;
  bottom: calc(23 * 53rem/750);
  width: calc(21 * 53rem/750);
  height: calc(21 * 53rem/750);
  border-bottom: 2px solid #383330;
  border-right: 2px solid #383330;
  transform: rotate(45deg) translateX(-50%);
  content: "";
}

.lp_menu_list .txt_bold {
  margin-bottom: calc(6 * 53rem/750);
  font-size: calc(25* 53rem/750);
  font-weight: 600;
  line-height: 1;
}

.lp_menu_list .txt_bold span {
  font-size: calc(34* 53rem/750);
  font-weight: 500;
}

.lp_nav_area {
  padding-top: 0;
}


.lp_menu_top {}

.lp_menu_top ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0 calc(10 * 53rem/750);
}

.lp_menu_top li {
  width: 50%;
  padding: calc(12 * 53rem/750);
}

.lp_menu_top li a {
  gap: 0;
  padding: calc(34 * 53rem/750) 0 calc(60 * 53rem/750);
  border-radius: calc(48 * 53rem/750);
  font-size: calc(34 * 53rem/750);
  background: var(--main-color);
  line-height: 1.4;
}

.lp_menu_top li a::before {
  display: none;
  background-color: #939393;
}

.lp_menu_top li {
  position: relative;
}

.lp_menu_list li:last-child a::before {
  bottom: calc(20 * 53rem/750);
}


/* ===================
  　　ページトップ
=================== */

.page_top {
  z-index: 10;
}

.page_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.5rem;
  height: 12.5rem;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}

.page_top .line_tomodachi {
  width: 16.2rem;
  margin-top: -2rem;
  margin-bottom: 5rem;
  margin-left: -7rem;
}

/*リンクを右下に固定*/
.page_top {
  position: fixed;
  right: 2rem;
  bottom: 4rem;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(30rem);
}

.page_top.page_top_finish {
  bottom: 6rem;
}

/*　上に上がる動き　*/
.page_top.UpMove {
  animation: UpAnime 0.3s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(30rem);
  }

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

/*　下に下がる動き　*/
.page_top.DownMove {
  animation: DownAnime 0.3s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(30rem);
  }
}

.page_top a {
  width: calc(210 * 53rem/750);
  height: calc(200 * 53rem/750);
  padding: 0;
}

/*リンクを右下に固定*/
.page_top {
  position: fixed;
  right: calc(25 * 53rem/750);
  bottom: calc(196 * 53rem/750);
  transform: translateY(100rem);
}

.page_top.page_top_finish {
  bottom: calc(20 * 53rem/750);
}

.page_top.pc_only {
  opacity: 1 !important;
  transform: none !important;
  position: absolute;
  left: auto;
  right: 0;
  bottom: calc(-180 * 53rem/750);
}

@media only screen and (max-width: 767px) {

  .page_top.pc_only {
    display: none !important;
  }
}


/* ===================
  　　　MODAL
=================== */

/* モーダル全体 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 半透明の背景 */
  opacity: 0;
  /* 初期状態は透明 */
  transition: opacity 0.3s ease;
  /* フェードイン・アウトの効果 */
}

/* モーダルのコンテンツ */
.modal-content {
  position: relative;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 53rem;
  height: 100dvh;
  padding: 0 calc(30 * 53rem/750);
  margin: auto;
  text-align: center;
}

.modal_content_inner {
  position: relative;
}

.modal-content img {
  width: auto;
  height: calc(952 * 53rem/750);
}

/* バツ印のスタイル（CSSで線を表現） */
.modal_content_inner .close-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  z-index: 10;
  transform: translate(-50%);
  width: calc(143 * 53rem/750);
  height: calc(39 * 53rem/750);
  margin-top: calc(372 * 53rem/750);
  padding: 0;
  background: url(../../img/202506/btn_close.svg) no-repeat center;
  background-size: 100%;
  cursor: pointer;
}


/*=======================================
               Responsive
========================================*/


/* only PC */

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


/*=======================================
                    PC
========================================*/

@media screen and (min-width: 768px) {

  #Wrap,
  .wrapBottom,
  .wrapTop,
  #Contents {
    width: 100%;
  }

  .header_inner {}

  .lp_contents {
    overflow: hidden;
  }

  .lp_contents_inner {
    width: 53rem;
    margin: auto;
  }


  .fixed_area {
    position: fixed;
    top: 0;
    left: 50%;
    translate: -50% 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 160rem;
    height: 100vh;
    margin: 0 auto;
  }

  .fixed_area .fixed_left,
  .fixed_area .fixed_right {
    display: grid;
    place-items: center;
    width: calc((100% - 53rem) / 2);
    max-width: calc((160rem - 53rem) / 2);
    height: 100%;
    overflow: hidden;
  }

  .fixed_area .fixed_left {
    background: url(../../img/202506/bg_pc_left.svg) no-repeat center center;
    background-size: calc(558 * 53rem/750);
    align-content: center;
  }

  .fixed_area .fixed_right {
    background: url(../../img/202506/bg_pc_right.svg) no-repeat center center;
    background-size: calc(615 * 53rem/750);
  }

  .fixed_area .main_ttl {
    width: calc(439 * 53rem/750);
    padding-top: calc(200 * 53rem/750);
  }

  .fixed_area .logo_ck {
    width: calc(237 * 53rem/750);
    padding-top: calc(200 * 53rem/750);
  }

  .fixed_navi {
    width: calc(496 * 53rem/750);
    padding-top: calc(100 * 53rem/750);
  }

  .fixed_navi li {
    position: relative;
    border-bottom: 1px solid #d6a825;
  }

  .fixed_navi li:first-child {
    border-top: 1px solid #d6a825;
  }

  .fixed_navi li:first-child::before {
    position: absolute;
    top: calc(-66 * 53rem/750);
    left: calc(-20 * 53rem/750);
    width: calc(63 * 53rem/750);
    height: calc(87 * 53rem/750);
    background: url(../../img/202506/character_01.svg) no-repeat 0 0;
    content: "";
  }

  .fixed_navi li:nth-child(2)::before {
    position: absolute;
    bottom: calc(-33 * 53rem/750);
    right: calc(-53 * 53rem/750);
    width: calc(64 * 53rem/750);
    height: calc(85 * 53rem/750);
    background: url(../../img/202506/character_02.svg) no-repeat 0 0;
    content: "";
  }

  .fixed_navi li:nth-child(4)::before {
    position: absolute;
    top: calc(-43 * 53rem/750);
    left: calc(-60 * 53rem/750);
    width: calc(62 * 53rem/750);
    height: calc(70 * 53rem/750);
    background: url(../../img/202506/character_03.svg) no-repeat 0 0;
    content:
      "";
  }

  .fixed_navi li:nth-child(5)::before {
    position: absolute;
    bottom: calc(-5 * 53rem/750);
    right: calc(80 * 53rem/750);
    width: calc(78 * 53rem/750);
    height: calc(70 * 53rem/750);
    background: url(../../img/202506/character_04.svg) no-repeat 0 0;
    content: "";
  }

  .fixed_navi li:nth-child(5)::after {
    position: absolute;
    bottom: calc(-95 * 53rem/750);
    left: calc(50 * 53rem/750);
    width: calc(51 * 53rem/750);
    height: calc(74 * 53rem/750);
    background: url(../../img/202506/character_05.svg) no-repeat 0 0;
    content: "";
  }

  .fixed_navi li a {
    position: relative;
    display: flex;
    align-items: center;
    height: calc(110 * 53rem/750);
    padding-left: calc(19 * 53rem/750);
  }

  .fixed_navi li a::after {
    position: absolute;
    right: calc(25 * 53rem/750);
    top: 50%;
    width: calc(16 * 53rem/750);
    height: calc(16 * 53rem/750);
    border-bottom: 2px solid #383330;
    border-right: 2px solid #383330;
    transform: rotate(45deg) translateY(-50%);
    content: "";
  }

  .fixed_navi li a .txt_bold {
    display: inline-block;
    line-height: 1;
    padding-bottom: 1rem;
    font-size: 1.4rem;
  }

  .fixed_navi li a .txt_bold span {
    font-size: 1.8rem;
  }

  .fixed_navi li img {
    height: calc(44 * 53rem/750);
  }

  .fixed_navi li:nth-child(2) img,
  .fixed_navi li:nth-child(3) img {
    height: calc(49 * 53rem/750);
  }

  .fixed_navi .btn_line {
    float: right;
    width: calc(134 * 53rem/750);
    margin-top: calc(25 * 53rem/750);
    margin-right: calc(34 * 53rem/750);
  }

  /* ページトップボタンのスタイル */
  .btn_pagetop {
    bottom: 20rem;
    right: 6.5rem;
    width: 3rem;
  }

  .btn_about {
    position: fixed;
    bottom: 4rem;
    right: 2rem;
    width: 11rem;
  }

  .lp_menu {
    display: none;
  }

  .page_top {
    right: auto;
    left: 78%;
    bottom: 2.5rem;

  }

  .page_top a,
  .page_top img {
    width: 11rem;
    height: auto;
  }


  .calendar_section .btn_viewmore {
    top: calc(420 * 53rem / 750);
    right: calc(185 * 53rem / 750);
  }
}


/* only tablet */

@media screen and (min-width: 768px) and (max-width: 1200px) {

  .fixed_navi {
    width: calc(362 * 53rem/750);
  }

  .fixed_navi li img {
    height: calc(33 * 53rem/750);
  }

  .fixed_navi li:nth-child(2) img,
  .fixed_navi li:nth-child(3) img {
    height: calc(38* 53rem/750);
  }

}


/*=======================================
                    SP
========================================*/


/* only SP */

@media only screen and (max-width: 767px) {

  #Wrap {
    padding-top: calc(90*(100vw / 586));
  }

  .pc_only {
    display: none;
  }

  .share-txt {
    margin: 0 !important;
  }


  /* ===================
    LP Contents
  =================== */
  .lp_contents {
    overflow: hidden;
    letter-spacing: 0;
  }

  .lp_contents sup {
    font-size: calc(10 * (100vw / 375));

  }

  /* ===================
    　Section Common
  =================== */
  .inner {
    width: 100%;
  }

  .contents {
    padding-top: 0;
  }


  /* ===================
         ANIME
  =================== */
  @keyframes tra3 {
    0% {
      transform: translateY(30px);
    }

    100% {
      transform: translateY(0);
    }
  }


}

/*--------------------------------
   Media Queries ( ~ 768px)
 --------------------------------*/
@media only screen and (max-width: 768px) {
  html {
    font-size: calc(10 * (100vw / 560));
  }
}

/*--------------------------------
   Media Queries (1400px ~ 1400px)
 --------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  html {
    font-size: calc(10 * (100vw / 1600));
  }
}



/* SOLDOUT 表記 */
.soldout-mask {
  position: relative;
}

.soldout-mask::after {
  content: '';
  position: absolute;
  height: 106%;
  width: 106%;
  background: rgb(120 167 210 / 80%);
  top: -3%;
  left: -3%;
  border-radius: 1rem;
  z-index: 999;
}

.soldout-mask-sec::after {
  top: 0%;
}

.soldout-mask-calendar::after {
  top: 11%;
}

.soldout-txt {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #fff;
  z-index: 9999;
  white-space: nowrap;
}