@charset "UTF-8";
/*-- foundationフォルダの中の_index.scss --*/
/*---------------------------------

 reset

---------------------------------*/
/*** The new CSS Reset - version 1.2.0 (last updated 23.7.2021) ***/
/* ブラウザのUAスタイルシートのすべてのスタイルを削除します、displayは除く */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

/* box-sizingの優先値 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  リストのスタイル（箇条書き・番号）を削除します
  normalize.cssで使用する場合
*/
ol,
ul {
  list-style: none;
}

/* 画像がコンテナを超えないようにするため */
img {
  max-width: 100%;
  vertical-align: top;
}

/* テーブルのセル間のスペースを削除します */
table {
  border-collapse: collapse;
}

/* Safariのtextarea要素のwhite-spaceプロパティを元に戻します */
textarea {
  white-space: revert;
}

/*** The new CSS Reset ***/
/*-- globalフォルダの中の_index.scss --*/
:root {
  --main-TextColor: #181D61;
  --sub-textColor1: #444;
  --sub-textColor2: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: left;
}

.sec-title .sub-En {
  text-align: left;
  color: #0779E4;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0;
}
.sec-title h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #181d61;
  position: relative;
  display: flex;
  align-items: center;
}
.sec-title h2::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #0779E4;
  margin-left: 10px;
  min-width: 60px;
  max-width: 1000px;
  display: block;
}
.sec-title h2.mediam::after {
  flex: 1.3;
}
.sec-title h2.long::after {
  flex: 2;
}
@media (max-width: 768px) {
  .sec-title .sub-En {
    font-size: 0.75rem;
  }
  .sec-title h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .title-top {
    flex-direction: column;
    gap: 5px;
  }
  .title-top h2::after {
    display: none;
  }
  .desc {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}
html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: #fff;
  color: var(--main-TextColor);
}

h1,
h2,
h3,
h4,
p,
a,
li,
summary,
address input {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}

h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  margin-bottom: 10px;
}

h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  margin-bottom: 10px;
  color: var(--main-TextColor);
}

html {
  overflow-y: scroll;
  /* 常にスクロールバーを確保 */
}

:root {
  scrollbar-gutter: stable;
  /* モダンブラウザならこれ推奨 */
}

a:hover {
  /*ホバー時のポインター表示*/
  cursor: pointer;
}

@media (max-width: 768px) {
  p {
    font-size: 14.4px;
  }
}
/*-- componentフォルダの中の_index.scss --*/
a.btn {
  display: inline-block;
  background-color: var(--main-TextColor);
  border-radius: 5px;
  padding: 15px 25px;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto 0;
  min-width: 250px;
}
a.btn:hover {
  background-color: #2530a3;
}

a.next-btn {
  display: inline-block;
  border-radius: 5px;
  padding: 20px 25px;
  transition: 0.3s;
  text-align: center;
  min-width: 250px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  margin: 60px auto 0;
  border: 1px solid #181d61;
}
a.next-btn:hover {
  background-color: #181d61;
  color: #fff;
}

/* ========================================
   ▼ fade-in 共通モジュール（どこでも使える版）
   ======================================== */
/* 初期状態：非表示＋少し下にオフセット */
.fade-in-element {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

/* 表示状態 */
.fade-in-element.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- 方向バリエーション ---------- */
/* 右からスライド */
.fade-right {
  transform: translateX(-50px);
}

.fade-in-element.visible.fade-right {
  transform: translateX(0);
}

/* 下からスライド */
.fade-top {
  transform: translateY(50px);
}

.fade-in-element.visible.fade-top {
  transform: translateY(0);
}

/* 上からフェードイン */
.fade-down {
  transform: translateY(-50px);
}

.fade-in-element.visible.fade-down {
  transform: translateY(0);
}

/* ---------- 速度バリエーション ---------- */
.fade-slow {
  transition-duration: 1.2s;
}

.fade-fast {
  transition-duration: 0.5s;
}

/* ---------- レイアウト安定用（flex内で使う時） ---------- */
.fade-in-element {
  display: inherit; /* 親がflexならflexを継承、blockならblock */
  flex: auto; /* flexの中でも自然に伸びる */
}

/*-- projectフォルダの中の_index.scss --*/
/* ===============================
   FOOTER 全体
=============================== */
.site-footer {
  position: relative;
  color: #fff;
}

/* 背景画像エリア */
.site-footer .footer-photo {
  position: relative;
}

.site-footer .footer-photo img {
  width: 100%;
  height: 250px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 下部コンテンツ */
.site-footer .footer-bottom {
  background: #181d61;
  padding: 40px 20px 20px;
  text-align: center;
}

/* 内部レイアウト */
.site-footer .footer-bottom .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto 20px;
}

/* 左側（ロゴ・住所） */
.site-footer .footer-bottom .footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.site-footer .footer-bottom .footer-info .footer-logo {
  width: 180px;
  height: auto;
  display: block;
}

.site-footer .footer-bottom .footer-info .footer-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
}

/* 右側（ナビ） */
.site-footer .footer-bottom .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer .footer-bottom .footer-nav li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.site-footer .footer-bottom .footer-nav li a:hover {
  color: #77b9ff;
}

/* コピーライト */
.site-footer .footer-bottom .copy {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
  font-size: 0.8rem;
  text-align: center;
  color: #fff;
}

/* ===============================
   1238px以下（自然に縮む調整）
=============================== */
@media (max-width: 1238px) {
  .site-footer .footer-bottom {
    padding: clamp(25px, 3vw, 40px) 20px 20px;
  }
  .site-footer .footer-bottom .footer-inner {
    gap: clamp(20px, 3vw, 40px);
  }
  .site-footer .footer-bottom .footer-info .footer-logo {
    width: clamp(140px, 17vw, 180px);
  }
  .site-footer .footer-bottom .footer-info .footer-text p,
  .site-footer .footer-bottom .footer-nav li a,
  .site-footer .footer-bottom .copy {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
  }
}
/* ===============================
   900px以下（タブレット）
=============================== */
@media (max-width: 900px) {
  .site-footer .footer-bottom .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .site-footer .footer-bottom .footer-info {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .site-footer .footer-bottom .footer-info .footer-logo {
    width: 150px;
  }
  .site-footer .footer-bottom .footer-nav ul {
    justify-content: center;
    gap: 15px;
  }
  .site-footer .footer-bottom .copy {
    font-size: 0.75rem;
  }
}
/* ===============================
   768px以下（スマホ）
=============================== */
@media (max-width: 768px) {
  .site-footer .footer-photo img {
    height: 180px;
  }
  .site-footer .footer-bottom {
    padding: 30px 15px 15px;
  }
  .site-footer .footer-bottom .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }
  .site-footer .footer-bottom .footer-info {
    align-items: center;
    text-align: center;
  }
  .site-footer .footer-bottom .footer-info .footer-logo {
    width: 130px;
  }
  .site-footer .footer-bottom .footer-nav ul {
    justify-content: center;
    gap: 12px;
  }
  .site-footer .footer-bottom .copy {
    font-size: 0.7rem;
  }
}
/* ===============================
   HEADER 共通スタイル
=============================== */
.site-header {
  width: 100%;
  background: var(--sub-textColor2);
  border-bottom: 1px solid #e6e6e6;
  padding: 15px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

/* ロゴ */
.site-header h1 {
  display: flex;
  align-items: center;
  margin: 0;
}

.site-header h1 img {
  height: 60px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 電話・ナビ全体 */
.site-header-right {
  display: flex;
  flex-direction: column;
}

/* 電話エリア */
.site-header-right .nav-top {
  display: flex;
  text-align: right;
  line-height: 1.3;
  gap: 4px;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
}

.site-header-right .nav-top p:first-child {
  font-size: 0.85rem;
  color: #666;
  margin-right: 10px;
  font-weight: 400;
}

.site-header-right .nav-top span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--main-TextColor);
  letter-spacing: 0.05em;
  margin-right: 10px;
}

.site-header-right .nav-top p:last-child {
  font-size: 0.75rem;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  padding: 3px 8px;
  display: inline-block;
  margin-top: 3px;
}

/* ナビ */
.site-header-right .global-nav {
  width: 100%;
  margin-top: 0;
}

.site-header-right .global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header-right .global-nav li a {
  transition: color 0.3s, border-color 0.3s;
  padding-bottom: 3px;
}

.site-header-right .global-nav li a:hover,
.site-header-right .global-nav li a.active {
  color: #1f2c5c;
  border-bottom: 0.5px solid #C9AB73;
}

/* ===============================
   HAMBURGER
=============================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #181D61;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1238px) {
  .site-header {
    padding: 15px 40px;
  }
  .site-header h1 img {
    height: clamp(45px, 5vw, 60px);
  }
  .site-header-right .nav-top {
    gap: clamp(2px, 0.5vw, 6px);
  }
  .site-header-right .nav-top p:first-child {
    font-size: clamp(0.7rem, 1vw, 0.85rem);
  }
  .site-header-right .nav-top span {
    font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  }
  .site-header-right .nav-top p:last-child {
    font-size: clamp(0.65rem, 0.9vw, 0.75rem);
    padding: 2px 6px;
  }
  .site-header-right .global-nav ul {
    gap: clamp(10px, 2vw, 25px);
  }
  .site-header-right .global-nav li a {
    font-size: clamp(0.8rem, 1.1vw, 1rem);
  }
}
@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 20px;
  }
  .site-header h1 img {
    height: 40px;
  }
  .site-header-right {
    flex-direction: column;
    gap: 10px;
  }
  .site-header-right .nav-top {
    align-items: center;
    text-align: center;
    margin-top: 10px;
  }
  .site-header-right .nav-top p:first-child,
  .site-header-right .nav-top p:last-child {
    font-size: 0.8rem;
  }
  .site-header-right .nav-top span {
    font-size: 1.4rem;
  }
  .site-header-right .nav-top p:last-child {
    margin-top: 5px;
  }
  .site-header-right .global-nav ul {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .site-header {
    position: relative;
    padding: 15px 20px;
    align-items: flex-start;
  }
  .hamburger {
    display: flex;
  }
  .site-header-right {
    width: 100%;
  }
  .site-header-right .nav-top {
    display: none;
  }
  .site-header-right .global-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    text-align: center;
    padding: 20px 0;
    z-index: 1000;
  }
  .site-header-right .global-nav ul {
    flex-direction: column;
    gap: 20px;
  }
  .site-header-right .global-nav.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
.toppage-aicatch {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 「SCROLL」部分 */
  /* ↓ 矢印のデザイン */
}
.toppage-aicatch .scroll-text {
  position: absolute;
  bottom: 40px;
  left: 60px;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-transform: uppercase;
  font-size: 1rem;
  color: #C9AB73;
  z-index: 10;
  border-radius: 6px;
  padding: 10px 8px;
  letter-spacing: 0.15em;
  opacity: 0.85;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: scrollfade 2s infinite ease-in-out;
}
.toppage-aicatch .scroll-label {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.toppage-aicatch .scroll-arrow {
  position: relative;
  width: 1px;
  height: 80px;
  background: #C9AB73;
  margin-top: 8px;
}
.toppage-aicatch .scroll-arrow::after {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 2px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #C9AB73;
}
@keyframes scrollfade {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, 10px);
    opacity: 1;
  }
}
.toppage-aicatch .top-images {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}
.toppage-aicatch .fade-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.toppage-aicatch .fade-image.active {
  opacity: 1;
}
.toppage-aicatch .toppage-aicatch-text {
  position: absolute;
  z-index: 2;
  max-width: 1400px;
  width: 90%;
  text-align: left;
  align-items: center;
}
.toppage-aicatch .toppage-aicatch-text .topmain-text {
  animation: fadeIn 1.8s ease both;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  color: var(--sub-textColor2);
}
.toppage-aicatch .toppage-aicatch-text .topmain-text ruby {
  text-align: end;
}
.toppage-aicatch .toppage-aicatch-text .topmain-text ruby rt {
  font-size: 0.95rem;
  letter-spacing: 1.25rem;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.toppage-aicatch .toppage-aicatch-text .topmain-text img {
  display: inline-block;
  vertical-align: -0.25em;
  height: 2.1em;
}
.toppage-aicatch .toppage-aicatch-text .topsub-text {
  font-size: 1rem;
  color: var(--sub-textColor2);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .toppage-aicatch .toppage-aicatch-text .topmain-text {
    font-size: 2.3rem;
    line-height: 1.6;
  }
  .toppage-aicatch .toppage-aicatch-text .topmain-text ruby {
    text-align: end;
  }
  .toppage-aicatch .toppage-aicatch-text .topmain-text ruby rt {
    font-size: 0.75rem;
    letter-spacing: 0.4rem;
  }
  .toppage-aicatch .toppage-aicatch-text .topsub-text {
    font-size: 0.85rem;
  }
  .toppage-aicatch .toppage-aicatch-text .topmain-text img {
    height: 1.4em;
  }
}
@media (max-width: 403px) {
  .toppage-aicatch .toppage-aicatch-text .topmain-text {
    font-size: 1.3rem;
  }
}

.problem {
  background: #f7faff;
  /* 見出し部分 */
}
.problem .sec-title {
  text-align: center;
}
.problem .sec-title .sub-En {
  text-align: center;
}
.problem .sec-title h2 {
  font-weight: 700;
  color: #181d61;
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  padding: 0 30px;
}
.problem .sec-title h2::before, .problem .sec-title h2::after {
  content: "";
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 400px;
  height: 1px;
  background: #0779e4;
}
.problem .sec-title h2::before {
  right: 100%;
  margin-right: 20px;
}
.problem .sec-title h2::after {
  left: 100%;
  margin-left: 20px;
}
.problem .problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .problem .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .problem .problem-grid {
    grid-template-columns: 1fr;
  }
}
.problem .problem-item {
  display: flex;
  flex-direction: column;
  /* ←縦方向に積む */
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  border: 1px solid #b5d3f5;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  /* ▼ ボタン風テキスト（下に固定） */
}
.problem .problem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.problem .problem-item img {
  width: 105px;
  height: 105px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}
.problem .problem-item h3 {
  font-size: 1rem;
  color: #181d61;
  font-weight: 700;
  margin-bottom: 10px;
}
.problem .problem-item ul {
  list-style: disc;
  list-style-position: outside;
  padding: 0 25px;
  margin-bottom: 15px;
}
.problem .problem-item ul li {
  margin-bottom: 15px;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: left;
  display: list-item;
}
.problem .problem-item .service-Btn {
  margin-top: auto;
  /* ←この1行で最下部に配置 */
  background: #2b6ebc;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 18px;
  text-align: center;
  transition: background 0.3s ease;
  display: inline-block;
}
.problem .problem-item .service-Btn:hover {
  background: #181d61;
}

.service-cards {
  margin-bottom: 60px;
  text-align: center;
}
.service-cards .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .service-cards .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .service-cards .cards-grid {
    grid-template-columns: 1fr;
  }
}
.service-cards .card {
  position: relative;
  border: 1px solid #2b6ebc;
  border-radius: 8px;
  padding: 30px 25px 50px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  text-align: left;
  transition: all 0.3s ease;
}
.service-cards .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background-color: #e7f0fa;
}
.service-cards .card .num {
  display: block;
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #2b6ebc;
  margin-bottom: 3px;
}
.service-cards .card .en {
  font-size: 0.8rem;
  font-weight: 600;
  color: #181d61;
  opacity: 0.7;
  margin-bottom: 8px;
}
.service-cards .card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
  margin: 0;
}
.service-cards .card .arrow-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 1px solid #2b6ebc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b6ebc;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.service-cards .card .arrow-link:hover {
  background: #2b6ebc;
  color: #fff;
}

.global-nav a {
  font-size: 14.4px;
  font-weight: 700;
}

.breadcrumb-002 {
  padding: 15px 60px 0px 15px;
  margin: 0 auto;
  display: flex;
  gap: 0 15px;
  list-style: none;
  font-size: 0.9em;
  justify-content: flex-end;
}

.breadcrumb-002 li {
  display: flex;
  align-items: center;
}

.breadcrumb-002 li:first-child::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: "";
}

.breadcrumb-002 li:not(:last-child)::after {
  display: inline-block;
  margin-left: 15px;
  content: "/";
}

.breadcrumb-002 a {
  font-size: 0.75rem;
  text-decoration: none;
}

@media (max-width: 768px) {
  .breadcrumb-002 {
    padding: 15px 20px 0px 15px;
  }
}
.eyecatch {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  /* ============================
     テキスト部分
  ============================ */
  /* ============================
     レスポンシブ（〜768px）
  ============================ */
  /* ============================
     スマホ小サイズ（〜480px）
  ============================ */
}
.eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.eyecatch .eyecatch-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
}
.eyecatch .eyecatch-text .en {
  font-family: "Kanit", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #fff;
}
.eyecatch .eyecatch-text .jp {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 768px) {
  .eyecatch {
    height: 180px;
  }
  .eyecatch .eyecatch-text {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .eyecatch .eyecatch-text .en {
    font-size: 2rem;
  }
  .eyecatch .eyecatch-text .jp {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .eyecatch {
    height: 150px;
  }
  .eyecatch .eyecatch-text .en {
    font-size: 1.6rem;
  }
  .eyecatch .eyecatch-text .jp {
    font-size: 0.9rem;
  }
}

.eyecatch-links {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  background: #fff;
  padding: 30px 20px;
}
.eyecatch-links a {
  display: inline-block;
  background: #181d61;
  color: #fff;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 3px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}
.eyecatch-links a:hover {
  background: #0b2d52;
  transform: translateY(-3px);
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .eyecatch {
    height: 260px;
  }
  .eyecatch .eyecatch-text {
    text-align: center;
  }
  .eyecatch .eyecatch-text .en {
    font-size: 2rem;
  }
  .eyecatch .eyecatch-text .jp {
    font-size: 1rem;
  }
  .eyecatch-links {
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }
  .eyecatch-links a {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
/* 代表挨拶ページ専用 */
#message {
  /* =====================================
     900px以下：縦並びに変更
  ===================================== */
  /* =====================================
     600px以下：さらにコンパクトに
  ===================================== */
}
#message .message-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}
#message .message-left {
  flex: 1.3;
  line-height: 2;
}
#message .message-right {
  flex: 0.8;
}
#message .message-right img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
#message strong {
  text-align: right;
  display: block;
  font-weight: 600;
  margin-top: 20px;
  color: #181d61;
  line-height: 1.8;
}
@media (max-width: 900px) {
  #message .message-wrap {
    flex-direction: column;
    align-items: center;
  }
  #message .message-left {
    order: 2;
  }
  #message .message-right {
    order: 1;
    margin-bottom: 20px;
  }
}
@media (max-width: 900px) {
  #message .message-wrap {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  #message .message-left {
    order: 2;
    width: 90%;
  }
  #message .message-right {
    order: 1;
    margin-bottom: 20px;
    text-align: center;
  }
  #message .message-right img {
    width: 80%;
    max-width: 320px;
    height: auto;
  }
  #message strong {
    text-align: center;
  }
}
@media (max-width: 600px) {
  #message .message-right img {
    width: 90%;
    max-width: 280px;
  }
  #message .message-left {
    width: 95%;
    font-size: 0.95rem;
    line-height: 1.9;
  }
}

.vision--center {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #eaf2fb 0%, #ffffff 60%);
  overflow: hidden;
  isolation: isolate;
  /* グリッド（3列×2行 → レスポンシブで2/1列） */
}
.vision--center .vision-image {
  position: absolute;
  top: 0;
  right: -20%;
  width: 70vw;
  bottom: 0;
  z-index: -1;
  opacity: 0.45;
  overflow: hidden;
}
.vision--center .vision-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
.vision--center .vision-header {
  text-align: left;
  margin-bottom: 40px;
}
.vision--center .vision-eyebrow {
  color: #2b6ebc;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
}
.vision--center .vision-title {
  font-size: clamp(4.2rem, 3.4vw, 2rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.1;
  background: linear-gradient(90deg, #8fb2ef, #002e8d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}
.vision--center .vision-title::after {
  content: "";
  display: block;
  width: 450px;
  height: 3px;
  background: linear-gradient(90deg, #2b6ebc, rgba(43, 110, 188, 0));
  margin: 14px auto 0;
  border-radius: 2px;
}
.vision--center .vision-lead {
  line-height: 2;
  margin: 0 auto;
  font-size: 1rem;
}
.vision--center .vision-grid {
  margin: 48px auto 0;
  padding: 0;
  list-style: none;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1024px) {
  .vision--center .vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .vision--center .vision-grid {
    grid-template-columns: 1fr;
  }
}
.vision--center .vision-card {
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(43, 110, 188, 0.25);
  border-radius: 14px;
  padding: 10px 30px 30px 30px;
  box-shadow: 0 12px 26px rgba(0, 40, 100, 0.08);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vision--center .vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 40, 100, 0.12);
}
.vision--center .vision-card .card-head {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 8px;
}
.vision--center .vision-card .card-head .initial {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2b6ebc;
  font-style: italic;
  letter-spacing: 0.04em;
  min-width: 1.5ch;
  text-align: center;
}
.vision--center .vision-card .card-head .word {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2b6ebc;
  letter-spacing: 0.06em;
}
.vision--center .vision-card .card-head .jp {
  margin-left: 0.5rem;
  font-weight: 700;
  color: rgb(201, 171, 115);
  /* #C9AB73 */
}
.vision--center .vision-card .card-text {
  line-height: 1.9;
  font-size: 0.98rem;
}

.accordioncontent-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
.accordioncontent-wrap .accordion-006,
.accordioncontent-wrap .accordion-007 {
  max-width: 1100px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.accordioncontent-wrap .accordion-006 {
  background-color: #eeeeee;
}
.accordioncontent-wrap .accordion-007 {
  background-color: #181d61;
}

.accordion-006 summary,
.accordion-007 summary {
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2em 2em;
  font-weight: 600;
  cursor: pointer;
}

.accordion-007 summary {
  color: #fff;
}

.accordion-006 summary::after,
.accordion-007 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #c2c2c2;
  border-right: 3px solid #c2c2c2;
  content: "";
  transition: transform 0.3s;
}

.accordion-006[open] summary::after,
.accordion-007[open] summary::after {
  transform: rotate(225deg);
}

.accordion-007 summary::after {
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.open-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px;
}
.open-wrap .open-sub-wrap {
  display: flex;
  flex-direction: column;
}
.open-wrap img {
  width: 45%;
  border-radius: 5px;
}
.open-wrap .open-sub-title {
  font-size: 1.05rem;
  font-weight: 600;
}

.accordion-006 p,
.accordion-007 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion-007 p {
  color: #fff;
}

.accordion-006[open] p,
.accordion-007[open] p {
  transform: none;
  opacity: 1;
}

.accordion-006 img,
.accordion-007 img {
  width: 50%;
}

.accordion-006[open] .open-wrap,
.accordion-007[open] .open-wrap {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* スマホ表示 */
@media (max-width: 768px) {
  .accordion-006 summary,
  .accordion-007 summary {
    padding: 1.5em;
    font-size: 0.85rem;
  }
  .open-wrap {
    flex-direction: column;
  }
  .open-wrap img,
  .open-wrap p {
    width: 100%;
  }
}
#profile {
  position: relative;
}
#profile .profile-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 900px) {
  #profile .profile-inner {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}
#profile .profile-left {
  flex: 1.2;
  line-height: 2;
}
#profile .profile-left span {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #b6c8e1;
  padding-bottom: 10px;
}
#profile .profile-left span strong {
  color: #181d61;
}
#profile .profile-left p {
  margin-bottom: 10px;
}
#profile .profile-left p:last-child {
  margin-bottom: 0;
}
#profile .profile-right {
  flex: 1;
  text-align: right;
}
#profile .profile-right img {
  width: 100%;
  max-width: 420px;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  -o-object-fit: cover;
     object-fit: cover;
}

#company-info .sec-title {
  margin-bottom: 50px;
}
#company-info .company-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 40px 0;
  border-bottom: 1px solid #d6e2f0;
}
#company-info .company-box:last-child {
  border-bottom: none;
}
@media (max-width: 900px) {
  #company-info .company-box {
    flex-direction: column;
    gap: 30px;
  }
}
#company-info .company-text {
  flex: 1;
}
#company-info .company-text table {
  width: 100%;
  border-collapse: collapse;
}
#company-info .company-text table th {
  width: 25%;
  text-align: left;
  font-weight: 700;
  color: #181d61;
  font-size: 1rem;
  padding: 8px 10px;
  border-bottom: 1px solid #C9AB73;
  vertical-align: top;
}
#company-info .company-text table td {
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 8px 10px;
  border-bottom: 1px solid #e2e8f0;
}
#company-info .company-text table tr:last-child th,
#company-info .company-text table tr:last-child td {
  border-bottom: none;
}
#company-info .company-aisome {
  flex: 0.9;
  text-align: center;
}
#company-info .company-aisome img {
  max-width: 280px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 900px) {
  #company-info .company-left table th {
    width: 30%;
  }
  #company-info .company-right img {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  #company-info {
    flex-direction: column;
  }
  #company-info .company-aisome {
    order: 1;
  }
  #company-info .company-text {
    order: 2;
  }
}

.middle-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 15vh;
}

/* 全体グリッド */
#office-list {
  background: linear-gradient(135deg, #f5f7fb 0%, #e9eff7 100%);
  padding: 80px 0;
  /* 共通カード */
  /* 本社カード（地図あり） */
  /* 支店カード（地図なし） */
}
#office-list .office-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
#office-list .office-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 25px;
  display: flex;
  flex-direction: column;
  /* ======================================================
     Googleマップをアスペクト比維持でリサイズ
  ====================================================== */
}
#office-list .office-card .label {
  display: inline-block;
  padding: 10px 22px;
  font-weight: 700;
  color: #fff;
  border-radius: 5px 5px 0 0;
  font-size: 1rem;
  margin-bottom: 20px;
}
#office-list .office-card .label.gold {
  background: linear-gradient(90deg, #c8a94e, #e4c981);
}
#office-list .office-card .label.navy {
  background: linear-gradient(90deg, #181d61, #4b50a5);
}
#office-list .office-card .office-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  #office-list .office-card .office-body {
    flex-direction: column;
    gap: 25px;
  }
}
#office-list .office-card .office-info {
  flex: 1;
  min-width: 280px;
}
#office-list .office-card .office-info p {
  line-height: 1.8;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  #office-list .office-card .office-info p {
    font-size: 0.85rem;
  }
}
#office-list .office-card .office-info dl {
  margin: 0;
}
#office-list .office-card .office-info dl dt {
  font-family: sans-serif;
  font-weight: bold;
  color: #181d61;
  margin-top: 10px;
  font-size: 0.95rem;
}
#office-list .office-card .office-info dl dd {
  font-family: sans-serif;
  margin: 0 0 10px 0;
  padding-left: 8px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
#office-list .office-card .office-info dl a {
  color: #333;
  text-decoration: underline;
  transition: 0.2s;
}
#office-list .office-card .office-info dl a:hover {
  color: #181d61;
}
#office-list .office-card .office-map {
  flex: 1;
  min-width: 320px;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  /* 16:9比率を保つ */
}
#office-list .office-card .office-map::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
#office-list .office-card .office-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}
@media (max-width: 499px) {
  #office-list .office-card .office-map iframe {
    width: 90%;
  }
}
#office-list .office-card.main .office-body {
  flex-direction: row;
  align-items: flex-start;
}
#office-list .office-card.main .office-info {
  flex: 1.2;
}
#office-list .office-card.main .office-map {
  flex: 1;
}
#office-list .office-card.branch {
  max-width: 600px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

#history {
  position: relative;
  overflow: hidden;
  padding: 0;
  /* ---------- 左の年表 ---------- */
  /* ---------- 右のメイン画像 ---------- */
}
#history span {
  font-family: sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: #cddbef;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
#history .history-content {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 50px;
}
@media (max-width: 900px) {
  #history .history-content {
    flex-direction: column;
    gap: 30px;
  }
}
#history .history-list {
  position: relative;
  flex: 1.2;
  padding-left: 50px;
  margin: 0;
  list-style: none;
  /* 縦ライン */
}
#history .history-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #005ed9 0%, #a7c4e8 100%);
}
#history .history-list li {
  position: relative;
  display: flex;
  /* ← 横並びでそろえる */
  align-items: flex-start;
  padding-left: 20px;
}
#history .history-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -45px;
  width: 15px;
  height: 15px;
  background: #005ed9;
  border-radius: 50%;
}
#history .history-list li .year {
  flex: 0 0 100px;
  /* 固定幅で左側をそろえる */
  color: #005ed9;
  font-size: 0.95rem;
  font-weight: 600;
  margin-right: 15px;
  line-height: 1.8;
}
#history .history-list li .text {
  flex: 1;
  /* 残りのスペースいっぱいに広げる */
  color: #686868;
  font-size: 0.95rem;
  line-height: 1.8;
}
#history .history-image {
  flex: 1;
  text-align: right;
  position: relative;
  z-index: 2;
}
#history .history-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  #history .history-image {
    text-align: center;
  }
  #history .history-image img {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  #history span {
    font-size: 2.5rem;
  }
  #history .history-list li {
    padding-left: 0px;
  }
  #history .history-list li .text {
    font-size: 0.75rem;
  }
}

/* ---------- 下の背景画像 ---------- */
.history-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.history-bg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.25;
}

#recruit-info {
  padding: 0 20px;
  margin-bottom: 60px;
}
#recruit-info .recruit-text {
  line-height: 2;
  padding: 80px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
}
@media (max-width: 900px) {
  #recruit-info .recruit-text {
    padding: 20px 0;
  }
  #recruit-info .recruit-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}

#contact-info {
  text-align: center;
  /* ----------------------- 青枠ボックス ----------------------- */
}
#contact-info .contact-text {
  line-height: 1.8;
  max-width: 750px;
  margin: 40px auto;
  text-align: left;
}
#contact-info h2 {
  text-align: left;
}
#contact-info .contact-box {
  display: inline-block;
  border: 1px solid #0071e3;
  border-radius: 4px;
  padding: 30px 140px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 100px;
  /* -----------------------
     ▼ レスポンシブ対応
  ----------------------- */
}
#contact-info .contact-box h3 {
  text-align: center;
  color: #181d61;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
#contact-info .contact-box .tel-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
#contact-info .contact-box .tel-line .label {
  font-size: 0.95rem;
  color: #181d61;
  font-weight: 600;
  font-family: sans-serif;
}
#contact-info .contact-box .tel-line i {
  color: #0071e3;
  font-size: 1.6rem;
}
#contact-info .contact-box .tel-line .number {
  letter-spacing: 0.1rem;
  font-size: 2rem;
  font-weight: 800;
  color: #0071e3;
  font-family: "Kanit", sans-serif;
}
#contact-info .contact-box .tel-line .time {
  text-align: center;
}
@media (max-width: 900px) {
  #contact-info .contact-box {
    padding: 25px 20px;
  }
  #contact-info .contact-box h3 {
    margin-bottom: 8px;
  }
  #contact-info .contact-box .tel-line .number {
    font-size: 1.6rem;
  }
  #contact-info .contact-box .tel-line i {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  #contact-info .contact-box .tel-line .number {
    font-size: 1.2rem;
  }
  #contact-info .contact-box .time {
    font-size: 0.75rem;
  }
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
  /* 左側テキスト */
  /* 右側画像 */
}
@media (max-width: 900px) {
  .service-item {
    flex-direction: column;
    gap: 40px;
  }
}
.service-item .service-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-item .service-text .title-wrapper {
  display: flex;
  align-items: center;
}
.service-item .service-text .title-wrapper .service-circle {
  width: 100px;
  height: 100px;
  background: #e2f3ff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-item .service-text .title-wrapper .service-circle .circle-en {
  font-size: 0.8rem;
  color: #0070c0;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.service-item .service-text .title-wrapper .service-circle .circle-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: #181d61;
  line-height: 1;
}
.service-item .service-text .title-wrapper .service-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #181d61;
  margin: 0 0 15px 15px;
}
.service-item .service-text .service-desc {
  line-height: 1.8;
  margin-bottom: 30px;
}
.service-item .service-text .service-points {
  list-style: none;
  padding: 0;
}
.service-item .service-text .service-points li {
  background: #c8a870;
  color: #fff;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 4px;
  margin-bottom: 12px;
  transition: 0.3s ease;
  text-align: left;
}
.service-item .service-text .service-points li:hover {
  background: #b69256;
  transform: translateY(-2px);
}
.service-item .service-image {
  flex: 1;
}
.service-item .service-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.supoort-price {
  text-align: center;
}

.fee-notice {
  text-align: center;
  color: #0f1d40;
  margin: 60px 0;
  line-height: 1.8;
  /* スマホ時の改行制御 */
}
.fee-notice .free {
  font-size: 1.05rem;
  color: #0f1d40;
  font-weight: 500;
}
.fee-notice .free span {
  color: #0070c0; /* 青で強調 */
  font-weight: 700;
}
.fee-notice .free strong {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.fee-notice .sp-br {
  display: none;
}
@media (max-width: 600px) {
  .fee-notice .sp-br {
    display: block;
  }
}

/* ===============================
   コンテナ全体
   =============================== */
.privacy h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 10px;
  color: #222;
  border-left: 4px solid var(--main-TextColor, #6f80c7);
  padding-left: 12px;
}
.privacy p {
  margin-bottom: 25px;
  font-size: 1rem;
  color: #444;
}
.privacy .align-right {
  text-align: right;
  font-size: 0.95rem;
  color: #555;
  margin-top: 60px;
}

/*-- layoutフォルダの中の_index.scss --*/
/* 特定ページだけ（例：.special-layout を親に付ける） */
.back-gradation {
  background: linear-gradient(135deg, #c9daf1 0%, #ffffff 100%);
}

#toppage-aboutus {
  display: flex;
  flex-direction: column;
  /* ---------- SP対応 ---------- */
}
#toppage-aboutus .toppage-aboutus-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
#toppage-aboutus .toppage-aboutus-top .toppage-aboutus-left {
  flex: 1;
}
#toppage-aboutus .toppage-aboutus-top .toppage-aboutus-left h2 {
  font-size: 2.3rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
#toppage-aboutus .toppage-aboutus-top .toppage-aboutus-left h2::after {
  width: 0px;
}
#toppage-aboutus .toppage-aboutus-top .toppage-aboutus-left p {
  line-height: 2;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}
#toppage-aboutus .toppage-aboutus-top .toppage-aboutus-right {
  flex: 1;
  text-align: center;
}
#toppage-aboutus .toppage-aboutus-top .toppage-aboutus-right img {
  width: 100%;
  max-width: 660px;
  height: auto;
}
@media (max-width: 768px) {
  #toppage-aboutus .toppage-aboutus-top {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  #toppage-aboutus .toppage-aboutus-top .toppage-aboutus-left h2 {
    font-size: 1.15rem;
    margin-bottom: 30px;
  }
  #toppage-aboutus .toppage-aboutus-top .toppage-aboutus-left p {
    margin-bottom: 30px;
    text-align: left;
    padding: 0 40px;
  }
  #toppage-aboutus .toppage-aboutus-top .toppage-aboutus-left a.btn {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
  #toppage-aboutus .toppage-aboutus-top .toppage-aboutus-right {
    margin-top: 20px;
  }
}

.special-layout #toppage-aboutus .toppage-aboutus-top .toppage-aboutus-left {
  flex: 0.8;
}
.special-layout #toppage-aboutus .toppage-aboutus-top .toppage-aboutus-right {
  flex: 1.2;
}

.toppage-aboutus-bottom {
  /* ---------- スマホ対応 ---------- */
}
.toppage-aboutus-bottom .container {
  padding: 30px 20px;
}
.toppage-aboutus-bottom .aboutus-bottom-wrap {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  justify-content: center;
}
.toppage-aboutus-bottom .aboutus-message,
.toppage-aboutus-bottom .aboutus-access {
  max-width: 500px;
  text-align: left;
  /* 画像＋テキスト横並び */
}
.toppage-aboutus-bottom .aboutus-message h2,
.toppage-aboutus-bottom .aboutus-access h2 {
  color: #181d61;
  margin-bottom: 20px;
}
.toppage-aboutus-bottom .aboutus-message .aboutus-inner,
.toppage-aboutus-bottom .aboutus-access .aboutus-inner {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.toppage-aboutus-bottom .aboutus-message img,
.toppage-aboutus-bottom .aboutus-access img {
  width: 45%;
  height: auto;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.toppage-aboutus-bottom .aboutus-message .aboutus-side-text,
.toppage-aboutus-bottom .aboutus-access .aboutus-side-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.toppage-aboutus-bottom .aboutus-message .aboutus-side-text p,
.toppage-aboutus-bottom .aboutus-access .aboutus-side-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}
.toppage-aboutus-bottom .aboutus-message .aboutus-side-text a.btn-line,
.toppage-aboutus-bottom .aboutus-access .aboutus-side-text a.btn-line {
  display: inline-block;
  border: 1px solid #181d61;
  color: #181d61;
  padding: 8px 18px;
  border-radius: 3px;
  text-align: center;
  transition: 0.3s;
}
.toppage-aboutus-bottom .aboutus-message .aboutus-side-text a.btn-line:hover,
.toppage-aboutus-bottom .aboutus-access .aboutus-side-text a.btn-line:hover {
  background-color: #181d61;
  color: #fff;
}
@media (max-width: 768px) {
  .toppage-aboutus-bottom .aboutus-bottom-wrap {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .toppage-aboutus-bottom .aboutus-message,
  .toppage-aboutus-bottom .aboutus-access {
    max-width: 90%;
    text-align: left;
  }
  .toppage-aboutus-bottom .aboutus-message .aboutus-inner,
  .toppage-aboutus-bottom .aboutus-access .aboutus-inner {
    flex-direction: column;
    align-items: center;
  }
  .toppage-aboutus-bottom .aboutus-message img,
  .toppage-aboutus-bottom .aboutus-access img {
    width: 100%;
  }
  .toppage-aboutus-bottom .aboutus-message .aboutus-text,
  .toppage-aboutus-bottom .aboutus-access .aboutus-text {
    text-align: left;
  }
}

.toppage-service {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.toppage-service .sub-En,
.toppage-service .long {
  text-align: left;
}
.toppage-service .price-note {
  padding-bottom: 15px;
  line-height: 2;
}
.toppage-service .price-note p {
  margin-bottom: 20px;
}
.toppage-service .price-note p .note-title {
  margin-bottom: 5px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #181d61;
}
.toppage-service .price-note p .highlight {
  font-size: 1.5rem;
  color: #0779E4;
  background: linear-gradient(transparent 60%, rgba(119, 185, 255, 0.3) 0%);
  padding: 0 2px;
}
.toppage-service .toppage-service-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  margin: 0 auto 60px;
}
.toppage-service .toppage-service-wrap a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  transition: transform 0.3s ease, filter 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* GPUで滑らかにする */
  will-change: transform, filter;
  backface-visibility: hidden;
  transform: translateZ(0);
  /* 半透明オーバーレイ */
}
.toppage-service .toppage-service-wrap a img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  filter: brightness(70%);
  will-change: transform, filter;
}
.toppage-service .toppage-service-wrap a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.6) 100%);
  transition: opacity 0.3s ease;
  opacity: 1;
  will-change: opacity;
  color: #0779E4;
}
.toppage-service .toppage-service-wrap a span {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
}
.toppage-service .toppage-service-wrap a span i {
  font-size: 1.1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.toppage-service .toppage-service-wrap a:hover img {
  transform: scale(1.05);
  filter: brightness(85%);
}
.toppage-service .toppage-service-wrap a:hover::before {
  opacity: 0.9;
}
.toppage-service .toppage-service-wrap a:hover i {
  transform: translateX(5px);
  color: #fff;
}

@media (max-width: 768px) {
  .toppage-service .toppage-service-wrap {
    grid-template-columns: 1fr;
  }
  .toppage-service .price-note p {
    text-align: left;
  }
}
.toppage-reason {
  /* 3つのポイントブロック */
  /* レスポンシブ対応 */
}
.toppage-reason p {
  text-align: center;
  margin-bottom: 60px;
}
.toppage-reason p span {
  border-bottom: 1px solid #181d61;
  font-size: 1.25rem;
  font-weight: 600;
  color: #181d61;
}
.toppage-reason .toppage-3point-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  text-align: left;
}
.toppage-reason .point-content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 30px 30px;
  transition: all 0.3s ease;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  /* 番号アイコン */
  /* メインイラスト */
}
.toppage-reason .point-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.toppage-reason .point-content > img:first-child {
  position: absolute;
  width: 60px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.toppage-reason .point-content > img:nth-child(2) {
  display: block;
  width: 200px;
  height: auto;
  margin: 20px auto;
}
.toppage-reason .point-content h3 {
  font-size: 1.1rem;
  color: #181d61;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  min-height: 3.5em;
}
.toppage-reason .point-content p {
  margin-top: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .toppage-reason .sub-En {
    text-align: left;
  }
  .toppage-reason p {
    text-align: left;
  }
  .toppage-reason p span {
    font-size: 0.95rem;
  }
  .toppage-reason .point-content {
    text-align: center;
    padding: 50px 25px 30px;
  }
  .toppage-reason .point-content > img:first-child {
    left: 20%;
    transform: translateX(-50%);
  }
  .toppage-reason h3 {
    min-height: auto; /* スマホでは自然に崩してOK */
  }
}

.toppage-contact {
  padding: 0px 20px;
  text-align: center;
  /* 見出し部分 */
  /* テキスト部分 */
  /* 電話番号ボックス */
  /* ---------- SP対応 ---------- */
}
.toppage-contact .sec-title {
  text-align: center;
}
.toppage-contact .sec-title .sub-En {
  text-align: center;
}
.toppage-contact .sec-title h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  padding: 0 30px;
}
.toppage-contact .sec-title h2::before, .toppage-contact .sec-title h2::after {
  content: "";
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 400px;
  height: 1px;
  background: #0779e4;
}
.toppage-contact .sec-title h2::before {
  right: 100%;
  margin-right: 20px;
}
.toppage-contact .sec-title h2::after {
  left: 100%;
  margin-left: 20px;
}
.toppage-contact .lead {
  text-align: center;
  color: #333;
  margin-bottom: 40px;
}
.toppage-contact .contact-box {
  background: #0779e4;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  padding: 30px 80px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.toppage-contact .contact-box .tel {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.toppage-contact .contact-box .tel i {
  font-size: 1.6rem;
}
.toppage-contact .contact-box .tel span {
  font-family: "Kanit", sans-serif;
  letter-spacing: 1px;
}
.toppage-contact .contact-box .time {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
@media (max-width: 768px) {
  .toppage-contact {
    /* 左の線（少し長め） */
    /* 右の線（短めで控えめ） */
  }
  .toppage-contact .sec-title h2::before,
  .toppage-contact .sec-title h2::after {
    content: "";
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    height: 1px;
    background: #0779e4;
  }
  .toppage-contact .sec-title h2::before {
    width: 40px;
    left: -40px; /* ← はみ出しを少し抑える */
  }
  .toppage-contact .sec-title h2::after {
    width: 25px; /* ← 右に少しだけ出す */
    right: 0; /* ← もう画面外に出さない */
    margin-left: 10px;
  }
  .toppage-contact .lead {
    text-align: left;
  }
  .toppage-contact .contact-box {
    padding: 12px 30px;
  }
  .toppage-contact .contact-box .tel {
    font-size: 1.2rem;
  }
  .toppage-contact .contact-box .tel i {
    font-size: 1rem;
  }
  .toppage-contact .contact-box .time {
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=style.css.map */