@charset "UTF-8";
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 3%;
  z-index: 1000;
  transition: background-color 0.3s;
  background-color: #fff;
  /* --- SP用全画面メニュー --- */
  /* --- SP用全画面メニュー --- */
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1002;
}
.l-header__logo {
  color: #3C3A3A;
}
.l-header__logo img {
  height: 30px;
  width: auto;
}
.l-header__logo p {
  font-size: clamp(0.625rem, 0.5946601942rem + 0.1294498382vw, 0.75rem);
  margin-top: 5px;
  line-height: 1.2;
}
.l-header__logo span {
  display: block;
  color: #ea5550;
  font-size: 0.9em;
}
.l-header__nav {
  display: flex;
  width: 85%;
  justify-content: right;
  /* ボタン共通スタイル */
  /* ホバー時の挙動 */
  /* バリエーション：赤（ENTRY） */
  /* テキストエリア */
  /* タイトルテキスト */
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 20px;
}
.l-header__nav li {
  font-weight: bold;
  font-size: 13px;
}
.l-header__nav .entry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 150px;
  padding: 16px 24px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  color: var(--color-white);
  transition: opacity 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .l-header__nav .entry-btn {
    max-width: 170px;
    right: 4%;
    bottom: 3%;
  }
}
.l-header__nav .entry-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.l-header__nav .entry-btn--red {
  background: var(--color-red-bg);
  background: var(--color-red-bg-gradient); /* グラデーション対応 */
}
.l-header__nav .entry-btn__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}
.l-header__nav .entry-btn__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 12px;
    background-color: #ea5550;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 1003;
  }
  .l-header__hamburger span {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.4s, opacity 0.4s, background-color 0.4s;
  }
  .l-header__hamburger span:nth-child(1) {
    top: 16px;
  }
  .l-header__hamburger span:nth-child(2) {
    top: 24px;
  }
  .l-header__hamburger span:nth-child(3) {
    top: 32px;
  }
  .l-header__hamburger.is-active {
    background-color: #fff;
  }
  .l-header__hamburger.is-active span {
    background-color: #ea5550;
  }
  .l-header__hamburger.is-active span:nth-child(1) {
    top: 24px;
    transform: translateX(-50%) rotate(45deg);
  }
  .l-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .l-header__hamburger.is-active span:nth-child(3) {
    top: 24px;
    transform: translateX(-50%) rotate(-45deg);
  }
}
.l-header .l-header__sp-nav {
  display: none;
  /* ボタン共通スタイル */
  /* ホバー時の挙動 */
  /* バリエーション：赤（ENTRY） */
  /* テキストエリア */
  /* タイトルテキスト */
}
@media screen and (max-width: 767px) {
  .l-header .l-header__sp-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88vh;
    background-color: #ea5550;
    z-index: 999;
    /* 背景のアニメーション初期値（上に隠す） */
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 0 0 30px 30px;
    /* --- 中身のリスト（li）の初期設定 --- */
    /* === 【重要】アクティブ時（開いた時）の指定 === */
  }
  .l-header .l-header__sp-nav .l-header__sp-list {
    width: 100%;
    padding-top: 70px; /* 上に詰まりすぎないよう余白確保 */
  }
  .l-header .l-header__sp-nav .l-header__sp-list li {
    opacity: 0; /* 最初は透明 */
    transform: translateY(20px); /* 少し下に配置 */
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .l-header .l-header__sp-nav .l-header__sp-list li a {
    color: #fff; /* 文字色を白に強制 */
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 15px 0;
    text-align: center;
  }
  .l-header .l-header__sp-nav.is-active {
    /* 1. 背景を降ろす */
    transform: translateY(0);
    /* 2. 背景が降りた後に、中のリストを表示する */
  }
  .l-header .l-header__sp-nav.is-active .l-header__sp-list li {
    opacity: 1;
    transform: translateY(0);
    /* 順番にふわっと出す（遅延設定） */
  }
  .l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(1) {
    transition-delay: 0.35s;
  }
  .l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(2) {
    transition-delay: 0.4s;
  }
  .l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(3) {
    transition-delay: 0.45s;
  }
  .l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(4) {
    transition-delay: 0.5s;
  }
  .l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(5) {
    transition-delay: 0.55s;
  }
  .l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(6) {
    transition-delay: 0.6s;
  }
  .l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(7) {
    transition-delay: 0.65s;
  }
  .l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(8) {
    transition-delay: 0.7s;
  }
  .l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(9) {
    transition-delay: 0.75s;
  }
  .l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(10) {
    transition-delay: 0.8s;
  }
}
.l-header .l-header__sp-nav .entry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  max-width: 150px;
  padding: 16px 24px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  color: var(--color-red-bg);
  transition: opacity 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .l-header .l-header__sp-nav .entry-btn {
    max-width: 170px;
    right: 4%;
    bottom: 3%;
  }
}
.l-header .l-header__sp-nav .entry-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.l-header .l-header__sp-nav .entry-btn--red {
  background-color: #fff;
}
.l-header .l-header__sp-nav .entry-btn__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}
.l-header .l-header__sp-nav .entry-btn__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

body.is-fixed .l-header__logo {
  opacity: 0; /* 透明にする */
  visibility: hidden; /* クリック判定も消す */
}

body.is-fixed {
  overflow: hidden;
  height: 100%;
}

/*
ミックスインメモ

・フォント自動計算（）にフォントサイズ1920準拠
    @include mixin.font-size(40);

・カーニング（）にline-heightを入れる
  @include mixin.line-height(44);

・メディアクエリ用
  @include mixin.mq-max('sp') {
  }

*/
/*基本スタイルここから*/
/* ===============================================
// Root & Variables
// =============================================== */
:root {
  --color-primary: #c9000e;
  --color-text: #333;
  --color-blue-bg: #1a237e; /* 画像から抽出したネイビー */
  --color-red-bg: #e5554e; /* 画像から抽出した赤 */
  --color-red-bg-gradient: linear-gradient(
    135deg,
    #e5554e 0%,
    #ef7a75 100%
  ); /* 赤ボタンの微細なグラデーション */
  --color-white: #ffffff;
  --btn-radius: 12px;
}

/* ベース設定 */
/* ===============================================
// Reset & Base
// =============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  color: var(--color-text);
  font-size: 1rem;
  font-family: "Montserrat", "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500; /* ここが重要 */
  /* オプション: 文字のアンチエイリアスを効かせて滑らかにする */
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

section {
  position: relative;
  margin-top: -10vw;
  padding-top: 10vw;
}

/* 本番用スタイル */
.lottie-scroll-section {
  /* 背景として配置するための設定 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1; /* コンテンツの裏に回す */
  height: 228vh;
  z-index: -1;
  margin-top: 101vh;
  /* 表示調整 */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  opacity: 0.6; /* 背景なので少し薄くすると文字が読みやすいです */
}

/* SVGのレスポンシブ対応 */
.lottie-scroll-section svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================================
// Utility Classes
// =============================================== */
.inner {
  max-width: 1720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

.pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

body {
  background-color: #f7f9fa;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 15vw;
}

ul {
  list-style: none;
}

.pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.lottie-bg {
  position: absolute;
  /* 親に対して絶対配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  /* 親の高さに合わせる */
  z-index: -1;
  /* 一番後ろ */
  pointer-events: none;
  /* クリックを邪魔しない */
  /* フェードインの秒数 */
}

#mv {
  position: relative;
  margin-top: 0;
  padding-top: 0;
  height: 100vh; /* 全画面など */
  /* 文字 "SCROLL DOWN" */
  /* 線（赤いライン） */
  /* アニメーション定義（線が上から下に流れる） */
  /* コンテナ（ボタンを横並びにするエリア） */
  /* ボタン共通スタイル */
  /* ホバー時の挙動 */
  /* バリエーション：赤（ENTRY） */
  /* テキストエリア */
  /* タイトルテキスト */
  /* 英語タイトル（ENTRY）用の調整 */
  /* サブテキスト（アサガクナビへ） */
  /* 矢印アイコンのラッパー（白い円） */
  /* 矢印画像自体 */
  /* レスポンシブ対応（スマホサイズ） */
}
#mv .mv__bg {
  position: fixed;
  top: 16%;
  left: 0;
  width: 100%;
  height: 65vh;
  background-image: url(../images/top.svg);
  background-size: cover;
  background-position: center;
  z-index: -1;
  will-change: transform; /* パフォーマンス最適化 */
}
@media screen and (max-width: 767px) {
  #mv .mv__bg {
    height: 15%;
  }
}
#mv .lottie-bg {
  top: 25%;
}
@media screen and (max-width: 767px) {
  #mv .lottie-bg {
    top: 270px;
  }
}
#mv .mv-copy {
  position: absolute;
  top: 30%;
  left: 0;
  writing-mode: vertical-lr;
  color: #1a1e7d;
  font-size: clamp(0.625rem, 0.5643203883rem + 0.2588996764vw, 0.875rem);
}
@media screen and (max-width: 767px) {
  #mv .mv-copy {
    right: 0;
    left: auto;
    top: 20%;
  }
}
#mv h2 {
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: clamp(1.875rem, 1.2682038835rem + 2.5889967638vw, 4.375rem);
}
#mv h2 span {
  color: #1a1e7d;
}
#mv a {
  position: fixed;
  right: 7%;
  bottom: 7%;
  background-color: #e85749;
  border-radius: 15px;
  color: #fff;
  font-size: clamp(1.25rem, 1.1589805825rem + 0.3883495146vw, 1.625rem);
  padding: 1% 6% 1% 1%;
  z-index: 1;
}
#mv .scroll-down {
  position: absolute; /* 親要素に対して固定（追従しない） */
  right: 4%; /* 左からの距離 */
  bottom: 0; /* 下にくっつける */
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* 文字と線の隙間 */
}
@media screen and (max-width: 767px) {
  #mv .scroll-down {
    display: none;
  }
}
#mv .scroll-down__text {
  /* 縦書き設定 */
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Helvetica Neue", Arial, sans-serif; /* 英語用フォント */
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #1a1e7d; /* 画像から抽出したネイビー */
  font-weight: 700;
}
#mv .scroll-down__line {
  width: 1px; /* 線の太さ */
  height: 80px; /* 線の長さ */
  background-color: #e85749; /* 画像から抽出した赤 */
  position: relative;
  overflow: hidden; /* アニメーションのはみ出しを隠す */
  /* オプション：線が伸びるようなアニメーションを入れる場合 */
}
#mv .scroll-down__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* 背景色と同じ色（線を隠す用）か、濃い色 */
  /* 上から下に流れるアニメーション */
  /* 実際には「線を隠している白い幕」を動かすか、
   「色のついた線」を動かすかで実装が変わります。
   今回はシンプルに色が明滅するパターン例です */
  animation: scrollLine 1.5s ease-in-out infinite;
  opacity: 0;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 1;
  }
}
#mv .entry-nav {
  display: flex;
  justify-content: center;
  gap: 20px; /* ボタン間の余白 */
  max-width: 800px;
  margin: 0 auto;
}
#mv .entry-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 208px;
  padding: 16px 24px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  color: var(--color-white);
  transition: opacity 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  #mv .entry-btn {
    max-width: 170px;
    right: 4%;
    bottom: 3%;
  }
}
#mv .entry-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
#mv .entry-btn--red {
  background: var(--color-red-bg);
  background: var(--color-red-bg-gradient); /* グラデーション対応 */
}
#mv .entry-btn__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}
#mv .entry-btn__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#mv .entry-btn__title--en {
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.1em;
}
#mv .entry-btn__sub {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 400;
}
#mv .entry-btn__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0; /* 画面が狭くなっても円を潰さない */
}
#mv .entry-btn__icon {
  width: 12px;
  height: auto;
  display: block;
}
@media screen and (max-width: 600px) {
  #mv .entry-nav {
    flex-direction: column; /* 縦並びに変更 */
  }
}

#about {
  position: relative;
  height: 60vw;
}
@media screen and (max-width: 767px) {
  #about {
    height: 160vw;
  }
}
@media screen and (max-width: 767px) {
  #about .lottie-bg {
    top: 71vw;
  }
}
@media screen and (max-width: 767px) {
  #about .img-bg {
    bottom: 0;
    top: auto;
  }
}
#about p {
  font-size: clamp(0.875rem, 0.7384708738rem + 0.5825242718vw, 1.4375rem);
  line-height: 48px;
  font-weight: bold;
  position: absolute;
  top: 30%;
  right: 9%;
}
@media screen and (max-width: 767px) {
  #about p {
    line-height: 34px;
    padding: 0 24px;
    position: unset;
  }
}
#about img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}
#about .about-item1 {
  right: 10%;
  width: 21%;
  top: 0;
}
@media screen and (max-width: 767px) {
  #about .about-item1 {
    right: 9%;
    width: 50%;
    top: -39%;
  }
}
#about .about-item2 {
  left: 20%;
  top: 0%;
  width: 13%;
}
@media screen and (max-width: 767px) {
  #about .about-item2 {
    left: 4%;
    top: -16%;
    width: 31%;
  }
}
#about .about-item3 {
  left: 8%;
  top: 22%;
  width: 17%;
}
@media screen and (max-width: 767px) {
  #about .about-item3 {
    left: 58%;
    top: 46%;
    width: 33%;
  }
}
#about .about-item4 {
  right: 23%;
  top: 54%;
  width: 27%;
}
@media screen and (max-width: 767px) {
  #about .about-item4 {
    right: 56%;
    top: 52%;
    width: 39%;
  }
}
#about .about-item5 {
  top: 73%;
  left: 17%;
  width: 17%;
}
@media screen and (max-width: 767px) {
  #about .about-item5 {
    top: 74%;
    left: 17%;
    width: 33%;
  }
}

.sec-title h3 {
  font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  margin-bottom: 3%;
}
.sec-title img {
  margin-right: 2%;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .sec-title img {
    max-width: 250px;
  }
}
.sec-title p {
  margin-bottom: 5%;
}

#works .works01-sp {
  top: 23%;
}
#works .works02 {
  top: 45%;
}
@media screen and (max-width: 767px) {
  #works .works02 {
    top: 30%;
  }
}
#works .works02-sp {
  top: 47%;
}
#works .card-wrap {
  display: flex;
  gap: 2%;
  margin-bottom: 5%;
}
@media screen and (max-width: 767px) {
  #works .card-wrap {
    flex-direction: column;
  }
}
#works .works-card {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 3% 4%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #works .works-card {
    margin-bottom: 6%;
  }
}
#works .works-card .works-card__figure {
  margin-bottom: 2vw;
}
#works .works-card .works-card__figure img {
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  #works .works-card .works-card__figure img {
    height: 200px;
  }
}
#works .works-card__header {
  margin-bottom: 3vw;
}
#works .works-card__title {
  font-size: clamp(1.4375rem, 1.270631068rem + 0.71197411vw, 2.125rem);
  color: #1a1e7d;
  font-weight: bold;
}
#works .works-card__subtitle {
  font-size: clamp(0.75rem, 0.6438106796rem + 0.4530744337vw, 1.1875rem);
  color: #b2ccd5;
}
#works .works-card__catch {
  margin-bottom: 2vw;
  font-size: clamp(1.25rem, 1.0072815534rem + 1.0355987055vw, 2.25rem);
  color: #1a1e7d;
}
#works .text-highlight {
  color: #e85749;
}
#works .works-card__desc {
  margin-bottom: 2vw;
  text-align: left;
}
#works .works-card__list {
  text-align: left;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  min-height: 320px;
}
@media screen and (max-width: 767px) {
  #works .works-card__list {
    min-height: 240px;
  }
}
#works .works-card__item {
  position: relative;
  padding-left: 12%;
  margin-bottom: 2%;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
}
#works .works-card__item::after {
  content: "";
  position: absolute;
  background-image: url(../images/check.svg);
  width: 17px;
  height: 20px;
  top: 10%;
  left: 5%;
  background-size: contain;
}
#works .works-card__service-title {
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
}
#works .works-card__strength {
  background-color: #eef2f5;
  border-radius: 20px;
}
#works .works-card__strength-head {
  color: #fff;
  background-color: #1a1e7d;
  border-radius: 20px 20px 0 0;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  padding: 10px;
}
#works .works-card__strength-body {
  font-size: clamp(1rem, 0.8938106796rem + 0.4530744337vw, 1.4375rem);
  padding: 25px;
  font-weight: bold;
}
#works .works-card__service-title {
  display: flex; /* 横並びにする */
  align-items: center; /* 垂直方向（上下）の中央揃え */
  justify-content: center; /* テキスト全体を中央に配置 */
  color: #1a1e7d; /* テキストの色（画像から抽出したネイビー） */
  font-weight: bold; /* 太字 */
  /* 前（左）と後（右）に線を作る */
  /* テキストとの余白 */
}
#works .works-card__service-title::before, #works .works-card__service-title::after {
  content: ""; /* 擬似要素には必須 */
  flex-grow: 1; /* 余白を埋めるように線を伸ばす */
  height: 1px; /* 線の太さ */
  background-color: currentColor; /* テキストと同じ色にする（便利！） */
  /* 線の最大幅（お好みで調整してください） */
  /* 指定しないと画面いっぱいまで伸びます */
  max-width: 60px;
}
#works .works-card__service-title::before {
  margin-right: 20px; /* 左の線とテキストの間 */
}
#works .works-card__service-title::after {
  margin-left: 20px; /* テキストと右の線の間 */
}
#works .works-card__row {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 3% 4%;
  text-align: center;
}
#works .works-card__row h4 {
  color: #1a1e7d;
  font-size: clamp(1.25rem, 0.8404126214rem + 1.7475728155vw, 2.9375rem);
}
#works .row-text {
  text-align: right;
  font-size: clamp(0.625rem, 0.5643203883rem + 0.2588996764vw, 0.875rem);
}

#interview .lottie-bg svg {
  -o-object-position: center top;
     object-position: center top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#interview .interview01 {
  top: -20vw;
}
#interview .interview-list {
  display: flex;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  #interview .interview-list {
    gap: 24px; /* カード間の余白 */
    overflow-x: auto; /* 横スクロール有効 */
    scroll-snap-type: x mandatory; /* スナップ有効 */
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* 端のカードが見切れないよう余白調整 */
    padding-bottom: 40px; /* 下部の影や番号が見切れないように */
    padding-right: 20px; /* 最後のカードの右余白 */
    padding-left: 20px; /* 最初のカードの左余白 */
  }
  #interview .interview-list::-webkit-scrollbar {
    display: none;
  }
}
#interview .interview-list__item {
  /* PC: 偶数番目を下げる（段違い） */
  /* === SP用スタイル === */
}
#interview .interview-list__item:nth-child(even) {
  transform: translateY(50px);
}
@media screen and (max-width: 768px) {
  #interview .interview-list__item {
    /* カード幅を画面の80%にして次をチラ見せ */
    flex: 0 0 80%;
    scroll-snap-align: center; /* 中央で止まる */
    /* 重要: SPでは段違いを解除して一直線にする */
  }
  #interview .interview-list__item:nth-child(even) {
    transform: none;
  }
}
#interview .interview-card__figure {
  position: relative;
}
#interview .interview-card__figure img {
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%; /* 追加: 親要素に合わせて幅を確保 */
  border-radius: 20px;
}
#interview .interview-card__figure::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-image: url(../images/external.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#interview .interview-card__number {
  position: absolute;
  bottom: -3vw;
  right: 0;
  color: #e85749;
  font-size: clamp(3.75rem, 3.5983009709rem + 0.6472491909vw, 4.375rem);
  /* SPで数字が大きすぎる場合は調整が必要かもしれません */
  /* 例:
  @media screen and (max-width: 768px) {
     bottom: -10px;
     font-size: 40px; 
  }
  */
}
#interview .interview-card__title {
  color: #1a1e7d;
}

#growth .growth01 {
  top: -36vw;
}
@media screen and (max-width: 767px) {
  #growth .growth01 {
    top: -10vw;
  }
}
#growth .sec-title {
  margin-bottom: 7%;
}
@media screen and (max-width: 767px) {
  #growth .growth-bg {
    top: auto;
    bottom: 19%;
  }
}
#growth .growth-item {
  display: flex;
  gap: 3%;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #growth .growth-item {
    flex-direction: column;
  }
}
#growth h4 {
  font-size: clamp(1.875rem, 1.6626213592rem + 0.9061488673vw, 2.75rem);
  text-align: center;
  margin-bottom: 6%;
}
#growth h4 .blue-text {
  color: #1a1e7d;
}
#growth h4 .red-text {
  color: #e85749;
}
#growth .growth-item_img {
  margin-bottom: 5%;
}
#growth .growth-item_img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#growth .growth-item_text {
  width: 100%;
}
#growth .growth-item_text p {
  background-color: #fff;
  padding: 8%;
  border-radius: 20px;
  line-height: 42px;
}
@media screen and (max-width: 767px) {
  #growth .growth-item_text p {
    line-height: 24px;
  }
}

#culture .culture01 {
  top: -5vw;
}
@media screen and (max-width: 767px) {
  #culture .culture01 {
    top: -16vw;
  }
}
#culture .culture01-sp {
  top: 93vw;
}
@media screen and (max-width: 767px) {
  #culture .culture-bg {
    top: auto;
    bottom: 0;
  }
}
#culture .section-culture {
  background-color: #f0f4f8;
  padding: 80px 0;
}
#culture .culture-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  #culture .culture-layout {
    flex-direction: column;
    gap: 40px;
  }
}
#culture .culture-column {
  flex: 1;
}
#culture .culture-column.is-right {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
#culture .is-right .culture-card:first-child {
  transform: translateX(10%);
}
@media screen and (max-width: 767px) {
  #culture .is-right .culture-card:first-child {
    transform: translateX(0%);
  }
}
#culture .culture-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
#culture .culture-card__figure {
  position: relative;
  width: 100%;
  height: 240px;
}
#culture .culture-card__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#culture .culture-card__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
#culture .culture-card__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 60, 0.3);
}
#culture .culture-card__body {
  padding: 32px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}

/* スクロールさせる枠 */
.scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  /* スマホでの慣性スクロール */
  -webkit-overflow-scrolling: touch;
  position: relative;
  /* ▼ 追加：マウス操作用（掴めることを示す） */
  cursor: grab;
  /* ドラッグ中のテキスト選択を防ぐ */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* ▼ 追加：スクロールバーを隠す設定（見た目をスッキリさせる場合） */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  margin-bottom: 8vw;
}

/* Chrome/Safari用 スクロールバー非表示 */
.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* ドラッグ中のカーソル */
.scroll-wrapper.active {
  cursor: grabbing;
}

.scroll-inner {
  display: inline-block;
  min-width: 100%;
  text-align: center;
}

.img-area {
  display: block;
  height: auto;
  max-width: none;
  min-width: 1200px;
  /* 画像のドラッグ禁止（スクロールの邪魔になるため） */
  -webkit-user-drag: none;
  pointer-events: none; /* 画像自体のクリックイベントを無視させて親で拾う */
}
@media screen and (max-width: 767px) {
  .img-area {
    max-height: 150px;
  }
}

#recruit {
  background-color: #fff;
  border-radius: 20px;
}
#recruit .inner {
  padding-top: 10vw;
  padding-bottom: 10vw;
}
#recruit h4 {
  color: #1a1e7d;
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
}
@media screen and (max-width: 767px) {
  #recruit h4 {
    text-align: center;
  }
}
#recruit .title-flex {
  display: flex;
  gap: 2%;
  margin-bottom: 6%;
}
@media screen and (max-width: 767px) {
  #recruit .title-flex {
    flex-direction: column-reverse;
  }
}
#recruit .sec-title {
  width: 100%;
}
#recruit .sec-title img {
  width: 70%;
}
#recruit .sec-title h3 {
  margin-bottom: 6%;
}
#recruit .sec-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 275px;
}
@media screen and (max-width: 767px) {
  #recruit .sec-img {
    margin: 0 auto;
    margin-bottom: 5%;
  }
}
#recruit .recruit-person {
  padding-bottom: 5%;
  margin-bottom: 5%;
  border-bottom: #b2ccd5 1px solid;
}
#recruit .recruit-person ul {
  display: flex;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  #recruit .recruit-person ul {
    flex-direction: column;
  }
}
#recruit .recruit-person li {
  position: relative;
  color: #1a1e7d;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 6px solid #eff2f5;
  border-radius: 20px;
  text-align: center;
  width: 30%;
  padding: 3%;
  font-weight: bold;
}
#recruit .recruit-person li::after {
  content: "";
  position: absolute;
  background-image: url(../images/check.svg);
  width: 41px;
  height: 54px;
  top: -10%;
  left: 50%;
  background-size: contain;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #recruit .recruit-person li {
    width: 100%;
    padding: 10%;
    margin-bottom: 5%;
  }
}
#recruit .recruit-flow h4 {
  margin-bottom: 3%;
}
#recruit .recruit-flow .recruit-flow_img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #recruit .recruit-flow .recruit-flow_img {
    overflow-x: auto; /* 横スクロールを許可 */
    -webkit-overflow-scrolling: touch; /* 慣性スクロール（滑らかに） */
  }
}
@media screen and (max-width: 767px) {
  #recruit .recruit-flow .recruit-flow_img img {
    width: 800px;
    max-width: none;
  }
}

#entry {
  padding-top: 10%;
  /* コンテナ（ボタンを横並びにするエリア） */
  /* ボタン共通スタイル */
  /* ホバー時の挙動 */
  /* バリエーション：青（募集要項） */
  /* バリエーション：赤（ENTRY） */
  /* テキストエリア */
  /* タイトルテキスト */
  /* 英語タイトル（ENTRY）用の調整 */
  /* サブテキスト（アサガクナビへ） */
  /* 矢印アイコンのラッパー（白い円） */
  /* 矢印画像自体 */
}
#entry .inner {
  padding: 7vw;
}
#entry .lottie-bg {
  top: -25%;
  height: 140vw;
}
@media screen and (max-width: 767px) {
  #entry .lottie-bg {
    top: -7%;
  }
}
#entry .entry-flex {
  display: flex;
  gap: 8%;
  width: 100%;
}
#entry .entry-flex .entry-img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  #entry .entry-flex .entry-img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #entry .entry-flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  #entry .entry-text {
    background-color: #fff;
    margin-top: 20px;
    padding-top: 15px;
    padding-left: 15px;
  }
}
#entry .entry-text p {
  margin-bottom: 5%;
  font-weight: bold;
  font-size: clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem);
}
#entry .entry-nav {
  display: flex;
  justify-content: center;
  gap: 20px; /* ボタン間の余白 */
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#entry .entry-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  color: var(--color-white);
  transition: opacity 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  #entry .entry-btn {
    padding: 16px 15px;
  }
}
#entry .entry-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
#entry .entry-btn--blue {
  background-color: var(--color-blue-bg);
}
#entry .entry-btn--red {
  background: var(--color-red-bg);
  background: var(--color-red-bg-gradient); /* グラデーション対応 */
}
#entry .entry-btn__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}
#entry .entry-btn__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#entry .entry-btn__title--en {
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.1em;
}
#entry .entry-btn__sub {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 400;
}
#entry .entry-btn__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0; /* 画面が狭くなっても円を潰さない */
}
#entry .entry-btn__icon {
  width: 12px;
  height: auto;
  display: block;
}

#number .lottie-bg {
  top: -30%;
}
#number .number02 {
  top: 50%;
}
#number .number-bg {
  top: auto;
  bottom: 0;
}
#number .number-glass {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 50px;
  background: rgba(207, 228, 235, 0.4);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 10%;
}
@media screen and (max-width: 767px) {
  #number .number-glass {
    max-width: 90%;
  }
}
#number .inner {
  padding: 100px 0;
}
#number .sec-title {
  text-align: center;
}
#number .number-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #number .number-card {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列 */
    gap: 10px;
    margin: 0 auto;
    width: 95%;
  }
}
#number .number-card_item {
  width: 24%;
  text-align: center;
  border-radius: 20px;
  background-color: #fff;
  margin-bottom: 0 auto;
  margin-bottom: 1%;
  height: 267px;
}
@media screen and (max-width: 767px) {
  #number .number-card_item {
    padding: 10px 2px;
    width: 100%;
    /* ここが重要 */
    display: flex;
    flex-direction: column;
    align-items: center; /* 水平方向（横）はこれで真ん中 */
    height: 100%; /* Gridの中で高さを最大まで広げる */
  }
}
#number .number-card_item .card-title {
  padding-top: 5%;
  padding-bottom: 10%;
}
@media screen and (max-width: 767px) {
  #number .number-card_item .card-title {
    padding-bottom: 0;
    line-height: 20px;
    min-height: 50px;
  }
}
#number .card-text {
  font-size: clamp(0.5rem, 0.4089805825rem + 0.3883495146vw, 0.875rem);
}
#number .card-content {
  font-weight: bold;
  color: #1a1e7d;
  font-size: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem);
}
#number .card-content span {
  font-size: clamp(1.5rem, 1.4696601942rem + 0.1294498382vw, 1.625rem);
}
#number .card-img2 {
  width: 85%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 125px;
}
@media screen and (max-width: 767px) {
  #number .card-img2 {
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
#number .card-img3 {
  padding: 0 15px 10px 15px;
}
@media screen and (max-width: 767px) {
  #number .card-img3 {
    height: 100px;
  }
}

#leaflet {
  padding-top: 0;
  margin-top: 0;
  background-color: #fff;
  color: #333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  /* Flexboxレイアウト */
  /* テキストエリア */
  /* 画像エリア */
  /* ダウンロードボタンのスタイル */
  /* PDFアイコン風の装飾 */
  /* 修正: アイコンの親要素 */
  /* 追加: SVG自体の設定 */
  /* ホバー時にアイコンの色を変えたい場合 */
  /* レスポンシブ対応（スマホ向け） */
}
#leaflet .inner {
  padding-top: 10vw;
}
#leaflet .flex-item {
  display: flex;
  align-items: center; /* 垂直方向中央揃え */
  justify-content: space-between; /* 左右に配置 */
  gap: 60px; /* 要素間の余白（モダンブラウザ用） */
}
#leaflet .text-area {
  flex: 1; /* 幅の比率（1:1で分け合うベース） */
  max-width: 500px; /* テキストが横に広がりすぎないように制限 */
}
#leaflet .text-area img {
  padding-bottom: 50px;
}
#leaflet .sub-title {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
  color: #444;
}
#leaflet .title {
  font-size: 32px;
  font-weight: 400; /* 細めのウェイトに見えるため調整 */
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
#leaflet .description {
  font-size: 14px;
  line-height: 2; /* 行間を広めに */
  margin-bottom: 30px;
  color: #555;
  text-align: justify; /* 両端揃え（お好みで） */
}
#leaflet .leaflet-img-area {
  flex: 1;
}
#leaflet .download-btn {
  width: 60%;
  display: inline-flex;
  align-items: center;
  background-color: #ecf0f3; /* 薄いグレーの背景 */
  padding: 15px 25px;
  border-radius: 8px; /* 角丸 */
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  #leaflet .download-btn {
    width: 100%;
  }
}
#leaflet .download-btn:hover {
  opacity: 0.8;
}
#leaflet .btn-text {
  margin-right: 10px;
}
#leaflet .pdf-icon {
  display: inline-block;
  font-size: 10px;
  color: #e63946;
  border: 1px solid #e63946;
  padding: 1px 4px;
  border-radius: 3px;
  margin-right: auto; /* 右側のアイコンを端に寄せるための余白調整 */
}
#leaflet .dl-icon {
  margin-left: auto; /* ボタン内で右端に寄せる場合（任意） */
  padding-left: 15px; /* テキストとの余白 */
  display: flex; /* SVGのズレを防ぐ */
  align-items: center;
}
#leaflet .dl-icon svg {
  width: 18px; /* アイコンのサイズ */
  height: 18px;
  color: #888; /* アイコンの色 */
  transition: color 0.3s;
}
#leaflet .download-btn:hover .dl-icon svg {
  color: #333; /* ホバー時の色 */
}
@media screen and (max-width: 768px) {
  #leaflet .flex-item {
    flex-direction: column; /* 縦並びに変更 */
    gap: 30px;
  }
  #leaflet .text-area {
    max-width: 100%;
  }
  #leaflet .title {
    font-size: 24px;
  }
}

#company {
  background-color: #fff;
  border-radius: 20px;
  /* コンテナ（ボタンを横並びにするエリア） */
  /* ボタン共通スタイル */
  /* ホバー時の挙動 */
  /* バリエーション：青（募集要項） */
  /* バリエーション：赤（ENTRY） */
  /* テキストエリア */
  /* タイトルテキスト */
  /* 英語タイトル（ENTRY）用の調整 */
  /* サブテキスト（アサガクナビへ） */
  /* 矢印アイコンのラッパー（白い円） */
  /* 矢印画像自体 */
}
#company .inner {
  padding: 120px 5%;
}
@media screen and (max-width: 767px) {
  #company .inner {
    padding-bottom: 60px;
  }
}
#company .company-flex {
  display: flex;
  gap: 5%;
  margin-bottom: 5%;
}
@media screen and (max-width: 767px) {
  #company .company-flex {
    flex-direction: column-reverse;
  }
}
#company .company-flex img {
  max-height: 375px;
}
@media screen and (max-width: 767px) {
  #company .company-flex img {
    max-height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
  }
}
#company dl {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #company dl {
    margin: 0 auto;
  }
}
#company dl dt {
  width: 12%;
  border-bottom: 1px #d3d3d3 solid;
  padding-top: 8px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #company dl dt {
    width: 100%;
    border-bottom: none;
  }
}
#company dl dd {
  width: 88%;
  border-bottom: 1px #d3d3d3 solid;
  padding-top: 8px;
}
@media screen and (max-width: 767px) {
  #company dl dd {
    width: 100%;
    padding-bottom: 8px;
  }
}
#company .company-mail {
  background-color: #f7f9fa;
  padding: 2% 4%;
  border-radius: 20px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
}
#company .company-mail a {
  position: relative;
  padding-left: 7%;
  color: #1a1e7d;
  font-weight: bold;
}
#company .company-mail a::before {
  content: "";
  position: absolute;
  background-image: url(../images/mail.svg);
  width: 20px;
  height: 20px;
  background-size: contain;
  top: 7px;
  left: 24px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #company .company-mail a::before {
    top: 31px;
    left: -225px;
  }
}
#company .entry-nav {
  display: flex;
  justify-content: center;
  gap: 20px; /* ボタン間の余白 */
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 5%;
}
#company .entry-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  color: var(--color-white);
  transition: opacity 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#company .entry-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
#company .entry-btn--blue {
  background-color: var(--color-blue-bg);
}
#company .entry-btn--red {
  background: var(--color-red-bg);
  background: var(--color-red-bg-gradient); /* グラデーション対応 */
}
#company .entry-btn__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}
#company .entry-btn__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#company .entry-btn__title--en {
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.1em;
}
#company .entry-btn__sub {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 400;
}
#company .entry-btn__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0; /* 画面が狭くなっても円を潰さない */
}
#company .entry-btn__icon {
  width: 12px;
  height: auto;
  display: block;
}

/*基本スタイルここまで*/
/* ベースのリセット */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* フッター全体の定義 */
.footer {
  width: 100%;
  background-color: #f9f9f9; /* 画像に近い薄いグレー */
  padding: 40px 20px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  font-size: 12px;
}

.footer__inner {
  max-width: 1250px; /* サイト幅に合わせて調整 */
  margin: 0 auto;
}

/* 上部：ナビゲーションエリア */
.footer__nav {
  margin-bottom: 40px; /* 上下セクションの間の余白 */
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: wrap; /* 画面幅が狭い場合の折り返し */
  gap: 0; /* gapは0にし、paddingで調整 */
}

.footer__nav-item {
  display: flex;
  align-items: center;
  font-size: clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
}

/* 区切り線（|）の実装 */
.footer__nav-item:not(:last-child)::after {
  content: "|";
  margin: 0 1.5em; /* 文字と線の間の余白 */
  color: #ccc; /* 区切り線の色 */
  font-weight: normal;
}

.footer__nav-link {
  text-decoration: none;
  color: #444;
  font-weight: 700; /* 太字 */
  transition: opacity 0.3s;
  letter-spacing: 0.05em;
}

.footer__nav-link:hover {
  opacity: 0.7;
}

/* 下部：ロゴと著作権エリア */
.footer__bottom {
  display: flex;
  justify-content: space-between; /* 左右に配置 */
  align-items: center;
  border-top: 1px solid #e5e5e5; /* 境界線 */
  padding-top: 40px;
}

.footer__logo img {
  max-width: 100%;
  height: auto;
}

.footer .pc-none {
  margin: 0 auto;
  margin-bottom: 8%;
}

.footer__copyright {
  font-size: 10px;
  color: #666;
  font-family: Arial, sans-serif; /* 英語部分は欧文フォント優先 */
}

/* レスポンシブ対応（スマホ向け） */
@media screen and (max-width: 768px) {
  .footer__nav-list {
    flex-direction: column;
    gap: 15px;
  }
  .footer__nav-item:not(:last-child)::after {
    content: none; /* スマホでは区切り線を消す */
  }
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
body.is-modal-active {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s, opacity 0.4s;
}
.modal.is-active {
  visibility: visible;
  opacity: 1;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}
.modal.is-active .modal__content {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.1s;
}

.modal__close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.modal__close-btn span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.modal__close-btn span:nth-child(1) {
  transform: rotate(45deg);
}
.modal__close-btn span:nth-child(2) {
  transform: rotate(-45deg);
}/*# sourceMappingURL=style.css.map */