@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap');

html { font-size: 62.5%;}
@media (min-width: 576px){
  html { font-size: 68.75%;}
}
@media (min-width: 992px){
  html { font-size: 68.75%;}
}
@media (min-width: 1200px){
  html { font-size: 75%;}
}
@media (min-width:1680px){
  html { font-size: 82.5%;}
}

:root {
  --space-unit: 1.6rem;
  --space-xxs:  calc(0.25 * var(--space-unit));
  --space-xs:   calc(0.5 * var(--space-unit));
  --space-sm:   calc(0.75 * var(--space-unit));
  --space-md:   calc(1.25 * var(--space-unit));
  --space-lg:   calc(2 * var(--space-unit));
  --space-xl:   calc(3.25 * var(--space-unit));
  --space-xxl:  calc(5.25 * var(--space-unit));
}

body {
  font-size: var(--fontsize2);
  font-family: 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 500;
  line-height: 1.6;
  background: #FFFFFF;

  color: #003c78;
  text-align: center;
  font-feature-settings: "palt";
}

* {
  letter-spacing: 0.1em;
}

/* common */
.inner {
  max-width: 1024px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 575px) {
  .inner {
    padding: 0 15px;
  }
}

span.br {
  display: inline-block;
}
span.red {
  color: #db162a;
  font-size: 140%;
  font-weight: bold;
  margin: 0 0.1em;
}

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

/* button */
/* button */
.btn-share, .btn-user, .btn-info {
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 575px) {
  .btn-share, .btn-user, .btn-info {
    font-size: 14px;
  }
}

.btn-share {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  display: block;
  /* background: #60AAEB; */
  background: linear-gradient(180deg,rgba(255,255,255,0.25) 50%,rgba(255,255,255,0) 0),#60AAEB;
  outline: 2px solid #60AAEB;
  outline-offset: -2px;
  /* filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.16)); */
  color: #ffffff;
  border-radius: 4px;
  transition: 0.15s;
}
.btn-share i {
  padding-right: 0.75rem;
}
@media (min-width: 576px) {
  .btn-share:hover {
    /* filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.16)); */
    /* transform: translateY(2px); */
  }
}
@media (max-width: 575px) {
  .btn-share:active {
    /* filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.16)); */
    /* transform: translateY(2px); */
  }
}

.btn-user {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 320px;
  height: 50px;
  line-height: 50px;
  align-items: center;
  color: #fff;
  border-radius: 4px;
  /* background: #00b5da; */
  background: linear-gradient(180deg,rgba(255,255,255,0.25) 50%,rgba(255,255,255,0) 0),#00b5da;
  outline: 2px solid #00b5da;
  outline-offset: -2px;
  /* filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.16)); */
  letter-spacing: 0.1em;
  transition: 0.15s ease;
  font-feature-settings: "palt";
}
.btn-user.plus {
  background: linear-gradient(180deg,rgba(255,255,255,0.25) 50%,rgba(255,255,255,0) 0),#b4980a;
  outline: 2px solid #b4980a;
}
.btn-user i {
  padding-right: 0.75rem;
}
@media (min-width: 576px) {
  .btn-user:hover {
    /* filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.16)); */
    /* transform: translateY(2px); */
  }
}
@media (max-width: 575px) {
  .btn-user:active {
    /* filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.16)); */
    /* transform: translateY(2px); */
  }
}

.btn-info {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 320px;
  height: 50px;
  line-height: 50px;
  align-items: center;
  color: #FFFFFF;
  border: none;
  background: #003c78;
  /* background: linear-gradient(180deg,rgba(255,255,255,0.25) 50%,rgba(255,255,255,0) 0),#DADADA; */
  /* outline: 2px solid #DADADA; */
  outline-offset: -2px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  transition: 0.3s ease;
  font-feature-settings: "palt";
}
.btn-info i {
  padding-right: 0.75rem;
}
@media (max-width: 575px) {
  .btn-info {
    margin: 0 auto;
    width: 100%;
    transition: none;
  }
}
@media (min-width: 576px) {
  .btn-info:hover {
    text-decoration: none;
    /* color: #EF4690; */
    /* background: #ffffff; */
  }
}
@media (max-width: 575px) {
  .btn-info:active {
    text-decoration: none;
    /* color: #EF4690; */
    /* background: #ffffff; */
  }
}



.btn-sample {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: block;
  width: 100%;
  max-width: 180px;
  height: 30px;
  line-height: 30px;
  margin: 0 auto 10px;
  background: #163c78;
  font-size: 12px;
  color: #fff;
  border: none;
  border-radius: 2px;
  transition: 0.15s;
}
@media (min-width: 576px) {
  .btn-sample:hover {
    filter: opacity(0.85);
  }
}
@media (max-width: 575px) {
  .btn-sample:active {
    filter: opacity(0.85);
  }
}

.btn-cart {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: block;
  width: 100%;
  max-width: 180px;
  height: 30px;
  line-height: 30px;
  margin: 0 auto;
  background: #ff78b4;
  font-size: 12px;
  color: #fff;
  border: none;
  border-radius: 2px;
  transition: 0.15s;
  margin-bottom: 3px;
}
@media (min-width: 576px) {
  .btn-cart:hover {
    filter: opacity(0.85);
  }
}
@media (max-width: 575px) {
  .btn-cart:active {
    filter: opacity(0.85);
  }
}

.btn-list {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 240px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  background: #00b5da;
  font-size: 16px;
  color: #fff;
  border: none;
  border-radius: 4px;
  transition: 0.15s;
  margin-top: var(--space-lg);
}
.btn-list::before {
  position: absolute;
  right: 1em;
  content: '▶';
  color: #fff;
  font-size: 11px;
}

@media (min-width: 576px) {
  .btn-list:hover {
    filter: opacity(0.85);
  }
}
@media (max-width: 575px) {
  .btn-list:active {
    filter: opacity(0.85);
  }
}

.btn-list.disable {
  pointer-events: none;
  background: #ccc;
}



/* header */
header {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: #fff;
}
header .logo a img {
  height: 30px;
  width: auto;
}
@media (max-width: 575px) {
  header {
    height: 40px;
  }
  header .logo a img {
    height: 20px;
  }
}



/* main */
main {
  overflow-x: hidden;
}



/* hero */
.hero {
  position: relative;
  width: 100%;
  height: 36vw;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  z-index: 2;
  width: 100%;
  height: 100%;
  flex: 1;
  pointer-events: none;
}

.hero h1 img {
  /* width: 67%; */
  width: 75%;
}

@media (max-width: 767px) {

}
@media (max-width: 575px) {
  .hero {
    height: auto;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
  }
  .hero h1 {
    width: 100%;
    height: 100%;
    text-align: left;
    margin-top: -35vw;
    padding: 0 5%;
  }
  .hero h1 img:nth-child(1) {
    width: 60%;
    margin-left: -2%;
  }
  .hero h1 img:nth-child(2) {
    width: 100%;
  }
}



/* swiper */
.wrapper {
  flex: 1.2;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-wrapper{
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: fit-content !important;
  height: 100%;
  background-color: #FFFFFF;
}

.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,0) 90%,rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.swiper-slide a {
  height: 100%;
}

.swiper-slide a img {
  height: 36vw;
}
@media (max-width: 575px) {
  .swiper-slide a img {
    height: 100vw;
  }
  .swiper-slide::before {
    background-image: linear-gradient(rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 10%,rgba(255,255,255,0) 60%,rgba(255,255,255,1) 100%);
  }
}

.swiper-slide:active {
  transition:0.3s all;
  filter: opacity(70%) contrast(110%) brightness(110%);
}
@media (min-width: 768px) {
  .swiper-slide:hover {
    animation: bright 0.5s;
  }
}
@keyframes bright {
	0% {
		filter: opacity(50%) contrast(120%) brightness(120%);
	}
	100% {
		filter: opacity(100%) contrast(100%) brightness(100%);
	}
}

.wrapper .swiper-container .swiper-wrapper {
  transition-timing-function: linear !important;
}



/* headline */
.headline {
  position: relative;
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (max-width: 575px) {
  .headline {
    padding-top: 25px;
    padding-bottom: 60px;
  }
}

.headline .inner{
  padding: 0 40px;
  width: 90%;
}
@media (max-width: 767px) {
  .headline .inner{
    padding: 0 20px;
    width: 100%;
  }
}

.headline h2,
.headline p {
  position: relative;
  color: #163c78;
}

.headline p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 10px;
  text-align: justify;
}

.headline .attention p {
  font-size: 16px;
  color: #db162a;
  margin-top: 25px;
  padding: 20px 30px;
  border: 2px solid #db162a;
}

@media (max-width: 767px) {
  .headline p {
    font-size: 15px;
  }
}
.headline .attention p {
  font-size: 14px;
  padding: 15px 20px;
}

@media (max-width: 575px) {
  .headline p {
    font-size: 13px;
  }
  .headline .attention p {
    font-size: 12px;
    padding: 10px 15px;
  }
}

.headline p:last-child {
  margin-bottom: 0;
}

.headline .period {
  border-radius: 8px;
  display: inline-block;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .headline .period {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .headline .period .inner {
    padding: 0;
  }
}
.headline .period .view_timer {
  font-size: 1.8rem;
}
@media (max-width: 575px) {
  .headline .period .view_timer {
    font-size: 1.5rem;
  }
}
.headline .period #CDT {
  font-size: 4.296vw;
  color: #E62C00;
}
@media (min-width: 576px) and (max-width: 767px) {
  .headline .period #CDT {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .headline .period #CDT {
    font-size: 8.5vw;
  }
}
.headline .period #CDT .unit {
  font-size: 50%;
  margin-right: 0.3em;
}
.headline .period #CDT .number {
  font-family: "DSEG7";
  position: relative;
  letter-spacing: 0;
}
.headline .period #CDT .number::before{
  content: "00";
  color: #000000;
  opacity: 0.075;
  position: absolute;
  /* z-index: 0; */
  width: 100%;
  overflow: hidden;
}

.headline .btn-share {
  margin-top: 45px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .headline .btn-share {
    margin-top: 35px;
    margin-bottom: 30px;
  }
}



/* user information */
.register {
  position: relative;
  padding-bottom: 60px;
}
@media (max-width: 575px) {
  .register {
    padding-bottom: 40px;
  }
}
.register-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.register-inner div {
  margin-top: auto;
}
.register-inner img {
  margin-bottom: 5px;
}



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



/* sale共通パーツ */
.sub_title {
  text-align: center;
}

.balloon {
  width: 100%;
  text-align: center;
}

.balloon img {
  margin-top: -22px;
  height: 53px;
}

.sub_title dd {
  color: #ff78b4;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 40px;
}

.playback_sale .inner .sub_title:not(:first-child) {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .sub_title dd {
    font-size: 20px;
    margin: 10px 0 30px;
  }
  .playback_sale .inner .sub_title:not(:first-child) {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .balloon img {
    margin-top: -17px;
    height: 42px;
  }
  .sub_title dd {
    font-size: 1.5rem;
    margin: 10px 0 20px;
  }
  .playback_sale .inner .sub_title:not(:first-child) {
    margin-top: 30px;
  }
}


/* playback_sale */
.playback_sale {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .playback_sale {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .playback_sale {
    padding-bottom: 60px;
  }
}

.sale-group {
  display: grid;  
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 60px 3%;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .sale-group {
    gap: 50px 3.5%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .sale-group {
    gap: 40px 3.5%;
    grid-template-columns: repeat(3, 1fr);
  }
}

.sale-item {
  position: relative;
  text-align: center;
  width: 100%;
  height: 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;
}

@media (min-width: 576px) {
  .sale-item a:hover figure img {
    transform: scale(1.1, 1.1);
    filter: opacity(0.8);
  }
}
@media (max-width: 575px) {
  .sale-item a:active figure img {
    filter: opacity(0.8);
  }
}
.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;
  }
}
.sale-item a dl {
  margin: 0.75rem 0;
  overflow: hidden;
  width: 100%;
}
.sale-item a dl dt {
  font-size: 13px;
  font-weight: bold;
  color: #163c78;
  letter-spacing: 0.05em;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575px) {
  .sale-item a dl dt {
    font-size: 11px;
  }
}
.sale-item a dl dd {
}
.sale-item a dl dd .before {
  background: linear-gradient(transparent 0.8em, #9e9e9e 0, #9e9e9e calc(0.8em + 1px), transparent 0, transparent calc(0.8em + 3px));
  color: #163c78;
  opacity: 0.5;
  font-size: 12px;
  display: inline-block;
}
.sale-item a dl dd .arrow {
  font-size: 10px;
  display:inline-block;
  transform: scale(0.8);
  color: #163c78;
  opacity: 0.5;
}
.sale-item a dl dd .after {
  color: #F00000;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
}



/* schedule & end 共通 */
.playback_sale.schedule .sale-group,
.playback_sale.end .sale-group {
  gap: 30px 3%;
}
@media (max-width: 767px) {
  .playback_sale.schedule .sale-group,
  .playback_sale.end .sale-group {
    gap: 25px 3.5%;
  }
}
@media (max-width: 575px) {
  .playback_sale.schedule .sale-group,
  .playback_sale.end .sale-group {
    gap: 15px 3.5%;
  }
}

/* schedule */
.playback_sale.schedule {
  background-color: #F2F2F2;
}

.playback_sale.schedule .sub_title dd {
  color: #00b5da;
}

.playback_sale.schedule .sale-item a dl dd {
  display: none;
} 

.playback_sale.schedule .sale-item .btn-sample,
.playback_sale.schedule .sale-item form {
  display: none;
}

/* end */
.playback_sale.end {
  background-color: #F2F2F2;
}
.playback_sale.end .inner {
  padding-top: 40px;
}
@media (max-width: 575px) {
  .playback_sale.end .inner {
    padding-top: 20px;
  }
}

.playback_sale.end .sub_title {
  display: none;
}

.playback_sale.end .sale-item a dl dd .after ,
.playback_sale.end .sale-item a dl dd .arrow {
  display: none;
} 

.playback_sale.end .sale-item a dl dd .before {
  background: none;
  color: #163c78;
  opacity: 1;
}
.playback_sale.end .sale-item .btn-sample,
.playback_sale.end .sale-item form {
  display: none;
}



/* footer */
footer {
  background: #FFFFFF;
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 2;
}
footer .register {
  padding-top: 40px;
}
@media (max-width: 575px) {
  footer .register {
    padding-top: 30px;
  }
}
footer .footer-info {
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
footer .footer-inner {
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1024px;
}
@media (min-width: 768px) {
  footer .footer-inner {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
footer h4 {
  margin-bottom: 0.5em;
  font-size: 1.5rem;
}
footer p {
  font-size: 1.2rem;
}
@media (max-width: 575px) {
  footer p {
    text-align: left;
  }
}
footer .copyright,
footer address {
  color: #747474;
}
footer .logo {
  margin: 2.5em 0 1.5em;
}
@media (max-width: 575px) {
  footer .logo {
    text-align: center;
  }
}
footer .logo a img {
  width: 200px;
  height: auto;
}
footer address {
  margin-top: 1em;
  font-size: 1.1rem;
}
@media (max-width: 575px) {
  footer .inner {
    padding: 0;
  }
}

.paifes_top {
  position: relative;
  margin: 0 auto;
}

.paifes_top img {
  width: 60%;
  max-width: 280px;
}

.paifes_top p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 575px) {
  .paifes_top p {
    font-size: 14px;
  }
}


/* page-top */
#page-top {
  position: fixed;
  bottom: -200px;
  right: 10px;
  margin: 0;
  padding: 0;
  z-index: 97;
}
#page-top a {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: #ffffff;
  transition: 0.2s ease;
  display: flex;
  justify-content: center;
}
#page-top a:hover {
  background: #000000;
}
#page-top a img {
  margin: auto;
}



/* エンド版 */
.hero h1 {
  position: relative;
}

.hero h1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(-7deg);
  background: url("../img/sale_end.svg") center / contain no-repeat;
  width: 65%;
  height: 75%;
}

@media (max-width: 575px) {
  .hero h1::after {
    top: 80%;
    left: 50%;
    width: 80%;
    height: 75%;
  }
}