@charset "UTF-8";

/* ============================================================
   FAQ PAGE
   /faq/css/faq.css
============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes charaIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes charaBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes balloonIn {
  from { opacity: 0; transform: scale(.9) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.area-faq .container {
  position: relative;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 0;
}
@media (max-width: 767px) {
  .hero .container {
    width: 100% !important;
  }
}

.hero-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24vw;
  background: linear-gradient(180deg, #3d8fc0 0%, #4e9fd1 25%, #72b5de 55%, #ffffff 100%);
  will-change: transform;
}

.hero-illust {
  position: absolute;
  top: 0;
  left: 25%;
  width: 80%;
  z-index: -2;
}
.hero-illust img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  display: block;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 12% auto 0;
  padding: 0 5%;
}
.hero-inner::before {
  content: "FAQ";
  position: absolute;
  z-index: -1;
  top: -10vw;
  left: 2%;
  font-size: clamp(84px, 16vw, 220px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  color: #fff;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .hero-inner::before {
    top: -10vw;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(72px, 24vw, 220px);
  }
}

.hero-chara-wrap {
  position: relative;
  z-index: 4;
  width: 28%;
  animation: charaIn .9s var(--ease) .28s both;
}
.hero-chara-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(10,30,60,.16));
  animation: charaBob 4.2s ease-in-out infinite;
  display: block;
}
.chara-balloon {
  position: absolute;
  top: 0;
  left: 80%;
  margin-top: 9%;
  background: #fff;
  border-radius: 100px;
  padding: 1em;
  box-shadow: 0 4px 20px rgba(0,0,0,.13), inset 0 1px 0 rgba(255,255,255,.8);
  font-size: clamp(45%, 1.3vw, 20px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  white-space: nowrap;
  z-index: 15;
  pointer-events: none;
  animation: balloonIn .65s var(--ease) 1.2s both;
}
.chara-balloon::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 13%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 6px solid transparent;
  border-top: 13px solid #fff;
}
.chara-balloon em {
  font-style: normal;
  color: var(--accent);
}

.area-page-hero {
  position: relative;
  padding-top: 24px !important;
  padding-bottom: 104px;
  overflow: hidden;
}
.area-page-hero::before {
  content: "FAQ";
  position: absolute;
  top: 48%;
  right: 2%;
  transform: translateY(-50%);
  font-size: clamp(84px, 16vw, 220px);
  font-weight: 900;
  font-family: var(--font-ui, "Inter", sans-serif);
  letter-spacing: -.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.area-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(74,124,255,.32) 28%,
    rgba(142,108,255,.22) 62%,
    transparent 100%
  );
}
.area-page-hero__body {
  position: relative;
  z-index: 1;
}
.area-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(var(--soft-r), var(--soft-g), var(--soft-b), .7);
}
.area-page-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(20px, 3.8vw, 44px);
  line-height: 1.3;
  letter-spacing: -.045em;
  font-weight: 800;
}
.area-page-hero h1 span {
  color: #bbb907;
}
.area-page-hero__lead,
.area-page-hero__lead-sub {
  max-width: 820px;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .82);
}
.area-page-hero__lead-sub {
  margin-top: 16px;
}
.area-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.area-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}
.area-hero-points li {
  position: relative;
  overflow: hidden;
  padding: 22px 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(74,124,255,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(74,124,255,.08), inset 0 1px 0 rgba(255,255,255,.9);
  font-size: 13px;
  line-height: 1.8;
}
.area-hero-points li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}
.area-hero-points li:nth-child(1)::before { background: linear-gradient(90deg, #4a7cff, #7eb5ff); }
.area-hero-points li:nth-child(2)::before { background: linear-gradient(90deg, #3db87a, #6fd3a8); }
.area-hero-points li:nth-child(3)::before { background: linear-gradient(90deg, #8e6cff, #b49dff); }
.point-inner { display: flex; flex-direction: column; gap: 8px; }
.point-num {
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
}
.area-hero-points li:nth-child(1) .point-num { color: #4a7cff; }
.area-hero-points li:nth-child(2) .point-num { color: #3db87a; }
.area-hero-points li:nth-child(3) .point-num { color: #8e6cff; }
.point-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: -.01em;
  color: var(--navy);
}

.area-faq {
  padding-top: 90px !important;
  padding-bottom: 100px !important;
}
.area-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 48px;
}
.area-faq-item {
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
  border-radius: 3px;
  background: rgba(var(--panel-strong-r), var(--panel-strong-g), var(--panel-strong-b), .74);
  overflow: hidden;
}
.area-faq-item summary {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 22px 58px 22px 22px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.55;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  user-select: none;
  transition: background .25s ease, color .25s ease;
}
.area-faq-item summary:hover {
  background: rgba(74,124,255,.06);
  color: #4a7cff;
}
.area-faq-item summary:hover::after {
  color: #4a7cff;
  transform: translateY(-50%) scale(1.1);
}
.area-faq-item summary::-webkit-details-marker { display: none; }
.faq-q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(74,124,255,.1);
  border: 1px solid rgba(74,124,255,.2);
  color: #4a7cff;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  top: 1px;
}
.area-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  color: rgba(var(--text-r), var(--text-g), var(--text-b), .36);
  transition: transform .28s ease, color .2s ease;
}
.area-faq-item[open] summary::after {
  content: "−";
  color: rgba(74,124,255,.6);
}
.area-faq-answer {
  padding: 0 22px 22px 56px;
  font-size: 14px;
  line-height: 2;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .82);
}

@media (max-width: 1200px) {
  .sw-e br { display: none; }
}

@media (max-width: 767px) {
  .hero-sky {
    height: 42vw;
  }
  .hero-inner {
    margin-top: 22%;
  }
  .hero-chara-wrap {
    width: 40%;
  }
  .hero-illust {
    left: 22%;
    width: 98%;
  }
  .chara-balloon {
    left: 65%;
    margin-top: 2%;
    font-size: 11px;
    padding: .85em 1em;
    border-radius: 32px;
  }
  .area-page-hero {
    padding-top: 16px !important;
    padding-bottom: 72px;
  }
  .area-page-hero::before {
    right: 50%;
    transform: translate(50%, -50%);
    font-size: clamp(68px, 24vw, 140px);
  }
  .area-page-hero__lead,
  .area-page-hero__lead-sub {
    font-size: 100%;
  }
  .area-hero-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .area-faq {
    padding-top: 72px !important;
    padding-bottom: 80px !important;
  }
  .area-faq-item summary {
    padding: 18px 44px 18px 18px;
    font-size: 14px;
  }
  .area-faq-answer {
    padding: 0 18px 18px 18px;
  }
  .faq-q-icon {
    display: none;
  }
}
