@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@500;700&family=Noto+Sans+JP:wght@500;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*--------------------------------------------------------------
  reset.css
--------------------------------------------------------------*/
/***
    The new CSS reset - version 1.9 (last updated 19.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/*--------------------------------------------------------------
base
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  /* scroll-padding-top: min(200px, 12.5rem, 26.66666666666667vw); */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 2;
  letter-spacing: 0em;
  background: url(https://gigaplus.makeshop.jp/koikesp/wac/images/background.webp) repeat fixed;
  background-size: cover;
}

a {
  text-decoration: none;
}

figure {
  margin: 0 !important;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.pd_40 {
  padding-top: min(40px, 2.5rem, 5.33333333333333vw);
}

.mr_20 {
  margin-top: min(20px, 1.25rem, 2.66666666666667vw);
}

.mr_40 {
  margin-top: min(40px, 2.5rem, 5.33333333333333vw);
}

.mr_80 {
  margin-top: min(80px, 5rem, 10.6666666666667vw);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.on {
  font-family: 'On Diatype Standard';
}

.din {
  font-family: din-2014-narrow, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.animate__animated {
  --animate-delay: 0s;
  animation-delay: var(--animate-delay);
}

/*--------------------------------------------------------------
  header
--------------------------------------------------------------*/
.l-header__inner {
  display: flex;
  width: min(100%, 750px);
  margin: 0 auto;
  background-color: #333333;
  height: min(80px, 5rem, 10.6666666666667vw);
  justify-content: center;
  align-items: center;
}

.l-header__inner img {
  width: min(265px, 16.5625rem, 35.3333333333333vw);
}

/* Swiper用の追加スタイル */
.header-swiper {
  width: 100%;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-pagination {
  position: sticky !important;
  margin-top: 20px;
  text-align: center;
}

.swiper-wrapper {
  height: auto !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

/* <!-- -----MP4----- --> */
.video-overlay.is-hidden {
  display: none !important;
}

.video-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  background: url(https://gigaplus.makeshop.jp/koikesp/wac/images/background.webp) repeat fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 1s ease;
  pointer-events: auto;
}

.video-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.video-overlay video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

body.noscroll {
  overflow: hidden;
  height: 100vh;
}

.skip-button {
  position: absolute;
  bottom: min(40px, 2.5rem, 5.33333333333333vw);
  right: min(40px, 2.5rem, 5.33333333333333vw);
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding-block: min(20px, 1.25rem, 2.66666666666667vw);
  padding-inline: min(32px, 2rem, 4.26666666666667vw);
  font-size: min(28px, 1.75rem, 3.73333333333333vw);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.skip-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/*--------------------------------------------------------------
 footer
--------------------------------------------------------------*/
footer.wac_footer {
  width: min(100%, 750px);
  height: min(75px, 4.6875rem, 10vw);
  margin-inline: auto;
  background: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer.wac_footer p.copyright {
  font-size: min(18px, 1.125rem, 2.4vw);
  line-height: 1.4166666667;
  color: #ffffff;
  text-align: center;
  padding-block: min(12px, 0.75rem, 1.6vw);
}

/*--------------------------------------------------------------
  main
--------------------------------------------------------------*/

.l-main__inner {
  width: min(100%, 750px);
  margin: 0 auto;
  background: url() repeat;
  background-color: #fff;
  background-size: 100%;
}

.inner {
  max-width: min(650px, 40.625rem, 86.66666666666667vw);
  margin: 0 auto;
}

/*--------------------------------------------------------------
  sec01
--------------------------------------------------------------*/
section.sec01 {
  padding-top: min(102px, 6.375rem, 13.6vw);
  padding-bottom: min(80px, 5rem, 10.6666666666667vw);
}

.sec01_ttl h2 {
  font-size: min(64px, 4rem, 8.53333333333333vw);
  text-align: center;
  font-weight: bold;
  line-height: 0.9;
}

.sec01_contents {
  padding-block: min(40px, 2.5rem, 5.33333333333333vw);
}

.sec01_contents p {
  font-size: min(28px, 1.75rem, 3.73333333333333vw);
  text-align: left;
  font-weight: bold;
  line-height: 1.8;
}

.sec01_img {
  height: min(391px, 24.4375rem, 52.1333333333333vw);
  width: 100%;
  overflow: hidden;
}

.sec01_img img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-button-prev,
.swiper-button-next {
  width: min(60px, 3.75rem, 8vw) !important;
  height: min(60px, 3.75rem, 8vw) !important;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: min(60px, 3.75rem, 8vw);
  height: min(60px, 3.75rem, 8vw);
  object-fit: contain;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/*--------------------------------------------------------------
  sec02
--------------------------------------------------------------*/
section.sec02 {
  background-color: #000000;
  color: #fff;
  padding-block: min(80px, 5rem, 10.6666666666667vw);
}

.sec02_ttl h2 {
  font-size: min(64px, 4rem, 8.53333333333333vw);
  text-align: center;
  font-weight: bold;
  line-height: 0.9;
}

.present {
  padding-top: min(40px, 2.5rem, 5.33333333333333vw);
}

.event {
  padding-top: min(100px, 6.25rem, 13.3333333333333vw);
}

.sec02_img p {
  font-size: min(32px, 2rem, 4.26666666666667vw);
  text-align: left;
  font-weight: bold;
  line-height: 1.6;
  padding-bottom: min(19px, 1.1875rem, 2.53333333333333vw);
}

.sec02_contents {
  padding-top: min(20px, 1.25rem, 2.66666666666667vw);
}

.sec02_contents p {
  font-size: min(26px, 1.625rem, 3.46666666666667vw);
  text-align: left;
  font-weight: 500;
  line-height: 1.6;
}

.sec02_contents p span {
  font-weight: bold;
}

.day {
  padding-top: min(40px, 2.5rem, 5.33333333333333vw);
}

.day p {
  font-size: min(26px, 1.625rem, 3.46666666666667vw);
  text-align: left;
  font-weight: 500;
  line-height: 1.6;
}

.day p span {
  border: solid 1px #fff;
  padding-inline: min(26px, 1.625rem, 3.46666666666667vw);
  padding-top: min(3px, 0.1875rem, 0.4vw);
  padding-bottom: min(6px, 0.375rem, 0.8vw);
  margin-right: min(20px, 1.25rem, 2.66666666666667vw);

}

a.campaign_btn {
  height: min(120px, 7.5rem, 16vw);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: min(40px, 2.5rem, 5.33333333333333vw);
  background-color: #D5D717;
  line-height: 1;
  border-radius: min(10px, 0.625rem, 1.33333333333333vw);
}

.campaign_btn span {
  line-height: 1;
  color: #000000;
  text-align: center;
  font-size: min(28px, 1.75rem, 3.73333333333333vw);
}

.campaign_btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  color: #000000;
  line-height: 1;
  width: min(15px, 0.9375rem, 2vw);
  height: min(15px, 0.9375rem, 2vw);
  border: 2px solid #000000;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  top: 50%;
  right: min(22px, 1.375rem, 2.933333333333333vw);
  transform: translateY(-50%) rotate(45deg);
}

/*--------------------------------------------------------------
  sec03
--------------------------------------------------------------*/
section.sec03 {
  padding-top: min(80px, 5rem, 10.6666666666667vw);
  padding-bottom: min(120px, 7.5rem, 16vw);
}

.sec03_ttl h2 {
  font-size: min(64px, 4rem, 8.53333333333333vw);
  text-align: center;
  font-weight: bold;
  line-height: 0.9;
}

.model_list {
  padding-top: min(40px, 2.5rem, 5.33333333333333vw);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: min(20px, 1.25rem, 2.66666666666667vw);
}

a.model_btn {
  width: min(315px, 19.6875rem, 42vw);
  height: min(135px, 8.4375rem, 18vw);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  line-height: 1;
  border-radius: min(10px, 0.625rem, 1.33333333333333vw);
}

.model_btn span {
  line-height: 1.25;
  color: #fff;
  text-align: center;
  font-size: min(28px, 1.75rem, 3.73333333333333vw);
}

.model_btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  color: #D5D717;
  line-height: 1;
  width: min(15px, 0.9375rem, 2vw);
  height: min(15px, 0.9375rem, 2vw);
  border: 2px solid #D5D717;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  bottom: min(10px, 0.625rem, 1.33333333333333vw);
  right: 50%;
  transform: translateY(-50%) rotate(135deg);
}

.model {
  padding-top: min(100px, 6.25rem, 13.3333333333333vw);
  padding-bottom: min(20px, 1.25rem, 2.66666666666667vw);
}

.model h2 {
  font-size: min(40px, 2.5rem, 5.33333333333333vw);
  text-align: center;
  line-height: 1.44;
  font-weight: bold;
}

.model img {
  padding-top: min(40px, 2.5rem, 5.33333333333333vw);
  padding-bottom: min(20px, 1.25rem, 2.66666666666667vw);
}

.model p {
  font-size: min(28px, 1.75rem, 3.73333333333333vw);
  text-align: left;
  font-weight: 500;
  line-height: 1.6;
}

.comment {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: min(10px, 0.625rem, 1.33333333333333vw);
  padding-block: min(10px, 0.625rem, 1.33333333333333vw);
}

.comment_img {
  width: min(168px, 10.5rem, 22.4vw);
  height: min(168px, 10.5rem, 22.4vw);
}

.comment_txt {
  width: min(472px, 29.5rem, 62.9333333333333vw);
}

.comment_txt p {
  padding-top: min(10px, 0.625rem, 1.33333333333333vw);
  line-height: 1.6;
  font-size: min(26px, 1.625rem, 3.46666666666667vw);
  text-align: left;
  font-weight: 500;
}

.comment_txt p.miura {
  padding-top: 0;
  padding-bottom: min(10px, 0.625rem, 1.33333333333333vw);
  border-bottom: solid 1px #D5D717;
}

a.series_btn {
  height: min(120px, 7.5rem, 16vw);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: min(20px, 1.25rem, 2.66666666666667vw);
  background-color: #D5D717;
  line-height: 1;
  border-radius: min(10px, 0.625rem, 1.33333333333333vw);
  /* padding-inline: min(245px, 15.3125rem, 32.66666666666667vw); */
}

.series_btn span {
  line-height: 1;
  color: #000000;
  text-align: center;
  font-size: min(32px, 2rem, 4.2666666667vw);
}

.series_btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  color: #000000;
  line-height: 1;
  width: min(15px, 0.9375rem, 2vw);
  height: min(15px, 0.9375rem, 2vw);
  border: 2px solid #000000;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  top: 50%;
  right: min(22px, 1.375rem, 2.933333333333333vw);
  transform: translateY(-50%) rotate(135deg);
}

a.series_btn-gray {
  height: min(120px, 7.5rem, 16vw);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: min(20px, 1.25rem, 2.66666666666667vw);
  background-color: #777;
  line-height: 1;
  border-radius: min(10px, 0.625rem, 1.33333333333333vw);
}

.series_btn-gray span {
  line-height: 1;
  color: #000000;
  text-align: center;
  font-size: min(26px, 1.625rem, 3.4666666667vw);
}

.series_btn-gray::after {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  color: #000000;
  line-height: 1;
  width: min(15px, 0.9375rem, 2vw);
  height: min(15px, 0.9375rem, 2vw);
  border: 2px solid #000000;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  top: 50%;
  right: min(22px, 1.375rem, 2.933333333333333vw);
  transform: translateY(-50%) rotate(135deg);
}

p.attention01 {
  padding-top: min(20px, 1.25rem, 2.66666666666667vw);
  font-size: min(22px, 1.375rem, 2.93333333333333vw);
  font-weight: 500;
  line-height: 1.454545454545455;
  text-align: left;
}

.series_movie {
  padding-top: min(40px, 2.5rem, 5.333333333vw);
}

.series_movie_contents {
  text-align: center;
  aspect-ratio: 16 / 9;
}

.series_movie_contents video {
  width: 100%;
  height: 100%;
}

.release_box {
  padding-top: min(17px, 1.0625rem, 2.26666666666667vw);
  display: flex;
  align-items: center;
  gap: min(24px, 1.5rem, 3.2vw);
}

/* .release {
  padding-top: min(23px, 1.4375rem, 3.06666666666667vw);
} */

.release p {
  width: min(224px, 14rem, 29.8666666666667vw);
  text-align: center;
  background-color: #000;
  color: #fff;
  font-size: min(52px, 3.25rem, 6.93333333333333vw);
  font-weight: bold;
  line-height: 1.1;
  padding-top: min(8px, 0.5rem, 1.06666666666667vw);
}

.release p span {
  font-size: min(26px, 1.625rem, 3.46666666666667vw);
  margin-left: min(7px, 0.4375rem, 0.933333333333334vw);
  font-family: "Noto Sans JP", sans-serif;
}

.reserve p {
  width: min(402px, 25.125rem, 53.6vw);
  font-size: min(21px, 1.3125rem, 2.8vw);
  line-height: 1.6;
  font-weight: bold;
  padding-left: min(10px, 0.625rem, 1.33333333333333vw);
  padding-right: min(26px, 1.625rem, 3.46666666666667vw);
  padding-top: min(13px, 0.8125rem, 1.73333333333333vw);
  padding-bottom: min(19px, 1.1875rem, 2.53333333333333vw);
}

.reserve p span.day {
  background-color: #000;
  color: #fff;
  font-size: min(21px, 1.3125rem, 2.8vw);
  line-height: 1;
  font-weight: 400;
  font-family: 'On Diatype Standard';
  padding-block: min(2px, 0.125rem, 0.266666666666667vw);
  padding-top: min(4px, 0.25rem, 0.533333333333333vw);
  padding-inline: min(12px, 0.75rem, 1.6vw);
  margin-left: min(10px, 0.625rem, 1.33333333333333vw);
}

.monster .model img {
  padding-top: min(9px, 0.5625rem, 1.2vw);
}

/*--------------------------------------------------------------
  sec04
--------------------------------------------------------------*/
section.sec04 {
  padding-bottom: min(120px, 7.5rem, 16vw);
}

.lineup_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.lineup-box {
  width: 47%;
  /* margin-top: min(80px, 5rem, 10.66666666666667vw); */
}

p.gender {
  font-family: 'On Diatype Standard';
  font-size: min(24px, 1.5rem, 3.2vw);
  font-weight: 400;
  line-height: 1.25;
  margin-top: min(20px, 1.25rem, 2.66666666666667vw);
  text-align: left;
  margin-bottom: min(6px, 0.375rem, 0.8vw);
}

p.item {
  font-family: 'On Diatype Standard';
  font-size: min(28px, 1.75rem, 3.73333333333333vw);
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0;
  margin: 0 auto;
  text-align: left;
  margin-bottom: min(6px, 0.375rem, 0.8vw);
}

p.color {
  font-family: 'On Diatype Standard';
  font-size: min(24px, 1.5rem, 3.2vw);
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  margin-bottom: min(6px, 0.375rem, 0.8vw);
}

p.price {
  font-family: 'On Diatype Standard';
  font-size: min(32px, 2rem, 4.26666666666667vw);
  font-weight: bold;
  line-height: 1.475;
  text-align: left;
}

span.price_mark {
  font-family: 'On Diatype Standard';
  font-size: min(24px, 1.5rem, 3.2vw);
}

span.tax {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(20px, 1.25rem, 2.6666666667vw);
}

a.lineup_btn {
  height: min(100px, 6.25rem, 13.3333333333333vw);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: min(20px, 1.25rem, 2.66666666666667vw);
  background-color: #D5D717;
  line-height: 1;
  border-radius: min(10px, 0.625rem, 1.33333333333333vw);
  padding-left: min(90px, 5.625rem, 12vw);
  padding-right: min(85px, 5.3125rem, 11.33333333333333vw);
}

.lineup_btn span {
  line-height: 1;
  color: #000000;
  text-align: center;
  font-size: min(26px, 1.625rem, 3.4666666667vw);
}

.lineup_btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  color: #000000;
  line-height: 1;
  width: min(15px, 0.9375rem, 2vw);
  height: min(15px, 0.9375rem, 2vw);
  border: 2px solid #000000;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  top: 50%;
  right: min(22px, 1.375rem, 2.933333333333333vw);
  transform: translateY(-50%) rotate(45deg);
}

a.lineup_btn-gray {
  height: min(100px, 6.25rem, 13.3333333333333vw);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: min(25px, 1.5625rem, 3.33333333333333vw);
  background-color: #777;
  line-height: 1;
  border-radius: min(10px, 0.625rem, 1.33333333333333vw);
  padding-left: min(90px, 5.625rem, 12vw);
  padding-right: min(85px, 5.3125rem, 11.33333333333333vw);
}

.lineup_btn-gray span {
  line-height: 1;
  color: #000000;
  text-align: center;
  font-size: min(26px, 1.625rem, 3.4666666667vw);
}

.lineup_btn-gray::after {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  color: #000000;
  line-height: 1;
  width: min(15px, 0.9375rem, 2vw);
  height: min(15px, 0.9375rem, 2vw);
  border: 2px solid #000000;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  top: 50%;
  right: min(22px, 1.375rem, 2.933333333333333vw);
  transform: translateY(-50%) rotate(45deg);
}

.shop_list {
  padding-top: min(30px, 1.875rem, 4vw);
  padding-bottom: min(20px, 1.25rem, 2.66666666666667vw);
}

.shop_list_ttl {
  border-block: solid 1px #707070;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.shop_list_ttl h2 {
  padding: 20px;
  line-height: 1;
  color: #000000;
  text-align: center;
  font-size: min(26px, 1.625rem, 3.4666666667vw);
  margin: 0;
}

.accordion-icon {
  position: absolute;
  right: 20px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.accordion-header.open .accordion-icon {
  transform: rotate(45deg);
  /* ＋ → × */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.accordion-content.open {
  /* JavaScriptでmax-heightをセットするので、ここでは何も書かなくてOK */
}

.shop p {
  font-size: min(24px, 1.5rem, 3.2vw);
  text-align: center;
}

.shop p span {
  border-bottom: solid 1px #000;
}

.sec04 p.attention01 {
  padding-top: min(20px, 1.25rem, 2.66666666666667vw);
  padding-bottom: min(40px, 2.5rem, 5.33333333333333vw);
  font-size: min(22px, 1.375rem, 2.93333333333333vw);
  font-weight: 500;
  line-height: 1.454545454545455;
  text-align: left;
}

.sec04 .release_box {
  padding-top: min(80px, 5rem, 10.66666666666667vw);
  display: flex;
  align-items: center;
  gap: min(24px, 1.5rem, 3.2vw);
}

/* 計算方法
10px
0.625rem = 10px / 16px
1.3333333333vw = 10px / 750px * 100%
*/