/*
  整理版 CSS
  - スマホ: 〜767px
  - タブレット: 768px〜1024px
  - PC: 1025px〜1439px
  - 大きいPC: 1440px〜
  - 元CSSの細かいスマホ調整（〜640px / 〜560px / 〜480px）は、表示崩れ防止のためスマホセクション内に残しています。
*/

/* =========================
  スマホ
  〜767px
========================= */

@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&display=swap');

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.45s;
  animation-timing-function: ease;
}

::view-transition-old(root) {
  animation-name: fade-out;
}

::view-transition-new(root) {
  animation-name: fade-in;
}

@keyframes fade-out {
  from {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: scale(1.02);
    filter: blur(8px);
  }

}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: scale(0.98);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }

}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "LINE Seed JP", sans-serif;
  color: #fff;
  background: #111;
  overflow-x: hidden;
}

h2 {
  font-family: "LINE Seed JP", sans-serif;
  text-align: center;
  font-weight: bold;
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
}

input[type="date"]:invalid::-webkit-datetime-edit {
  color: #999999;
}

input[type="date"]:invalid {
  color: #999999;
}

:root {
  --header-height: 80px;
  --sp-header-height: 56px;
  --content-width: 500px;
  --side-width: 260px;
  --left-width: var(--side-width);
  --content-gap: 24px;
  --vertical-space: 50px;
  --bg-color: #111;
  --panel-color: #fff;
  --border-color: #ddd;
  --text-color: #222;
  --main-aspect-ratio: 9 / 16;
  --main-min-height: calc(var(--content-width) * 16 / 9);
  --pc-frame-height: calc(100svh - var(--header-height) - var(--vertical-space) * 2);
  --pc-content-height: max(var(--pc-frame-height), var(--main-min-height));
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100svh;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-image: url(main/img/pcbg.png);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
}

.site-header {
  height: var(--header-height);
  background: #383434;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  flex: 0 0 auto;
}

.header-inner {
  width: 100%;
  max-width: 1320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  width: 160px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #777;
  border-radius: 4px;
  flex: 0 0 auto;
}

.site-logo img {
  width: 100%;
}

.login-button {
  appearance: none;
  border: none;
  background: #e73e78;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  flex: 0 0 auto;
}

.page-layout {
  order: 2;
  min-height: calc(100svh - var(--header-height));
  padding: var(--vertical-space) 32px;
  display: grid;
  grid-template-columns: minmax(0, var(--left-width))
  minmax(0, var(--content-width))
  minmax(0, var(--side-width));
  justify-content: center;
  align-items: start;
  flex: 1 0 auto;
}

.side-visual,
.main-content,
.side-menu {
  background: var(--panel-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  height: var(--pc-content-height);
}

.side-visual {
  width: 100%;
  max-width: var(--left-width);
}

.main-content {
  width: 100%;
  max-width: var(--content-width);
  aspect-ratio: var(--main-aspect-ratio);
  min-height: var(--main-min-height);
  background: #000;
}

.side-menu {
  width: 100%;
  max-width: var(--side-width);
}

.side-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
}

.side-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.image-placeholder {
  color: #888;
  font-size: 14px;
  writing-mode: vertical-rl;
  letter-spacing: 0.08em;
}

.main-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.side-menu {
  padding: 24px;
  background: #fff;
}

.side-menu-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
}

.side-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.side-menu-list a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f4f4f4;
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.side-menu-list a:hover {
  background: #e8e8e8;
}

.site-footer {
  order: 3;
  display: block;
  background: #383434;
  padding: 20px 32px;
  flex: 0 0 auto;
  z-index: 2;
}

.footer-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
  align-items: center;
  gap: 24px;
  justify-content: center;
  justify-items: center;
}

.footer-note {
  margin: 0;
  font-size: 10px !important;
  line-height: 1.6;
  color: #fff;
  text-align: left;
  padding-bottom: 30px;
  font-weight: 100;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  padding: 30px 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-copyright {
  margin: 0;
  font-size: 10px !important;
  color: #fff;
  text-align: center;
  padding: 4px;
}





.maintext {
  font-size: 60.666px;
  font-family: "LINE Seed JP", sans-serif;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.054;
  text-align: center;
  text-shadow: 0px 0px 21.75px rgba(0, 0, 0, 0.7);
  -moz-transform: matrix( 1.82968098627332,-0.07779738785918,0,1.82968098627332,0,0);
  -webkit-transform: matrix( 1.82968098627332,-0.07779738785918,0,1.82968098627332,0,0);
  -ms-transform: matrix( 1.82968098627332,-0.07779738785918,0,1.82968098627332,0,0);
  left: 1767.194px;
  top: 270.272px;
  z-index: 124;
}

.sakkap {
  font-size: 4.5vw;
  font-family: "LINE Seed JP", sans-serif;
  color: rgb(255, 255, 255);
  font-weight: 900;
  line-height: 1.842;
  text-align: center;
  text-shadow: 0px 0px 21.75px rgba(0, 0, 0, 0.7);
  -moz-transform: matrix( 2.03048280560197,-0.08633541013647,-7.82121907262111e-17,2.03048280560197,0,0);
  -webkit-transform: matrix( 2.03048280560197,-0.08633541013647,-7.82121907262111e-17,2.03048280560197,0,0);
  -ms-transform: matrix( 2.03048280560197,-0.08633541013647,-7.82121907262111e-17,2.03048280560197,0,0);
  left: 1811.552px;
  top: 1755.075px;
  z-index: 108;
}

.sakkap span {
  color: #f582a0;
}

.capt {
  font-family: "LINE Seed JP";
  font-size: 10px !important;
  line-height: 15px;
  font-weight: 100;
  margin-top: 0;
}

p {
  font-family: "LINE Seed JP";
  text-align: center;
  font-weight: bold;
  line-height: 38px;
}

small {
  font-size: 10px;
}

.contactcapt{
  text-align: left;
  color: #000;
  font-size: 12px;
  line-height: 20px;
}



body {
  margin: 0;
  min-height: 160vh;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  background: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.82)),
  radial-gradient(circle at 50% 0%, #4a1838 0%, #1a1a1a 52%, #0f0f0f 100%);
  background-color: #0f0f0f;
}

section {
  padding: 80px 0;
}

.demo {
  width: min(92%, 640px);
  margin: 0 auto;
  padding: 56px 0 220px;
}

.demo__card {
  padding: 28px;
  border: 2px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}

.demo h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 8vw, 48px);
  line-height: 1.15;
}

.demo p {
  margin: 0;
  line-height: 1.9;
  color: rgba(255,255,255,.84);
}

 @media (max-width:375px){ 
.heroarea{
      height: 90vh;
    width: 100%;
}  
}

.heroarea {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 9/16;
  /* min-height: calc(500px * 16 / 9); */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.57) 26%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%);
}

.heroarea h3 {
  font-size: 4vw;
  margin-top: 10vw;
  margin-bottom: 10vw;
  padding: 1vw;
  font-family: "LINE Seed JP";
  color: rgb(255, 255, 255);
  font-weight: 900;
  line-height: 1.054;
  text-align: center;
  background-color: #e73e78;
  -moz-transform: matrix( 1.82968098627332,-0.07779738785918,0,1.82968098627332,0,0);
  -webkit-transform: matrix( 1.82968098627332,-0.07779738785918,0,1.82968098627332,0,0);
  -ms-transform: matrix( 1.82968098627332,-0.07779738785918,0,1.82968098627332,0,0);
}

.heroarea img {
  margin: 0 auto;
  margin-bottom: 100px;
}

.heroarea .price {
  width: 90%;
}

.dodge {
  position: absolute;
  mix-blend-mode: color-dodge;
  z-index: -1;
}

.fvtitle {
  font-size: 6.5vw;
  font-family: "LINE Seed JP";
  color: rgb(255, 255, 255);
  font-weight: 900;
  line-height: 1.054;
  text-align: center;
  text-shadow: 0px 0px 11.75px rgba(0, 0, 0, 1);
  -moz-transform: matrix( 1.82968098627332,-0.07779738785918,0,1.82968098627332,0,0);
  -webkit-transform: matrix( 1.82968098627332,-0.07779738785918,0,1.82968098627332,0,0);
  -ms-transform: matrix( 1.82968098627332,-0.07779738785918,0,1.82968098627332,0,0);
}

.fvtitle span {
  letter-spacing: -3.5px;
  font-size: 7.8vw;
}

.original_production .bidoo_flex {
  margin-top: 16px;
}

.original_production .phone {
  margin: 0 auto;
  margin-top: 100px;
}

.original_production .bidoo_flex p {
  font-weight: 600;
  font-size: 26px;
}

.bidoo_flex img {
  width: 30%;
  max-width: 120px;
}

.coming_txt {
  font-size: 20px;
  line-height: 28px;
}

.bidoo_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: baseline;
}

.bidoo_flex p {
  margin-bottom: 0;
  padding-left: 8px;
}

.feature-accordion-section {
  position: relative;
  width: 100%;
  padding: 64px 20px 96px;
  background-image: linear-gradient(
  rgba(255, 255, 255, 0.78),
  rgba(255, 255, 255, 0.78)
  ),
  url("../img/feature-bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.feature-accordion-inner {
  width: min(90%, 650px);
  margin: 0 auto;
  padding: 50px 0;
}

.feature-accordion-item {
  margin-bottom: 26px;
}

.feature-accordion-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 96px;
  padding: 22px 88px 22px 40px;
  border: none;
  border-radius: 16px;
  background: #585858;
  color: #fff;
  font: inherit;
  cursor: pointer;
  box-shadow: none;
}

.feature-accordion-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-align: left;
}

.feature-accordion-icon {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.feature-accordion-icon::before,
.feature-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 4px;
  border-radius: 999px;
  background: #555;
  transition: transform 0.25s ease;
}

.feature-accordion-icon::before {
  transform: translate(-40%, -50%) rotate(45deg);
  transform-origin: right center;
}

.feature-accordion-icon::after {
  transform: translate(-65%, -50%) rotate(-45deg);
  transform-origin: left center;
}

.feature-accordion-item.is-open .feature-accordion-icon::before {
  transform: translate(-40%, -50%) rotate(-45deg);
}

.feature-accordion-item.is-open .feature-accordion-icon::after {
  transform: translate(-65%, -50%) rotate(45deg);
}

.feature-accordion-body {
  display: none;
  padding: 46px 42px 46px;
  border: 4px solid #9b9b9b;
  border-top: none;
  border-radius: 0 0 16px 16px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.feature-accordion-item.is-open .feature-accordion-head {
  border-radius: 16px 16px 0 0;
}

.feature-accordion-item.is-open .feature-accordion-body {
  display: block;
}

.feature-accordion-body p {
  margin: 0;
  color: #555;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.03em;
  text-align: left;
  font-size: 16px !important;
}

.feature-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: fit-content;
  min-height: 64px;
  margin: 34px auto 0;
  padding: 10px 28px;
  border: 3px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-link-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}



.float-cta.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.float-cta {
  --fade-progress: 0;
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 999;
  width: min(100%, 760px);
  height: auto;
  display: block;
  text-decoration: none;
  color: #fff;
  transform: translateX(-50%);
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(24px);
  transition: opacity 0.35s ease,
  visibility 0.35s ease,
  transform 0.35s ease;
}

.float-cta-shell {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.float-cta-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 0.18s linear;
}

.float-cta-bg-pink {
  background-image: url("../img/cta_pink.png");
}

.float-cta-bg-purple {
  background-image: url("../img/cta_purple.png");
  opacity: var(--fade-progress);
}

.float-cta-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  height: 100%;
  padding: 34px 24px 18px;
  text-align: center;
}

.float-cta-main {
  display: block;
  font-size: clamp(22px, 4.8vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
}

.float-cta-sub {
  display: block;
  margin-top: 8px;
  font-size: clamp(14px, 3vw, 19px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.float-cta-arc-text {
  position: absolute;
  left: 50%;
  top: -100px;
  width: 80%;
  height: 280px;
  transform: translateX(-50%);
  pointer-events: none;
  overflow: visible;
  z-index: 3;
}

.float-cta-arc-copy {
  fill: #fff;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.08em;
  paint-order: stroke;
  stroke: rgba(0, 0, 0, 0.7);
  stroke-width: 5px;
  stroke-linejoin: round;
  text-shadow: 0 0 3px #000, 0 0 5px #3e3e3e;
}

#floatCtaTextMeasure {
  visibility: hidden;
}



.original_production h2 {
  font-size: 20px;
  margin-top: 10vw;
  margin-bottom: 10vw;
  font-family: "LINE Seed JP";
  color: white;
  font-weight: 900;
  line-height: 1.093;
  text-align: center;
  text-shadow: 0px 0px 21.75px rgba(0, 0, 0, 0.7);
  -moz-transform: matrix( 2.39874035498411,-0.10199359077904,-6.4929455429428e-16,2.39874035498411,0,0);
  -webkit-transform: matrix(2.39874035498411, -0.10199359077904, -6.4929455429428e-16, 2.39874035498411, 0, 0);
  -ms-transform: matrix( 2.39874035498411,-0.10199359077904,-6.4929455429428e-16,2.39874035498411,0,0);
}

.original_production h2 span {
  color: #f582a0;
}

.subtitle {
  background: #f582a0;
  padding: 5px 50px;
  border-radius: 999px;
  width: max-content;
  text-align: center;
  margin: 0 auto;
  font-weight: normal;
  font-size: 18px;
  font-weight: 600;
}

.subtitle_p {
  background: #e73e78;
  padding: 5px 50px;
  border-radius: 999px;
  width: max-content;
  text-align: center;
  margin: 0 auto;
  font-weight: normal;
  font-size: 18px;
  font-weight: 600;
}

.caption {
  font-size: 10px;
  font-family: "LINE Seed JP";
  font-weight: lighter;
}

.img_80 {
  width: 80%;
  margin: 0 auto;
}

.img_90 {
  width: 90%;
  margin: 0 auto;
}

.t_50 {
  padding-top: 50px;
}

.preopensection {
  background-color: #fff;
}

.preopensection h2 {
  color: #0f0f0f;
  font-size: clamp(28px, 9vw, 60px);
  font-weight: 900;
}

.preopensection a img {
  margin-top: 30px;
}

.p-w {
  color: white;
  background-color: #e73e78;
}

.bigt {
  font-size: clamp(28px, 18vw, 110px);
}

.functionssection {
  background: rgba(255, 255, 255, 0.85);
}

.functionssection p {
  color: #0f0f0f;
  line-height: 24px;
}

.functionssection h2 {
  color: #0f0f0f;
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 900;
  font-feature-settings: "palt";
}

.functionssection h2 .mini {
  font-size: clamp(28px, 5vw, 40px);
}

.functionssection h2 .pink {
  color: #f582a0;
}

.functionssection img {
  margin-top: 80px;
}

.lastprecontent {
  background: rgba(255, 255, 255, 0.85);
  padding-bottom: 200px;
}

.bg-p {
  background: #e73e78;
  font-weight: 900;
}

.t_w {
  background: #f582a0;
  color: #fff !important;
  padding: 5px 50px;
  border-radius: 999px;
  width: max-content;
  text-align: center;
  margin: 0 auto;
  font-weight: normal;
  font-size: 18px;
  font-weight: 600;
}

.bigsubtitle {
  background: #e73e78;
  color: #fff !important;
  font-size: 30px !important;
  font-weight: 900 !important;
  padding: 15px 10vw;
  border-radius: 999px;
  width: max-content;
  text-align: center;
  margin: 0 auto;
  font-weight: normal;
}

.price_capt {
  width: 90%;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px 10px 0 0;
  color: #0f0f0f;
  padding: 30px 0;
  margin-top: 60px;
  font-size: 12px!important;
  line-height: 20px;
  font-weight: bold;
}

.price_capt span {
  font-size: 30px;
  font-weight: 900;
  color: #e73e78;
  line-height: initial;
  display: inline-block;
margin-top: 6px;
}

.loop-box {
  z-index: -99999;
  position: absolute;
  overflow: hidden;
  width: -webkit-fill-available;
}

.loop-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 16px;
}

.loop-track {
  display: flex;
  width: max-content;
  gap: 16px;
  will-change: transform;
}

.slide {
  width: calc((100vw - 48px) / 2.7);
  height: fit-content;
  aspect-ratio: 3/4;
  overflow: hidden;
  opacity: 0.5;
}

.slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.to-left {
  animation: loop-left 28s linear infinite;
}

.to-right {
  animation: loop-right 28s linear infinite;
}

.slow {
  animation-duration: 34s;
}

@keyframes loop-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * ((100vw - 48px) / 4 + 16px) * 8));
  }

}

@keyframes loop-right {
  0% {
    transform: translateX(calc(-1 * ((100vw - 48px) / 4 + 16px) * 8));
  }

  100% {
    transform: translateX(0);
  }

}



.info-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.info-modal.is-open {
  display: block;
}

.info-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.info-modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(86vw, 650px);
  max-height: calc(100dvh - 84px);
  transform: translate(-50%, -50%);
  background: #fff;
  color: #333;
  overflow: hidden;
  box-sizing: border-box;
}

.info-modal__scroll {
  max-height: calc(100dvh - 84px);
  overflow-y: auto;
  padding: 96px 34px 64px;
  box-sizing: border-box;
}

.info-modal__scroll::-webkit-scrollbar {
  width: 5px;
}

.info-modal__scroll::-webkit-scrollbar-track {
  background: transparent;
}

.info-modal__scroll::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 999px;
}

.info-modal__title {
  margin: 0 0 88px;
  text-align: center;
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.info-modal__content {
  font-size: clamp(14px, 4vw, 16px);
  line-height: 1.75;
  letter-spacing: -0.04em;
}

.info-modal__content p {
  margin: 0;
  text-align: justify;
}

.info-modal__section {
  margin: 0 0 56px;
  padding: 0;
}

.info-modal__section .normal{
  font-weight: normal;
}

.info-modal__section:last-child {
  margin-bottom: 0;
}

.info-modal__section h3 {
  position: relative;
  margin: 0 0 10px;
  padding-left: 1.35em;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.info-modal__section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.72em;
  height: 0.72em;
  background: #333;
}

.info-modal__section .subnote {
  font-size: 16px;
      margin: 0;
      font-weight: bold;
}



.info-modal__section ul {
  margin: 0;
  padding-left: 1.35em;
  list-style: none;
}

.info-modal__section li {
  position: relative;
  margin: 0;
  font-size: 16px;
}

.info-modal__section li::before {
  content: "・";
}

.info-modal__note {
  margin: 14px 0 0 1.8em;
  font-size: 0.72em;
}

.info-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #e03a83;
  cursor: pointer;
}

.info-modal__close::before,
.info-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 5px;
  background: #fff;
  border-radius: 999px;
}

.info-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.info-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.is-modal-open {
  overflow: hidden;
}

.border {
  width: 100%;
  height: auto !important;
}



.bg-stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  will-change: transform;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.bg-image-pc {
  display: block;
  height: auto;
}

.bg-image-sp {
  display: none;
  height: 120vh;
  width: auto;
  min-width: 100vw;
  object-fit: contain;
}




.bg-overlay {
  position: absolute;
  inset: 0;
}

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

.block {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 32px;
  box-sizing: border-box;
}

.inner {
  max-width: 900px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 20px;
}

h1 {
  font-size: clamp(34px, 5vw, 60px);
}

h2 {
  font-size: clamp(24px, 3vw, 36px);
}

p {
}



.progress-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 18px;
  position: relative;
  z-index: 20;
}

.progress-dot {
  display: block;
  width: 9px;
  height: 9px;
  min-width: 9px;
  min-height: 9px;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  flex: 0 0 auto;
  transition: background-color 0.25s ease,
  transform 0.25s ease;
  cursor: pointer;
  border: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.progress-dot.is-active {
  background: #f582a0;
  transform: scale(1.25);
}

:root {
  --accent: #f582a0;
  --shell-left-pc: 5vw;
  --shell-width-pc: 87vw;
  --gap-pc: 1vw;
  --peek-pc: 2vw;
  --card-width-Lpc: calc((var(--shell-width-pc) - (var(--gap-pc) * 2) - var(--peek-pc)) / 4);
  --card-width-pc: calc((var(--shell-width-pc) - (var(--gap-pc) * 2) - var(--peek-pc)) / 3);
  --card-width-tab: calc((var(--shell-width-pc) - (var(--gap-pc) * 2) - var(--peek-pc)) / 2);
  --progress-width-pc: 67.2vw;
}

.slider-section {
  position: relative;
  width: 100%;
  padding: 3.9vw 0 2.9vw;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.75);
}

.slider-shell {
  position: relative;
  margin-left: var(--shell-left-pc);
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  overscroll-behavior: contain;
  touch-action: none;
}

.slider-track {
  display: flex;
  align-items: stretch;
  gap: var(--gap-pc);
  width: max-content;
  will-change: transform;
  transition: transform 0.42s cubic-bezier(.22,.8,.27,1);
}

.card {
  position: relative;
  flex: 0 0 var(--card-width-tab);
  width: var(--card-width-tab);
}

/* .nav-btn {
  width: 60px;
    height: 60px;
    font-size: 30px;
} */

.card-stage {
  position: relative;
  height: 37.8vw;
  overflow: visible;
}

.panel {
  position: absolute;
  left: 0.62vw;
  right: 0.62vw;
  bottom: 5.6vw;
  /* min-height: 13.8vw; */
      height: 180px;

  border-radius: 1.8vw;
  background: #efefef;
  border: 0.22vw solid #111;
  overflow: hidden;
  box-shadow: 0 1.25vw 0 #000;
  z-index: 2;
  transition: background-color 0.32s cubic-bezier(.22,.8,.27,1),
  color 0.32s cubic-bezier(.22,.8,.27,1),
  border-color 0.32s cubic-bezier(.22,.8,.27,1);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.55), transparent 30%),
  radial-gradient(circle at 70% 80%, rgba(0,0,0,0.04), transparent 28%),
  linear-gradient(135deg, rgba(0,0,0,0.02), rgba(255,255,255,0.05));
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #f582a0;
  transform: translateX(-101%);
  transition: transform 0.42s cubic-bezier(.22,.8,.27,1);
  z-index: 0;
}

.panel.pink {
  background: #efefef;
}

.panel-head {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  padding: 1.35vw 1.55vw 0.85vw;
}

.author_name {
  font-size: 30px !important;
  font-weight: 900;
  margin: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-width: 14.5vw;
  min-height: 2.8vw;
  padding: 0.55vw 1.5vw;
  border-radius: 0 999px 999px 0;
  background: #f582a0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: background-color 0.32s cubic-bezier(.22,.8,.27,1),
  color 0.32s cubic-bezier(.22,.8,.27,1);
}

.panel.pink .pill {
  background: #f582a0;
  color: #fff;
}

.logo {
  position: relative;
  z-index: 1;
  color: #474747;
  font-size: 1.18vw;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
  transform: translateY(0.1vw);
  transition: color 0.32s cubic-bezier(.22,.8,.27,1);
}

.logo img {
  width: 100%;
}

.logo.large {
  font-size: 1.95vw;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.body-copy {
  position: relative;
  z-index: 1;
  padding: 0 1.6vw 1.35vw;
}

.body-copy p {
  text-align: left;
}

.body-copy ul {
  margin: 0;
  padding-left: 1.45vw;
  list-style: disc;
}

.body-copy li {
  color: #393939;
  font-size: 1.2vw;
  line-height: 1.73;
  font-weight: 700;
  transition: color 0.32s cubic-bezier(.22,.8,.27,1);
}

.panel.pink .body-copy li {
  color: #393939;
}

.card:hover .panel::after {
  transform: translateX(0);
}

.card:hover .pill {
  background: #fff;
  color: #ef3d98;
}

.card:hover .logo img {
  filter: brightness(0) invert(1);
}

.card:hover .logo,
.card:hover .body-copy li {
  color: #fff;
}

.cover-stack {
  position: absolute;
  left: 50%;
  bottom: clamp(200px, calc(5.6vw + 13.8vw - 1vw), 12vw);
  width: calc(100% - 1vw);
  height: 18vw;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.cover-reveal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  overflow: hidden;
  transition: height 0.32s cubic-bezier(.22,.8,.27,1);
}

.cover-stack img {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: auto;
  transform: translateX(-50%);
  display: block;
}

.card:hover .cover-reveal {
  height: 100%;
}

#floatCta {
  position: fixed;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.3s ease,
  transform 0.3s ease;
}

#floatCta.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

footer img {
  width: 40px;
  margin: 0 auto;
}

.slider-footer {
  width: calc(var(--shell-width-pc) + var(--peek-pc));
  margin-left: var(--shell-left-pc);
  margin-top: -0.15vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.9vw;
}

/* .slider-nav {
  display: flex;
  align-items: center;
  gap: 1.05vw;
  flex: 0 0 auto;
} */

.slider-nav {  
      position: absolute;
        inset: 0;
        pointer-events: none;
        gap: 0;
        justify-content: space-between;
}

.nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0.22vw solid #111;
  background: #fff;
  color: var(--accent);
  font-size: 50px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 0.42vw 0 #000;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
  position: absolute;
        top: 15.6vw;
        pointer-events: auto;
        font-size: 50px;
            padding-bottom: 10px;
        /* box-shadow: rgb(0, 0, 0) 0px 0.95vw 0px;
        border-width: 0.78vw; */
}

.nav-btn:hover {
  transform: translateY(-0.08vw);
}

.nav-btn.next {
  background: var(--accent);
  color: #fff;
  right: 6vw;
}

.nav-btn.prev {
  background: var(--accent);
  color: #fff;
  left: 6vw;
}

.progress {
  flex: 0 0 var(--progress-width-pc);
  width: var(--progress-width-pc);
  height: 0.46vw;
  background: #fff;
  overflow: hidden;
}

.progress-bar {
  width: 58%;
  height: 100%;
  margin-left: 42%;
  background: var(--accent);
  transition: width 0.32s ease, margin-left 0.32s ease;
}

.original_production {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.75);
}

.label_select {
  position: relative;
  width: 100%;
  padding: 3.9vw 0 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.75);
}

.label_select {
  font-size: 16px;
}

.entry-form-section {
  width: 100%;
  padding: 48px 20px;
  box-sizing: border-box;
  height: stretch;
}

.entry-form-inner {
  max-width: 650px;
  margin: 0 auto;
  padding: 28px 22px;
  background: #fff;
  border-radius: 18px;
  box-sizing: border-box;
}

.entry-form-title {
  margin: 0 0 20px;
  font-size: 24px;
  text-align: center;
  color: #111;
}

.entry-form p {
  margin: 0 0 16px;
}

.entry-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.entry-form input[type="email"],
.entry-form input[type="date"] {
  width: 100%;
  padding: 13px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
}

.entry-form .agree label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.entry-form .agree input {
  margin-top: 4px;
}

.entry-submit-button {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff1493, #8a2be2);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.entry-submit-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.entry-form-message {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.entry-form-message.is-ok {
  color: #0f0f0f;
  font-size: 14px !important;
  margin-top: 30px;
}

.entry-form-message.is-ng {
  color: #d60000;
}



.loop-gallery-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.loop-gallery-track {
  display: flex;
  width: max-content;
  animation: loopGalleryScroll 30s linear infinite;
  will-change: transform;
  gap: 1vw;
}

.loop-gallery-item {
  flex: 0 0 calc(100vw / 6);
  width: calc(100vw / 6);
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.loop-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loop-gallery-section:hover .loop-gallery-track {
  animation-play-state: paused;
}

@keyframes loopGalleryScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }

}



:root {
  --pink: #ff1493;
  --pink-strong: #ff00a8;
  --yellow: #ffe500;
  --white: #ffffff;
  --text: #f7f7f7;
  --shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  --max-width: 750px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  background: #111;
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

textarea {
  width: 100%;
  font-size: 16px;
}

.lp {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background: url("bg-visual.png") center top / cover no-repeat;
  transform: scale(1.02);
}

.hero__overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,.48) 0%, rgba(0,0,0,.35) 28%, rgba(0,0,0,.52) 62%, rgba(0,0,0,.7) 100%),
  linear-gradient(to right, rgba(0,0,0,.18), rgba(0,0,0,.08));
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) clamp(18px, 4vw, 34px) 42px;
}

.hero__copy {
  padding-top: min(22vw, 180px);
}

.hero__headline {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-size: clamp(2.6rem, 9vw, 5.3rem);
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.hero__headline span {
  display: block;
}

.hero__headline em {
  font-style: normal;
  color: var(--pink-strong);
}

.hero__lead {
  margin: clamp(22px, 4vw, 30px) 0 0;
  font-size: clamp(1.05rem, 3.3vw, 2rem);
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 0 3px 8px rgba(0,0,0,.35);
}

.hero__lead strong {
  color: var(--yellow);
}

.badge {
  position: absolute;
  right: clamp(18px, 3vw, 28px);
  top: clamp(470px, 42vw, 570px);
  width: clamp(145px, 24vw, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  transform: rotate(-7deg);
}

.badge__top {
  font-size: clamp(0.82rem, 2vw, 1.15rem);
  font-weight: 900;
}

.badge__mid {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-top: 0.05em;
}

.badge__bottom {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--pink-strong);
  font-weight: 900;
  line-height: 1;
}

.price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(26px, 4vw, 36px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price__box {
  min-height: clamp(140px, 20vw, 210px);
  padding: clamp(18px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price__box--normal {
  background: rgba(25, 25, 25, 0.68);
  border: 2px solid rgba(255,255,255,.8);
  border-right: none;
}

.price__box--campaign {
  background: rgba(255,255,255,.94);
  color: #111;
}

.price__box--campaign .price__label,
.price__box--campaign .price__num,
.price__box--campaign .price__yen,
.price__box--campaign .price__tax {
  color: var(--pink-strong);
}

.price__label {
  margin: 0 0 10px;
  font-size: clamp(1rem, 3.2vw, 1.85rem);
  font-weight: 900;
  text-align: center;
}

.price__value {
  margin: 0;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.price__num {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.price__yen {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
}

.price__tax {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 900;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(22px, 4vw, 34px);
  background: rgba(0,0,0,.25);
}

.feature {
  text-align: center;
  padding: 8px 10px 0;
  position: relative;
}

.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(255,255,255,.85);
}

.feature__icon {
  width: clamp(72px, 11vw, 102px);
  height: clamp(72px, 11vw, 102px);
  margin: 0 auto 14px;
  border: 8px solid var(--pink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--pink);
  background: rgba(0,0,0,.18);
}

.feature__title,
.feature__accent {
  margin: 0;
  font-weight: 900;
  font-size: clamp(0.95rem, 2.7vw, 1.7rem);
}

.feature__accent {
  color: var(--pink);
  margin-top: 6px;
}

.cta-wrap {
  margin-top: clamp(22px, 4vw, 34px);
}

.cta {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  min-height: clamp(86px, 13vw, 120px);
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff17a5 0%, #f4008d 100%);
  color: #fff;
  text-decoration: none;
  border: 3px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.cta__badge {
  flex: 0 0 auto;
  min-width: clamp(96px, 18vw, 150px);
  height: clamp(62px, 10vw, 92px);
  padding: 0 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  line-height: 1;
  font-size: clamp(1rem, 2.6vw, 1.6rem);
}

.cta__text {
  font-size: clamp(1.35rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.cta__text strong {
  color: var(--yellow);
  font-size: 1.25em;
}

.footnote {
  margin: clamp(30px, 5vw, 40px) 0 0;
  text-align: center;
  font-size: clamp(1rem, 2.8vw, 1.6rem);
  line-height: 1.6;
  font-weight: 700;
}

.footnote span {
  color: var(--yellow);
  font-weight: 900;
}


.form-message {
  display: block;
  min-height: 1.6em;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  color: #111;
}

.form-message.is-ok {
  color: #0f0f0f;
}

.form-message.is-ng {
  color: #d60000;
}

.form-message.is-loading {
  color: #555;
}


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

}



/* @media (max-width:1440px){ 

.card {
  position: relative;
  flex: 0 0 var(--card-width-pc);
  width: var(--card-width-pc);
}

} */

/* スマホ内の追加調整 */

@media screen and (max-width: 767px) {
  .page-layout {
    grid-template-columns: minmax(0, var(--content-width));
  }

  .side-visual,
  .main-content,
  .side-menu {
    height: auto;
  }

  .main-content {
    height: var(--main-min-height);
  }

  .side-menu {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

}

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

  .site-header {
    height: var(--sp-header-height);
    padding: 0 16px;
  }

  .site-logo {
    width: 120px;
    height: 36px;
    font-size: 12px;
  }

  .login-button {
    padding: 9px 16px;
    font-size: 13px;
  }

  .page-layout {
    display: block;
    width: 100%;
    min-height: calc(100svh - var(--sp-header-height));
    height: auto;
    padding: 0;
  }

  .side-visual,
  .side-menu {
    display: none;
  }

  .main-content {
    display: block;
    width: 100%;
    max-width: none;
    min-height: calc(100svh - var(--sp-header-height));
    height: calc(100svh - var(--sp-header-height));
    aspect-ratio: auto;
    border: none;
    border-radius: 0;
    overflow: hidden;
  }

  .site-footer {
    padding: 20px;
    z-index: 2;
  }

}

@media screen and (max-width: 640px) {
  .feature-accordion-section {
    padding: 44px 18px 72px;
  }

  .feature-accordion-item {
    margin-bottom: 18px;
  }

  .feature-accordion-head {
    min-height: 72px;
    padding: 16px 68px 16px 24px;
    border-radius: 12px;
  }

  .feature-accordion-title {
    font-size: 18px;
  }

  .feature-accordion-icon {
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .feature-accordion-icon::before,
  .feature-accordion-icon::after {
    width: 13px;
    height: 3px;
  }

  .feature-accordion-body {
    padding: 34px 20px 34px;
    border-width: 3px;
    border-radius: 0 0 12px 12px;
  }

  .feature-accordion-body p {
    font-size: 20px;
    line-height: 1.7;
    font-size: 16px !important;
  }

  .feature-link-button {
    gap: 20px;
    min-height: 16px;
    margin-top: 28px;
    padding: 8px 20px;
    font-size: 14px;
    width: fit-content;
  }

  .feature-link-icon {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }

}

@media screen and (max-width: 640px) {
  .float-cta {
    width: 100%;
    height: auto;
  }

  .float-cta-content {
    padding: 30px 18px 14px;
  }

  .float-cta-arc-text {
    top: -42px;
    width: 100%;
    height: 150px;
  }

  .float-cta-arc-copy {
    font-size: 18px;
    stroke-width: 2px;
  }

}

@media screen and (max-width: 480px) {
  .info-modal__panel {
    width: calc(100vw - 52px);
    max-height: calc(100dvh - 84px);
  }

  .info-modal__scroll {
    padding: 92px 34px 56px;
  }

  .info-modal__title {
    margin-bottom: 32px;
  }

  .info-modal__close {
    width: 36px;
    height: 36px;
    top: 18px;
    right: 18px;
  }

  .info-modal__close::before,
  .info-modal__close::after {
    width: 22px;
    height: 4px;
  }

  .info-modal__content {
    line-height: 1.7;
  }

}


@media screen and (max-width: 767px) {
  .bg-image-pc {
    display: none;
  }

  .bg-image-sp {
    display: block;
  }

  .block {
    padding: 16px;
  }

  .inner {
    padding: 24px;
  }

}

@media screen and (max-width: 767px) {
  :root {
    --gap-pc: 3vw;
  }

  h2 {
    text-align: center;
    font-weight: bold;
  }

  p {
    text-align: center;
    font-weight: normal;
    line-height: 1.6rem;
    font-size: 16px;
  }

  small {
    font-size: 10px;
  }

  .slider-section {
    padding: 8vw 0 8.5vw;
  }

  .slider-shell {
    touch-action: pan-y;
    width: 100vw;
    margin-left: 0;
  }

  .slider-track {
    gap: 0vw;
  }

  .card {
    flex-basis: 90vw;
    width: 90vw;
  }

  .card-stage {
    height: 120vw;
  }

  .cover-stack {
    bottom: calc(9vw + 39vw - 2vw);
    width: calc(100% - 1vw);
    height: 70vw;
  }

  .cover-reveal {
    height: 50%;
  }

  .card.is-center .cover-reveal {
    height: 90%;
  }

  .card:hover .cover-reveal {
    height: 50%;
  }

  .card.is-center:hover .cover-reveal {
    height: 90%;
  }
  

  .panel {
    border-radius: 5.2vw;
    border-width: .7vw;
    bottom: 19vw;
    box-shadow: 0 2.3vw 0 #000;
    left: 1vw;
    max-height: 36vw;
    right: 1vw;
  }

  .panel-head {
    padding: 2.8vw 4.7vw 0;
  }

  .author_name {
    font-size: 30px !important;
    font-weight: 900;
    margin: 0;
  }

  .pill {
    min-width: 27vw;
    min-height: 10.3vw;
    padding: 1.6vw 4.1vw;
    font-size: 4.0vw;
  }

  .logo {
    font-size: 4.25vw;
    transform: translateY(0.2vw);
  }

  .logo.large {
    font-size: 7.1vw;
  }

  .body-copy {
    padding: 0 4.7vw 4vw;
  }

  .body-copy ul {
    padding-left: 4.4vw;
  }

  .body-copy li {
    font-size: 3.65vw;
    line-height: 1.68;
  }

  .card.is-center .panel::after {
    transform: translateX(0);
  }

  .card.is-center .pill {
    background: #fff;
    color: #f582a0;
  }

  .card.is-center .logo img {
    filter: brightness(0) invert(1);
  }

  .card.is-center .logo,
  .card.is-center .body-copy li {
    color: #fff;
  }

  .card:hover .panel::after {
    transform: translateX(-101%);
  }

  .card:hover .pill {
    background: var(--accent);
    color: #fff;
  }

  .card:hover .logo,
  .card:hover .body-copy li {
    color: #393939;
  }

  .card.is-center:hover .panel::after {
    transform: translateX(0);
  }

  .card.is-center:hover .pill {
    background: #fff;
    color: #f582a0;
  }

  .card.is-center:hover .logo,
  .card.is-center:hover .body-copy li {
    color: #fff;
  }

  .slider-footer {
    width: 90vw;
    margin-left: 5vw;
    margin-top: -9.8vw;
    gap: 4vw;
  }

  .slider-nav {
    position: absolute;
    inset: 0;
    pointer-events: none;
    gap: 0;
    justify-content: space-between;
  }

  .nav-btn {
    position: absolute;
    top: 80.6vw;
    pointer-events: auto;
    width: 10.6vw;
    height: 10.6vw;
    border-width: 0.78vw;
    font-size: 9vw;
    box-shadow: 0 0.95vw 0 #000;
  }

  .nav-btn.prev {
    left: 12vw;
  }

  .nav-btn.next {
    right: 12vw;
  }

  .progress {
    flex: 1 1 auto;
    width: auto;
    height: 1.35vw;
    margin-left: auto;
  }

}

@media screen and (max-width: 767px) {
  .loop-gallery-item {
    flex: 0 0 calc(100vw / 3);
    width: calc(100vw / 3);
  }

}

@media screen and (max-width: 640px) {
  .hero__copy {
    padding-top: 33vw;
  }

  .badge {
    top: 64vw;
  }

  .price {
    margin-top: 24px;
  }

}

@media screen and (max-width: 560px) {
  .hero__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__headline {
    font-size: 15.4vw;
  }

  .hero__lead {
    font-size: 6vw;
  }

  .badge {
    width: 31vw;
    right: 18px;
    top: 66vw;
  }

  .price__box {
    padding: 14px 10px;
    min-height: 130px;
  }

  .price__label {
    font-size: 5vw;
  }

  .price__num {
    font-size: 16vw;
  }

  .price__yen {
    font-size: 7vw;
  }

  .feature__icon {
    border-width: 6px;
  }

  .feature__title,
  .feature__accent {
    font-size: 4.7vw;
  }

  .cta__text {
    font-size: 6.3vw;
  }

}

/* =========================
  タブレット
  768px〜1024px
========================= */
@media screen and (min-width: 768px) {
  .bg-image-pc {
padding-top: clamp(20px,24vw,100px);
}

.top_logo {
    width: 70%;
    max-width: 500px;
    margin: 0 auto;
}

.panel-head {
position: relative;
z-index: 1;
justify-content: space-between;
align-items: center;
/* padding: 3.35vw 1.55vw 0.85vw 0; */
min-height: 20vw;
}

  main {
      max-width: 640px;
      flex: 0 0 640px;
    }

  .loop-slider {
      max-width: 1200px;
      margin: 0 auto;
    }

    .slide {
      flex: 0 0 calc((1200px - 48px) / 5);
      width: calc((1200px - 48px) / 5);
    }

    @keyframes loop-left {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(calc(-1 * ((1200px - 48px) / 4 + 16px) * 8));
      }

    }

    @keyframes loop-right {
      0% {
        transform: translateX(calc(-1 * ((1200px - 48px) / 4 + 16px) * 8));
      }

      100% {
        transform: translateX(0);
      }

    }

  .hero {
      display: grid;
      place-items: center;
      padding: 36px 0;
    }

    .hero__inner {
      border-radius: 28px;
      overflow: hidden;
    }

  .content {
      max-width: 100%;
    }

    .heroarea h3 {
      font-size: min(1.5vw, 36px);
      margin-top: 3vw;
      margin-bottom: min(5vw, 100px);
    }

    .fvtitle {
      font-size: min(2.5vw, 50px);
    }

    .fvtitle span {
      font-size: min(2.8vw, 58px);
    }

    .heroarea .price {
      max-width: 500px;
      margin-bottom: 50px;
    }

    .heroarea {
      min-height: calc(500px * 16 / 9); 
      aspect-ratio: initial;
      min-height: 900px;
    }

    .sakkap {
      font-size: clamp(20px, 2vw, 30px);
      margin: 0 auto;
    }

    .card {
      color: #0f0f0f;
    }

    .card:hover {
      color: #fff;
    }

    .card:hover .pill {
      color: #f582a0;
    }

    .body-copy p {
      font-size: 18px !important;
      line-height: 28px;
      font-weight: normal;
    }

    .author_name {
      margin-bottom: 18px;
    }

    .original_production h2 {
      font-size: clamp(20px, 2vw, 30px);
      max-width: 500px;
      margin: 0 auto;
      margin-top: 4vw;
    }

    .img_80 {
      max-width: 550px;
    }

    .img_90 {
      max-width: 650px;
    }

    .border {
      width: 100%;
    }

    .price_capt {
      max-width: 650px;
      padding: 30px 10px;
      font-size: 20px !important;
      line-height: 30px;
    }

    .original_production .phone {
      margin: 0 auto;
      max-width: 650px;
      margin-top: 100px;
    }

    .preopensection h2 {
              font-size: clamp(60px, 2.5vw, 80px);
      margin: 0 auto;
      margin-top: 50px;
      margin-bottom: 30px;
    }

    .bigt {
      font-size: clamp(120px, 2.5vw, 210px);
    }

    .feature-accordion-inner {
      max-width: 700px;
    }

    /* .functionssection p {
    } */

    .functionssection h2 {
      font-size: min(3.5vw, 50px);
    }

    .functionssection h2 .mini {
      font-size: min(3.5vw, 40px);
    }

    .feature-accordion-body p {
      font-size: 18px !important;
    }

    .float-cta-bg-pink {
      background-image: url("../img/cta_pink_pc.png");
    }

    .float-cta-bg-purple {
      background-image: url("../img/cta_purple_pc.png");
      opacity: var(--fade-progress);
    }

    .original_production .bidoo_flex img {
      width: 10%;
      max-width: 180px;
    }

    .label_select {
      font-size: 20px;
    }

    .coming_txt {
      font-size: 28px;
      line-height: 36px;
    }

    .t_w {
      padding: 10px 80px;
      font-size: 24px;
      font-weight: 600;
    }

    .subtitle {
      padding: 10px 80px;
      font-size: 24px;
      font-weight: 600;
    }

    .subtitle_p {
      padding: 10px 80px;
      font-size: 24px;
      font-weight: 600;
    }

    .progress-dot {
      display: block;
      width: 12px;
      height: 12px;
      min-width: 12px;
      min-height: 12px;
    }
    .card-stage {
height: 57.8vw;
}

.body-copy p {
font-size: 16px !important;
line-height: 28px;
}

.cover-stack {
height: 38vw;
}

.fvtitle {
font-size: min(5.5vw, 35px);
}

.fvtitle span {
font-size: min(4.8vw, 58px);
}

.heroarea h3 {
margin-top: 3vw;
}

.original_production h2 {
font-size: clamp(20px, 12vw, 30px);
margin-top: 10vw;
}

.functionssection h2 {
font-size: min(13.5vw, 50px);
}

.preopensection h2 {
    color: #0f0f0f;
    font-size: clamp(20px, 8.5vw, 50px);
}

.cover-stack {
height: 30vw;
}

.capt {
  font-family: "LINE Seed JP";
  font-size: 14px !important;
  line-height: 24px;
  font-weight: 100;
  margin-top: 0;
}

}

/* =========================
  PC
  1025px〜1439px
========================= */
@media screen and (min-width: 1200px) {

  .panel{
    height: 13w;
  }

  /* .preopensection h2 {
        font-size: clamp(60px, 2.5vw, 80px);
      } */

  .original_production h2 {
margin-top: 4vw;
}
.cover-stack {
height: 20vw;
}

.fvtitle {
font-size: min(2.5vw, 50px);
}

.fvtitle span {
font-size: min(2.8vw, 58px);
}

  .bg-image-pc {
padding-top: 0;
}
.card-stage {
height: 37.8vw;
}
.panel-head {
position: relative;
z-index: 1;
justify-content: space-between;
align-items: center;
padding: 1.35vw 1.55vw 0.85vw;
}
  /* PC用の個別調整が必要な場合はここに追加 */
  .card {
  position: relative;
  flex: 0 0 var(--card-width-pc);
  width: var(--card-width-pc);
}

.body-copy p {
font-size: 18px !important;
line-height: 28px;
}

}

/* =========================
  大きいPC
  1440px〜
========================= */
@media screen and (min-width: 1440px) {
  /* 大きいPC用の個別調整が必要な場合はここに追加 */
  .panel{
        min-height: 180px;
    height: 8vw;
    box-shadow: 0 .25vw 0 #000;
  }
  

    .cover-stack {
        height: 15vw;
    }

        .card-stage {
        height: 30vw;
    }
}

@media screen and (min-width: 2400px) {
.card {
  position: relative;
  flex: 0 0 var(--card-width-Lpc);
  width: var(--card-width-Lpc);
}
.panel-head {
        padding: 1.35vw 0.55vw 0.85vw;
    }
}

@media screen and (max-width: 375px) {
  .heroarea img {
    margin: 0 auto;
    margin-bottom: 50px;
}

.heroarea h3 {
    margin-top: 6vw;
    font-size: 3vw;
  }

  .heroarea .price {
    width: 80%;
}
        .bg-image-sp {
        display: block;
        height: auto;
    }

    .original_production h2 {
    font-size: 17px;
    margin-top: 13vw;
    }

    .float-cta-bg-pink {
    background-position: center;
}

.float-cta-bg-purple {
    background-position: center;
}
.fvtitle {
    font-size: 5.5vw;
}

.fvtitle span {
    letter-spacing: -3.5px;
    font-size: 7vw;
}

.functionssection h2 .mini {
    font-size: clamp(18px, 5vw, 40px);
}

.functionssection h2 {
    font-size: clamp(25px, 7vw, 40px);
}
    
}