@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700&display=swap');
@font-face {font-family: "DSEG7"; src: url("../fonts/DSEG7Classic-BoldItalic.woff") format("woff");}
@font-face {font-family: "Hue"; src: url("../fonts/Hue-Medium.woff") format("woff");}

html {font-size: 62.5%;}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0px;
}
@media (min-width: 576px){
  html {scroll-padding-top: 0px;}
}
@media (min-width: 992px){
  html {scroll-padding-top: 0px;}
}

:root {
  --space-unit: 0.8rem;
  --space-xxs:  calc( 0.5 * var(--space-unit)); /*   4 */
  --space-xs:   calc( 1   * var(--space-unit)); /*   8 */
  --space-sm:   calc( 2   * var(--space-unit)); /*  16 */
  --space-md:   calc( 3   * var(--space-unit)); /*  24 */
  --space-lg:   calc( 5   * var(--space-unit)); /*  40 */
  --space-xl:   calc( 8   * var(--space-unit)); /*  64 */
  --space-xxl:  calc(13   * var(--space-unit)); /* 104 */
  --space-3xl:  calc(21   * var(--space-unit)); /* 168 */
}

body {
  position: relative;
  font-size: 1.3rem;
  font-family: 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: bold;
  line-height: 1.6;
  background: #0D204C;
  color: #fff;
  text-align: justify;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

@media (min-width: 576px) {
  body {
    font-size: 1.6rem;
  }
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 150vh;
  z-index: -5;
  height: 100vh;
  background: no-repeat url("../img/spotlight.svg") center / 120% 100%;
  mix-blend-mode: overlay;
  pointer-events: none;
  /* animation: 2s infinite flash; */
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -10;
  height: 100vh;
  background: linear-gradient(hsl(274, 53%, 18%), #662D91);
  pointer-events: none;
}
@media (min-width: 576px) {
  body::after {
    background: no-repeat url("../img/spotlight.svg") center / 100% 100%;
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  4% {
    opacity: 0.9;
  }
  5% {
    opacity: 1;
  }
  9% {
    opacity: 0.7;
  }
  10% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }
  74% {
    opacity: 0.8;
  }
  75% {
    opacity: 1;
  }
  79% {
    opacity: 0.9;
  }
  80% {
    opacity: 1;
  }

}

* {
  letter-spacing: 0.075em;
}

/* common */
@media (max-width: 575px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 576px) {
  .sp {
    display: none !important;
  }
}

span.br {
  display: inline-block;
}

.inner {

}

.name, .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}




/* タイマー */
#period {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  /* pointer-events: none; */
  white-space: nowrap
}
#period .campaign-timer {
  position: relative;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  padding: 8px 6px 0px;
  min-width: 200px;
  min-height: 26px;
  text-align: center;
}

@media (max-width: 575px) {
  #period {
    min-width: 184px;
  }
  #period .campaign-timer {
    min-width: 184px;
  }
}

#period .view_timer {
  font-size: 11px;
  color: #FFFFFF;
  line-height: 1;
  display: block;
  margin-bottom: 3px;
}
@media (max-width: 575px) {
  #period .view_timer {
    font-size: 10px;
  }
}

#period #CDT {
  display: block;
  font-size: 24px;
  color: #ffe600;
  margin: 0;
  width: 100%;
}
@media (max-width: 575px) {
  #period #CDT {
    font-size: 22px;
  }
}

#period #CDT .unit {
  writing-mode: vertical-rl;
  line-height: 1;
  font-size: 46%;
  margin: 0 5px 0 2px;
  transform: skewX(-4deg);
}
#period #CDT .number {
  font-family: "DSEG7";
  position: relative;
  letter-spacing: 0;
  z-index: 1;
  /* line-height: 1; */
}
@-moz-document url-prefix() {
  /* Firefoxのみ適応 */
  #period #CDT .number {
    line-height: 1;
  }
}
#period #CDT .number::before{
  content: "88";
  color: #fff;
  opacity: 0.2;
  position: absolute;
  z-index: -1;
  width: 100%;
  overflow: hidden;
}

#btn-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px;
  width: 26px;
  height: 26px;
}
.round_btn {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;  /* 丸みの度合い */
  background: #000; /* ボタンの背景色 */
}
.round_btn::before, .round_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 66%;
  background: #fff; /* バツ印の色 */
}
.round_btn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.round_btn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

#period.close {
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
}


/* main */
main {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero_wrap {
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  width: 80%;
  height: auto;
  max-height: 30%;
  margin: 0px auto 0;
  text-align: center;
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.3));
}
@media (min-width: 576px) {
  main {
    margin: 40px auto 0;
  }
  .hero {
    width: 50%;
    height: auto;
    max-height: 30%;
  }
}

.hero .title {
  width: 100%;
  max-width: 800px;
  height: 100%;
  object-fit: contain;
  max-height: 50vh;
}

.hero p {
  font-size: 14px;
  margin-top: 10px;
}
@media (min-width: 576px) {
  .hero p {
    font-size: 18px;
    margin-top: 20px;
  }
}

.btn-timetable {
  margin: 20px auto;
  padding: 10px 24px;
  /* background: #061026; */
  background: #ff0000;
  border-radius: 8px;
  color: #FFFFFF;
}

.btn-timetable .fa-bars {
  margin-right: 6px;
}

.hero_wrap .sale-group {
  /* display: none; */
  margin-bottom: 40px;
}




/* sale 装飾 */
.sale {
  z-index: 10;
  background-color: #1D8DC4;
  position: relative;
  padding-bottom: 40px;
}

.sale_title {
width: 100%;
/* display: flex; */
/* align-items: center; */
/* justify-content: center; */
padding: 70px 7% 25px;
}
@media (max-width: 1053px) {
  .sale_title {
    padding: 50px 25px 0;
  }
}
@media (max-width: 575px) {
  .sale {
    padding-bottom: 25px;
  }
  .sale_title {
    flex-wrap: wrap;
    padding: 40px 20px 0;
  }
}


.sale h3 {
  width: 50%;
  margin: 0 auto;
  /* margin-right: 5%; */
}

.sale h3 img {
  width: 100%;
}

@media (max-width: 992px) {
  .sale h3 {
  }
}
@media (max-width: 575px) {
  .sale h3 {
    width: 90%;
  }
}

.sale .inner {
  /* max-width: 1084px; */
  max-width: 1600px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.sale .next {
  width: 100%;
  padding: 7vw 0;
  text-align: center;
}
.sale .next img {
  width: 50vw;
  max-width: 800px;
}
@media (max-width: 992px) {
  .sale .next img {
    width: 60vw;
  }
}
@media (max-width: 575px) {
  .sale .next {
    padding: 12vw 0 15vw;
  }
    .sale .next img {
    width: 75vw;
  }
}


/* register */
.register {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
}

.register-inner {
}

@media (max-width: 992px) {
}
@media (max-width: 565px) {
  .register {
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
  }
}

.btn-user {
  position: relative;
  font-size: 15px;
  font-weight: bold;
  margin: 0 12px;
  display: inline-block;
  transition: 0.1s;
}

@media (max-width: 565px) {
  .register-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .btn-user {
    font-size: 13px;
  }
}

.btn-user span {
  border-bottom: 1px solid hsl(0, 0%, 100%);
  transition: 0.1s;
  padding: 2px 4px;
}

.btn-user:first-child {
  margin-bottom: 15px;
}

.btn-user i {
  margin-right: 5px;
}

@media (min-width: 576px) {
  .btn-user:hover {
    /* color: #000; */
  }
  .btn-user:hover span {
    /* border-bottom: 1px solid #000; */
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 575px) {
  .btn-user:active {
    /* color: #000; */
  }
  .btn-user:active span {
    /* border-bottom: 1px solid #000; */
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.btn-user.plus{
  /* margin-bottom: 30px; */
}

.btn-user.plus::before {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translate(-50%,0);
  border-right: 8px solid transparent;
  border-bottom: 16px solid #be9112;
  border-left: 8px solid transparent; 
  pointer-events: none;
}

.btn-user.plus::after {
  /* content: "会員はさらに10%OFF!"; */
  content: "";
  line-height: 25px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translate(-50%,0);
  width: 90%;
  height: 25px;
  border-radius: 3px;
  /* background: #be9112; */
  background: repeat-x url(../img/plus.svg) ,#be9112;  background-position: 0px;
  border-left: 6px solid #be9112;
  border-right: 6px solid #be9112;
  pointer-events: none;
  animation: 10s linear infinite plusscroll;
}
@keyframes plusscroll {
  0%{
    background-position: 0px;
  }
  100%{
    background-position: -234px;
  }
}



/* plus-member */
.plus-member {
  height: 40px;
  position: relative;
  background: url(../img/plus-member.svg) center / contain, #54BEE7;
  animation: slider 400s linear infinite;
  will-change: background-position;
  z-index: 20;
}
@media (max-width: 575px) {
  .plus-member {
    height: 30px;
  }
}
@keyframes slider {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -9999px 0;
  }
}



/* sale-group */
.sale-group {
  position: relative;
  display: grid;  
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 60px 3%;
  width: 100%;
  max-width: 1920px;
  padding: 50px 10%;
  margin: 0 auto;
  overflow: hidden;
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.3));
}
@media (max-width: 1400px) {
  .sale-group {
    gap: 60px 3%;
  }
}
@media (min-width: 1054px) {
  .sale-group.x6{
  grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1053px) {
  .sale-group {
    grid-template-columns: repeat(3, 1fr);
    padding: 45px 10%;
  }
}
@media (max-width: 767px) {
  .sale-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 3.5%;
  }
}
@media (max-width: 575px) {
  .sale-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 3.5%;
    padding: 40px 20px;
  }
  .hero_wrap .sale-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 3.5%;
    padding: 40px 20px;
  }
}
.sale-item {
  position: relative;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.sale-item a {
  text-decoration: none;
}
.sale-item a figure {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.sale-item a figure::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30%;
  width: 100%;
  background: left bottom/contain no-repeat url("../img/sale.svg");
}
.sale-item a figure img {
  height: auto;
  transition: all 0.25s ease-in-out;
  width: 100%;
  vertical-align: bottom;
}
@media (min-width: 950px) {
  .sale-item a figure img {
    max-height: 250px;
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 949px) {
  .sale-item a figure img {
    max-height: 220px;
    width: auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .sale-item a figure img {
    max-height: 200px;
    width: auto;
  }
}
@media (max-width: 575px) {
  .sale-item a figure img {
    max-height: 135px;
    width: auto;
  }
  .hero_wrap .sale-item a figure img {
    max-height: 60vw;
    width: auto;
  }
}
.sale-item a dl {
  margin: 8px 0;
  overflow: hidden;
  width: 100%;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 575px) {
  .sale-item a dl {
    margin: 6px 0;
  }
}
.sale-item a dl dt {
  margin-bottom: 0.3em;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.sale-item a dl dt i {
  letter-spacing: 0.05em;
  line-height: 1.6;
  opacity: 0.5;
}

@media (min-width: 950px) {
  .sale-item a dl dt br {
    display: none;
  }
}
@media (max-width: 949px) {
  .sale-item a dl dt i {
    display: none;
  }
}
.sale-item a dl dt .before {
  background: linear-gradient(transparent 0.8em, #fff 0, #fff calc(0.8em + 1px), transparent 0, transparent calc(0.8em + 3px));
  color: #fff;
  opacity: 0.8;
}
.sale-item a dl dt .after {
  color: #fff;
  background-color: #FF0000;
  padding: 0 3px;
  font-weight: bold;
}
.sale-item a dl dd {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .sale-item a dl dd {
    font-size: 1.3rem;
  }
}
.sale-item a dl dd:nth-of-type(2) {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
}
@media (max-width: 575px) {
  .sale-item a dl dd:nth-of-type(2) {
    font-size: 1.0rem;
  }
}
@media (min-width: 576px) {
  .sale-item a:hover img {
    transform: scale(1.075, 1.075);
    filter: brightness(120%) contrast(110%);
  }
  .sale-item a:hover dl {
    filter: brightness(70%);

  }
}
@media (max-width: 575px) {
  .sale-item a:active img {
    filter: brightness(120%) contrast(110%);
  }
  .sale-item a:active dl {
    filter: brightness(70%);
  }
}

/* sale btn */
.btn-sample, .btn-cart {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font-weight: 500;
  display: block;
  width: 100%;
  max-width: 180px;
  height: 30px;
  line-height: 30px;
  margin: 0 auto 10px;
  font-size: 1.4rem;
  border-radius: 4px;
  transition: 0.15s;
}
.btn-sample i, .btn-cart i {
  padding-right: 0.75rem;
}
@media (max-width: 575px) {
  .btn-sample, .btn-cart {
    margin: 0 auto 5px;
  }
    .btn-sample i, .btn-cart i {
    display: none;
  }
}

.btn-sample {
  background: linear-gradient(171deg, rgba(238, 102, 5, 0) 50%, rgba(238, 102, 5, 0.1) 51%), #fff;
  background-blend-mode: multiply;
  color: rgb(238, 102, 5);
}
@media (min-width: 576px) {
  .btn-sample:hover {
    filter: brightness(80%);
  }
}
@media (max-width: 575px) {
  .btn-sample:active {
    filter: brightness(80%);
  }
}
@media (max-width: 575px) {
  .btn-sample {
    font-size: 1.2rem;
  }
}
.btn-cart {
  background: linear-gradient(171deg, rgba(238, 102, 5, 0) 50%, rgba(238, 102, 5, 0.5) 51%), rgb(238, 102, 5);
  background-blend-mode: multiply;
  color: #fff;
  border: none;
}
@media (min-width: 576px) {
  .btn-cart:hover {
    filter: brightness(80%);
  }
}
@media (max-width: 575px) {
  .btn-cart:active {
    filter: brightness(80%);
  }
}

@media (max-width: 575px) {
  .btn-cart {
    font-size: 1.1rem;
  }
}

.btn-browser,.btn-app {
  background-color: rgb(255, 0, 96);
  background: linear-gradient(171deg, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.05) 51%), #ff0060;
  background-blend-mode: normal;
  color: #fff;
}
@media (min-width: 576px) {
  .btn-browser:hover,.btn-app:hover {
    filter: brightness(80%);
  }
}
@media (max-width: 575px) {
  .btn-browser:hover,.btn-app:active {
    filter: brightness(80%);
  }
}

@media (max-width: 575px) {
  .btn-browser,.btn-app {
    font-size: 1.2rem;
  }
}




/* schedule */
.schedule {
  position: relative;
  width: 100%;
  background: #061026;
  z-index: 20;
  text-align: center;
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.5));
  border-radius: 16px 16px 0 0;
}

.schedule-title {
  width: 100%;
  padding: 50px 20px;
}
@media (min-width: 576px) {
  .schedule-title {
    padding: 80px 20px;
  }
}

.schedule-title img {
  width: 80%;
  max-width: 800px;
  height: 100%;
  object-fit: contain;
}

.schedule-item {
  
}

.schedule-item:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

.schedule-item .time {
  font-family: "Hue";
  font-size: 24px;
  line-height: 1;
  padding-top: 40px;
}
@media (min-width: 576px) {
  .schedule-item .time {
    font-size: 32px;
    padding-top: 60px;
  }
}

.schedule .sale-item dl dt,
.schedule .sale-item .btn-sample,
.schedule .sale-item .btn-cart,
.schedule .sale-item .btn-browser,
.schedule .sale-item .btn-app,
.schedule .sale-item form,
.schedule .sale-item a figure::after
 {
  display: none;
}


/* footer */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px 30px;
  position: relative;
  z-index: 20;
}

footer .inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto 0;
  z-index: 10;
}

footer .register {
  padding-top: 40px;
}
@media (max-width: 575px) {
  footer .register {
    padding-top: 30px;
  }
}
footer .footer-info {
  padding: 0 0 40px;
  /* border-top: 1px solid rgba(0, 0, 0, 0.2); */
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
footer .footer-inner {
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  footer .footer-inner {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
footer h4 {
  margin-bottom: 1em;
  font-size: 2rem;
  font-weight: bold;
}
footer p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 575px) {
  footer h4 {
    font-size: 1.8rem;
  }
    footer p {
    font-size: 1.4rem;
    text-align: justify;
    line-height: 1.7;
  }
}
footer .logo {
  margin: 0 0 2em;
}
@media (max-width: 575px) {
  footer .logo {
    text-align: center;
  }
}
footer .logo a img {
  width: 70%;
  max-width: 300px;
  height: auto;
  padding-bottom: 5px;
}
footer .copyright,
footer address {
  opacity: 0.6;
}
footer .copyright {
  font-size: 1.2rem;
}
footer address {
  margin-top: 1em;
  font-size: 1.1rem;
}
@media (max-width: 575px) {
  footer .inner {
    padding: 0;
  }
}

/* footer-btn */
.btn-info {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
  transition: 0.15s ease;
  display: inline-block;
  border: none;
  background: rgba(255, 255, 255, 0.2);
}
.btn-info:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 5px solid transparent;
	border-left: 5px solid rgba(255, 255, 255, 0.7);
}
@media (min-width: 576px) {
  .btn-info:hover {
    background: rgba(255, 255, 255, 0.4);
  }
}
@media (max-width: 575px) {
  .btn-info:active {
    background: rgba(255, 255, 255, 0.4);
  }
  .btn-info {
    font-size: 14px;
  }
}

/* クローズ */
#period.close {
  display: none;
}

.schedule-item.close .time
,.schedule-item.close .sale-group
 {
  pointer-events: none;
  opacity: 0.3;
}

.btn-timetable.close {
  display: none;
}

.btn-sample.close {
  pointer-events: none;
  opacity: 0;
}