@charset "UTF-8";

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  line-height: 1;
  text-size-adjust: 100%;
  width: 100%;
  text-decoration: none;
  padding: 0;
  position: relative;
  overflow-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

* {
  float: none;
  position: static;
}

img {
  vertical-align: top;
  max-width: 100%;
}

li {
  list-style: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ここまでデフォルト。destyle.css とともに使う。line-height は要検討 */

body {
  font-weight: 400;
  font-style: normal;
  color: #333;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

p {
  line-height: 1.6;
}

.bold {
  font-weight: bold;
}

:root {
  --color-grad-from: #f36f4f;
  --color-grad-to: #fcbe45;
  --color-red: #f36f4f;
  --color-orange: #fc9726;
  --color-yellow: #fcbe45;
  --color-black: #333333;
  --color-gray: #999999;
  --color-blue: #1b19d5;
}

.num-text,
.en-text {
  font-family: "Kumbh Sans", sans-serif;
}

.section-highlight {
  background: linear-gradient(
    90deg,
    var(--color-grad-from) 0%,
    var(--color-grad-to) 100%
  );
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
}

/* ps_grass 用シャドウ・ぼかしスタイル */
.ps-grass {
  /* ① メインのボックスシャドウ（X: 0px, Y: 4px, Blur: 40px, Spread: 0px, Color: #000000 12%） */
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.12),
    /* ② 追加のぼかしシャドウ（Blur: 80px）も重ねる */ 0px 0px 54px
      rgba(0, 0, 0, 0.12);
}

/* コンテナ */
.container {
  width: 100%;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* ヘッダー */
.site-header {
  position: fixed;
  top: 0;
  left: 0px;
  width: 100vw;
  z-index: 300;
}

.nav {
  position: static;
  box-shadow: none;
  background: transparent;
}

.nav ul {
  display: flex;
}

.header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px 20px;
}

/* ── ハンバーガー＆トグル ── */
.nav-toggle {
  display: none;
}

/* ハンバーガー表示 */
.nav-toggle-label {
  display: none; /* デフォルトは非表示 */
  position: relative;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 999; /* メニューより前面に */
  background: #37414f;
  border-radius: 9999px;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: white;
  transition: transform 0.3s, top 0.3s, opacity 0.3s;
  border-radius: 8px;
}
.nav-toggle-label span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nav-toggle-label span::before {
  top: -6px;
}
.nav-toggle-label span::after {
  top: 6px;
}

.logo {
  background-color: hsla(0, 0%, 100%, 0.3);
  backdrop-filter: blur(55px);
  border-radius: 48px;
  padding: 14px 40px;
  font-family: "Century Gothic";
  color: white;
  text-decoration: none;

  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 1px;
}

.nav {
  background-color: hsla(0, 0%, 100%, 0.3);
  backdrop-filter: blur(4px);
  height: 80px;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  border-radius: 100px;
  border: 1px solid white;
}

.nav ul {
  list-style: none;
  display: flex;
  width: 100%;
  gap: 0px;
  justify-content: space-between;
  align-items: center;
}

.flip-link {
  position: relative;
  width: 13em;
  height: 24px;
  display: inline-block;
  line-height: 24px;
  padding: 0 10px;
  perspective: 400px;
  overflow: hidden;
}

.flip-link .text-en,
.flip-link .text-jp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, color 0.3s ease;
}

.flip-link .text-en {
  transform-origin: center bottom;
  transform: rotateX(0deg);
  font-size: 18px;
  color: var(--color-black);
}

.flip-link .text-jp {
  transform-origin: center top;
  transform: rotateX(90deg);
  font-size: 18px;
  color: var(--color-black);
}

.flip-link:hover .text-en {
  transform: rotateX(-90deg);
}
.flip-link:hover .text-jp {
  transform: rotateX(0deg);
}

/* ─────────────────────────────────────
   ◇◇◇ MV セクションの背景を二重指定 ◇◇◇
   ───────────────────────────────────── */
.mv {
  position: relative;
  width: 100%;

  /* 背景設定 */
  background-repeat: no-repeat, no-repeat;
  background-position: 94% 200px, center center, center center, center center,
    center center, center center, center center;
  background-attachment: fixed, scroll;
  background-size: 60% auto, auto auto, auto auto, auto auto, auto auto,
    auto auto, auto auto, cover;

  padding: 36vh 0 72px;
  /* overflow: hidden を削除しておく（sticky に影響しないよう） */

  background-color: rgb(250, 172, 56);
  background-image:     /* レイヤー①：右半分にイラストを固定する */ url("/images/mv.png"),
    radial-gradient(
      circle at var(--x-0) var(--y-0),
      var(--c-0) var(--s-start-0),
      transparent var(--s-end-0)
    ),
    radial-gradient(
      circle at var(--x-1) var(--y-1),
      var(--c-1) var(--s-start-1),
      transparent var(--s-end-1)
    ),
    radial-gradient(
      circle at var(--x-2) var(--y-2),
      var(--c-2) var(--s-start-2),
      transparent var(--s-end-2)
    ),
    radial-gradient(
      circle at var(--x-3) var(--y-3),
      var(--c-3) var(--s-start-3),
      transparent var(--s-end-3)
    ),
    radial-gradient(
      circle at var(--x-4) var(--y-4),
      var(--c-4) var(--s-start-4),
      transparent var(--s-end-4)
    ),
    radial-gradient(
      circle at var(--x-5) var(--y-5),
      var(--c-5) var(--s-start-5),
      transparent var(--s-end-5)
    );
  animation: hero-gradient-animation 4s linear infinite alternate;
  background-blend-mode: normal, normal, normal, normal, normal, normal, normal;
}

@keyframes hero-gradient-animation {
  0% {
    --c-0: hsla(29, 89%, 72%, 0.808);
    --y-0: 0%;
    --x-0: 20%;
    --s-start-0: 3.1210986267166043%;
    --s-end-0: 40%;
    --s-start-1: 3.1210986267166043%;
    --s-end-1: 40%;
    --y-1: 0%;
    --x-1: 60%;
    --c-1: hsla(353, 98%, 41%, 0.267);
    --c-2: hsla(11.707317073170733, 87%, 63%, 1);
    --y-2: 0%;
    --x-2: 80%;
    --s-start-2: 3.1210986267166043%;
    --s-end-2: 40%;
    --c-3: rgb(251, 149, 65);
    --s-start-3: 3%;
    --s-end-3: 40%;
    --y-3: 0%;
    --x-3: 100%;
    --c-4: rgb(247, 149, 20);
    --s-start-4: 3%;
    --s-end-4: 62.40417274500844%;
    --y-4: 7%;
    --x-4: 5%;
    --c-5: hsla(11.707317073170733, 87%, 63%, 1);
    --s-start-5: 3%;
    --s-end-5: 62.40417274500844%;
    --y-5: 11%;
    --x-5: 22%;
  }

  100% {
    --c-0: hsla(7, 77%, 74%, 0.637);
    --y-0: 44%;
    --x-0: 8%;
    --s-start-0: 11;
    --s-end-0: 57;
    --s-start-1: 11;
    --s-end-1: 57;
    --y-1: 41%;
    --x-1: 26%;
    --c-1: hsla(353, 98%, 41%, 0.171);
    --c-2: rgb(255, 170, 34);
    --y-2: 73%;
    --x-2: 67%;
    --s-start-2: 11;
    --s-end-2: 57;
    --c-3: hsla(11.707317073170733, 87%, 63%, 1);
    --s-start-3: 11;
    --s-end-3: 57;
    --y-3: 73%;
    --x-3: 66%;
    --c-4: hsla(11.707317073170733, 87%, 63%, 1);
    --s-start-4: 11;
    --s-end-4: 62.73327029113426%;
    --y-4: 81%;
    --x-4: 26%;
    --c-5: hsla(21.17647058823529, 96%, 62%, 1);
    --s-start-5: 11;
    --s-end-5: 62.73327029113426%;
    --y-5: 83%;
    --x-5: 72%;
  }
}

@property --c-0 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(22, 96%, 70%, 0.836);
}

@property --y-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --x-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 20%;
}

@property --s-start-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3.1210986267166043%;
}

@property --s-end-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}

@property --s-start-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3.1210986267166043%;
}

@property --s-end-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}

@property --y-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --x-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 60%;
}

@property --c-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(27, 98%, 41%, 0.219);
}

@property --c-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(11.707317073170733, 87%, 63%, 1);
}

@property --y-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --x-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 80%;
}

@property --s-start-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3.1210986267166043%;
}

@property --s-end-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}

@property --c-3 {
  syntax: "<color>";
  inherits: false;
  initial-value: rgb(251, 170, 65);
}

@property --s-start-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3%;
}

@property --s-end-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}

@property --y-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --x-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --c-4 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(37.42857142857143, 91%, 54%, 1);
}

@property --s-start-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3%;
}

@property --s-end-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 62.40417274500844%;
}

@property --y-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 7%;
}

@property --x-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 5%;
}

@property --c-5 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(11.707317073170733, 87%, 63%, 1);
}

@property --s-start-5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3%;
}

@property --s-end-5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 62.40417274500844%;
}

@property --y-5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 11%;
}

@property --x-5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 22%;
}

.mv {
  --c-0: hsla(27, 77%, 74%, 0.295);
  --y-0: 0%;
  --x-0: 20%;
  --y-1: 0%;
  --x-1: 60%;
  --c-1: hsla(19, 98%, 41%, 0.534);
  --c-2: hsla(11.707317073170733, 87%, 63%, 1);
  --y-2: 0%;
  --x-2: 80%;
  --c-3: hsla(39.67213114754098, 96%, 62%, 1);
  --y-3: 0%;
  --x-3: 100%;
  --c-4: hsla(37.42857142857143, 91%, 54%, 1);
  --y-4: 7%;
  --x-4: 5%;
  --c-5: hsla(11.707317073170733, 87%, 63%, 1);
  --y-5: 11%;
  --x-5: 22%;
}

/* ───────────────────────────
   ◇◇◇ MV 内部のテキスト配置（Flex で左右分割）◇◇◇
   ─────────────────────────── */
.mv-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.mv-text {
  width: 50%;
  color: white;
}

.mv-text h1 {
  font-size: 40px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 700;
}

.outer-scroll-down {
  margin: 16px;
  padding: 0;
  height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.scroll-down_01 {
  position: relative;
  width: 128px;
  height: 128px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-down_01:hover {
  opacity: 0.7;
}

.circle-text_01 {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circle-text_01 span {
  position: absolute;
  left: 50%;
  font-size: 11px;
  /* 半径 64px で回転 */
  transform-origin: 0 64px;
}

.arrow_01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  width: 72%;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  border: white 1px solid;
}

.arrow_01 svg {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50px;
  transform: translate(-50%, -50%);
  animation: scroll_01 2s infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-4px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(4px);
    opacity: 0;
  }
}

/* ① .mv-sub の初期状態（非表示：透明＋下に移動） */
.mv-sub {
  font-size: 18px;
  line-height: 2.2;
  opacity: 0;
  transform: translateY(72px);
  transition: opacity 0.6s ease-out, transform 0.8s ease-out;
}

/* ② スクロールで要素が表示されたら付与するクラス */
.mv-sub.show {
  opacity: 1;
  transform: translateY(0);
}

/* ABOUT セクション */
/* 1) アニメーション定義 */
@keyframes scrollBg {
  100% {
    /* 文字を左端外に移動 */
    transform: translateX(-140%);
  }
}

/* 2) .about-bg-text にアニメーションを適用 */
.about-bg-text {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100vw;
  white-space: nowrap;
  font-size: 100px;
  color: rgba(0, 0, 0, 0.05);
  transform: translateX(100%);
  animation: scrollBg 24s linear infinite;
  z-index: 1;
}

.about {
  position: relative;
  padding: 100px 0;
  background-color: #fff;
  overflow: hidden;
}

.about-inner {
  display: flex;
  gap: 140px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.section-title {
  font-size: 60px;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.section-sub {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
  text-align: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background-color: #37414f;
  color: #fff;
  padding: 14px 36px 14px 40px;
  border-radius: 100px;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-decoration: none;
  width: fit-content;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(90deg, #f36f4f 0%, #fcbe45 100%);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
  border-radius: 100px;
}

.btn svg {
  overflow: hidden; /* 矢印がはみ出しても切れないように */
  clip-path: circle(15px at center);
  /* はみ出す内容を隠す */
  overflow: hidden;
  /* 必要に応じて display: block; を指定 */
  display: block;
}

.btn svg path {
  stroke: #37414f;
  transform: translateX(0);
  transition: stroke 0.3s ease; /* 色変更だけはトランジションで */
}

/* circle の塗り替えも忘れずに */
.btn svg circle {
  transition: fill 0.3s ease;
}

.btn:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.btn:hover svg path {
  stroke: white;
  transform: translateX(0);
  opacity: 1;
  animation: arrow-swipe 0.6s;
}

.btn:hover svg circle {
  fill: #37414f;
}

@keyframes arrow-swipe {
  /* 0% 中央スタート */
  0% {
    transform: translateX(0);
  }
  /* 33% 右にスライドアウト */
  33% {
    transform: translateX(20px);
  }
  /* 34% 左に瞬間移動 */
  33.1% {
    transform: translateX(-20px);
  }
  /* 100% 中央に戻る */
  100% {
    transform: translateX(0);
  }
}

.about-right {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-black);
}

.about-right p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 2.6;
  letter-spacing: 0.05em;
}

.highlight {
  font-size: 22px;
  background-image: linear-gradient(90deg, #f36f4f 0%, #fcbe45 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── SERVICE セクション全体 ── */

@keyframes hero-gradient-animation {
  0% {
    --s-start-0: 3%;
    --s-end-0: 75%;
    --y-0: 78%;
    --c-0: hsla(175, 83%, 69%, 0);
    --x-0: 31%;
    --c-1: hsla(101, 68%, 100%, 1);
    --x-1: 88%;
    --s-start-1: 3%;
    --s-end-1: 83%;
    --y-1: 93%;
    --s-start-3: 8%;
    --s-end-3: 61%;
    --x-3: 41%;
    --y-3: 0%;
    --c-3: hsla(36, 68%, 82%, 1);
  }

  100% {
    --s-start-0: 8%;
    --s-end-0: 50%;
    --y-0: 62%;
    --c-0: hsla(154, 53%, 78%, 0);
    --x-0: 96%;
    --c-1: hsla(25, 80%, 79%, 1);
    --x-1: 11%;
    --s-start-1: 14%;
    --s-end-1: 78%;
    --y-1: 14%;
    --s-start-3: 17%;
    --s-end-3: 86%;
    --x-3: 32%;
    --y-3: 21%;
    --c-3: hsla(40, 91%, 79%, 1);
  }
}

@property --s-start-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3%;
}

@property --s-end-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 75%;
}

@property --y-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 78%;
}

@property --c-0 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(175, 83%, 69%, 0);
}

@property --x-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 31%;
}

@property --c-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(101, 68%, 100%, 1);
}

@property --x-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 88%;
}

@property --s-start-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3%;
}

@property --s-end-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 83%;
}

@property --y-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 93%;
}

@property --s-start-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 9%;
}

@property --s-end-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 63%;
}

@property --y-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 84%;
}

@property --x-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 34%;
}

@property --c-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(11.052631578947372, 100%, 92%, 0);
}

@property --s-start-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 8%;
}

@property --s-end-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 61%;
}

@property --x-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 41%;
}

@property --y-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --c-3 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(36, 68%, 82%, 1);
}

@property --x-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 88%;
}

@property --y-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 91%;
}

@property --c-4 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(39, 72%, 66%, 1);
}

@property --s-start-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 18%;
}

@property --s-end-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 55%;
}

.service-section {
  --y-0: 78%;
  --c-0: hsla(46, 100%, 84%, 0);
  --x-0: 31%;
  --c-1: hsla(101, 68%, 100%, 1);
  --x-1: 88%;
  --y-1: 93%;
  --y-2: 84%;
  --x-2: 34%;
  --c-2: hsla(11, 100%, 97%, 0.247);
  --x-3: 41%;
  --y-3: 0%;
  --c-3: rgba(240, 215, 178, 0.534);
  --x-4: 88%;
  --y-4: 91%;
  --c-4: rgb(231, 166, 106);
  background-color: rgb(255, 239, 208);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 2785 2785' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
    radial-gradient(
      circle at var(--x-0) var(--y-0),
      var(--c-0) var(--s-start-0),
      transparent var(--s-end-0)
    ),
    radial-gradient(
      circle at var(--x-1) var(--y-1),
      var(--c-1) var(--s-start-1),
      transparent var(--s-end-1)
    ),
    radial-gradient(
      circle at var(--x-2) var(--y-2),
      var(--c-2) var(--s-start-2),
      transparent var(--s-end-2)
    ),
    radial-gradient(
      circle at var(--x-3) var(--y-3),
      var(--c-3) var(--s-start-3),
      transparent var(--s-end-3)
    ),
    radial-gradient(
      circle at var(--x-4) var(--y-4),
      var(--c-4) var(--s-start-4),
      transparent var(--s-end-4)
    );
  animation: hero-gradient-animation 5s linear infinite alternate;
  background-blend-mode: overlay, normal, normal, normal, normal, normal;
}

.service-section {
  text-align: center;
  padding: 96px 0;
}

.service-title h2,
.service-title p {
  text-align: left;
}

.service-title p {
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
}

.service-title {
  margin-left: 160px;
}

.service-scroll-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 24px;
}

#blade {
  position: relative;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: -104px;
}

#blade .mentor {
  position: absolute;
  max-width: 640px;
  top: -100px;
  left: 0;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.5s, top 1.5s;
  border-radius: 0 60px 60px 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) -5.21%,
    rgba(255, 255, 255, 0.6) 100%
  );
  padding: 32px 60px 40px 112px;
}

#blade .mentor h4 {
  font-size: 22px;
  line-height: 1.8;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

#blade .mentor h4 span {
  font-size: 44px;
  background-image: linear-gradient(90deg, #f36f4f 0%, #fcbe45 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: bold;
  margin-right: 0.4em;
}

#blade .mentor img {
  object-fit: cover;
}

#blade .mentor p {
  font-weight: 500;
  font-size: 14px;
  line-height: 180%;
  text-align: left;
  margin-top: 32px;
}

#blade .mentor--show {
  top: 10vw;
  opacity: 1;
}

.circle-carousel {
  width: 540px;
  height: 540px;
  position: absolute;
  /* 600px÷2 = 300px だったものを、540px÷2 = 270px に */
  right: -270px;
  margin-top: 0px;
  transition: transform 0.5s;
  z-index: 200;
  border: solid 16px #f3704f4f;
  border-radius: 50%;
}

.circle-carousel__item {
  width: 80px; /* 変更前 100px */
  height: 80px; /* 変更前 100px */
  font-size: 32px; /* 必要に応じて縮小 */
  position: absolute;
  text-align: center;
  color: white;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border-radius: 50%;
  cursor: pointer;
}

.circle-carousel__item.active {
  background-image: linear-gradient(90deg, #f36f4f 0%, #fcbe45 80%);
  color: white;
  border-radius: 50%;
}

.circle-carousel__item div {
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
}

/* サービスキャプション */
.service-caption-text {
  font-weight: 700;
  font-size: 24px;
  position: absolute;
  right: 15em;
  line-height: 1.8;
  width: fit-content;
}

/* ─────────── WORKS セクション ─────────── */
.works-section {
  padding: 100px 0;
  text-align: center;
}

@keyframes hero-gradient-animation {
  0% {
    --c-0: hsla(19, 77%, 74%, 0.185);
    --x-0: 0%;
    --y-0: 0%;
    --s-start-0: 3.1210986267166043%;
    --s-end-0: 40%;
    --s-start-1: 3.1210986267166043%;
    --s-end-1: 40%;
    --c-1: hsla(39, 77%, 74%, 0.35);
    --x-1: 40%;
    --y-1: 100%;
    --c-2: hsla(56, 77%, 74%, 0.267);
    --y-2: 90%;
    --s-start-2: 3.1210986267166043%;
    --s-end-2: 40%;
    --x-2: 60%;
    --x-3: 100%;
    --y-3: 0%;
    --c-3: hsla(29, 77%, 74%, 0.35);
    --s-start-3: 3.1210986267166043%;
    --s-end-3: 40%;
    --c-4: hsla(24, 84%, 75%, 0.247);
    --x-4: 100%;
    --s-start-4: 3%;
    --s-end-4: 40%;
    --y-4: 0%;
  }

  100% {
    --c-0: hsla(56, 77%, 74%, 0.35);
    --x-0: 67%;
    --y-0: 94%;
    --s-start-0: 8;
    --s-end-0: 72;
    --s-start-1: 8;
    --s-end-1: 72;
    --c-1: hsla(186.61764705882354, 77%, 74%, 0.35);
    --x-1: 82%;
    --y-1: 80%;
    --c-2: hsla(127.0588235294118, 77%, 74%, 0.35);
    --y-2: 52%;
    --s-start-2: 8;
    --s-end-2: 72;
    --x-2: 74%;
    --x-3: 22%;
    --y-3: 10%;
    --c-3: hsla(62.20588235294117, 77%, 74%, 0.35);
    --s-start-3: 8;
    --s-end-3: 72;
    --c-4: hsla(24, 77%, 74%, 0.35);
    --x-4: 78%;
    --s-start-4: 8;
    --s-end-4: 72;
    --y-4: 9%;
  }
}

@property --c-0 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(22, 77%, 74%, 0.35);
}

@property --x-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --y-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --s-start-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3.1210986267166043%;
}

@property --s-end-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}

@property --s-start-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3.1210986267166043%;
}

@property --s-end-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}

@property --c-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(46, 77%, 74%, 0.35);
}

@property --x-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}

@property --y-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --c-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(32, 77%, 74%, 0.35);
}

@property --y-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --s-start-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3.1210986267166043%;
}

@property --s-end-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}

@property --x-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 60%;
}

@property --x-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 80%;
}

@property --y-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --c-3 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(62, 100%, 79%, 0.35);
}

@property --s-start-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3.1210986267166043%;
}

@property --s-end-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}

@property --c-4 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(24, 89%, 76%, 0.35);
}

@property --x-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --s-start-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 3%;
}

@property --s-end-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}

@property --y-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

.works-section {
  --c-0: hsla(295.99999999999994, 77%, 74%, 0.35);
  --x-0: 0%;
  --y-0: 0%;
  --c-1: hsla(54, 77%, 74%, 0.35);
  --x-1: 40%;
  --y-1: 0%;
  --c-2: hsla(39, 84%, 75%, 0.35);
  --y-2: 0%;
  --x-2: 60%;
  --x-3: 80%;
  --y-3: 0%;
  --c-3: hsla(62, 100%, 71%, 0.35);
  --c-4: hsla(24, 100%, 76%, 0.35);
  --x-4: 100%;
  --y-4: 0%;
  background-color: hsla(204, 0%, 100%, 1);
  background-image: radial-gradient(
      circle at var(--x-0) var(--y-0),
      var(--c-0) var(--s-start-0),
      transparent var(--s-end-0)
    ),
    radial-gradient(
      circle at var(--x-1) var(--y-1),
      var(--c-1) var(--s-start-1),
      transparent var(--s-end-1)
    ),
    radial-gradient(
      circle at var(--x-2) var(--y-2),
      var(--c-2) var(--s-start-2),
      transparent var(--s-end-2)
    ),
    radial-gradient(
      circle at var(--x-3) var(--y-3),
      var(--c-3) var(--s-start-3),
      transparent var(--s-end-3)
    ),
    radial-gradient(
      circle at var(--x-4) var(--y-4),
      var(--c-4) var(--s-start-4),
      transparent var(--s-end-4)
    );
  animation: hero-gradient-animation 10s linear infinite alternate;
  background-blend-mode: normal, normal, normal, normal, normal;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.works-grid1 {
  overflow: hidden;
  position: relative;
  padding: 80px;
  margin-top: -32px;
}

.works-grid1 .slides {
  display: flex;
  /* UL２つ分しかないので auto 幅でOK */
  width: 200%;
  /* 無限スクロール */
  animation: infinity-scroll-left 16s linear infinite;
}

.works-grid1 .slides ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: none; /* 自分の内容分だけ */
}

.works-grid1 li a {
  display: block;
  width: 100%;
}

.works-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  margin-bottom: 54px;
}

.works-item {
  flex: 0 0 auto; /* 横に詰めて並べる */
  display: inline-flex;
  max-width: 350px;
  aspect-ratio: 380/475;
  position: relative;

  background-color: white;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 28px;
  padding: 26px;
  margin-right: 20px;
}
.works-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* サムネイル画像 */
.works-thumb {
  width: 100%;
  padding-top: 56.25%; /* 16:9 の比率 */
  position: relative;
  overflow: hidden;
}
.works-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-title {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;

  color: #333;

  line-height: 180%;
}
.works-desc {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;

  line-height: 180%;
}
.works-company {
  font-size: 13.5px;
  color: #949494;
}

/* カード本文 */
.works-body {
  text-align: left;
}

.works-tag {
  width: fit-content;
  color: white;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 100px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 180%;

  display: inline-block;
  background: var(--color-grad-to);
  color: #fff;
  padding: 4px 12px;
}

.works-section .back-btn-wrap {
  margin: 16px auto 40px;
}

/* ─────────── NEWS セクション ─────────── */
.news {
  padding: 80px 0 120px;
}

.news .container {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.news .section-title,
.news .section-sub {
  text-align: left;
}

/* ─────────── SITE FOOTER ─────────── */
.site-footer {
  background: linear-gradient(
    90deg,
    var(--color-grad-to) 0%,
    var(--color-grad-from) 100%
  );
  border-radius: 32px 32px 0 0;
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 0;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

/* 左カラム */
.footer-left {
  width: 30%;
}
.footer-logo {
  color: #fff;
  margin-bottom: 16px;

  font-family: Century Gothic;
  font-weight: 700;
  font-size: 26px;
  line-height: 140%;
}
.footer-address p {
  margin-bottom: 24px;

  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 14px;
  line-height: 220%;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.8;
}

/* 右カラム */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: fit-content;
}

/* ナビ行 */
.footer-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: opacity 0.3s;
  width: 132px;
}

.footer-col:hover {
  opacity: 0.6;
}

.footer-col-title {
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
}

.footer-col-link {
  color: #fff;

  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}

/* プライバシーポリシー */
.footer-policy {
  margin-top: 16px;
}
.footer-policy-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer-policy-link:hover {
  opacity: 0.7;
}

/* ─── ABOUT 下層ページ固有 ─── */
.page-mv {
  background: linear-gradient(
    90deg,
    var(--color-grad-from) 0%,
    var(--color-grad-to) 100%
  );
  padding: 168px 0 40px;
  border-radius: 0 0 60px 60px;
  color: #fff;
  height: 320px;
}

.page-mv p {
  text-align: left;
}

.page-mv .breadcrumb {
  font-weight: 500;
  font-size: 12px;
  line-height: 160%;
  text-align: center;
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb span {
  color: #fff;
}

/* イントロ */
.about-intro-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 96px;
  margin: 80px auto;
  max-width: 960px;
}

.intro-text {
  margin-top: 96px;
}

.intro-text p {
  font-weight: 500;
  font-size: 20px !important;
  margin-bottom: 32px;
  line-height: 300%;
}

.intro-text span .big,
.intro-text span .highlight {
  font-size: 26px;
}

.intro-slogan {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: 700;
  background-image: linear-gradient(180deg, #f36f4f 0%, #fcbe45 80%);
  background-image: linear-gradient(180deg, #f36f4f 0%, #fcbe45 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 500;
  font-size: 46px;
  line-height: 120%;
  text-align: center;
}

/* intro-text の各行を非表示スタート */
.intro-line {
  display: inline-block; /* transform を効かせるためブロック扱いに */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* show クラスでフェードイン */
.intro-line.show {
  opacity: 1;
  transform: translateY(0);
}

/* カード */
.about-cards-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 80px auto;
  max-width: 1200px;
}
.card {
  width: 300px;
  height: 340px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 16px;
  padding: 40px 60px;
  color: #fff;
  font-size: 24px;
  position: relative;
  transition: all 0.4s ease;
}

.h6-wrapper {
  display: flex;
  gap: 16px;
}

.card p {
  display: none;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 18px;
  line-height: 260%;
  letter-spacing: 5%;
  text-align: center;
  white-space: nowrap;
}

.card:hover {
  width: 480px;
}

.card:hover p {
  display: block;
}

.card h6 {
  font-family: Kumbh Sans;
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  text-align: center;
}
.card-flow {
  background: linear-gradient(
    242.87deg,
    rgba(255, 154, 71, 0.7) 0%,
    rgba(249, 103, 80, 0.7) 100%
  );
}

.card-flow:hover {
  background: linear-gradient(
    242.87deg,
    rgba(255, 154, 71, 1) 0%,
    rgba(249, 103, 80, 1) 100%
  );

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card:hover .tap-icon {
  display: none;
}

.card:hover h6 {
  text-align: left;
}

.card-flow:hover .waves {
  display: block;
}

.waves {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1px;
  min-height: 100px;
  max-height: 140px;
  border-radius: 20px;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 8s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 11s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 116s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 24s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.card-dear {
  background: linear-gradient(
    242.87deg,
    rgba(254, 166, 52, 0.7) 0%,
    rgba(255, 207, 85, 0.7) 100%
  );
}

.animated-shapes {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 20px;
}
/* アニメーション定義 */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-24px) scale(1.2);
  }
}

/* 全体にアニメーションを適用 */
.animated-shapes circle {
  transform-origin: center;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

/* 円ごとにアニメーションの速さ・ずれ幅を変える */
.animated-shapes circle:nth-of-type(1) {
  animation-duration: 6s;
  animation-delay: 0s;
}
.animated-shapes circle:nth-of-type(2) {
  animation-duration: 8s;
  animation-delay: 1s;
}
.animated-shapes circle:nth-of-type(3) {
  animation-duration: 5s;
  animation-delay: 0.5s;
}
.animated-shapes circle:nth-of-type(4) {
  animation-duration: 7s;
  animation-delay: 1.5s;
  /* 少し大きく浮かせる */
  animation-name: float, scale;
}
.animated-shapes circle:nth-of-type(5) {
  animation-duration: 6.5s;
  animation-delay: 0.8s;
}
.animated-shapes circle:nth-of-type(6) {
  animation-duration: 9s;
  animation-delay: 0.3s;
}
.animated-shapes circle:nth-of-type(7) {
  animation-duration: 7.5s;
  animation-delay: 1.2s;
}
.animated-shapes circle:nth-of-type(8) {
  animation-duration: 5.5s;
  animation-delay: 0.4s;
}
.animated-shapes circle:nth-of-type(9) {
  animation-duration: 8.5s;
  animation-delay: 0.6s;
}

.card-dear:hover {
  background: linear-gradient(
    242.87deg,
    rgba(254, 166, 52, 1) 0%,
    rgba(255, 207, 85, 1) 100%
  );
}

.card-dear:hover .animated-shapes {
  display: block;
}

.about-name h2 {
  font-family: Kumbh Sans;
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
}

.about-name p {
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  text-align: center;
}

.about-cards .intro-text p {
  text-align: center;
}

/* PROFILE */
.profile-section {
  padding-top: 80px;
}

.profile-section .section-title,
.profile-section .section-sub {
  text-align: left;
}

.profile-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin: 40px auto;
  max-width: 1200px;
}

.profile-left {
  flex: 1;
}

.profile-table {
  border-collapse: collapse;
  width: 88%;
}

.profile-table th,
.profile-table td {
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  text-align: left;
}

.profile-table th {
  padding: 8px 24px 8px 0;

  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  color: #949494;
  white-space: nowrap;
}

.profile-table td {
  padding: 8px 24px;
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 5%;
}
.profile-map {
  flex-shrink: 0;
  width: 100%;
  max-width: 400px;
}

/* CONTACT */
.contact-section {
  text-align: center;
  padding: 80px 0 180px;
}
.contact-section .note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-gray);
}

.contact-section .btn {
  margin: 48px auto 32px;
}

.contact-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  text-align: center;
}

/* ── SERVICE ページ固有のスタイル ── */

/* intro 文言 */
.service-intro p {
  margin: 60px auto 60px;
  font-weight: 500;

  font-size: 20px;
  line-height: 260%;
  text-align: center;
}

/* ナビ一覧 */
.service-nav .nav-items {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  gap: 8px;
}
.service-nav .nav-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.2em;
  width: 15%;
}

.service-nav .nav-item .num-text {
  display: block;
  font-size: 40px;
  font-weight: 700;
}
.service-nav .nav-item .nav-title {
  display: block;
  font-size: 22px;
  text-align: center;
  line-height: 1.3;
}

.service-nav .nav-item .nav-title .small {
  font-size: 13px;
}

/* nav-items の間に縦線を入れる */
.service-nav .nav-item + .nav-item {
  position: relative;
  /* 線からタイトルまでのスペース調整 */
  padding-left: 8px;
}

.service-nav .nav-item + .nav-item::before {
  content: "";
  position: absolute;
  left: 0; /* 自分の左端に線を置く */
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100%; /* 線の高さ */
  background-image: linear-gradient(180deg, #f36f4f 0%, #fcbe45 80%);
}

/* ── SERVICE DETAILS ── */
.service-details {
  padding: 80px 0;
}

.service-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

/* 偶数番目は左右反転 */
.service-detail:nth-child(even) {
  flex-direction: row-reverse;
}

/* 画像のラッパー */
.service-detail__img {
  position: relative;
  width: 42%;
  padding: 40px 80px 32px;
}

/* 手前のメイン背景 */
.service-detail__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* 左→右に淡いピンク→クリーム */
  background: linear-gradient(135deg, #ffe2d9 0%, #fff5d4 100%);
  z-index: 1;
}

/* 背後にオフセットさせる “影” */
.service-detail__img::after {
  content: "";
  position: absolute;
  /* アクセントの濃いグラデーション */
  background: linear-gradient(135deg, #fcbe45 0%, #f36f4f 100%);
  border-radius: inherit; /* 前と同じ角丸 */
  z-index: 0;
}

/* 奇数番目（1,3,5…）だけ上下左右を反転 */
.service-detail:nth-child(odd) .service-detail__img::before,
.service-detail:nth-child(odd) .service-detail__img::after {
  border-radius: 0 54px 54px 0;
}

.service-detail:nth-child(odd) .service-detail__img::after {
  bottom: -20px;
  right: -20px;
  width: calc(100% + 20px);
  height: 100%;
}

/* 偶数番目（2,4,6…）のデフォルト設定 */
.service-detail:nth-child(even) .service-detail__img::before,
.service-detail:nth-child(even) .service-detail__img::after {
  border-radius: 54px 0 0 54px;
}

.service-detail:nth-child(even) .service-detail__img::after {
  bottom: -20px;
  left: -20px;
  width: calc(100% + 20px);
  height: 100%;
}

/* 実際の画像は一番手前に */
.service-detail__img img {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  object-fit: cover;
}

.service-detail:nth-child(odd) img {
  margin: 0 0 0 auto;
}

.service-detail:nth-child(even) img {
  margin: 0 auto 0 0;
}

/* コンテンツ側 */
.service-detail__content {
  text-align: left;
  padding: 0 80px;
  width: 54%;
}

/* タイトル */
.service-detail__title {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  gap: 12px;

  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 22px;
  line-height: 180%;
}

.service-detail__title .num-text {
  background: linear-gradient(90deg, #f36f4f 0%, #fcbe45 80%);
  -webkit-background-clip: text;
  color: transparent;

  font-family: Kumbh Sans;
  font-weight: 700;
  font-size: 46px;
}

/* 概要文 */
.service-detail__desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* POINT ボックス */
.service-detail__points {
  margin-bottom: 32px;
}
.service-detail__points h4 {
  margin-bottom: 12px;
  font-family: Kumbh Sans;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
}
.service-detail__points ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-detail__points li {
  background: linear-gradient(245deg, #fef8d5 0%, #ffe0d9 100%);
  width: 600;
  height: 77;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  gap: 2px;
  border-radius: 6px;
  margin: 8px 0;
}

.service-detail__points li h5 {
  position: relative;
  color: #333;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  padding-left: 32px;
}

.service-detail__points li p {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
}

.service-detail__points li h5::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 31 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.4998 25.1998C9.8598 25.1998 5.2998 20.6398 5.2998 14.9998C5.2998 9.3598 9.8598 4.7998 15.4998 4.7998C21.1398 4.7998 25.6998 9.3598 25.6998 14.9998C25.6998 20.6398 21.1398 25.1998 15.4998 25.1998ZM15.4998 5.9998C10.5198 5.9998 6.4998 10.0198 6.4998 14.9998C6.4998 19.9798 10.5198 23.9998 15.4998 23.9998C20.4798 23.9998 24.4998 19.9798 24.4998 14.9998C24.4998 10.0198 20.4798 5.9998 15.4998 5.9998Z' fill='url(%23paint0_linear_304_16994)'/%3E%3Cpath d='M14.3001 19.4414L9.08008 14.2214L9.92008 13.3814L14.3001 17.7614L21.0801 10.9814L21.9201 11.8214L14.3001 19.4414Z' fill='url(%23paint1_linear_304_16994)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_304_16994' x1='25.6998' y1='14.9998' x2='5.2998' y2='14.9998' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F7C54D'/%3E%3Cstop offset='0.35' stop-color='%23FF9932'/%3E%3Cstop offset='1' stop-color='%23F96750'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_304_16994' x1='21.9201' y1='15.2114' x2='9.08008' y2='15.2114' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F7C54D'/%3E%3Cstop offset='0.35' stop-color='%23FF9932'/%3E%3Cstop offset='1' stop-color='%23F96750'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  line-height: 1.6;
  width: 31px;
  height: 30px;
}

/* ボタン */
.btn--outline {
  background-color: #333;
}

/* ── WORKS ページ ── */

/* WORKS HERO レイアウト */
.works-hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 48px auto;
}

/* タグフィルター */
.works-filter {
  flex: 0 0 auto;
  background: white;
  border: 1px solid;

  border-image-source: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.4) 100%
  );

  border-radius: 0 80px 80px 0;
  box-shadow: 0px 4px 40px 0px #0000001f;
  backdrop-filter: blur(80px);

  padding: 32px 64px 32px 160px;
}
.works-filter ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.works-filter li {
  padding: 0px 20px;
  border-radius: 28px;
  background: #f0f0f0; /* 非選択時は淡いグレー */
  color: #666; /* テキストは濃いグレー */
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
  text-align: left;
  width: fit-content;

  line-height: 180%;

  transition: all 0.3s;
}
.works-filter li.active {
  background: linear-gradient(
    90deg,
    var(--color-grad-from),
    var(--color-grad-to)
  );
  color: #fff;
}

.works-intro p {
  font-weight: 700;
  font-size: 24px;
  line-height: 220%;
}

/* 制作事例詳細ページ */

/* メディア部分 */
.work-detail-media {
  margin: 64px auto;
  max-width: 840px;
  width: 88%;
  height: auto;
}
.work-detail-img {
  width: 100%;
  padding-top: 62%; /* アスペクト比 */
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  position: relative;

  opacity: 1; /* フェード切り替え用 */
  transition: opacity 0.6s; /* 予備のトランジション */
}
.work-detail-thumbs {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.work-detail-thumbs li {
  flex: none;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
  width: 24%;
}
.work-detail-thumbs li.active {
  border: var(--color-grad-from) 3px solid;
}
.work-detail-thumbs img {
  display: block;
  height: auto;
}

.work-detail-info {
  max-width: 1000px;
  margin: auto;
}

/* タイトル＆タグ */
.work-detail-info .works-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--color-grad-to);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  margin-bottom: 8px;
}
.work-detail-info .work-detail-title {
  margin-bottom: 24px;

  font-weight: 700;
  font-size: 28px;
  line-height: 180%;
}

/* メタ情報 */
.work-detail-meta {
  display: flex;
  gap: 60px;
  margin-bottom: 64px;
}
.meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 44%;
}
.meta-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 180%;
  font-size: 16px;
  padding: 8px 0 8px 0;
  border-bottom: #cecece 1px solid;
  color: #333333;
}
.meta-list strong {
  width: 6em;
  color: #949494;
  font-weight: 600;
  font-family: Kumbh Sans;
}
.meta-list a {
  color: var(--color-blue);
  text-decoration: none;
  word-break: break-all;
}
.meta-desc {
  flex: 1;
}
.meta-desc p {
  font-weight: 500;
  font-size: 16px;
  line-height: 220%;
  margin-bottom: 16px;
}

/* 最新の制作事例 */
.other-works-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}
.highlight-dot {
  color: var(--color-grad-from);
  margin-right: 8px;
  font-size: 24px;
  line-height: 1;
}
.back-btn-wrap {
  text-align: center;
  margin: 40px auto;
}

.interview-section {
  padding: 154px 0 128px;
}
/* ── インタビュー一覧のレイアウト ── */
.interview-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 88%;
  margin: auto;
  list-style: none;
}

.interview-list li:nth-child(even) {
  margin-top: 64px;
}

.interview-item {
  width: calc(50% - 60px);
  margin-bottom: 144px;
}

/* ── メディア（画像＋スニペット＋番号） ── */
.interview-media {
  position: relative;
}

.interview-media img {
  display: block;
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  background-color: #d3d3d398;
}

/* スニペットカード */
.interview-snippet {
  position: absolute;
  bottom: -60px;
  left: 0px;
  width: 72%;
  height: 14em;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-width: fit-content;
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0px 10px 16px 0px #0000001a;
}

.interview-quote {
  line-height: 1.4;

  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
  vertical-align: middle;
}

.interview-company {
  color: #949494;

  font-weight: 700;
  font-size: 12px;
  line-height: 180%;
}

.interview-person {
  margin: 0;

  font-weight: 700;
  font-size: 14px;
  line-height: 180%;
}

/* 番号（#01 INTERVIEW） */
.interview-number {
  position: absolute;
  bottom: 0;
  left: -5em;
  color: #f96750;

  font-family: Kumbh Sans;
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;

  transform: rotate(90deg);
}

/* ── インタビュー詳細ページ ── */
.interview-detail {
  padding: 120px 0;
  width: 80%;
  max-width: 1200px;
  margin: auto;
}

.interview-detail-inner {
  display: flex;
  align-items: flex-start;
  gap: 5%;
  justify-content: space-between;
}

.interview-detail-left {
  width: 67%;
}

/* メディア（画像＋タグ＋番号） */
.interview-detail-media {
  position: relative;
  width: 100%;
  margin-bottom: 88px;
}
.interview-detail-media img {
  display: block;
  width: 100%;
  border-radius: 40px;
}

/* タグ */
.detail-tag {
  position: absolute;
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0px 10px 16px 0px #0000001a;
}

.detail-tag p {
  font-weight: 700;
  font-size: 28px;
  line-height: 180%;
  white-space: nowrap;
}

.detail-tag--primary {
  bottom: 3.6em;
  left: 0;
}
.detail-tag--secondary {
  bottom: -2.3em;
  left: 0;
}

/* インタビュー番号 */
.interview-detail-number {
  position: absolute;
  top: calc(100% + 3em);
  left: 0;
  font-family: "Kumbh Sans";
  font-weight: 700;
  font-size: 18px;

  color: #f96750;
}

/* サイドプロフィール */
.interview-detail-aside {
  width: 27%;
}

.interview-detail-aside .profile-card {
  background: #fff;
  border-radius: 30px;
  padding: 30px 40px;
  box-shadow: 0px 10px 16px 0px #0000001a;
}
.interview-detail-aside .profile-card .company-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  color: #949494;
}

.interview-detail-aside .profile-card .client-name {
  font-weight: 700;
  font-size: 22px;
  line-height: 180%;
  margin-bottom: 6px;
  color: #333333;
}
.interview-detail-aside .profile-card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
}
.interview-detail-aside .profile-card a {
  color: var(--color-blue);
  font-size: 14px;
  line-height: 180%;
  text-decoration: underline;
}

/* 本文エリア */
.interview-detail-content {
  max-width: 1000px;
  margin: 160px auto 0;
}
.interview-detail-content h2 {
  line-height: 1.5;
  font-weight: 700;
  font-size: 22px;
  line-height: 180%;
  border-bottom: solid 2px;

  border-image: linear-gradient(270deg, #f7c54d 0%, #ff9932 35%, #f96750 100%) 1;
}

/* Q&A 見出し */
.interview-detail-body h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 8px;

  font-size: 20px;
  line-height: 180%;
  letter-spacing: 5%;
}
.interview-detail-body h3 span {
  display: inline-block;
  width: 11px;
  height: 11px;
  background: linear-gradient(270deg, #f7c54d 0%, #ff9932 35%, #f96750 100%);
  border-radius: 50%;
}

/* 回答テキスト */
.interview-detail-body p {
  margin: 0 0 24px;
  line-height: 1.8;

  font-size: 16px;
}

/* 中間画像 */
.interview-detail-body figure {
  margin: 32px 0;
  width: 72%;
}
.interview-detail-body figure img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* 前後ナビゲーション */

.interview-nav-section {
  background: linear-gradient(245deg, #fef8d5 0%, #ffe0d9 100%);
  padding: 80px 0 84px;
}

.interview-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  width: 88%;
  margin: 0px auto 40px;
}
.interview-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  width: 260px;
}

.interview-nav img {
  width: 100%;
  aspect-ratio: 260/175;
  object-fit: contain;
  border-radius: 16px;
  flex-shrink: 0;
}

/* 一覧に戻るボタン */
.back-btn-wrap {
  text-align: center;
}

.interview-nav a span {
  display: flex;
  align-items: center;
  gap: 0.4em;

  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  color: #949494;
  transition: all 0.3s;
}

.interview-nav a svg circle {
  transition: all 0.3s;
}

.interview-nav a:hover svg circle {
  fill: #464646;
}

.interview-nav a:hover span {
  color: #464646;
}

/* ── NEWS HERO ── */
.news-hero {
  padding: 20px 0;
}
.news-hero .works-hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;
}
/* works-filter / works-intro は既存のものを流用 */

/* ── NEWS LIST ── */
.news-list {
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 40%;
}
.news-list .news-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.news-item div {
  display: flex;
  width: 100%;
  justify-content: start;
  gap: 1em;
  align-items: center;
}

.news-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-bottom: solid 1px #e0e0e0;
  padding: 16px 0;
}

.news-item:last-child {
  border-bottom: none;
}
.news-date {
  font-size: 16px;
  line-height: 180%;
  color: #949494;
  font-family: Kumbh Sans, sans-serif;
  font-weight: 500;
  flex: 0 0 auto;
  margin-right: 16px;
  white-space: nowrap;
}

.news-tag {
  width: fit-content;
  background: #aab6ff;
  color: white;

  line-height: 180%;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  margin-right: 16px;
  white-space: nowrap;
}

.news-link {
  padding-bottom: 2px;
  width: 100%;
  text-align: left;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
  transition: all 0.3s;
}

.news-link:hover {
  text-decoration: underline;
}

/* ── PAGINATION ── */
.pagination {
  text-align: center;
  margin-top: 40px;
}
.pagination .page {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin: 0 8px;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(
    90deg,
    var(--color-grad-from) 0%,
    var(--color-grad-to) 100%
  );
  color: #fff;

  font-family: "Century Gothic";
  font-weight: 400;
  font-size: 18px;
  text-align: center;
}

.pagination .page:not(.active) {
  opacity: 0.6;
  color: #464646;
  background: white;
  box-shadow: 0px 4px 40px 0px #0000001f;

  backdrop-filter: blur(80px);
}
.pagination .page:hover {
  opacity: 1;
}

.news-detail {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  width: 88%;
  max-width: 1200px;
  margin: 56px auto;
}

.news-detail .news-meta {
  margin-bottom: 8px;
}

.news-detail .news-date {
  font-size: 18px;
  margin-right: 24px;
}

.news-detail .news-tag {
  font-size: 14px;
}

.news-detail-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 180%;
  margin-bottom: 16px;
}

.news-detail-body hr {
  border-image: linear-gradient(270deg, #f7c54d 0%, #ff9932 35%, #f96750 100%) 1;
  margin-bottom: 16px;
}

.news-detail-body h1 {
  font-weight: 700;
  font-size: 22px;
  line-height: 180%;
  border-bottom: solid 2px;
  border-image: linear-gradient(270deg, #f7c54d 0%, #ff9932 35%, #f96750 100%) 1;
  margin-bottom: 12px;
}

.news-detail-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.news-detail-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.news-detail-body h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}
.news-detail-body h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.news-detail-body p {
  margin-bottom: 16px;
}

.news-detail-body img {
  width: 60%;
  height: auto;
  object-fit: contain;
  margin: 24px 0;
  border-radius: 20px;
}

.news-detail .interview-nav-section {
  background: white;
  padding: 100px 0 64px;
}

/* 共通：初期状態 */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* show クラス付与時 */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────── レスポンシブ ─────────── */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .container {
    padding: 0 32px;
  }
  .highlight {
    font-size: 17px;
  }

  .btn {
    gap: 18px;
    padding: 14px 34px 14px 34px;
    font-size: 15px;
  }

  .header-inner {
    padding: 24px 32px 16px;
  }

  /* ハンバーガーを表示 */
  .nav-toggle-label {
    display: block;
  }

  .logo {
    padding: 14px 20px;
    font-size: 14px;
  }

  /* 通常時はナビを隠す */
  .nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.3s ease;

    position: absolute;
    top: 3vh;
    right: 0;
    bottom: 0;
    width: 94%;
    height: 94vh;
    z-index: 998;
    border-radius: 20px;
    background-color: hsla(39, 100%, 50%, 0.5);
    border: none;
    padding: 80px 40px;
    backdrop-filter: blur(14px);
    margin: 0px 3%;
  }
  .nav ul {
    height: 72%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
  }

  .nav ul li {
    border: none !important;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    transform: translate(10px, 10px);
    transition: all 0.4s ease;
  }

  .nav ul li a:hover {
    background: transparent !important;
  }

  /* ついでに、flip-link の幅を100%にしておくと綺麗です */
  .flip-link {
    width: 100%;
  }

  .flip-link .text-en,
  .flip-link .text-jp {
    font-weight: 800;
    font-size: 21px;
    justify-content: flex-start !important;
    color: white;
  }

  .nav li + li {
    border-top: 1px solid #eee;
  }
  .nav a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    text-align: left !important;
  }
  .nav a:hover {
    background: #f5f5f5;
  }

  /* チェック ON でハンバーガー→× に */
  .nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
  }
  .nav-toggle:checked + .nav-toggle-label span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle:checked + .nav-toggle-label span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* チェック ON でナビを表示 */
  .nav-toggle:checked + .nav-toggle-label + .nav {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    /* チェックONでnavを可視化＆クリック可能に */
    visibility: visible; /* hidden → visible */
    pointer-events: auto; /* none → auto */
    /* display:block はなくてもOK（flexでもblockでも中のulが flex なので大丈夫） */
  }

  /* メニュー開いたらリストアイテムも順次表示 */
  .nav-toggle:checked + .nav-toggle-label + .nav li:nth-child(1) {
    transition-delay: 0.07s;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-toggle:checked + .nav-toggle-label + .nav li:nth-child(2) {
    transition-delay: 0.14s;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-toggle:checked + .nav-toggle-label + .nav li:nth-child(3) {
    transition-delay: 0.21s;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-toggle:checked + .nav-toggle-label + .nav li:nth-child(4) {
    transition-delay: 0.28s;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-toggle:checked + .nav-toggle-label + .nav li:nth-child(5) {
    transition-delay: 0.35s;
    opacity: 1;
    transform: translateY(0);
  }

  .mv {
    padding: 120px 0 80px;
    background-attachment: unset;

    background-position: center 120px, center center, center center,
      center center, center center, center center, center center;
    background-size: 96% auto, auto auto, auto auto, auto auto, auto auto,
      auto auto, auto auto, cover;
  }

  .mv-inner {
    padding: 240px 24px 0;
    width: 100%;
  }

  .mv-text {
    width: 100%;
  }

  .mv-text h1 {
    font-size: 20px;
    line-height: 160%;
    white-space: nowrap;
    margin-bottom: 0;
    margin-top: -8px;
  }

  .sp-mv-h1wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .outer-scroll-down {
    /* 全体を55%に縮小 */
    transform: scale(0.55);
    transform-origin: center center;
    /* 縮小後も左右中央に寄せたい場合 */
    display: flex;
    justify-content: center;
    height: auto;
    margin: 0;
    margin-right: -20px;
    overflow: visible;
  }

  .mv-sub {
    font-size: 14px;
  }

  .section-title {
    font-size: 40px;
    white-space: nowrap;
  }
  .section-sub {
    font-size: 14px;
    white-space: nowrap;
  }

  .about {
    padding-bottom: 72px;
  }

  .about-inner {
    gap: 0;
    justify-content: flex-start;
  }

  .about-right p {
    font-size: 15px;
  }

  .about .btn {
    margin-top: 24px;
  }

  .service-section {
    padding: 40px 20px 80px;
  }

  .service-title {
    margin: 0;
  }

  .service-title p {
    font-size: 15px;
  }

  #blade {
    margin: 32px 0;
  }

  #blade .mentor {
    width: 100%;
    box-sizing: border-box;
    border-radius: 40px;
    box-shadow: 0px 5px 8px 0px #0000001a;
    padding: 24px 32px;
    margin-bottom: 32px !important;
  }

  #blade .mentor h4 {
    font-size: 14.8px;
    white-space: nowrap;
    justify-content: center;
  }

  #blade .mentor h4 span {
    font-size: 21px;
    white-space: nowrap;
  }

  #blade .mentor p {
    font-size: 11px;
  }

  #blade .mentor img {
    width: 60%;
    max-height: 180px;
    object-fit: contain;
  }

  .circle-carousel {
    display: none !important;
  }

  .works-section {
    padding: 72px 0 56px;
  }

  .works-grid1 {
    padding: 48px 0;
  }

  @keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  }

  .works-grid1 .slides {
    /* 無限スクロール */
    animation: infinity-scroll-left 16s linear infinite;
  }

  .works-grid1 .works-item {
    width: 260px;
    height: 360px;
    padding: 18px;
  }

  .works-grid1 .works-title {
    font-size: 16px;
    margin: 8px 0;
  }

  .works-grid1 .works-tag {
    font-size: 12px;
    margin-top: 10px;
  }

  .works-grid1 .works-desc {
    margin-bottom: 10px;
  }

  .works-grid1 .works-company {
    font-size: 12px;
  }

  .news {
    padding-bottom: 88px;
  }

  .news .container {
    flex-direction: column;
    gap: 0;
  }

  .news-list {
    gap: 12px;
    width: 100%;
    padding-bottom: 32px;
  }
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .news-date {
    font-size: 12px;
  }
  .news-link {
    font-size: 14px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 0 32px;
  }

  .footer-left {
    width: 100%;
  }

  .footer-right {
    width: 100%;
    gap: 28px;
  }
  .footer-row {
    flex-direction: column;
    gap: 28px;
  }

  .footer-col-title {
    letter-spacing: 1px;
    font-size: 18px;
  }
  .footer-col-link {
    font-size: 13px;
  }
  .footer-address p {
    margin-bottom: 16px;
  }

  .footer-policy {
    margin: 24px 0 32px;
  }

  .page-mv {
    padding: 0;
    height: auto;
    border-radius: 0 0 40px 40px;
  }

  .page-mv .mv-inner {
    padding: 120px 32px 24px;
    align-items: end;
  }

  .page-mv .mv-inner .section-title {
    font-size: 34px;
  }

  .about-intro-inner {
    flex-direction: column-reverse;
    gap: 0;
  }

  .intro-slogan {
    writing-mode: unset;
    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 24px;
    line-height: 180%;
    letter-spacing: 2px;
  }

  .intro-text {
    margin-top: 40px;
  }

  .intro-text p {
    font-size: 15px !important;
    line-height: 280%;
  }

  .intro-text span .big,
  .intro-text span .highlight {
    font-size: 17px;
  }

  .about-cards {
    padding: 32px;
  }

  .about-name h2 {
    font-size: 24px;
    text-align: center;
  }

  .about-name p {
    text-align: center;
    font-size: 14px;
  }

  .about-cards-inner {
    flex-direction: column;
    margin-top: 24px;
  }

  .h6-wrapper {
    justify-content: center;
    align-items: center;
  }

  .card-flow {
    margin-right: 28%;
  }

  .card-dear {
    margin-left: 28%;
  }

  .card {
    width: 270px;
    height: 250px;
    padding: 28px;
    justify-content: center;
  }

  .card h6 {
    font-size: 30px;
  }

  .card p {
    font-size: 14px;
  }

  .card:hover {
    width: 140%;
    margin: 0;
    justify-content: space-between;
  }

  .about-cards .intro-text p {
    text-align: left;
  }

  .profile-inner {
    display: block;
  }

  .profile-left {
    margin-bottom: 32px;
  }

  .profile-table {
    width: 100%;
  }

  .contact-section {
    padding: 80px 0 100px;
  }

  .contact-section .container,
  .contact-section .container p,
  .contact-section .container h2 {
    text-align: left;
  }

  .contact-text {
    font-size: 15px;
  }

  .service-intro p {
    font-size: 15px;
    line-height: 1.8;
    margin: 40px auto;
  }

  .service-nav .nav-items {
    flex-wrap: wrap;
    margin-bottom: 0px;
  }

  .service-nav .nav-item {
    width: 25%;
    margin-bottom: 24px;
  }

  .service-nav .nav-item + .nav-item:nth-child(4)::before {
    width: 0px;
  }

  .service-nav .nav-item:nth-child(2) {
    width: 28%;
  }

  .service-nav .nav-item .num-text {
    font-size: 20px;
  }

  .service-nav .nav-item .nav-title {
    font-size: 14px;
  }

  .service-nav .nav-item .nav-title .small {
    font-size: 11px;
  }

  .service-nav .nav-item svg {
    width: 22px;
  }

  .service-details {
    padding: 40px 0;
  }

  .service-detail {
    flex-direction: column !important;
  }

  .service-detail:nth-child(odd) {
    align-items: start;
  }

  .service-detail:nth-child(even) {
    align-items: end;
  }

  .service-detail:nth-child(odd) .service-detail__img::after {
    bottom: -10px;
    right: -10px;
    width: calc(100% + 10px);
  }

  .service-detail:nth-child(even) .service-detail__img::after {
    bottom: -10px;
    left: -10px;
    width: calc(100% + 10px);
  }

  .service-detail:nth-child(odd) .service-detail__img::before,
  .service-detail:nth-child(odd) .service-detail__img::after {
    border-radius: 0 20px 20px 0;
  }

  .service-detail:nth-child(even) .service-detail__img::before,
  .service-detail:nth-child(even) .service-detail__img::after {
    border-radius: 20px 0 0 20px;
  }

  .service-detail__img {
    width: 88%;
    height: 240px;
    padding: 32px 64px 32px;
    display: flex;
    justify-content: center;
  }

  .service-detail__img img {
    width: auto;
    max-height: 180px;
    margin: auto !important;
  }

  .service-detail__content {
    width: 100%;
    padding: 32px 26px;
  }

  .service-detail__title {
    font-size: 16px;
    align-items: center;
  }

  .service-detail__title .num-text {
    font-size: 26px;
  }

  .btn--outline-wrapper {
    text-align: center;
  }

  .works-hero-inner {
    flex-direction: column-reverse;
    text-align: left;
    align-self: flex-start;
    gap: 24px;
  }

  .works-intro p {
    font-size: 18px;
    padding: 0 32px;
  }

  .works-filter {
    border-radius: 0 40px 40px 0;
    padding: 32px 64px 32px 40px;
    margin: 0 auto 0 0;
  }

  .works-filter ul {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }
  .works-filter li {
    flex: 0;
    font-size: 12px;
  }

  .works-grid {
    display: flex;
    flex-direction: column;
  }

  .works-list .works-item,
  .other-works .works-item {
    padding: 22px;
    margin: 0 auto;
  }

  .works-list .works-item h3,
  .other-works .works-item h3 {
    font-size: 16px;
  }

  .works-grid {
    margin-bottom: 80px;
  }

  .page-mv .breadcrumb {
    text-align: right;
    white-space: nowrap;
    width: 100%;
  }

  .work-detail {
    margin-bottom: 72px;
  }

  .work-detail-media {
    width: 100%;
    margin-bottom: 16px;
  }

  .work-detail-img {
    border-radius: 16px;
  }

  .work-detail-thumbs {
    gap: 0px;
    margin-top: 8px;
  }

  .work-detail-thumbs li {
    width: 24%;
    border-radius: 8px;
  }

  .work-detail-info .works-tag {
    font-size: 12px;
  }

  .work-detail-info .work-detail-title {
    font-size: 16px;
  }

  .work-detail-meta {
    flex-direction: column;
    gap: 24px;
  }

  .meta-list {
    width: 100%;
  }

  .meta-list li {
    padding: 8px 0;
    font-size: 14px;
  }

  .waves {
    height: 40px;
  }

  .news-hero .works-hero-inner {
    gap: 24px;
  }

  .news-detail {
    width: 100%;
  }
  .news-detail-title {
    font-size: 20px;
  }

  .news-detail-body h1 {
    font-size: 19px;
  }

  .news-detail-body h2 {
    font-size: 19px;
  }

  .news-detail-body h3 {
    font-size: 17px;
  }

  .news-detail-body h4 {
    font-size: 16px;
  }
  .news-detail-body h5 {
    font-size: 15px;
  }

  .news-detail-body img {
    width: 88%;
    border-radius: 12px;
    margin: 12px 0;
  }

  .news-detail-body p {
    font-size: 15px;
  }

  .interview-section {
    padding: 40px 0 100px;
  }

  .interview-list {
    flex-direction: column;
  }

  .interview-list li:nth-child(even) {
    margin-top: 0;
  }

  .interview-item {
    width: 90%;
    margin-left: 3em;
    margin-bottom: 124px;
  }

  .interview-snippet {
    padding: 8px 12px;
    width: 260px !important;
    min-width: fit-content;
    height: 11em;
    bottom: -80px;
  }

  .interview-quote {
    font-size: 14px;
  }

  .interview-company {
    font-size: 11px;
  }

  .interview-person {
    font-size: 13px;
  }

  .interview-number {
    font-size: 12px;
    bottom: -26px;
    left: -5.2em;
    white-space: nowrap;
  }

  .interview-detail {
    padding: 40px 30px 60px;
    width: 100%;
  }

  .interview-detail-left {
    width: 100%;
  }

  .interview-detail-media {
    margin-bottom: 80px;
  }

  .interview-detail-media img {
    border-radius: 16px;
  }

  .detail-tag {
    padding: 4px 8px;
    border-radius: 4px;
  }

  .detail-tag p {
    font-size: 14px;
    line-height: 160%;
  }

  .detail-tag--primary {
    bottom: 1.4em;
  }

  .detail-tag--secondary {
    bottom: -0.8em;
  }

  .interview-detail-number {
    font-size: 12px;
    top: calc(100% + 2.2em);
  }

  .interview-detail-aside {
    width: 100%;
  }

  .interview-detail-aside .profile-card {
    border-radius: 10px;
    padding: 10px 12px;
  }
  .interview-detail-aside .profile-card .company-name {
    font-size: 14px;
  }
  .interview-detail-aside .profile-card .client-name {
    font-size: 18px;
  }

  .interview-detail-content {
    margin-top: 64px;
  }

  .interview-detail-content h2 {
    font-size: 18px;
  }

  .interview-detail-body h3 {
    font-size: 16px;
  }

  .interview-detail-body p {
    font-size: 15px;
  }

  .interview-detail-body figure {
    width: 100%;
    margin: 24px 0;
  }
  .interview-nav a {
    width: 44%;
  }

  .interview-nav a span {
    font-size: 14px;
  }

  .interview-nav img {
    border-radius: 8px;
  }
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

/* スマホ用（〜479px） */
@media screen and (max-width: 479px) {
  /* スタイル */
}

/* スマホ〜タブレット用（480〜767px） */
@media screen and (min-width: 480px) and (max-width: 767px) {
  /* スタイル */
}

/* タブレット〜ノートPC（768〜1023px） */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  /* スタイル */
}

/* ノートPC〜標準デスクトップ（1024〜1279px） */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  /* スタイル */
}

/* デスクトップ以上（1280px〜） */
@media screen and (min-width: 1280px) {
  /* スタイル */
}
