/* =====================================================
  Base
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "m-plus-1p", sans-serif;
  color: #222;
  line-height: 1.8;
  background: #fff;
  font-size: 1.6rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

/* =====================================================
  Variables
===================================================== */

:root {
  --pink: #e5007f;
  --dark: #222;
  --gray: #f2f2f2;
  --container: 1440px;
}

/* =====================================================
  Layout
===================================================== */
/* =====================================================
  Layout Container
===================================================== */

.l-container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
}

.vertical-rl {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.big-word {
  font-size: clamp(6rem, 10vw, 14rem);
  font-weight: 800;
  line-height: 1;
}

.word-red {
  color: #e60033;
}

.word-blue {
  color: #0f5db7;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 820px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =====================================================
  top1 Hero MV
===================================================== */

.lp-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  pointer-events: none;
  /* クリック可能要素だけ戻す */
}

.lp-header-inner {
  width: 100%;
  margin: 0 0 0 auto;
  padding: 35px 180px 16px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-brand {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-brand img {
  width: 400px;
  height: auto;
}

.lp-header-cta {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.lp-entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 240px;
  padding: 0 22px;
  border-radius: 999px;
  background: #d4173a;
  color: #fff;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 2.0rem;
}

/* 右上メニュー全体 */
.lp-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}

/* ========== ボタン（今のをベースに微調整） ========== */
.lp-menu-btn {
  position: relative;
  z-index: 10002;
  width: 150px;
  height: 150px;
  background: #0b63b8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 0;
  border-bottom-left-radius: 150px;
  padding-bottom: 20px;
  padding-left: 30px;
  cursor: pointer;
}

.lp-menu-btn span {
  display: block;
  width: 45px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  border-radius: 2px;
  transition: transform .35s ease, opacity .35s ease;
}

/* ハンバーガー → × */
.lp-menu.is-open .lp-menu-btn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.lp-menu.is-open .lp-menu-btn span:nth-child(2) {
  opacity: 0;
}

.lp-menu.is-open .lp-menu-btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========== 展開パネル（背景） ========== */
/* ========== 展開パネル（ポップアップ化） ========== */
.lp-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, .35);
  border: 0;
  display: none;
}

.lp-menu.is-open .lp-menu-backdrop {
  display: block;
}

.lp-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  background-color: rgba(11, 99, 184, 1);
  z-index: 10001;

  /* ★ 左下だけ角丸 */
  border-bottom-left-radius: 140px;
  overflow: hidden;
  /* clip-path＆角丸を効かせる */

  /* 右上の角から広がる */
  clip-path: circle(0px at 100% 0%);
  opacity: 0;
  pointer-events: none;

  transition: clip-path .55s ease, opacity .2s ease;
}

/* 開いた状態 */
.lp-menu.is-open .lp-menu-panel {
  clip-path: circle(150vmax at 100% 0%);
  opacity: 1;
  pointer-events: auto;
}


/* パネル内のレイアウト枠 */
.lp-menu-inner {
  height: 100%;
  padding: 80px 80px 70px;
  max-width: 1200px;
  margin: 0 auto;
}

/* MENU見出し */
.lp-menu-title {
  color: #fff;
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin: 0 0 40px;
}

/* 2カラムのメニュー */
.lp-menu-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 20px;
  align-items: start;
}

/* 右カラムに流しつつ、最後の「主な仕事って？」を左カラム幅で置きたい場合 */
.lp-menu-grid .is-wide {
  grid-column: 1 / 2;
  /* ←画像に合わせて左側に置く */
}

/* リンクの見た目 */
.lp-menu-grid a {
  color: #fff;
  text-decoration: none;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 18px;
}

.lp-menu-grid a::before {
  content: "";
  display: inline-block;
  background-image: url(../images/header_m_ai.png);
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}


/* ENTRYボタン（左下寄せ） */
.lp-menu-entry {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 56px;
  border-radius: 15px;
  background: #d0133a;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-decoration: none;
}

/* ====== 右上の×（ハンバーガー→開いたら「×だけ」に見せる） ====== */
.lp-menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10002;
}

/* 開いたら「角丸青」は消して、×だけにする */
.lp-menu.is-open .lp-menu-btn {
  width: 72px;
  height: 72px;
  background: transparent;
  border-bottom-left-radius: 0;
  padding: 0;
  top: 24px;
  right: 24px;
}

/* ×の線を中央に集める */
.lp-menu-btn span {
  transition: transform .35s ease, opacity .35s ease;
}

.lp-menu.is-open .lp-menu-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  margin: 0;
  transform-origin: center;
}

/* 既存の×変形を「中央基準」に調整 */
.lp-menu.is-open .lp-menu-btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lp-menu.is-open .lp-menu-btn span:nth-child(2) {
  opacity: 0;
}

.lp-menu.is-open .lp-menu-btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lp-menu.is-open .lp-menu-panel {
  clip-path: circle(150vmax at 100% 0%);
  opacity: 1;
  pointer-events: auto;
}

/* ====== SP：1カラムに ====== */
@media (max-width: 820px) {
  .lp-menu-inner {
    padding: 70px 50px 40px;
  }

  .lp-menu-title {
    font-size: 6vw;
    margin-bottom: 22px;
    text-align: center;
  }

  .lp-menu-grid {
    grid-template-columns: 1fr;
    row-gap: 15px;
    column-gap: 0;
  }

  .lp-menu-grid .is-wide {
    grid-column: auto;
  }

  .lp-menu-grid a {
    font-size: 2.4rem;
  }

  .lp-menu-entry {
    height: 70px;
    width: 80%;
    font-size: 3.5vw;
  }

  .lp-header-inner {
    width: 100%;
    gap: 20px;
  }

  .lp-menu-panel {
    width: 80vw;
    height: 96vh;
    background-color: rgba(11, 99, 184, .8);
    border-bottom-left-radius: 90px;
  }

  .lp-entry-btn {
    display: none;
  }

}

@media (max-width: 540px) {

  .lp-header-inner {
    padding: 15px 100px 16px 20px;
  }

  .lp-menu-inner {
    padding: 30px 30px 40px;
  }

  .lp-menu-btn {
    width: 90px;
    height: 90px;
    border-bottom-left-radius: 90px;
    padding-left: 20px;
  }

  .lp-menu-btn span {
    width: 30px;
    height: 2px;
    margin: 4px 0;
  }

  .lp-menu.is-open .lp-menu-btn span {
    width: 30px;
  }

  .lp-menu-grid a::before {
    width: 30px;
    height: 30px;
  }

  .lp-menu-grid a {
    font-size: 2.0rem;
    gap: 0px;
  }

  .lp-menu-entry {
    height: 50px;
    margin-top: 20px;
  }
}

@media (max-width: 450px) {
  .lp-menu-panel {
    width: 95vw;
    height: 75vh;
    background-color: rgba(11, 99, 184, .8);
    border-bottom-left-radius: 90px;
  }

  .lp-header-inner {
    padding: 15px 83px 16px 10px;
  }

  .lp-menu-btn {
    width: 80px;
    height: 80px;
    border-bottom-left-radius: 80px;
  }

  .lp-menu-grid a {
    font-size: 1.8rem;
  }

  .lp-menu-grid a::before {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 400px) {
  .lp-menu-panel {
    height: 95vh;
  }
}

/* MV本体 */
.hero-mv {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .20);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}

/* ①キャッチ */
.hero-catch {
  position: absolute;
  left: 0;
  top: 92px;
  color: #fff;
}

.hero-company {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .06em;
  margin-bottom: 18px;
  opacity: .95;
}

.hero-copy {
  position: absolute;
  left: 100px;
  top: 80px;
  width: 420px;
  height: 560px;
  display: flex;
  gap: 10px;
  z-index: 5;
  opacity: 0;
  transition: .7s ease;
}

/* ①キャッチ（横から） */
.hero-copy.js-hero-step {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}

.hero-copy.js-hero-step.is-show {
  opacity: 1;
  transform: translateX(0);
}

.hero-copy .line {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  font-weight: 900;
  font-size: 10rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}


/* 赤タイル */
.hero-copy .line2 .red {
  color: #d21446;
  font-size: 12rem;
}

/* 青文字 */
.hero-copy .line2 .blue {
  color: #0069be;
  font-size: 12rem;
}

.hero-copy .line3 {
  font-size: 12rem;
}

/* ②楕円グラフィック */
.hero-oval {
  position: absolute;
  right: -20px;
  top: 0;
  width: 810px;
  z-index: 1;
  pointer-events: none;
}

.hero-oval img {
  width: 100%;
  height: auto;
  display: block;
}

/* ③人物 */
.hero-person {
  position: absolute;
  right: -16%;
  bottom: 9%;
  width: 83%;
  max-width: 1000px;
  z-index: 3;
}

.hero-person img {
  width: 100%;
  height: auto;
}

/* 下の斜め白 */
.hero-slant {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -70px;
  height: 140px;
  background: #fff;
  transform: rotate(-4deg);
  z-index: 10;
}

/* ①→②→③ の表示アニメ */
/* 基本：最初は隠す */
.js-hero-step {
  opacity: 0;
  transition: opacity .55s ease, transform .55s ease;
}

/* ①キャッチ */
.hero-catch.js-hero-step {
  transform: translateY(12px);
}

/* ②楕円（横から） */
.hero-oval.js-hero-step {
  transform: translateX(24px);
}

/* ③人物（下から） */
.hero-person.js-hero-step {
  transform: translateY(24px);
}

/* 表示状態 */
.js-hero-step.is-show {
  opacity: 1;
  transform: translate(0, 0);
}



/* 動きを減らす設定に配慮 */
@media (prefers-reduced-motion: reduce) {

  .js-hero-step,
  .js-hero-step.is-show {
    transition: none;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero-copy {
    left: 50px;
    top: 50%;
  }

  .hero-catch {
    top: 115px;
  }

  .hero-oval {
    right: -20%;
    top: -5%;
  }

  .hero-person {
    right: -20%;
    bottom: 5%;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .hero-copy {
    display: none;
    left: 20px;
  }

  .hero-copy .line3 {
    font-size: 11vw;
  }

  .hero-copy .line {
    font-size: 9vw;
  }

  .hero-catch {
    top: 10%;
    width: 47%;
    z-index: 100;
    left: 3%;
  }

  .hero-copy .line2 .red,
  .hero-copy .line2 .blue {
    font-size: 14vw;
  }

  .hero-oval {
    display: none;
  }

  .hero-person {
    right: 0%;
    width: 100%;
    bottom: 0%;
  }
}

@media (max-width: 450px) {
  .hero-copy {
    left: 10px;
  }

  .hero-catch {
    width: 50%;
  }

  .hero-copy .line {
    font-size: 14vw;
  }

  .hero-copy .line2 .red,
  .hero-copy .line2 .blue {
    font-size: 18vw;
  }

  .hero-copy .line3 {
    font-size: 17vw !important;
  }

  .hero-slant {
    height: 120px;
  }
}

@media (max-width: 400px) {
  .hero-copy .line {
    font-size: 12vw;
  }

  .hero-copy .line2 .red,
  .hero-copy .line2 .blue {
    font-size: 17vw;
  }

  .hero-copy .line3 {
    font-size: 16vw !important;
  }

  .hero-slant {
    height: 120px;
  }
}

/* =====================================================
  top2 Philosophy
===================================================== */

.sec-philosophy {
  position: relative;
  padding: 0px 0 250px;
  overflow: hidden;
}

/* 下のグラデ帯 */
.sec-philosophy::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 400px;
  background-image: url(../images/bg_grd.png);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: center;
}

.philosophy-insta {
  display: flex;
  gap: 40px;
  margin-top: 200px;
  align-items: center;
  max-width: 1100px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

.insta-icon a {
  display: block;
}

.insta-icon img {
  width: 65px;
  height: auto;
}

/* 左タイトル */
.philosophy-title {
  width: 40%;
}

.philosophy-title h2 {
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1.15;
  letter-spacing: .04em;
}

.philosophy-title .red {
  color: #d4173a;
  font-size: 15rem;
  margin-right: -10px;
}

.philosophy-title .blue {
  color: #0b63b8;
  font-size: 15rem;
  margin-right: -10px;
  margin-left: -10px;
}

.philosophy-title .small {
  font-size: 5rem;
  font-weight: 900;
}

/* 右本文 */
.philosophy-text {
  width: 50%;
  font-size: 1.2rem;
  line-height: 2.2;
  color: #333;
  padding-top: 20px;
}

.philosophy-text img {
  margin: 20px 0 auto auto;
  width: 200px;
}

/* 人物 */
.philosophy-person {
  position: absolute;
  left: 120px;
  bottom: -150px;
  width: 350px;
}

.philosophy-person img {
  width: 100%;
}

/* SP */
@media (max-width: 1024px) {
  .philosophy-title {
    width: 52%;
  }
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 820px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .philosophy-insta {
    position: static;
    flex-direction: column;
    margin-top: 80px;
    gap: 20px;
  }

  .insta-icon img {
    width: 100px;
  }

  #sb_instagram.sbi_col_6 #sbi_images,
  #sb_instagram.sbi_col_6.sbi_disable_mobile #sbi_images {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .philosophy-inner {
    display: block;
  }

  .philosophy-title {
    width: 100%;
  }

  .philosophy-title h2 {
    font-size: 9vw;
  }

  .philosophy-title .red {
    font-size: 25vw;
  }

  .philosophy-title .blue {
    font-size: 25vw;
  }

  .philosophy-title .small {
    font-size: 9vw;
  }

  .philosophy-person {
    position: static;
    margin-top: -325px;
    width: 100%;
  }

  .philosophy-person img {
    width: 65%;
    margin-right: 0;
    margin-left: auto;
  }

  .philosophy-text {
    width: 100%;
    font-size: 2.0rem;
  }

  .philosophy-text img {
    width: 60%;
  }
}

@media (max-width: 540px) {
  .philosophy-title h2 {
    font-size: 8.5vw;
  }

  .insta-icon img {
    width: 65px;
  }

  .philosophy-person {
    margin-top: -210px;
  }

  .philosophy-text {
    line-height: 1.8;
  }

  .sec-philosophy {
    padding: 0px 0 200px;
  }
}

@media (max-width: 450px) {
  .philosophy-person img {
    width: 70%;
    margin-top: 50px;
  }

  .philosophy-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 400px) {
  .philosophy-person img {
    margin-top: 64px;
  }
}

/* =====================================================
  top3: "What is love & dream?"
===================================================== */

.sec-what {
  z-index: 10;
  top: -200px;
  position: relative;
  overflow: hidden;
  height: 550px;
  background-image: url(../images/bg_kouji.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

/* 背景写真 */
.what-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.what-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 文字 */
.what-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.what-title {
  color: #fff;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .04em;
  font-size: 8rem;
  text-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.what-title .red {
  color: #d4173a;
  font-size: 120%;
}

.what-title .blue {
  color: #0b63b8;
  font-size: 120%;
}

.what-title span.fb {
  font-size: 10rem;
}

.what-title span.small {
  font-size: 80%;
}


/* 下の赤帯＋青カーブ（超ざっくりCSS版） */
.what-band {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -90px;
  height: 180px;
  background: #d4173a;
  transform: rotate(-4deg);
  z-index: 1;
  overflow: hidden;
}

/* SP調整 */
@media (max-width: 820px) {
  .sec-what {
    height: 850px;
    padding-bottom: 50px;
  }

  .what-title {
    font-size: 16vw;
  }

  .what-title .blue,
  .what-title .red {
    font-size: 130%;
  }

  .what-title span.fb {
    font-size: 20vw;
  }
}

@media (max-width: 540px) {
  .sec-what {
    height: 650px;
  }
}

@media (max-width: 440px) {
  .sec-what {
    height: 550px;
  }
}

/* =====================================================
  top4 LOVE
===================================================== */

.sec-love {
  top: -360px;
  z-index: 11;
  position: relative;
  color: #fff;
  padding: 160px 0 280px;
  overflow: hidden;
  background-image: url(../images/bg_seclove.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

/* レイアウト */
.love-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 60px;
}

.love-title {
  width: 280px;
  text-align: center;
}

.love-small {
  font-size: 4.275rem;
  letter-spacing: -0.1vw;
  font-weight: 700;
  line-height: 1;
}

.love-mid {
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.0;
}

.love-big {
  font-size: 25.425rem;
  font-weight: 900;
  line-height: 1;
}

.love-content {
  padding-top: 15rem;
}

.love-heading {
  font-size: 4.125rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: .1em;
}

.love-text {
  margin-bottom: 50px;
  line-height: 2;
  font-size: 1.8rem;
  line-height: 1.8;
}

/* 3項目 */
.love-full {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.love-item {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: center;
}

.love-item:nth-child(2) {
  margin-left: 70px;
}

.love-item:nth-child(3) {
  margin-left: 140px;
}

.love-images {
  position: relative;
  left: 0;
  top: 0;
  width: 230px;
  height: 180px;
}

.love-item img {
  width: 210px;
  z-index: 0;
  position: absolute;
  left: 20px;
  top: 30px;
}

.love-num {
  font-size: 3.3rem;
  font-weight: 700;
  font-family: "m-plus-1p", sans-serif;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
}

h4 {
  letter-spacing: .2em;
  font-size: 2.25rem;
}

.love-detail {
  flex: 1;
}

.love-detail p {
  line-height: 1.5;
  font-size: 1.275rem;
}

@media (max-width: 1024px) {
  .love-side {
    left: -3.5%;
  }

  .l-container {
    width: min(1100px, calc(90% - 40px));
  }

  .love-full {
    width: 90%;
  }
}

@media (max-width: 820px) {
  .l-container {
    width: 90%;
  }

  .sec-love {
    padding: 120px 0 280px;
    background-image: url(../images/bg_seclove_sp.png);
  }

  .love-side {
    left: -6%;
    top: 334px;
  }

  .love-inner {
    display: block;
    position: static;
  }

  .love-content {
    padding-top: 6rem;
    padding-left: 1rem;
  }

  .love-title {
    width: 60%;
  }

  .love-text {
    font-size: 2.0rem;
  }

  .love-heading {
    font-size: 8vw;
  }

  .love-small {
    font-size: 8vw;
  }

  .love-mid {
    font-size: 13vw;
  }

  .love-big {
    font-size: 43vw;
  }

  .love-item {
    display: block;
    margin-bottom: 30px;
    height: auto;
  }

  .love-images {
    width: 100%;
    height: auto;
    position: static;
    display: flex;
    flex-direction: column;
  }

  .love-num {
    font-size: 10vw;
    margin-left: 10px;
    position: static;
    margin-bottom: -80px;
  }

  .love-item img {
    width: 80%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    position: static;
    margin-bottom: 1.5em;
  }

  .love-item:nth-child(2),
  .love-item:nth-child(3) {
    margin-left: 0px;
  }

  h4 {
    letter-spacing: 0em;
    font-size: 4.7vw;
    line-height: 1.4;
    margin-bottom: .5em;
  }

  .love-detail p {
    line-height: 1.5;
    font-size: 2.0rem;
  }

  .love-detail p br {
    display: none;
  }

  .love-full {
    padding-bottom: 80px;
  }
}

@media (max-width: 450px) {
  .love-text {
    font-size: 1.8rem;
  }

  h4 {
    font-size: 5.7vw;
  }

  .love-detail p {
    font-size: 1.6rem;
  }

  .love-full {
    padding-bottom: 40px;
  }

  .love-small {
    font-size: 9vw;
  }

  .love-mid {
    font-size: 15vw;
  }

  .love-big {
    font-size: 48vw;
  }

  .love-num {
    margin-bottom: -30px;
  }
}

/* =====================================================
  top5 DREAM
===================================================== */

.sec-dream {
  top: -642px;
  z-index: 12;
  position: relative;
  color: #fff;
  padding: 180px 0 0px;
  overflow: hidden;
  background-image: url(../images/bg_secdream.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}



/* レイアウト */
.dream-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* 左：内容 */
.dream-content {
  flex: 1;
  max-width: 770px;
  padding-top: 13rem;
}

.dream-lead {
  font-size: 4.125rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: .1em;
}

.dream-text {
  margin-bottom: 50px;
  line-height: 2;
  font-size: 1.8rem;
  line-height: 1.8;
}

/* 3項目 */
.dream-item {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: center;
}

.dream-item:nth-child(2) {
  margin-left: 70px;
}

.dream-item:nth-child(1) {
  margin-left: 140px;
}

.dream-images {
  position: relative;
  left: 0;
  top: 0;
  width: 230px;
  height: 180px;
}

.dream-item img {
  width: 210px;
  z-index: 0;
  position: absolute;
  left: 20px;
  top: 30px;
}

.dream-num {
  font-size: 3rem;
  font-weight: 700;
  font-family: "m-plus-1p", sans-serif;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
}

.dream-full {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.dream-detail {
  flex: 1;
}

.dream-item h4 {
  letter-spacing: .2em;
  font-size: 2.25rem;
}

.dream-item p {
  line-height: 1.5;
  font-size: 1.275rem;
}

/* 右：夢の塊 */
.dream-title {
  width: 280px;
  text-align: center;
}

.dream-small {
  font-size: 4.275rem;
  letter-spacing: -0.1vw;
  font-weight: 700;
  line-height: 1;
}

.dream-mid {
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.0;
}

.dream-big {
  font-size: 25.425rem;
  font-weight: 900;
  line-height: 1;
}


.sec-dream-bottom {
  width: 100%;
  margin-top: 0px;
}

.sec-dream-bottom img {
  height: auto;
  width: 100%;
}

/* SP */
@media (max-width: 1024px) {
  .dream-side {
    right: -3.5%;
  }

  .dream-full {
    width: 90%;
  }
}

@media (max-width: 820px) {
  .sec-dream {
    padding: 120px 0 0px;
    background-image: url(../images/bg_secdream_sp.png);
  }

  .dream-text {
    font-size: 2.0rem;
  }

  .dream-side {
    left: -6%;
    top: 334px;
  }

  .dream-inner {
    display: flex;
    flex-direction: column;
    position: static;
  }

  .dream-content {
    padding-top: 0rem;
    padding-left: 0rem;
    order: 1;
  }

  .dream-item {
    display: block;
    margin-bottom: 30px;
    height: auto;
  }

  .dream-images {
    width: 100%;
    height: auto;
    position: static;
    display: flex;
    flex-direction: column;
  }

  .dream-title {
    width: 100%;
    text-align: right;
    margin-left: auto;
    padding-right: 2em;
  }

  .dream-lead {
    font-size: 8vw;
  }

  .dream-small {
    font-size: 8vw;
  }

  .dream-mid {
    font-size: 13vw;
  }

  .dream-big {
    font-size: 43vw;
  }

  .dream-num {
    font-size: 10vw;
    margin-left: 10px;
    position: static;
    margin-bottom: -80px;
  }

  .dream-item img {
    width: 80%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    position: static;
    margin-bottom: 1.5em;
  }

  .dream-item:nth-child(1),
  .dream-item:nth-child(2),
  .dream-item:nth-child(3) {
    margin-left: 0px;
  }

  .dream-item:nth-child(3) {
    margin-bottom: 100px;
  }

  .dream-item h4 {
    letter-spacing: 0em;
    font-size: 4.7vw;
    line-height: 1.4;
    margin-bottom: .5em;
  }

  .dream-detail p {
    line-height: 1.5;
    font-size: 2.0rem;
  }

  .dream-detail p br {
    display: none;
  }
}

@media (max-width: 450px) {
  .dream-text {
    font-size: 1.8rem;
  }

  .dream-item h4 {
    font-size: 5.7vw;
  }

  .dream-detail p {
    font-size: 1.6rem;
  }

  .dream-item:nth-child(3) {
    margin-bottom: 60px;
  }

  .dream-small {
    font-size: 9vw;
  }

  .dream-mid {
    font-size: 15vw;
  }

  .dream-big {
    font-size: 48vw;
  }

  .dream-num {
    margin-bottom: -30px;
  }
}

.slant-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

/* =====================================================
  top6 Gallery
===================================================== */

.sec-gallery {
  position: relative;
  background: #fff;
  overflow: hidden;
}

/* 上の斜め（青からのつなぎ） */
.gallery-slant-top {
  position: absolute;
  left: -10%;
  right: -10%;
  top: -120px;
  height: 200px;
  background: #0b63b8;
  transform: rotate(-4deg);
  z-index: 0;
}

/* 本体 */
.gallery-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 高さ調整 */
.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* SP */
@media (max-width: 820px) {
  .gallery-inner {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    aspect-ratio: 16 / 9;
  }
}

/* =====================================================
  top7 Stats
===================================================== */

.sec-stats {
  position: relative;
  background: #efefef;
  padding: 140px 0 50px;
  overflow: hidden;
  top: -650px;
}

.stats-inner {
  position: relative;
  z-index: 1;
}

/* 見出し */
.stats-title {
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .03em;
  font-size: 7.125rem;
  margin-bottom: 50px;
}

.stats-title .small {
  font-size: 90%;
}

.stats-title .red {
  color: #d4173a;
  font-size: 7.875rem;
}

.stats-title .blue {
  color: #0b63b8;
  font-size: 7.875rem;
}

/* グリッド（3列） */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* 斜めカード：外枠をskew → 中身を戻す */
.stat-card {
  transform: skewX(6deg);
  overflow: hidden;
  min-height: 160px;
  position: relative;
}

.stat-card__inner {
  transform: skewX(-6deg);
  padding: 26px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 色 */
.stat-card.is-blue {
  background: #0b63b8;
}

.stat-card.is-red {
  background: #d4173a;
}

.stat-label {
  display: flex;
  justify-content: space-between;
}

.stat-label span {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.1;
}

.stat-label img {
  width: auto;
  height: 60px;
}

.stat-value {
  color: #fff;
  font-weight: 700;
  line-height: 1;
  font-size: 6.825rem;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stat-value .unit {
  font-size: 2.4rem;
  font-weight: 800;
}

.stat-note {
  color: #fff;
  font-size: 1.05rem;
  text-align: right;
  margin-top: 10px;
}

.stat-ratio {
  gap: 10px;
}

/* SP */
@media (max-width: 820px) {
  .sec-stats {
    position: static;
    margin-top: -650px;
    padding: 100px 0 50px;
  }

  .stats-inner {
    position: static;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    transform: skewX(0deg);
  }

  .stat-card__inner {
    transform: skewX(0deg);
    padding: 20px 24px 15px;
  }

  .stats-title .red,
  .stats-title .blue {
    font-size: 17.5vw;
  }

  .stats-title {
    font-size: 13.5vw;
  }

  .stat-label span {
    font-size: 5vw;
  }

  .stat-label img {
    height: 80px;
  }

  .stat-value {
    font-size: 13vw;
  }

  .stat-value .unit {
    font-size: 5vw;
  }

  .stat-note {
    font-size: 3vw;
  }
}

@media (max-width: 540px) {

  .stats-title .red,
  .stats-title .blue {
    font-size: 17.0vw;
  }

  .stats-title {
    font-size: 13.0vw;
  }
}

@media (max-width: 450px) {
  .sec-stats {
    padding: 70px 0 50px;
  }

  .stat-label span {
    font-size: 7vw;
  }

  .stat-value {
    font-size: 18vw;
  }

  .stat-value .unit {
    font-size: 7vw;
  }

  .stat-note {
    font-size: 4.5vw;
  }
}

/* 共通 */
.stats-curve {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* 上 */
.stats-curve--top {
  top: -140px;
  /* ←調整ポイント */
}

/* 下 */
.stats-curve--bottom {
  bottom: -140px;
  /* ←調整ポイント */
}

/* 中身は前面に */
.stats-inner {
  position: relative;
  z-index: 1;
}

/* =====================================================
  top8 Job
===================================================== */

.sec-job {
  position: relative;
  background-image: url(../images/bg_grybt.png);
  background-color: #fff;
  background-position: top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 50px 0 0px;
  z-index: 2;
  top: -650px;
}

.job-inner {
  position: relative;
  z-index: 1;
  /* テキストは上に */
}

.job-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 0px;
  align-items: start;
}

/* 左：写真グリッド（少し傾いてるならここで） */
.job-photos {
  max-width: 850px;
  height: auto;
  padding-top: 220px;
}


.job-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 右：縦組み */
.job-title {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: flex-start;
}

/* 黒帯（縦） */
.job-tag {
  background: #0b0f1a;
  writing-mode: vertical-rl;
  padding: 30px 18px;
  transform: skewY(-6deg);
  margin-top: 230px;
}

.job-tag p {
  transform: skewY(6deg);
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 4.125rem;
  line-height: 1;
}

.job-tag p .small {
  font-size: 3.0rem;
}

/* 大きい縦タイトル */
.job-ttl {
  writing-mode: vertical-rl;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.4;
}

.job-ttl span.line1 {
  font-size: 5.25rem;
}

.job-ttl span.line2 {
  font-size: 6.225rem;
}

.job-ttl span.line2 .red {
  font-size: 7.8rem;
  color: #cc2541;
  display: inline-block;
}

.job-ttl span.line2 .blue {
  font-size: 7.8rem;
  color: #0465c4;
  display: inline-block;
}

/* 縦書きなので不要 */

.job-ttl {
  color: #111;
}

.job-ttl span {
  display: block;
}

/* 下テキスト */
.job-desc {
  margin-top: 40px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.9;
  font-size: 2.0rem;
}

/* SP */
@media (max-width: 1024px) {
  .sec-job {
    padding: 0px 0 0px;
  }

  .job-desc {
    font-size: 1.6rem;
  }
}

/* SP */
@media (max-width: 820px) {
  .job-photos {
    padding-top: 45px;
  }

  .sec-job {
    position: static;
    margin-top: 0px;
    padding-top: 140px;
  }

  .job-inner {
    position: static;
  }

  .job-title img {
    width: 90%;
  }

  .job-ttl span {
    display: inline-block;
  }

  .job-desc {
    font-size: 2.4rem;
  }


  .job-grid {
    gap: 60px;
    grid-template-columns: 1.3fr .70fr;
  }

  .job-tag,
  .job-ttl {
    display: none;
  }
}

@media (max-width: 540px) {
  .sec-job {
    padding-top: 70px;
  }

  .job-ttl span.line2 .red,
  .job-ttl span.line2 .blue,
  .job-ttl span {
    display: inline-block;
  }

  .job-photos {
    width: 300px;
    padding-top: 110px;
  }

  .job-tag {
    margin-top: 110px;
    padding: 15px 10px;
  }

  .job-ttl {
    white-space: nowrap;
  }

  .job-ttl span.line2 .blue,
  .job-ttl span.line2 .red {
    font-size: 13vw;
  }

  .job-ttl span.line1,
  .job-ttl span.line2 {
    font-size: 8vw;
  }

  .job-tag p {
    font-size: 6vw;
  }

  .job-tag p .small {
    font-size: 5vw;
  }
}

@media (max-width: 450px) {
  .job-photos {
    width: 120%;
    padding-top: 12px;
  }

  .job-title {
    gap: 10px;
  }

  .job-desc {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .job-tag {
    margin-top: 110px;
    padding: 15px 20px;
  }

  .job-tag p {
    font-size: 6vw;
    line-height: 0;
  }
}

@media (max-width: 400px) {

  .job-desc {
    margin-top: 20px;
  }
}

/* =====================================================
  top9: Recruit
===================================================== */

.sec-recruit {
  position: relative;
  background-image: url(../images/bg_comp.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 1920px auto;
  overflow: hidden;
  z-index: 2;
  height: 1040px;
  top: -650px;
  padding-top: 240px;
}


/* 斜めパネル本体 */
.recruit-panel {
  max-width: 1100px;
  margin: 0 auto;
  height: 700px;
}


/* 中身 */
.recruit-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

/* 左タイトル */
.recruit-ttl {
  color: #fff;
  font-weight: 900;
  line-height: 1.05;
  font-size: 8.7rem;
  letter-spacing: 0.09em;
}

.recruit-ttl .big {
  display: block;
  font-size: 14.5rem;
}

/* 写真2枚 */
.recruit-photos {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.recruit-photo {
  width: 200px;
  height: auto;
}

.recruit-photo:first-child {
  margin-top: 40px;
}

.recruit-photo img {
  width: 100%;
  height: auto;
}

/* 右リスト（斜めの白バー） */
.recruit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: rotate(0deg);
}

.recruit-list li {
  background: #fff;
  color: #111;
  font-weight: 900;
  padding: 10px 15px;
  transform: skewY(-6deg);
}

.recruit-list li span {
  display: block;
  transform: skewX(0deg);
  font-size: 2.55rem;
}

/* SP */
@media (max-width: 1024px) {
  .recruit-list li span {
    font-size: 2.1rem;
  }

  .sec-recruit {
    background-size: 1800px auto;
    height: 940px;
    padding-top: 200px;
  }
}

/* SP */
@media (max-width: 820px) {
  .recruit-list li {
    padding: 10px 30px 12px;
    transform: skewY(-6deg);
  }

  .recruit-list li span {
    font-size: 6.8vw;
    line-height: 1.15;
  }

  .sec-recruit {
    position: static;
    margin-top: -120px;
    height: auto;
    background-size: auto 100%;
    padding-bottom: 250px;
    padding-top: 250px;
  }

  .recruit-panel {
    height: auto;
    margin-bottom: 60px;
  }

  .recruit-inner {
    display: block;
    position: static;
  }

  .recruit-ttl {
    font-size: 19vw;
    text-align: center;
  }

  .recruit-ttl .big {
    font-size: 33vw;
  }

  .recruit-photo {
    width: 49%;
  }
}

@media (max-width: 540px) {
  .sec-recruit {
    position: static;
    margin-top: -80px;
  }

  .recruit-ttl {
    font-size: 18vw;
  }

  .recruit-ttl .big {
    font-size: 32vw;
  }

  .recruit-list li span {
    font-size: 6.4vw;
  }
}

@media (max-width: 450px) {
  .sec-recruit {
    padding-bottom: 230px;
    padding-top: 200px;
    margin-top: -110px;
  }
}

@media (max-width: 400px) {
  .sec-recruit {
    margin-top: -70px;
  }
}

/* =========================================
  common heading
========================================= */
.sec-head {
  margin-bottom: 34px;
}

.sec-head.center {
  text-align: center;
}

.sec-kicker {
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: left;
}

.sec-kicker.center {
  text-align: center;
}

.sec-title {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1.2;
  margin-top: 40px;
}

.sec-kicker .black {
  color: #222;
  font-size: 4.725rem;
  display: block;
}

.sec-kicker .red {
  color: #d0182d;
  font-size: 6rem;
}

.sec-kicker .blue {
  color: #0b63b8;
  font-size: 6rem;
}


/* interviewを少し上に引き上げて“重なり”を作る */
.sec-interview {
  position: relative;
  z-index: 1;
  padding: 250px 0 0px;
  background: #fff;
  overflow: hidden;
  top: -850px;
  background-image: url(../images/bg_interview.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 600px auto;
}

.splide {
  top: 0;
}


/* 中身はスラントの上に */
.interview-inner {
  position: relative;
  z-index: 2;
}

.interview-splide .splide__track {
  overflow: visible;
  /* 左右を見切れ表示したいなら */
}

.interview-splide {
  overflow: hidden;
  /* セクション全体の外には出さない */
}

.interview-splide .splide__list {
  align-items: stretch;
  gap: 30px !important;
}

.interview-splide {
  top: -800px;
}

@media (max-width: 1024px) {
  .sec-interview {
    background-size: 500px auto;
  }
}

@media (max-width: 820px) {
  .sec-interview {
    position: static;
    margin-top: -252px;
    background-color: transparent;
    background-size: 100% auto;
    padding: 400px 0 0px;
    background-position: right top;
    background-image: url(../images/bg_interview_sp.png);
  }

  .interview-splide .splide__list {
    align-items: center;
    flex-direction: column;
  }

  .interview-splide {
    top: 0px;
  }

  .splide__track,
  .splide,
  .splide__slide {
    position: static;
  }

  ul.splide__list {
    flex-direction: column;
  }

  li.splide__list {
    width: 100%;
    margin-right: 0;
    position: static;
  }

  .sec-head {
    margin-bottom: 50px;
  }

  .sec-title {
    font-size: 12vw;
  }

  .interview-inner {
    position: static;
  }

  .sec-kicker .black {
    font-size: 9vw;
  }

  .sec-kicker .red {
    font-size: 10.5vw;
  }

  .sec-kicker .blue {
    font-size: 10.5vw;
  }

  .sec-kicker .black.flow {
    font-size: 10vw;
  }

  .sec-kicker .red.flow {
    font-size: 13vw;
  }

  .sec-kicker .blue.flow {
    font-size: 13vw;
  }
}

@media (max-width: 540px) {
  .sec-interview {
    padding: 280px 0 0px;
  }

  .sec-kicker .red {
    font-size: 10.0vw;
  }

  .sec-kicker .blue {
    font-size: 10.0vw;
  }
}

@media (max-width: 450px) {
  .sec-interview {
    padding: 220px 0 0px;
  }
}

@media (max-width: 400px) {
  .sec-interview {
    padding: 190px 0 0px;
  }
}

/* =========================================
  interview cards
========================================= */
/* ここはセクションの外枠。必要なら余白など調整してOK */
.interview-slider {
  position: relative;
  padding-bottom: 150px;
  top: -850px;
  overflow: hidden;
}


/* 3枚見せつつ、左右を見切れさせたいので少し大きめにする */
.interview-card {
  width: 100%;
  background: #fff;
  height: 100%;
}

/* 既存の見た目はそのまま流用 */
.interview-photo {}

.interview-photo img {
  width: 100%;
  height: auto;
}

/* hover中は止めたい場合（JS側でも止めるけど保険） */
.interview-viewport:hover .interview-track {
  animation-play-state: paused;
}

.interview-role {
  margin-top: 14px;
  font-weight: 800;
  font-size: 2.75rem;
  color: #111;
}

.interview-name {
  font-weight: 800;
  font-size: 2.75rem;
  color: #111;
}

.interview-text {
  margin-top: 10px;
  font-size: 1.425rem;
  line-height: 1.9;
  color: #333;
}

@media (max-width: 820px) {
  .interview-splide {
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    display: block !important;
  }

  .interview-splide:not(.is-initialized) {
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }
}

@media (max-width: 820px) {

  .interview-slider {
    position: static;
    margin-top: 0px;
    padding-bottom: 0px;
  }

  .interview-track {
    gap: 40px;
    flex-direction: column;
  }

  .interview-card {
    width: 90%;
    margin: 0 auto 40px auto;
  }

  .interview-role {
    font-size: 6vw;
  }

  .interview-name {
    font-size: 6vw;
  }

  .interview-text {
    font-size: 2.0rem;
  }
}

@media (max-width: 450px) {
  .interview-text {
    font-size: 1.6rem;
  }
}

/* =========================================
  flow section（薄い背景写真＋斜め）
========================================= */
.sec-flow {
  position: relative;
  padding: 200px 0 110px;
  overflow: hidden;
  top: -800px;
  background-image: url(../images/bg_tm.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1920px auto;
  height: 1184px;
}


.flow-inner {
  position: relative;
  z-index: 2;
}

.flow-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  height: 85px;
  padding-left: 25px;
}

.flow-tag {
  font-weight: 900;
  color: #d0182d;
  min-width: 64px;
  text-align: left;
  font-size: 2.25rem;
}

.flow-text {
  margin: 0;
  font-weight: 800;
  color: #0b63b8;
  font-size: 1.875rem;
}

.flow-arrow {
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 25px solid #0b63b8;
  margin: 20px auto;
}

@media (max-width: 820px) {
  .sec-flow {
    position: static;
    margin-top: 0px;
    background-size: auto 105%;
    height: auto;
    padding: 200px 0 200px;
  }

  .flow-step {
    flex-direction: column;
    gap: 0px;
    height: auto;
    padding-left: 0px;
    padding-top: 20px;
    padding-bottom: 25px;
  }

  .flow-tag {
    font-size: 4vw;
    margin-bottom: 0px;
  }

  .flow-text {
    font-size: 5vw;
    line-height: 1.4;
    text-align: center;
  }
}

@media (max-width: 450px) {
  .sec-flow {
    margin-top: -40px;
    padding: 170px 0 140px;
  }

  .flow-tag {
    font-size: 5vw;
  }

  .flow-text {
    font-size: 6vw;
  }
}

/* =========================================
  FAQ
========================================= */
.sec-faq {
  padding: 0px 0 90px;
  background: #fff;
  top: -800px;
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, .06);
  background: #fff;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0b63b8;
  color: #fff;
  padding: 12px 14px;
  font-weight: 900;
}

.faq-q p {
  margin: 0;
  font-size: 1.875rem;
}

.qmark {
  font-weight: 1000;
  letter-spacing: .02em;
  font-size: 2.5rem;
  font-family: "m-plus-1p", sans-serif;
}

.faq-a {
  display: flex;
  gap: 10px;
  background: #d0182d;
  color: #fff;
  padding: 12px 14px;
}

.faq-a p {
  margin: 0;
  font-size: 1.425rem;
  line-height: 1.8;
}

.amark {
  font-weight: 900;
  font-size: 2.5rem;
  font-family: "m-plus-1p", sans-serif;
  line-height: 1;
}

.faq-item {
  border: none;
}

/* Q部分 */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0b63b8;
  color: #fff;
  padding: 16px 20px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .3s ease;
}

.faq-q p {
  margin: 0;
  font-size: 1.6rem;
}

/* A部分（初期は閉じる） */
.faq-a {
  max-height: 0;
  overflow: hidden;
  background: #d0182d;
  color: #fff;
  display: flex;
  gap: 12px;
  padding: 0 20px;
  transition: max-height .4s ease, padding .3s ease;
}

/* 開いた状態 */
.faq-item.is-open .faq-a {
  padding: 16px 20px;
  max-height: 300px;
}

@media (max-width: 820px) {
  .sec-faq {
    position: static;
    margin-top: 0px;
  }

  .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px 18px;
  }

  .qmark,
  .amark {
    font-size: 3.5rem;
  }

  .faq-q p {
    font-size: 3rem;
  }

  .faq-a p {
    font-size: 2.0rem;
  }
}

@media (max-width: 540px) {
  .faq-q {
    padding: 16px 15px;
  }

  .qmark,
  .amark {
    font-size: 4vw;
  }

  .faq-q p {
    font-size: 4vw;
  }

  .faq-a p {
    font-size: 2.0rem;
  }
}

@media (max-width: 450px) {
  .faq-a p {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .qmark,
  .amark {
    font-size: 4.5vw;
  }

  .faq-q p {
    font-size: 4.5vw;
  }
}

/* =========================================
  CTA
========================================= */
.sec-cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  top: -800px;
  background: url("../images/bg_rec.png") center/cover no-repeat;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  color: #fff;
  font-weight: 1000;
  font-size: 4.725rem;
  line-height: 1.25;
  margin: 0 0 40px;
}

.cta-title span {
  font-size: 6rem;
  display: block;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 460px;
  min-width: 220px;
  height: 85px;
  border-radius: 10px;
  background: #d0182d;
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  font-size: 3rem;
}

@media (max-width: 820px) {
  .sec-cta {
    position: static;
    margin-top: 0px;
    background: url("../images/bg_rec_sp.png") center/cover no-repeat;
  }

  .cta-bg {
    position: static;
  }

  .cta-inner {
    position: static;
  }

  .cta-title {
    font-size: 9.4vw;
  }

  .cta-title span {
    font-size: 11vw;
  }

  .cta-btn {
    width: 80%;
    font-size: 4vw;
  }
}

@media (max-width: 540px) {
  .cta-btn {
    height: 60px;
    font-size: 5vw;
  }
}

@media (max-width: 450px) {
  .sec-cta {
    padding: 60px 0;
  }
}

/* =========================================
  Footer
========================================= */


/* =========================
   黒フッター本体
========================= */

.lp-footer {
  background-image: url(../images/footer_mv.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 1920px auto;
  background-color: #1a1a1a;
  padding-bottom: 30px;
  margin-top: -960px;
  padding-top: 580px;
}

@media (max-width: 820px) {
  .lp-footer {
    margin-top: 0px;
  }
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  color: #fff;
}

/* 左エリア */

.footer-vertical {
  writing-mode: vertical-rl;
  font-weight: 900;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 40px;
}

.footer-vertical span.line1 {
  font-size: 6.975rem;
}

.footer-vertical span.line2 {
  font-size: 8.8rem;
}

.footer-vertical span.line2 span {
  font-size: 6.975rem;
}

.footer-vertical span.line3 {
  font-size: 8.9rem;
}

.footer-nav {
  margin-top: 240px;
}

.footer-brand {
  font-size: 1.65rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-brand_sp {
  display: none;
}

.footer-brand img {
  width: 260px;
  margin-right: 15px;
}

.footer-corporate {
  font-size: 1.275rem;
  color: #fff;
  text-decoration: none;
}


/* 右ナビ */

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
}

.footer-nav li {
  margin-bottom: 14px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.275rem;
}

.footer-nav a::before {
  content: '';
  /*何も入れない*/
  display: inline-block;
  width: 25px;
  /*画像の幅*/
  height: 25px;
  /*画像の高さ*/
  background-image: url(../images/footer_ai.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}

.footer-btm {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* コピー */

.footer-copy {
  text-align: right;
  font-size: 1.2rem;
  color: #fff;
}


/* TOPボタン */

.to-top {
  z-index: 10000;
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-image: url(../images/pagetop.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  transition: .3s;
}



/* =========================
   レスポンシブ
========================= */

@media (max-width: 1024px) {
  .footer-inner {
    gap: 0px;
  }
}

@media (max-width: 820px) {
  .lp-footer {
    background-image: url(../images/footer_mv_sp.png);
    margin-top: 0px;
    background-size: 100% auto;
    padding-top: 650px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
  }

  .footer-left {
    width: 48%;
  }

  .footer-vertical {
    writing-mode: inherit;
    font-size: 0;
    line-height: 1;
    width: 100%;
  }

  .footer-vertical img {
    width: 100%;
  }

  .footer-nav {
    margin-top: 0;
  }

  .footer-nav ul {
    columns: 1;
  }

  .footer-nav a {
    font-size: 2.0rem;
    font-weight: 700;
  }

  .footer-brand {
    display: none;
  }

  .footer-btm {
    margin-top: 50px;
    flex-direction: column;
    gap: 20px;
  }

  .footer-brand_sp {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 2.4rem;
    text-align: center;
    color: #fff;
  }

  .footer-brand_sp img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }

  .footer-corporate {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
  }

  .footer-copy {
    font-size: 1.8rem;
  }

  .footer-vertical span {
    display: none;
  }
}

@media (max-width: 540px) {
  .lp-footer {
    padding-top: 420px;
  }
}

@media (max-width: 450px) {
  .lp-footer {
    background-size: 100% auto;
    padding-top: 340px;
  }

  .footer-nav a {
    font-size: 1.8rem;
  }

  .footer-brand_sp {
    font-size: 1.8rem;
  }

  .footer-corporate {
    font-size: 1.6rem;
  }

  .footer-copy {
    font-size: 1.4rem;
  }
}

@media (max-width: 420px) {
  .lp-footer {
    padding-top: 330px;
  }

  .footer-nav a {
    font-size: 1.6rem;
  }
}


@media (max-width: 393px) {
  .lp-footer {
    padding-top: 310px;
  }
}

@media (max-width: 375px) {
  .lp-footer {
    padding-top: 310px;
  }
}

/* =========================================
  responsive
========================================= */


/* ふわっと表示（共通） */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

/* 表示されたら */
.js-reveal.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 動きを減らしたい設定の人への配慮 */
@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* セクション（外側）は “見切れ表示” を許可 */
.interview-splide {
  overflow: visible;
  top: 0px;
}

/* Splideのtrackはデフォで隠しがちなので、見切れ表示できるように */
.interview-splide .splide__track {
  overflow: visible;
}

/* ただし、ページ全体に横スクロールが出るのを防ぐため
   スライダーの親セクション側で横方向は隠すのがおすすめ */
.interview-section-wrap {
  overflow-x: hidden;
}

/* カード幅を “3枚 + 左右見切れ” になるよう少し大きめに */
.interview-splide .splide__slide {
  display: flex;
  align-items: stretch;
  margin-right: 0 !important;
}

.interview-card {
  flex: 0 0 auto;
}

/* gapはJSの options.gap と合わせる（CSS側でも保険） */
.interview-splide .splide__list {
  gap: 30px;
}

.interview-splide {
  padding: 0 clamp(16px, 6vw, 120px);
}

.interview-section-wrap {
  position: relative;
  overflow-x: hidden;
  top: -850px;
  /* 横スクロール防止 */
}

.interview-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  display: grid;
  place-items: center;
}

.interview-arrow--prev {
  left: 16px;
}

.interview-arrow--next {
  right: 16px;
}


@media (max-width: 820px) {
  .interview-arrow--prev {
    display: none;
  }

  .interview-arrow--next {
    display: none;
  }

  .interview-section-wrap {
    position: static;
    margin-top: 0px;
  }
}