@charset "UTF-8";
/* =========================================================
   01. setting
========================================================= */
/* color */
/* font */
/* layout */
/* breakpoint */
/* z-index */
/* transition */
/* =========================================================
   02. mixin
========================================================= */
/* =========================================================
   03. reset / base
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050814;
  color: #111111;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
}

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

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dd {
  margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin: 0;
}

em,
strong {
  font-style: normal;
}

@media (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
/* =========================================================
   04. utility
========================================================= */
.u-sp {
  display: none !important;
}
@media (max-width: 767px) {
  .u-sp {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

/* =========================================================
   05. layout
========================================================= */
.l-inner {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 767px) {
  .l-inner {
    padding-inline: 20px;
  }
}

.l-wrap {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .l-wrap {
    margin-top: 40px;
  }
}

/* =========================================================
   06. component
========================================================= */
/* section title */
.c-section-title {
  position: relative;
  display: inline-block;
  margin-left: 40px;
  margin-bottom: 60px;
  padding: 20px;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #111111;
  background: #fff;
}
.c-section-title::before {
  position: absolute;
  top: 0;
  left: -40px;
  content: "";
  display: block;
  width: 25px;
  height: 100%;
  background: #fff;
}
@media (max-width: 767px) {
  .c-section-title::before {
    width: 15px;
    left: -30px;
  }
}
@media (max-width: 1024px) {
  .c-section-title {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .c-section-title {
    margin-bottom: 20px;
    margin-left: 5px;
    padding: 10px;
    font-size: 2.8rem;
  }
}
.c-section-title.--light {
  color: #fff;
  background: #111111;
}
.c-section-title.--light::before {
  background: #111111;
}
.c-section-title__sub {
  margin: 40px 0 20px;
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .c-section-title__sub {
    font-size: 2.6rem;
  }
}
.c-section-title.--blue {
  color: #19d9ff;
}
.c-section-title.--green {
  color: #05ffa1;
}
.c-section-title.--dark {
  color: #111111;
}

/* text */
.c-text {
  margin: 20px 0;
}
.c-text.--bold {
  font-weight: 700;
}

/* btn */
.c-btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.c-btn__link {
  width: 100%;
  max-width: 400px;
  display: inline-block;
  padding: 20px;
  border-radius: 50px;
  background: #05ffa1;
  transition: background 0.3s ease;
}
.c-btn__link:hover {
  background: #00db89;
}
.c-btn__link > span {
  position: relative;
  margin-left: -35px;
}
.c-btn__link > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -42px;
  width: 30px;
  height: 30px;
  background-image: url("/img/icon-link.png");
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}

/* cta-btn */
.cta-btn {
  --primary: #19d9ff;
  --primary-light: #5be6ff;
  --shadow-primary: #ff2d7a;
  --shadow-secondary: #05ffa1;
  --text-color: #06141a;
  --clip: polygon(
    0 0,
    100% 0,
    100% 100%,
    96% 100%,
    96% 88%,
    86% 88%,
    86% 100%,
    8% 100%,
    0 72%
  );
  --border: 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 650px);
  min-height: 100px;
  padding: 0 24px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  overflow: visible;
  isolation: isolate;
  z-index: 1;
  box-sizing: border-box;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.8));
  box-shadow: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}
@media (max-width: 767px) {
  .cta-btn {
    max-width: 330px;
  }
}

/* 背景レイヤー */
.cta-btn::before,
.cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-clip-path: var(--clip);
          clip-path: var(--clip);
  z-index: -1;
}

/* 影 */
.cta-btn::before {
  background: var(--shadow-primary);
  transform: translate(var(--border), 0);
  transition: transform 0.15s ease;
}

/* 本体 */
.cta-btn::after {
  background: var(--primary);
  transition: background 0.15s ease, filter 0.15s ease;
}

/* 通常テキスト */
.cta-btn__text {
  position: relative;
  z-index: 2;
  display: block;
  padding: 20px 0;
}

.cta-btn__icon {
  display: inline-block;
  max-width: 50px;
  max-height: 50px;
}
@media (max-width: 767px) {
  .cta-btn__icon {
    max-width: 30px;
    max-height: 30px;
  }
}

/* 強めグリッチ */
.cta-btn__glitch {
  position: absolute;
  inset: calc(var(--border) * -1);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-clip-path: var(--clip);
          clip-path: var(--clip);
  background: var(--primary);
  color: var(--text-color);
  text-shadow: 3px 0 var(--shadow-primary), -3px 0 var(--shadow-secondary), 0 0 12px rgba(255, 45, 122, 0.45);
  opacity: 0.95;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 3;
  animation: cta-glitch-strong 4s infinite steps(2, end);
}
@media (max-width: 767px) {
  .cta-btn__glitch {
    animation: cta-glitch-strong 6s infinite steps(2, end);
  }
}

/* hoverは演出をさらに少し押す */
.cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.cta-btn:hover::before {
  transform: translate(calc(var(--border) + 2px), 0);
}

.cta-btn:hover::after {
  background: var(--primary-light);
}

.cta-btn:hover .cta-btn__glitch {
  animation-duration: 3s;
  opacity: 1;
}

/* クリック */
.cta-btn:active {
  transform: translateY(1px);
}

.cta-btn:active::before {
  transform: translate(calc(var(--border) - 1px), 0);
}

/* 強めグリッチ */
@keyframes cta-glitch-strong {
  0% {
    transform: translate(0, 0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  4% {
    transform: translate(-4px, 0);
    -webkit-clip-path: inset(12% 0 68% 0);
            clip-path: inset(12% 0 68% 0);
  }
  8% {
    transform: translate(4px, 0);
    -webkit-clip-path: inset(78% 0 6% 0);
            clip-path: inset(78% 0 6% 0);
  }
  12% {
    transform: translate(-3px, 1px);
    -webkit-clip-path: inset(32% 0 42% 0);
            clip-path: inset(32% 0 42% 0);
  }
  16% {
    transform: translate(3px, -1px);
    -webkit-clip-path: inset(8% 0 74% 0);
            clip-path: inset(8% 0 74% 0);
  }
  20% {
    transform: translate(-5px, 0);
    -webkit-clip-path: inset(56% 0 18% 0);
            clip-path: inset(56% 0 18% 0);
  }
  24% {
    transform: translate(5px, 1px);
    -webkit-clip-path: inset(18% 0 58% 0);
            clip-path: inset(18% 0 58% 0);
  }
  28% {
    transform: translate(-2px, -2px);
    -webkit-clip-path: inset(70% 0 10% 0);
            clip-path: inset(70% 0 10% 0);
  }
  32% {
    transform: translate(2px, 2px);
    -webkit-clip-path: inset(40% 0 34% 0);
            clip-path: inset(40% 0 34% 0);
  }
  36% {
    transform: translate(-4px, 1px);
    -webkit-clip-path: inset(22% 0 52% 0);
            clip-path: inset(22% 0 52% 0);
  }
  40% {
    transform: translate(4px, -1px);
    -webkit-clip-path: inset(62% 0 16% 0);
            clip-path: inset(62% 0 16% 0);
  }
  44% {
    transform: translate(-6px, 0);
    -webkit-clip-path: inset(10% 0 72% 0);
            clip-path: inset(10% 0 72% 0);
  }
  48% {
    transform: translate(6px, 0);
    -webkit-clip-path: inset(82% 0 4% 0);
            clip-path: inset(82% 0 4% 0);
  }
  52% {
    transform: translate(-3px, 2px);
    -webkit-clip-path: inset(46% 0 26% 0);
            clip-path: inset(46% 0 26% 0);
  }
  56% {
    transform: translate(3px, -2px);
    -webkit-clip-path: inset(28% 0 48% 0);
            clip-path: inset(28% 0 48% 0);
  }
  60% {
    transform: translate(-5px, 0);
    -webkit-clip-path: inset(64% 0 14% 0);
            clip-path: inset(64% 0 14% 0);
  }
  64% {
    transform: translate(5px, 1px);
    -webkit-clip-path: inset(14% 0 66% 0);
            clip-path: inset(14% 0 66% 0);
  }
  68% {
    transform: translate(-2px, 0);
    -webkit-clip-path: inset(50% 0 24% 0);
            clip-path: inset(50% 0 24% 0);
  }
  72% {
    transform: translate(2px, -1px);
    -webkit-clip-path: inset(24% 0 50% 0);
            clip-path: inset(24% 0 50% 0);
  }
  76% {
    transform: translate(-4px, 0);
    -webkit-clip-path: inset(74% 0 8% 0);
            clip-path: inset(74% 0 8% 0);
  }
  80% {
    transform: translate(4px, 0);
    -webkit-clip-path: inset(6% 0 80% 0);
            clip-path: inset(6% 0 80% 0);
  }
  84% {
    transform: translate(-3px, 1px);
    -webkit-clip-path: inset(36% 0 38% 0);
            clip-path: inset(36% 0 38% 0);
  }
  88% {
    transform: translate(3px, -1px);
    -webkit-clip-path: inset(58% 0 18% 0);
            clip-path: inset(58% 0 18% 0);
  }
  92% {
    transform: translate(-2px, 0);
    -webkit-clip-path: inset(16% 0 62% 0);
            clip-path: inset(16% 0 62% 0);
  }
  96% {
    transform: translate(2px, 0);
    -webkit-clip-path: inset(68% 0 12% 0);
            clip-path: inset(68% 0 12% 0);
  }
  100% {
    transform: translate(0, 0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@media (max-width: 768px) {
  .cta-btn {
    width: 100%;
    min-height: 72px;
    font-size: 1.6rem;
    padding: 0 18px;
  }
  .cta-btn__text,
  .cta-btn__glitch {
    padding: 16px 0;
  }
}
/* grid */
.c-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
@media (max-width: 767px) {
  .c-grid-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.c-grid-2col__item {
  min-width: 0;
}
.c-grid-2col--narrow {
  gap: 24px;
}
@media (max-width: 767px) {
  .c-grid-2col--narrow {
    gap: 16px;
  }
}
.c-grid-2col--wide {
  gap: 64px;
}
@media (max-width: 767px) {
  .c-grid-2col--wide {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .c-grid-2col--reverse-sp .c-grid-2col__item:first-child {
    order: 2;
  }
  .c-grid-2col--reverse-sp .c-grid-2col__item:last-child {
    order: 1;
  }
}
.c-grid-2col--ratio-3-2 {
  grid-template-columns: 3fr 2fr;
}
@media (max-width: 767px) {
  .c-grid-2col--ratio-3-2 {
    grid-template-columns: 1fr;
  }
}
.c-grid-2col--ratio-2-3 {
  grid-template-columns: 2fr 3fr;
}
@media (max-width: 767px) {
  .c-grid-2col--ratio-2-3 {
    grid-template-columns: 1fr;
  }
}

/* iframe */
.c-embed-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
}
.c-embed-video iframe,
.c-embed-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.c-embed-video--square {
  aspect-ratio: 1/1;
}
.c-embed-video--vertical {
  aspect-ratio: 9/16;
}
.c-embed-video--rounded-sm {
  border-radius: 12px;
}
.c-embed-video--rounded-lg {
  border-radius: 32px;
}

/* =========================================================
   07. page base
========================================================= */
.fangact {
  overflow: clip;
}

/* =========================================================
   08. header
========================================================= */
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background: transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5px 10px;
}
@media (max-width: 767px) {
  .header__inner {
    min-height: 64px;
  }
}
.header__logo {
  display: inline-flex;
  align-items: center;
}
.header__logo img {
  width: auto;
  height: 150px;
}
@media (max-width: 767px) {
  .header__logo img {
    height: 70px;
  }
}
.header__cta {
  flex-shrink: 0;
}

/* =========================================================
  SP時の下部余白（重要）
========================================================= */
@media (max-width: 767px) {
  body {
    padding-bottom: 80px;
  }
}
/* =========================================================
   09. fv
========================================================= */
.fv {
  position: relative;
  color: #ffffff;
  background-image: url("/fangact/img/fv-bg-pc.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 767px) {
  .fv {
    background-image: url("/fangact/img/fv-bg-sp.webp");
    background-position: center top;
  }
}
.fv__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 60px;
  max-width: 55%;
  height: 100vh;
}
@media (max-width: 767px) {
  .fv__inner {
    padding-top: 80px;
    justify-content: normal;
    max-width: none;
  }
}
.fv__lead-en {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100vw;
  font-family: "Anton", sans-serif;
  font-size: clamp(8rem, 12vw, 23rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #f4f52a;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}
@media (max-width: 767px) {
  .fv__lead-en {
    bottom: 0;
    font-size: clamp(4rem, 12vw, 12rem);
  }
}
.fv__desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fv__title {
  text-align: center;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .fv__title {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.fv__lead {
  text-align: center;
  font-weight: 700;
  font-size: 6.5rem;
  color: #ff2d7a;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .fv__lead {
    margin-top: 257px;
    padding: 10px 20px;
    border: 2px solid #ff2d7a;
    font-size: 4rem;
    line-height: 1.4;
    background: rgba(0, 0, 0, 0.8);
  }
}
.fv__appeal {
  background: #05ffa1;
  border-radius: 50px;
  color: #111111;
  padding: 10px 20px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .fv__appeal {
    margin-top: 20px;
    padding: 5px 10px;
    font-size: 1.4rem;
  }
}
.fv__btn {
  margin-top: 60px;
  text-align: center;
  width: 100%;
}
.fv__btn .c-btn {
  display: inline-block;
  width: 100%;
  max-width: 450px;
}
@media (max-width: 767px) {
  .fv__btn {
    margin-top: 30px;
  }
}

/* =========================================================
   10. target
========================================================= */
.target {
  position: relative;
  padding: 120px 0;
  background: #e8ee24;
  color: #111111;
}
.target::after {
  content: "";
  position: absolute;
  bottom: -95px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("/fangact/img/img-asirai-01.webp");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  z-index: 1;
}
@media (max-width: 767px) {
  .target::after {
    bottom: -119px;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .target {
    padding: 72px 0;
  }
}
.target__title {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (max-width: 767px) {
  .target__title {
    font-size: 3rem;
  }
}
.target__body {
  position: relative;
  padding-bottom: 495px;
}
@media (max-width: 767px) {
  .target__body {
    padding-bottom: 0;
  }
}
.target__text {
  margin-top: 60px;
  padding-left: 15%;
  font-size: 1.8rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .target__text {
    margin-top: 40px;
    padding-left: 0;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.9;
  }
}
.target__text p + p {
  margin-top: 20px;
}
.target__image {
  position: absolute;
  right: 0;
  bottom: -22%;
  z-index: 1;
}
@media (max-width: 767px) {
  .target__image {
    position: static;
  }
}

.target-about {
  position: relative;
  margin-top: 60px;
  padding: 40px;
  background: #fff;
}
@media (max-width: 767px) {
  .target-about {
    margin-top: 0;
    padding: 60px 20px 30px;
  }
}
.target-about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: #02050d;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  transform: rotate(-90deg);
}
.target-about__content {
  display: flex;
  flex-direction: row-reverse;
  font-size: 1.8rem;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .target-about__content {
    flex-direction: column-reverse;
    align-items: center;
    font-size: 1.6rem;
  }
}
.target-about__title {
  text-align: center;
}
.target-about__txt {
  margin-top: 20px;
}
.target-about__img {
  flex-shrink: 0;
  max-width: 300px;
}
@media (max-width: 767px) {
  .target-about__img {
    max-width: 250px;
  }
}

/* =========================================================
   12. support
========================================================= */
.support {
  position: relative;
  padding: 160px 0;
  background: #02050d;
  color: #ffffff;
}
.support::after {
  content: "";
  position: absolute;
  bottom: 58px;
  right: -150px;
  width: 100%;
  height: 945px;
  background: url("/fangact/img/support-img-01.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
@media (max-width: 767px) {
  .support::after {
    right: auto;
    bottom: -47px;
    left: 50%;
    background-position: left bottom;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .support {
    padding: 72px 0 288px;
  }
}
.support__inner {
  position: relative;
  z-index: 2;
}
.support__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media (max-width: 767px) {
  .support__wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.support-card {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: center;
  padding: 28px;
}
@media (max-width: 767px) {
  .support-card {
    padding: 0;
  }
}
.support-card__desc {
  width: 100%;
  margin-top: 30px;
  padding-left: 90px;
}
@media (max-width: 767px) {
  .support-card__desc {
    padding-left: 0;
  }
}
.support-card__title {
  position: relative;
  color: #19d9ff;
  font-size: 2.2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .support-card__title {
    margin-left: 50px;
    font-size: 2rem;
  }
}
.support-card__num {
  position: absolute;
  top: 0;
  left: -90px;
  font-size: 7rem;
  line-height: 1.1;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .support-card__num {
    top: -10px;
    left: -50px;
    font-size: 4rem;
  }
}
.support-card__img {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.support-card__img > img {
  border: 1px solid #24304a;
  background: rgba(255, 255, 255, 0.02);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.support-card__img::before, .support-card__img::after {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border: 3px solid #19d9ff;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
.support-card__img::before {
  top: -5px;
  left: -5px;
}
.support-card__img::after {
  right: -5px;
  bottom: -5px;
  transform: rotate(-180deg);
}
.support-card__img.--green::before, .support-card__img.--green::after {
  border: 3px solid #05ffa1;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

/* =========================================================
   13. more
========================================================= */
.more {
  position: relative;
  padding: 180px 0;
  background: #e8ee24;
  color: #111111;
}
.more::before {
  content: "";
  position: absolute;
  top: -96px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("/fangact/img/img-asirai-02.webp");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}
@media (max-width: 767px) {
  .more::before {
    top: -20px;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .more {
    padding: 72px 0;
  }
}
.more__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .more__wrap {
    grid-template-columns: 1fr;
  }
}
.more__wrap + .more__wrap {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .more-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
}
.more-panel__desc {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
}
@media (max-width: 767px) {
  .more-panel__desc {
    padding-top: 40px;
    order: 2;
  }
}
.more-panel__title {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.2;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .more-panel__title {
    font-size: 3rem;
  }
}
.more-panel__text {
  font-size: 1.6rem;
  line-height: 1.9;
}
.more-panel__thumb {
  overflow: hidden;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .more-panel__thumb {
    order: 1;
  }
}

/* =========================================================
   14. flow
========================================================= */
.flow {
  padding: 120px 0;
  background: #fff;
  color: #111111;
}
@media (max-width: 767px) {
  .flow {
    padding: 72px 0;
  }
}
.flow__title {
  text-align: center;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .flow__title {
    font-size: 3rem;
  }
}
.flow__list {
  margin-top: 80px;
}

.flow-step {
  position: relative;
  margin-top: 150px;
  padding: 40px 20px;
  background: #02050d;
}
@media (max-width: 767px) {
  .flow-step {
    margin-top: 80px;
    padding: 30px 10px 20px;
  }
}
.flow-step::before {
  content: "";
  position: absolute;
  right: 50%;
  top: -87px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 25px solid #02050d;
  border-bottom: 0;
  transform: translateX(47%);
}
@media (max-width: 767px) {
  .flow-step::before {
    top: -56px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 15px solid #02050d;
  }
}
.flow-step:first-child {
  margin-top: 0;
}
.flow-step:first-child::before {
  display: none;
}
.flow-step__num {
  position: absolute;
  top: -14px;
  left: 50%;
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .flow-step__num {
    font-size: 2.4rem;
  }
}
.flow-step__num::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background: #f4f52a;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .flow-step__num::after {
    top: -16px;
    width: 50px;
    height: 50px;
  }
}
.flow-step__title {
  margin-top: 20px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .flow-step__title {
    font-size: 1.8rem;
  }
}
.flow-step__text {
  margin-top: 20px;
  text-align: center;
  color: #ffffff;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .flow-step__text {
    font-size: 1.6rem;
  }
}

/* =========================================================
   15. requirements
========================================================= */
.requirements {
  padding: 120px 0;
  background: #e8ee24;
  color: #111111;
}
@media (max-width: 767px) {
  .requirements {
    padding: 72px 0;
  }
}
.requirements__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 767px) {
  .requirements__inner {
    grid-template-columns: 1fr;
  }
}
.requirements__col {
  padding: 32px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.22);
}
@media (max-width: 767px) {
  .requirements__col {
    padding: 24px;
  }
}
.requirements__col .c-section-title {
  margin-bottom: 24px;
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .requirements__col .c-section-title {
    font-size: 2.6rem;
  }
}
.requirements__list {
  display: grid;
  gap: 12px;
}
.requirements__list li {
  position: relative;
  padding-left: 1.4em;
  font-size: 1.6rem;
  line-height: 1.9;
}
.requirements__list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #f4f52a;
  transform: translateY(-50%);
}

/* =========================================================
   faq
========================================================= */
.faq {
  position: relative;
  padding: 72px 0;
  background: radial-gradient(circle at 15% 20%, rgba(0, 229, 255, 0.08), transparent 40%), radial-gradient(circle at 85% 70%, rgba(245, 255, 59, 0.07), transparent 42%), #05070b;
  border-top: 1px solid rgba(0, 229, 255, 0.14);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}
.faq__title {
  color: #fff;
}
.faq .sectionLead {
  color: rgba(255, 255, 255, 0.72);
}
.faq__eyebrow {
  margin: 0 0 10px;
  color: #00e5ff;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.faq__list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faqItem {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.faqItem[open] {
  border-color: rgba(245, 255, 59, 0.42);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3), 0 0 18px rgba(0, 229, 255, 0.08);
}
.faqItem__q {
  list-style: none;
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
}
.faqItem__q::-webkit-details-marker {
  display: none;
}
.faqItem__qBadge, .faqItem__aBadge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}
.faqItem__qBadge {
  color: #071018;
  background: #00e5ff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
}
.faqItem__aBadge {
  color: #111;
  background: #f5ff3b;
  box-shadow: 0 0 14px rgba(245, 255, 59, 0.28);
}
.faqItem__qText {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.faqItem__chev {
  position: relative;
  width: 18px;
  height: 18px;
}
.faqItem__chev::before, .faqItem__chev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #00e5ff;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.faqItem__chev::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faqItem[open] .faqItem__chev::before, .faqItem[open] .faqItem__chev::after {
  background: #f5ff3b;
}
.faqItem[open] .faqItem__chev::after {
  opacity: 0;
}
.faqItem__a {
  padding: 0 20px 18px;
}
.faqItem__aInner {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.faqItem__aBody {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.6rem;
  line-height: 1.9;
}
@media (hover: hover) {
  .faqItem:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 255, 0.3);
  }
  .faqItem__q:hover {
    background: rgba(255, 255, 255, 0.035);
  }
}
@media (max-width: 767px) {
  .faqItem .faq {
    padding: 56px 0;
  }
  .faqItem .faq__list {
    gap: 12px;
    margin-top: 22px;
  }
  .faqItem__q {
    grid-template-columns: 34px 1fr 16px;
    gap: 12px;
    padding: 16px 14px;
  }
  .faqItem__a {
    padding: 0 14px 16px;
  }
  .faqItem__aInner {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding-top: 14px;
  }
  .faqItem__qBadge, .faqItem__aBadge {
    width: 26px;
    height: 26px;
    font-size: 1.1rem;
  }
  .faqItem__qText {
    font-size: 1.4rem;
    line-height: 1.45;
  }
  .faqItem__aBody {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

/* =========================================================
   16. cta-final
========================================================= */
.cta-final {
  position: relative;
  padding: 120px 0 40px;
  background: linear-gradient(180deg, #ff5d96 0%, #ff2d7a 100%);
  color: #ffffff;
}
@media (max-width: 767px) {
  .cta-final {
    padding: 0;
  }
}
.cta-final__inner {
  position: relative;
  padding: 200px 0;
}
@media (max-width: 767px) {
  .cta-final__inner {
    padding: 80px 10px 340px;
  }
}
.cta-final__inner::after {
  content: "";
  position: absolute;
  right: -210px;
  bottom: 0;
  width: 65%;
  height: 680px;
  background: url("/fangact/img/ctafinal-img-01.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
@media (max-width: 767px) {
  .cta-final__inner::after {
    right: auto;
    bottom: -4px;
    width: 100%;
    height: 320px;
    background-position: left bottom;
  }
}
.cta-final__title {
  font-weight: 700;
  font-size: clamp(3rem, 2.8vw, 5rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .cta-final__title {
    text-align: center;
  }
}
.cta-final__lead {
  margin-top: 20px;
  font-size: 2rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .cta-final__lead {
    text-align: center;
    font-size: 1.4rem;
  }
}

/* =========================================================
   17. footer
========================================================= */
.footer {
  padding: 28px 0;
  background: #02050d;
  color: rgba(255, 255, 255, 0.7);
}
.footer__copyright {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.08em;
}

/* =========================
   追従CV
========================= */
.floating-cv {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(12px);
  width: calc(100% - 32px);
  max-width: 560px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.floating-cv.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.floating-cv__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.floating-cv__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-cv__btn--form {
  background: #fff;
  color: #111;
}
.floating-cv__btn--form:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.18);
}
.floating-cv__btn--line {
  background: #05ffa1;
  color: #111111;
}
.floating-cv__btn--line:hover {
  background: #00db89;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

/* =========================
   PC時：右下寄せ + 縦並び
========================= */
@media screen and (min-width: 768px) {
  .floating-cv {
    left: auto;
    right: 24px;
    transform: translateY(12px);
    max-width: 320px;
  }
  .floating-cv.is-show {
    transform: translateY(0);
  }
  .floating-cv__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
/* =========================
   タブレット以下
========================= */
@media screen and (max-width: 767px) {
  .floating-cv {
    width: calc(100% - 24px);
    bottom: 12px;
  }
  .floating-cv__inner {
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }
  .floating-cv__btn {
    min-height: 52px;
    padding: 12px 10px;
    font-size: 1.2rem;
  }
}
/* =========================================================
   18. modifier
========================================================= */
.pc-break {
  display: block;
}

@media (max-width: 767px) {
  .sp-break {
    display: block;
  }
}

.--blue {
  color: #19d9ff;
}

.--green {
  color: #05ffa1;
}

.float {
  animation: float-y 3s ease-in-out infinite;
}

@keyframes float-y {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}