@charset "UTF-8";
/* ===========================================
  Palette - カラー定義
  - サイト全体で var(--c-*) として参照
=========================================== */
:root {
  --c-bg: #000;
  --c-bg-card: #1a1a1a;
  --c-bg-light: #2a2a2a;
  --c-text: #fff;
  --c-text-mute: #b3b3b3;
  --c-text-dim: #7d7d7d;
  --c-accent: #f5b820;
  --c-accent-hover: #ffcc33;
  --c-border: #333;
  --c-flow-bg: #f4f4f0;
  --c-flow-text: #1a1a1a;
}

/* ===========================================
  Variables - SCSS 変数
  - ブレイクポイント / レイアウト幅
=========================================== */
/* ===========================================
  Mixins - レスポンシブ
  - デスクトップファースト（max-width 指定）
=========================================== */
/* ===========================================
  Reset & Base
=========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #fff;
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.75;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* ===========================================
  Header
=========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 64px;
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 16px;
    height: 56px;
    gap: 8px;
  }
}
.header__logo {
  display: block;
  margin-right: auto;
}
.header__logo img {
  height: 32px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    height: 24px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 24px 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--c-border);
  }
  .header__nav.is-active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
.header__btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .header__btns {
    gap: 6px;
  }
  .header__btns .btn {
    padding: 7px 10px;
    font-size: 1.1rem;
  }
}

.gnav {
  display: flex;
  gap: 32px;
}
.gnav a {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 4px;
}
.gnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width 0.3s ease;
}
.gnav a:hover {
  opacity: 1;
}
.gnav a:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .gnav {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
  }
}

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: flex;
  }
}

/* ===========================================
  Footer
=========================================== */
.footer {
  background: #000;
  padding: 60px 0 24px;
  border-top: 1px solid var(--c-border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  margin-bottom: 40px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    display: flex;
    justify-content: center;
  }
}
.footer__logo img {
  width: 100%;
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    max-width: 160px;
  }
}
.footer__label {
  font-size: 1.4rem;
  color: var(--c-accent);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  font-family: Oswald, sans-serif;
}
.footer__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .footer__title {
    font-size: 1.7rem;
  }
}
.footer__txt {
  font-size: 1.4rem;
  color: var(--c-text-mute);
  line-height: 1.9;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer__txt {
    text-align: left;
    line-height: 1.7;
  }
}
.footer__address {
  font-size: 1.4rem;
  color: var(--c-text);
  line-height: 1.8;
}
.footer__copy {
  text-align: center;
  font-size: 1.2rem;
  color: var(--c-text-dim);
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}

/* ===========================================
  Common - コンテナ / セクション見出し
=========================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 28px;
  }
}
.container--narrow {
  max-width: 880px;
}

.section-label {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  margin-bottom: 12px;
  font-weight: 500;
  font-family: Oswald, sans-serif;
}

.section-title {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 48px;
}
.section-title .accent {
  color: var(--c-accent);
}
@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 32px;
  }
}
.section-title br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .section-title br.sp {
    display: block;
  }
}

/* ===========================================
  Buttons
=========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 4px;
  text-align: center;
  line-height: 1.4;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn--yellow {
  background: var(--c-accent);
  color: #000;
}
.btn--yellow:hover {
  background: var(--c-accent-hover);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 184, 32, 0.35);
}
.btn--intro {
  border: solid 1px var(--c-accent);
  background: #151515;
  color: #fff;
  padding: 12px 12px;
  min-width: 280px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .btn--intro {
    width: 100%;
    min-width: auto;
  }
}
.btn--sm {
  padding: 10px 22px;
  font-size: 1.3rem;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn__download-img {
  width: 140px;
  height: auto;
  background: #555;
  border-radius: 2px;
  flex-shrink: 0;
  border: solid 1px #6D6D6D;
}
.btn__icon-img {
  width: 36px;
  height: 24px;
  background: #555;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===========================================
  Main Slider
=========================================== */
.mainslider {
  position: relative;
  padding-top: 64px;
  padding-bottom: 60px;
  overflow: hidden;
  background: #000;
}
@media screen and (max-width: 767px) {
  .mainslider {
    padding-top: 56px;
    padding-bottom: 0px;
  }
}
.mainslider__img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .mainslider__img {
    aspect-ratio: 4/3;
  }
}
.mainslider__img picture {
  display: block;
  width: 100%;
  text-align: center;
}
.mainslider__img img {
  border-radius: 16px;
}
.mainslider__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
  text-align: center;
  pointer-events: none;
}
.mainslider__catch-text {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 4vw, 140px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .mainslider__catch-text {
    font-size: clamp(28px, 8vw, 64px);
  }
}

.mainSwiper {
  padding: 32px 0 60px;
}
@media screen and (max-width: 767px) {
  .mainSwiper {
    padding: 20px 0 40px;
  }
}
.mainSwiper .swiper-slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.55;
}
.mainSwiper .swiper-slide-active {
  opacity: 1;
}
.mainSwiper .swiper-pagination {
  bottom: 0 !important;
}
.mainSwiper .swiper-pagination-bullet {
  background: #555;
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}
.mainSwiper .swiper-pagination-bullet-active {
  background: var(--c-accent);
  width: 28px;
  border-radius: 4px;
}

/* ===========================================
  Intro
=========================================== */
.intro {
  padding: 40px 0 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .intro {
    padding: 24px 0 60px;
  }
}
.intro__label {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  margin-bottom: 16px;
  font-family: Oswald, sans-serif;
}
.intro__tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.intro__tags li {
  border: 1px solid #555;
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 1.3rem;
  color: var(--c-text);
  background-color: #2B2B2B;
}
@media screen and (max-width: 767px) {
  .intro__tags li {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.intro__title {
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .intro__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .intro__title {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }
}
.intro__title br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .intro__title br.sp {
    display: block;
  }
}
.intro__text {
  font-size: 1.6rem;
  color: var(--c-text);
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .intro__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.intro__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .intro__btns {
    flex-direction: column;
    gap: 12px;
  }
}
.intro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 28px 14px 14px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: solid 1px var(--c-accent);
  background: #151515;
  display: flex;
}
@media screen and (max-width: 767px) {
  .intro__btn--intro {
    width: 100%;
    min-width: auto;
  }
}
.intro__btn__download-img {
  width: 140px;
  height: auto;
  background: #555;
  border-radius: 2px;
  flex-shrink: 0;
  border: solid 1px #6D6D6D;
}
.intro__btn__icon-img {
  margin: auto 0 auto 16px;
}
.intro__btn__icon-img span {
  font-size: 48px;
  color: var(--c-accent);
}
.intro__btn__text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
}
.intro__btn__text span {
  color: #000;
  background-color: var(--c-accent);
  border-radius: 2px;
  padding: 2px 4px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto 0 4px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .intro__btn__text span {
    font-size: 1.2rem;
  }
}

/* ===========================================
  6 Reasons
=========================================== */
.reason {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .reason {
    padding: 60px 0;
  }
}
.reason__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .reason__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .reason__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.reason__card {
  background: var(--c-bg-card);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reason__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.reason__img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.reason__img img {
  border-radius: 8px;
}
.reason__body {
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .reason__body {
    padding: 20px;
  }
}
.reason__no {
  font-size: 1.1rem;
  color: var(--c-text-mute);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 500;
  font-family: Oswald, sans-serif;
}
.reason__ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .reason__ttl {
    font-size: 1.6rem;
  }
}
.reason__ttl span {
  color: var(--c-accent);
}
.reason__txt {
  font-size: 1.5rem;
  color: var(--c-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .reason__txt {
    font-size: 1.4rem;
  }
}

/* ===========================================
  Feature
=========================================== */
.feature {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .feature {
    padding: 60px 0;
  }
}
.feature__block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}
.feature__block:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .feature__block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
}
.feature__visual {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__visual img {
  border-radius: 8px;
}
.feature__cap {
  font-size: 1.6rem;
  color: var(--c-text);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.feature__title {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  line-height: 1.2;
  font-family: Oswald, sans-serif;
}
@media screen and (max-width: 1024px) {
  .feature__title {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 767px) {
  .feature__title {
    font-size: 2.8rem;
  }
}
.feature__desc {
  font-size: 1.6rem;
  color: var(--c-text);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .feature__desc {
    margin-bottom: 16px;
    font-size: 1.4rem;
  }
}
.feature__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .feature__items {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media screen and (max-width: 767px) {
  .feature__items {
    grid-template-columns: 1fr !important;
  }
}
.feature__item {
  background: var(--c-bg-card);
  padding: 16px;
  border-radius: 4px;
  border: 1px solid var(--c-border);
}
.feature__item-img {
  width: 100%;
}
.feature__item-img img {
  width: 100%;
}
.feature__item-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-accent);
  margin: 16px auto 8px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .feature__item-ttl {
    margin-bottom: 4px;
  }
}
.feature__item-txt {
  font-size: 1.3rem;
  color: var(--c-text);
  line-height: 1.7;
}

/* ===========================================
  Series
=========================================== */
.series {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .series {
    padding: 60px 0;
  }
}
.series__lead {
  text-align: center;
  font-size: 1.6rem;
  color: var(--c-text);
  margin-top: -32px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .series__lead {
    font-size: 1.2rem;
    margin-top: -24px;
    margin-bottom: 32px;
  }
}
.series__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .series__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .series__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.series__card {
  background: var(--c-bg-card);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.series__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.series__no {
  font-size: 1.2rem;
  color: var(--c-accent);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  font-weight: 500;
  font-family: Oswald, sans-serif;
}
.series__name {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: Oswald, sans-serif;
}
.series__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.series__img img {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .series__img img {
    width: 70%;
  }
}
.series__cap {
  font-size: 1.8rem;
  color: var(--c-accent);
  margin-bottom: 8px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .series__cap {
    font-size: 1.6rem;
  }
}
.series__txt {
  font-size: 1.6rem;
  color: var(--c-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .series__txt {
    font-size: 1.4rem;
    color: var(--c-text);
    line-height: 1.6;
  }
}

/* ===========================================
  Application Slider
=========================================== */
.application {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .application {
    padding-bottom: 48px;
  }
}
.application__img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.application__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.appSwiper {
  padding: 0 40px 56px;
}
@media screen and (max-width: 1024px) {
  .appSwiper {
    padding: 0 24px 48px;
  }
}
@media screen and (max-width: 767px) {
  .appSwiper {
    padding: 0 16px 40px;
  }
}
.appSwiper .swiper-pagination {
  bottom: 0 !important;
}
.appSwiper .swiper-pagination-bullet {
  background: #555;
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}
.appSwiper .swiper-pagination-bullet-active {
  background: var(--c-accent);
  width: 28px;
  border-radius: 4px;
}

/* ===========================================
  Flow
=========================================== */
.flow {
  background: #fff;
  color: var(--c-flow-text);
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 60px 0;
  }
}
.flow .section-label {
  color: var(--c-accent);
}
.flow .section-title {
  color: var(--c-flow-text);
}
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.flow__step {
  background: #fff;
  border-radius: 8px;
  padding: 24px 28px;
  border: 2px solid #f3f3f3;
  transition: all 0.5s ease;
  position: relative;
}
.flow__step.is-active {
  border-color: var(--c-accent);
  background: #fffbef;
  box-shadow: 0 8px 32px rgba(245, 184, 32, 0.15);
}
@media screen and (max-width: 767px) {
  .flow__step {
    padding: 20px;
  }
}
.flow__step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .flow__step-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.flow__step-num {
  background: #ddd;
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: background 0.5s ease;
  font-family: Oswald, sans-serif;
}
.flow__step.is-active .flow__step-num {
  background: var(--c-accent);
  color: #000;
}
.flow__step-ttl {
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-flow-text);
}
@media screen and (max-width: 767px) {
  .flow__step-ttl {
    font-size: 1.6rem;
  }
}
.flow__step-body {
  padding-left: 0;
}
.flow__step-body p {
  font-size: 1.6rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 12px;
}
.flow__step-body p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .flow__step-body p {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.flow__step-cap {
  display: inline-block;
  background: #f4f4f0;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 1.4rem !important;
  color: #000 !important;
  margin-top: 8px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .flow__step-cap {
    font-size: 1.3rem !important;
  }
}
.flow__step.is-active .flow__step-cap {
  background: #fff;
  border: 1px solid #f3f3f3;
}

/* ===========================================
  FAQ
=========================================== */
.faq {
  padding: 80px 0;
  background: #fff;
  color: var(--c-flow-text);
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 60px 0;
  }
}
.faq .section-label {
  color: var(--c-accent);
}
.faq .section-title {
  color: var(--c-flow-text);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #f3f3f3;
  transition: box-shadow 0.3s ease;
}
.faq__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.faq__item.is-open .faq__icon::after {
  opacity: 0;
}
.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--c-flow-text);
}
@media screen and (max-width: 767px) {
  .faq__q {
    padding: 16px;
    font-size: 1.4rem;
    gap: 12px;
  }
}
.faq__q-mark {
  width: 28px;
  height: 28px;
  background: var(--c-accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.6rem;
  flex-shrink: 0;
  font-family: Oswald, sans-serif;
}
.faq__q-text {
  flex: 1;
}
.faq__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: #555;
  border-radius: 1px;
  transition: opacity 0.3s ease;
}
.faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq__a p {
  padding: 0 24px 24px 68px;
  font-size: 1.6rem;
  color: #555;
  line-height: 1.9;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .faq__a p {
    padding: 0 16px 20px 56px;
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.faq__a-inner {
  overflow: hidden;
}

/* ===========================================
  Contact
=========================================== */
.contact {
  padding: 80px 0;
  background: #000;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 60px 0;
  }
}
.contact__lead {
  text-align: center;
  font-size: 1.6rem;
  color: var(--c-text);
  margin-top: -32px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .contact__lead {
    font-size: 1.2rem;
    margin-top: -24px;
    margin-bottom: 32px;
  }
}
.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.contact__card {
  background: var(--c-bg-card);
  padding: 24px;
  border-radius: 6px;
  text-align: center;
}
.contact__img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__img img {
  border-radius: 8px;
}
.contact__img--alt {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}
.contact__img--alt span {
  font-size: 64px;
  color: #f5b820;
}
.contact__txt {
  font-size: 1.4rem;
  color: var(--c-text);
  margin-bottom: 16px;
  line-height: 1.8;
  text-align: left;
}

/* ===========================================
  Floating Banner
=========================================== */
.float-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  background: var(--c-accent);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  width: 240px;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.float-banner.is-hidden {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .float-banner {
    display: none;
  }
}
.float-banner__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 2;
}
.float-banner__close:hover {
  transform: rotate(90deg);
}
.float-banner__close .material-icons {
  font-size: 18px;
}
.float-banner__link {
  display: block;
  gap: 16px;
  padding: 16px;
  color: #000;
  text-align: left;
  position: relative;
}
.float-banner__link:hover {
  opacity: 1;
}
.float-banner__link:hover .float-banner__arrow {
  transform: translateX(4px);
}
.float-banner__txt {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
}
.float-banner__txt span {
  color: #fff;
  background-color: #000;
  border-radius: 2px;
  padding: 3px 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto 8px auto 0;
  font-size: 1.2rem;
}
.float-banner__img {
  width: 100%;
  margin: auto auto 12px;
}
.float-banner__img img {
  width: 100%;
  border-radius: 4px;
}

/* ===========================================
  Tele Radio - Entry Point
  FLOCSS: foundation → layout → component → project
  ※ このファイルをコンパイルして style.css を生成します
=========================================== */
/*# sourceMappingURL=style.css.map */