@charset "utf-8";
/* CSS Document */

/* ==== PC前提：横幅1200px固定レイアウト（最小1024px） ==== */
:root {
  --c-primary: #0C79D6; /* メインブルー */
  --c-primary-2: #1AA3D9; /* グラデ相方 */
  --c-deep: #0A4E9C; /* 濃い青 */
  --c-bg: #ffffff;
  --c-muted: #6B7280;
  --c-section-title: #31475d;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(16, 24, 40, .08);
  --container: 1400px;
  --vw: calc(100vw - (100vw - 100%));  /* = 100%視幅 = 100vw - スクロールバー幅 */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #31475d;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: .1em;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict;
}

html, body { overflow-x: clip; }  /* clipが効かない環境では hiddenでもOK */

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: opacity .3s ease; }
a:hover { opacity: .8; }
.btn-pill:hover,
.btn-outline:hover,
.job-cta:hover,
.guide-card:hover,
.slider .btn:hover,
.arrow:hover { opacity: .8; }
/* もと .container { width: var(--container); margin: 0 auto; } */
.container { width: min(92vw, var(--container)); margin: 0 auto; }
.k-container { width: min(67.44444444444444vw, var(--container)); /* 1800px基準で1214px */ margin: 0 auto; }

.band { padding: 80px 0; }

.section-title {
  /* もと font-size: 40px; */
  font-size: min(2.4154589371980677vw /* 1656px基準で40px */, 40px);
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--c-section-title);
  line-height: 0; /* ご要望どおり維持 */
}

.lead { color: #576170; margin-top: 10px; }

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eef2f7;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px; /* 添付の見た目に合わせて少し高め */
}

.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.logo img { width: 320px; } /* ひとまずPC基準 */

header nav { flex: 1 1 auto; min-width: 0; }
nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  min-width: 0;
}

nav a {
  font-weight: 500;
  color: #252a2f;
  padding: 10px 0;
  border-radius: 0;
  position: relative;
}

/* さりげない下線ホバー（添付の“スッキリ感”優先） */
#globalNav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: #813037;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  opacity: .45;
}
#globalNav a:hover::after { transform: scaleX(1); }

/* ===== Hamburger (PCでは非表示) ===== */
.hamburger { display: none; }

.hamburger span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: #0A4E9C; border-radius: 999px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger span:nth-child(1){ top: 12px; }
.hamburger span:nth-child(2){ top: 19px; }
.hamburger span:nth-child(3){ top: 26px; }
body.nav-open .hamburger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
body.nav-open .hamburger span:nth-child(2){ opacity: 0; }
body.nav-open .hamburger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero（Corporate TOP：行ごとフェード） ===== */
.hero--corp .hero-copy{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  pointer-events: none;
}

.hero--corp .copy-wrap{
  width: min(92vw, 720px);
  margin: 0;
}

.hero-lines{
  margin: 0;
  display: grid;
  gap: 16px;
}

.hero-line{
  display: inline-block;
  width: fit-content;
  background: rgba(255,255,255,.88);
  padding: 15px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
  transition: opacity .9s ease, transform .9s ease, filter .9s ease;
  will-change: opacity, transform, filter;
  color: #7b3a3a; /* ひとまず既存の世界観寄せ。必要なら色指定ください */
  font-family: "Zen Old Mincho", serif;
  border-radius: 10px;
}

.hero-line--sm{
  font-size: 23px;
  letter-spacing: .02em;
}

.hero-line--lg{
  font-size: 32px;
  letter-spacing: .02em;
}

.hero-line.is-on{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ===== RECRUIT フロート（デザイン寄せ） ===== */
.recruit-float{
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 100;
  width: 420px;          /* 横を少し広げる（必要なら微調整） */
  height: 250px;         /* ★縦を伸ばす：添付に寄せる */
  border-radius: 18px;
  overflow: hidden;
  display: block;
  padding: 0;
  text-decoration: none;
  color: #0a4e9c;
  background: transparent;             /* ★全体には白グラデを掛けない */
  box-shadow: 0 18px 44px rgb(255 255 255 / 50%);
}

/* 背景写真（全面） */
.recruit-float::before{
  content:"";
  position: absolute;
  inset: 0;
  background: url("../images/recruit-bnr.jpg") center/cover no-repeat; /* ★実画像に合わせる */
  transform: scale(1.02);
  transition: transform .35s ease; /* ★戻りもゆっくり */
}

/* ※全体グラデ（今までの ::after）は削除/無効化したいので、ここでは使わない */
.recruit-float::after{
  content:none;
}

/* テキスト群（3要素）を“帯”として一体化して左下に固定 */
.recruit-float__label,
.recruit-float__sub,
.recruit-float__arrow{
  position: absolute;
  z-index: 2;
}

.recruit-float__label{
  left: 22px;
  bottom: 54px;
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 26px;
  line-height: 1;
  padding-left: 10px;
  padding-bottom: 5px;
}

.recruit-float__sub{
  left: 34px;
  bottom: 30px;
  font-size: 14px;
  color: #252a2f;
  font-weight: 800;
  letter-spacing: .06em;
}

.recruit-float__arrow{
  left: 102px;   /* 位置はそのまま微調整OK */
  bottom: 36px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #0a4e9c; /* RECRUITの青に合わせる */
  opacity: .9;
}

/* ★白系グラデで“囲む帯”：テキスト3要素の背面だけに敷く */
.recruit-float__label::before{
  content:"";
  position: absolute;
  left: -8px;
  bottom: -40px;
  width: 215px;          /* 帯の横幅（必要なら微調整） */
  height: 95px;         /* 帯の高さ */
  border-radius: 14px;
  background: linear-gradient(90deg,
  rgba(255,255,255,.92) 0%,
  rgba(255,255,255,.78) 60%,
  rgba(255,255,255,.55) 100%
  );
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
  z-index: -1;
}

/* ★帯の中だけ：薄い青系グラデのレイヤー（“全体”ではなく帯の中だけ） */
.recruit-float__label::after{
  content:"";
  position: absolute;
  left: -8px;
  bottom: -40px;
  width: 215px;
  height: 95px;
  border-radius: 14px;
  background: linear-gradient(135deg,
  rgba(70,140,210,.16) 0%,
  rgba(70,140,210,.06) 55%,
  rgba(255,255,255,0) 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* hover（控えめ） */
.recruit-float:hover{
  transition: transform .2s ease;
}
.recruit-float:hover::before{
  transform: scale(1.06);
}

/* ===== Hero ===== */
.hero { position: relative; isolation: isolate; }

.hero-bg {
  position: relative;
  width: 100%;
  height: 956px;
  overflow: hidden;
}

/* 背景スライド（フェード切替） */
.hero-slide {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  opacity: 0; transition: opacity 1.6s ease;
  will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }

.hero-bg::after { content: ""; position: absolute; inset: 0; }

.hero-copy {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none; z-index: 2;
}
/* もと .hero-copy .copy-wrap { width: var(--container); margin: 0 auto; color: #2a70ba; } */
.hero-copy .copy-wrap { width: var(--container); color: #2a70ba; }

.hero-title {
  font-size: 45px; line-height: 1.7; font-weight: 800; letter-spacing: .02em; margin: 0;
  font-family: "Klee One", cursive;
  text-shadow:
  0 0 5px rgba(255,255,255,0.8),
  0 0 10px rgba(255,255,255,0.6),
  0 0 15px rgba(255,255,255,0.4);
  width: 560px; margin-bottom: 30px;
}
.hero-sub {
  font-size: 20px; line-height: 2; margin-top: 14px; color: #2a70ba;
  width: 420px; margin-left: 10px;
  text-shadow:
  0 0 5px rgba(255,255,255,0.8),
  0 0 10px rgba(255,255,255,0.6),
  0 0 15px rgba(255,255,255,0.4);
}

.hero-logo { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transition: opacity .8s ease .1s; z-index: 2; }
.hero-logo .mark {
  width: 180px; height: 180px; border-radius: 50%;
  background: url("../images/logo-s.svg") center/cover no-repeat;
  mix-blend-mode: screen; opacity: .5;
}
.hero-logo.show { opacity: .9; }

.char { opacity: 0; transform: translateY(.4em); display: inline-block; }
.char.on { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }

/* ===== お知らせ ===== */
.news-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; margin-bottom: 30px;
}
.news-head .left { display: flex; flex-direction: column; }

.eyebrow {
  font-weight: 400; letter-spacing: .18em; color: var(--c-primary);
  /* もと font-size: 25px; */
  font-size: min(1.5096618357487923vw /* 1656px基準で25px */, 25px);
  display: inline-block; position: relative;
  padding-bottom: 6px; margin-bottom: 6px; line-height: 1.2;
  width: max-content; max-width: 100%;
  font-family: "Klee One", cursive; font-style: italic;
}
.eyebrow::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:100%;
  background: linear-gradient(90deg, var(--c-primary), var(--c-primary-2));
  transform: scaleX(0); transform-origin: left center; transition: transform .6s ease;
}

.news-head .desc { max-width: 520px; text-align: right; /* もと font-size: 18px; */ font-size: min(1.0869565217391304vw /* 1656px基準で18px */, 18px); }

.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 60px; }
.sec-head .left { display: flex; flex-direction: column; }
.sec-head .desc { max-width: 760px; text-align: right; /* もと font-size: 18px; */ font-size: min(1.0869565217391304vw /* 1656px基準で18px */, 18px); line-height: 1.8; }

.news { padding: 56px 0; }
.news-list { margin-top: 20px; border-top: 1px solid #e8eef5; }
.news-row {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 24px; align-items: center; padding: 28px 0; border-bottom: 1px solid #e8eef5;
}
.news-row div:nth-child(1){ color:#7189a1; /* もと font-size: 18px; */ font-size: min(1.0869565217391304vw /* 1656px基準で18px */, 18px); font-weight:600; }
.news-row div:nth-child(2){ /* もと font-size: 17px; */ font-size: min(1.0265700483091789vw /* 1656px基準で17px */, 17px); }
.news-row a { color:#0A4E9C; font-weight:500; }

.news-more { margin-top: 34px; text-align: center; }
.btn-link { color:#0A4E9C; font-weight:800; }
.btn-outline {
  display:inline-flex; align-items:center; gap:8px; padding:10px 36px;
  border:1px solid #0A4E9C; border-radius:999px; font-weight:500; color:#0A4E9C; background:#fff;
}
.btn-outline::after { content:"›"; font-size:18px; line-height:1; }

/* ===== 修志会グループについて ===== */
.about { background: linear-gradient(90deg, #1f66b2 0%, #2c8fcf 50%, #46b3da 100%); color:#ffffff; }
.about .section-title{ color:#ffffff; }
.about .eyebrow{ color:#e3f2ff; }
.about .eyebrow::after { background: linear-gradient(90deg, #e3f2ff, #bfe5ff); transform: scaleX(0); transform-origin: left center; transition: transform .6s ease; }
.about .lead{ color: rgba(255,255,255,1); }
.about p{ color: rgba(255,255,255,1); /* もと font-size: 18px; */ font-size: min(1.0869565217391304vw /* 1656px基準で18px */, 18px); line-height:2.6; }

.about-grid { display:grid; /* もと grid-template-columns:1fr 700px; */ grid-template-columns: 1fr min(700px, 48vw); gap:48px; margin-top:24px; align-items:start; }
.about-photos { position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.about-photos .ph {
  position:relative; border-radius:0; overflow:hidden; box-shadow:0 10px 28px rgba(0,0,0,.18);
  /* もと height:660px; */ height:39.85507246376812vw; /* 1656px基準で660px */ opacity:0; transform: translateY(28px);
}
.about-photos .ph img { width:100%; height:100%; object-fit:cover; }
.about-photos .ph:nth-child(1){ margin-top:0; }
.about-photos .ph:nth-child(2){ margin-top:24px; }
.about-photos .ph:nth-child(3){ margin-top:48px; }
.about-photos .ph.in { opacity:1; transform: translateY(0); transition: opacity .8s ease, transform .8s ease; }

/* ===== 動画セクション ===== */
.videos { padding:90px 0; }
.video-grid { display:grid; grid-template-columns:1fr; gap:64px; margin-top:22px; }
.grad-a { position:relative; padding-top:8px; backdrop-filter:saturate(160%) blur(10px); /* もと width:1200px; */ width:72.46376811594203vw; /* 1656px基準でwidth:1200px; */ margin-left:auto; padding-bottom:40px; margin-bottom:70px; }
.grad-b { position:relative; padding-top:8px; backdrop-filter:saturate(160%) blur(10px); /* もと width:1200px; */ width:72.46376811594203vw; /* 1656px基準でwidth:1200px; */ margin-right:auto; padding-bottom:40px; margin-bottom:70px; }
.grad-a::before{ content:""; position:absolute; inset:16px 12px auto 92px; height:calc(100%); z-index:0; top:40px; }
.grad-b::before{ content:""; position:absolute; inset:16px 62px auto 0;   height:calc(100%); z-index:0; top:40px; }
.video-card.grad-a::before,
.video-card.grad-b::before { background: url("../images/vide-bg.jpg") center/cover no-repeat; }

.video-head {
  position:relative; z-index:1; display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
  margin:0 12px 50px; width:100%; flex-wrap:wrap; background:none; backdrop-filter:none; border-bottom:none; padding-right:260px;
}
.grad-b .video-head { padding-right:120px; }

.video-title { /* もと font-size:35px; } */ font-size: min(2.1135265700483092vw /* 1656px基準で35px */, 35px); line-height:1.6; color:#265382; margin:0; font-weight:500; font-family:"Zen Old Mincho", serif; width:100%; margin-bottom:10px; }
.grad-b .video-title { /* もと padding-left:210px; */ padding-left:12.681159420289855vw; /* 1656pxpadding-left:210px; */ }

.video-cast { white-space:nowrap; color:#265382; margin:6px 8px 0 0; width:100%; /* もと font-size:22px; } */ font-size: min(1.328502415458937vw /* 1656px基準で22px */, 22px); text-align:right; font-family:"Zen Old Mincho", serif; font-weight:600; }

.ytbox { position:relative; z-index:1; overflow:hidden; aspect-ratio:16/9; cursor:pointer; box-shadow:var(--shadow); background:#000; /* もと width:980px; */ width:59.17874396135265vw; /* 1656px基準でwidth:980px; */ }
.grad-b .ytbox { margin-left:205px; }
.ytbox img { width:100%; height:100%; object-fit:cover; display:block; opacity:.92; }
.ytplay {
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  border:none; border-radius:50%; width:72px; height:72px; background:rgba(255,255,255,.9);
  display:grid; place-items:center; font-size:28px; font-weight:900; color:#0A4E9C; box-shadow:0 6px 18px rgba(0,0,0,.25);
}

/* ===== 数字でわかる修志会の魅力（PC/タブ）: viewwide互換の安定版 ===== */
.facts { background: linear-gradient(90deg, var(--c-primary), var(--c-primary-2)); color:#1b2a4a; }
.facts .section-title { color:#fff; }

/* 3カラム（幅が狭ければ2→1に落とす） */
.fact-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;                 /* 境界線デザイン維持 */
  margin-top: 22px;
}
@media (max-width: 1200px){
  .fact-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 900px){
  .fact-grid{ grid-template-columns: 1fr; }
}

.fact{
  background:#fff;
  border-right:1px solid #d7e3f1;
  border-bottom:1px solid #d7e3f1;
  padding:22px 24px;
  min-height:220px;
}
.fact:nth-child(-n+3){ border-top:1px solid #d7e3f1; }
.fact:nth-child(3n+1){ border-left:1px solid #d7e3f1; }
@media (max-width:1200px){
  /* 2カラム時の左端補正 */
  .fact:nth-child(2n+1){ border-left:1px solid #d7e3f1; }
  .fact:nth-child(3n+1){ border-left:none; }
}

.fact .head{
  display:inline-block;
  padding:6px 22px;
  border-radius:999px;
  background:#2a70ba;
  color:#fff;
  font-weight:600;
  font-size:18px;
}

/* カード内：上段（アイコン＋数値列）と下段（説明）を縦積み */
.fact .body{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin-top: 14px;
}

/* ── 上段：アイコン＋（数値＋単位） ──
ここで“ベースライン揃え”と“段落開始位置揃え”を行う */
.fact .body > div{
  display:flex;
  align-items: center;          /* アイコンの縦位置を中央に */
  gap: 16px;
  min-height: 120px;            /* 同じ行のdesc開始位置を揃える要 */
  flex-wrap: wrap;              /* 幅が足りない環境でも崩さず折返し */
}

/* アイコンはサイズをclampで安定（vw依存をやめる） */
.fact .icon{
  width: clamp(80px, 10vw, 150px);
  height: clamp(60px, 7vw, 100px);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.fact .icon img{
  width: clamp(40px, 4.2vw, 65px);
  height: auto;
  display:block;
}

/* 数値＋単位は“ベースライン”を合わせる */
.fact .value,
.fact .unit{
  line-height: 1;
  white-space: nowrap;
}

/* 重要：数値と単位をベースライン揃えにするための行内フレックス */
.fact .value,
.fact .unit{
  display:inline-flex;
  align-items: baseline;    /* ← これで 38.6 と 「歳」「%」の基準線が合う */
}

/* 値と単位のサイズをclampで安定（viewwideでも暴れない） */
.fact .value{
  font-size: clamp(38px, 4.2vw, 75px);
  font-weight:700;
  color:#589de5;
  letter-spacing:0;
}
.fact .unit{
  font-size: clamp(16px, 1.6vw, 30px);
  margin-left: clamp(4px, .4vw, 8px);
  color:#589de5;
}

/* 下段の説明は“常に上から”開始＝行頭が揃う（上段高さ統一とセット） */
.fact .desc{
  margin: 0;
  font-size: 15px;
  line-height: 2;
  align-self: stretch;   /* 幅いっぱいで読みやすく */
}

/* ===== Fix: ring が汎用 .value の指定に上書きされないよう強制 ===== */
.fact .value.ring{
  display: grid !important;       /* ← inline-flex 等を打ち消す */
  place-items: center;
  position: relative;
  width: clamp(150px, 18vw, 250px);
  height: clamp(90px, 10vw, 120px);
  font-size: clamp(18px, 1.6vw, 30px);
  font-weight: 900;
  color: #589de5;
}
/* 数値の右側に来る単位（% / 歳 / 日 など）を“下付け”に見せる */
.fact .value:not(.ring) + .unit{
  display: inline-block;
  margin-left: -.3em;
  letter-spacing: -0.02em;
  transform: translateY(0.52em);
}
.fact .value.ring span{ position: relative; z-index: 2; }
/* SVGは全面に・はみ出しを許可して描画ラインを見やすく */
.fact .value.ring svg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;               /* 念のためクリップ防止 */
}
/* 初期値：未描画（dashoffset: 345） */
.fact .value.ring circle{
  fill: transparent;
  stroke: #e5eef8;
  stroke-width: 8;
  stroke-dasharray: 345;
  stroke-dashoffset: 345;          /* ← 初期は隠す */
  transition: stroke-dashoffset 1.2s ease;
}

/* 交差したら描画（JSで .draw を付与） */
.fact .value.ring.draw circle{
  stroke-dashoffset: 0;
}

/* ==== Facts（PC）：アイコン＋リングは常に横並び・折り返し禁止 ==== */
@media (min-width: 768px){
  /* リングが含まれる行だけ対象に（他のカードは変更しない） */
  .fact .body > div:has(.value.ring){
    display: inline-flex;     /* その行だけシンプルな横並び */
    flex-wrap: nowrap;        /* 折り返し禁止 */
    align-items: center;      /* 縦位置中央 */
    gap: 12px;                /* 余白は最小限 */
    white-space: nowrap;      /* 強制的に回り込みさせない */
    min-height: 120px;        /* 既存と同じ高さでdescの行頭ズレ防止 */
  }
  .fact .body > div:has(.value.ring) .icon{
    flex: 0 0 auto;                          /* 縮みすぎ防止 */
    min-width: clamp(64px, 8vw, 120px);
  }
  .fact .body > div:has(.value.ring) .value.ring{
    flex: 0 0 auto;                          /* 回り込みさせない */
    width: clamp(130px, 12vw, 200px);        /* 窓幅に応じて軽く縮む */
    aspect-ratio: 1 / 1;                     /* 円を維持 */
  }
}

/* ===== 施設・料金案内（3カード） ===== */
.guide { padding:100px 0 120px; background:#fff; }
.guide-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:24px; }

/* ---- Guide：下からふわっと（reduceでも軽く移動） ---- */
.guide-card{
  position: relative;
  opacity: 0;
  transform: translate3d(0, 28px, 0);          /* ← 初期位置を下げる */
  transition: transform .48s ease, opacity .48s ease;
  will-change: transform, opacity;
}
.guide-card.in{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ユーザーが“動きを抑制”設定でも、完全静止にはしない（軽い移動だけ） */
@media (prefers-reduced-motion: reduce){
  .guide-card{
    transform: translate3d(0, 10px, 0) !important;  /* ← 以前の transform:none を上書き */
    transition-duration: 1.00s;
  }
  .guide-card.in{
    transform: translate3d(0, 0, 0) !important;
  }
}

.guide-card img { width:100%; height:260px; object-fit:cover; display:block; }
.guide-card::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(15, 23, 42, .78) 0%, rgba(15, 23, 42, .55) 40%, rgba(15, 23, 42, 0) 72%);
  z-index:0;
}
.guide-body {
  position:absolute; left:26px; right:16px; bottom:24px;
  display:flex; align-items:center; justify-content:space-between; gap:10px; z-index:1; color:#fff;
}
.guide-left { display:flex; flex-direction:column; gap:10px; }
.guide-tag {
  display:inline-block; padding:2px 10px; border:1px solid rgb(255 255 255 / 50%);
  font-size:14px; letter-spacing:.1em; color:#ffffff; backdrop-filter: blur(2px); width:max-content; font-weight:600;
}
.guide-title {
  margin:0; font-size:27px; line-height:1.4; font-weight:700; color:#ffffff;
  text-shadow:0 2px 8px rgba(0,0,0,.25); letter-spacing:2px;
}
.guide-arrow {
  min-width:44px; height:44px; border-radius:50%; display:grid; place-items:center;
  background:rgba(255,255,255,.9); color:#0A4E9C; font-weight:900; box-shadow:var(--shadow); cursor:pointer;
}

/* ===== 現場の仕事紹介 ===== */
.jobs { padding:80px 0; background:#faf9f7; }
.jobs .more {
  display:inline-flex; align-items:center; gap:6px; padding:8px 24px; border:1px solid #0A4E9C; border-radius:999px; color:#0A4E9C; font-weight:500; background:#fff; margin:0 auto;
}
.job-list { display:grid; grid-template-columns:1fr; gap:8px; margin-top:22px; }

.job {
  position:relative; display:grid; grid-template-columns:360px 1fr; gap:90px; align-items:center; padding:18px 0;
  opacity:0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform;
}
.job::after {
  content:""; position:absolute; left:0; right:0; bottom:35px; height:1px;
  background: linear-gradient(90deg, transparent 0 140px, #ffffff 140px 280px, #cfd3d8 280px 100%);
  z-index:1; pointer-events:none;
}
.job.in { opacity:1; transform: translateY(0); }
/* motion削減設定でも“その場表示”にしない（軽い移動＋短いフェード） */
@media (prefers-reduced-motion: reduce){
  .job{
    transform: translate3d(0, 10px, 0) !important;
    transition-duration: 1s;
  }
  .job.in{
    transform: translate3d(0, 0, 0) !important;
  }
}

.job .img { width:100%; height:280px; overflow:hidden; }
.job .img img { width:100%; height:100%; object-fit:cover; }
.job .txt { padding-right:64px; position:relative; z-index:2; }
.job .en { display:block; font-size:12px; font-weight:400; letter-spacing:.1em; color:#818487; margin-bottom:2px; }
.job h3 { font-size:30px; margin:0 0 6px; color:#05203a; letter-spacing:.1em; }
.job p { margin:0; color:#05203a; font-size:16px; line-height:2; }
.job .arrow {
  position:absolute; right:0; top:50%; transform:translateY(-50%);
  width:40px; height:40px; border-radius:50%; background: linear-gradient(90deg, var(--c-primary), var(--c-primary-2));
  display:grid; place-items:center; color:#fff; font-weight:900;
}

/* ===== 募集情報（CTAボタン） ===== */
.jobs-cta { padding:120px 0 150px; }
.job-cta-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:22px; }
.job-cta {
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:36px 28px; background:#fff; box-shadow:var(--shadow); transition: transform .15s ease, box-shadow .15s ease; border-radius:20px;
}
.job-cta:focus-visible { outline:3px solid #93c5fd; outline-offset:3px; }
.job-cta .left { display:flex; flex-direction:column; gap:4px; text-align:center; width:calc(100% - 50px); }
.job-cta .en { font-size:18px; letter-spacing:.08em; color:#94d0ed; font-weight:600; }
.job-cta .jp { font-size:28px; color:#1f4b88; font-weight:600; }
.job-cta .arrow {
  min-width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:#22a4e2; color:#fff; font-weight:700; font-size:16px; padding-bottom:0;
}
.job-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(16,24,40,.12); }
.job-cta:focus-visible { outline:3px solid #93c5fd; outline-offset:2px; }
.job-cta-grid:focus-within .job-cta { opacity:.98; }

/* カード全体をクリック可能にする透明ヒットエリア */
.job { position: relative; }
.job .job-hit{
  position: absolute;
  inset: 0;                /* 記事全体を覆う */
  z-index: 3;              /* 上に置いてクリック拾う（視覚は透明） */
  background: transparent;
  text-decoration: none;
  /* アクセシビリティ（キーボードフォーカス見えるように） */
  outline: none;
}
.job .job-hit:focus-visible{
  outline: 3px solid #93c5fd;
  outline-offset: 4px;
  border-radius: 12px;     /* 角丸はお好みで */
}

/* 見た目（丸矢印）はそのまま。ボタンらしくカーソル */
.job .arrow{ cursor: pointer; }

/* クリック時の小さなフィードバック（任意） */
.job:active { transform: translateY(0.5px); }

/* ===== 働く人の声（スライダー） ===== */
.voices { background: linear-gradient(90deg, #1f66b2 0%, #2c8fcf 50%, #46b3da 100%); color:#0d2750; }
.voices .section-title { color:#ffffff; }
.voices .sec-head .desc { color:#ffffff; }
.voices .more {
  display:inline-flex; align-items:center; gap:6px; padding:8px 24px; border:1px solid #0A4E9C; border-radius:999px; color:#0A4E9C; font-weight:500; background:#fff; margin:0 auto;
}

.slider {
  position:relative; overflow:hidden;
  width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  padding: 0 96px; /* 矢印の下に来ない左右余白 */
}
.track {
  display:flex; gap:25px; will-change: transform; padding:0; position:relative; transform: translate3d(0,0,0);
}
.track, .voice { user-select: none; -webkit-user-drag: none; }
.voice {
  width:490px; flex:0 0 490px; background:#fff; border-radius:16px; box-shadow:var(--shadow); overflow:hidden; transform: scale(.94) translateZ(0);
}
.voice .thumb { height:326px; overflow:hidden; }
.voice .thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.voice .body { padding:36px; display:flex; flex-direction:column; align-items:flex-start; }
.voice h3 { margin:2px 0 8px; font-size:24px; color:#1f4b88; font-weight:500; }
.voice .meta { font-size:14px; color:#1f4b88; margin-bottom:10px; }
.voice p { color:#161616; margin:0 0 14px; font-size:15px; }
.voice .more {
  display:inline-flex; align-items:center; gap:6px; padding:8px 24px; border:1px solid #0A4E9C; border-radius:999px; color:#0A4E9C; font-weight:500; background:#fff; margin:0 auto;
}

/* カード全体をクリック可能にする透明ヒットエリア（VOICES） */
.voice { position: relative; }
.voice .voice-hit{
  position: absolute;
  inset: 0;                 /* カード全面を覆う */
  z-index: 3;               /* 見た目は透過、クリックだけ受ける */
  background: transparent;
  text-decoration: none;
  outline: none;
}

/* 「続きを読む」は上に載せて個別クリックも可能に */
.voice .more{
  position: relative;
  z-index: 4;               /* ヒットエリアより前面 */
  pointer-events: auto;
}

/* フォーカスリング（キーボード操作の可視化） */
.voice .voice-hit:focus-visible{
  outline: 3px solid #93c5fd;
  outline-offset: 4px;
  border-radius: 12px;      /* カード角丸に合わせるなら調整可 */
}

.slider .nav { position:absolute; inset:0; pointer-events:none; z-index:3; }
.slider .btn {
  position:absolute; pointer-events:auto; top:50%; transform:translateY(-50%);
  width:64px; height:64px; border-radius:50%; border:0;
  background-color: var(--c-primary);
  color: transparent; font-size:0;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  box-shadow:0 8px 18px rgba(12,121,214,.25); z-index:4;
}
.slider .btn:hover { transform: translateY(-50%) scale(1.04); }
.slider .btn:active { transform: translateY(-50%) scale(0.98); }
.slider .btn:focus-visible { outline:3px solid #e5f0ff; outline-offset:3px; }
.slider .btn[data-prev]{ left:22px; }
.slider .btn[data-next]{ right:22px; }
.slider .btn[data-prev]{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 18 9 12 15 6'/></svg>");
  background-repeat:no-repeat; background-position:center; background-size:22px 22px;
}
.slider .btn[data-next]{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 18 15 12 9 6'/></svg>");
  background-repeat:no-repeat; background-position:center; background-size:22px 22px;
}

/* ===== フッター ===== */
footer { background:#074e99; color:#ffffff; }
.footer-wrap { padding:120px 0; }
.footer-top { display:grid; grid-template-columns:1fr 600px; gap:40px; align-items:start; }
.footer-brand { display:flex; flex-direction:column; gap:16px; }
.footer-logo { display:flex; align-items:center; margin-bottom:15px; }
.footer-logo img { width:496px; display:block; }
.footer-badges { display:flex; gap:12px; flex-wrap:wrap; }
.btn-pill {
  display:inline-flex; align-items:center; gap:8px; padding:18px 36px; border-radius:10px; background:#fff; color:#285d9f; font-weight:500;
  box-shadow:0 4px 10px rgba(0,0,0,.12); margin-bottom:20px;
}
.btn-ghost {
  display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.6); color:#e8f2ff; font-weight:800;
}
.footer-address { margin-top:6px; line-height:1.9; font-size:17px; letter-spacing:.1em; }

.footer-links {
  width:600px; display:flex; flex-wrap:wrap; align-items:flex-start; justify-content:space-between;
}
.footer-links ul {
  width:290px; margin:0; padding:0; list-style:none; display:flex; flex-wrap:wrap; align-items:flex-start; gap:0;
}
.footer-links a { color:#e8f2ff; }
.footer-links a:hover { opacity:.6; }

.footer-bottom {
  position:absolute; left:50%; bottom:0%; transform:translate(-50%,-50%);
  color:#434A52; font-weight:400; font-size:14px; text-align:center; letter-spacing:.1em;
}
.footer-links li {
  padding:22px 0; border-top:1px solid rgba(160, 200, 255, .28);
  width:100%; display:flex; align-items:center; justify-content:flex-start;
}
.footer-links li:last-child { border-bottom:1px solid rgba(160, 200, 255, .28); }

/* ===== 最下部ビジュアル（修正版） ===== */
.closing {
  width: 100%;
  background: url("../images/extra-bg.png") center bottom/cover no-repeat;

}
.closing .img {
  width: 1400px;
  margin: 0 auto;
  height:600px;
  overflow:hidden;
  position:relative;
  /* 背景画像を下部に固定 */
  background: url("../images/extra-1.png") center bottom/cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
}
.closing .img::after { content:""; position:absolute; inset:0; }

/* キャプションを上部に配置（握手部分と被らないように） */
.closing .caption {
  position:relative;
  z-index: 1;
  color:#074e99;
  font-weight:400;
  font-size:32px;
  text-align:center;
  letter-spacing:.02em;
  font-family:"Klee One", cursive;
  /* キャプションの最大幅を設定 */
  max-width: 90%;
  line-height: 1.6;
}
.closing .caption .char {
  display:inline-block; opacity:0; transform: translateY(.4em);
  transition: opacity .5s ease, transform .5s ease; will-change: opacity, transform;
}
.closing .caption .char.on { opacity:1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .closing .caption .char { transition:none; opacity:1; transform:none; }
}

@media (max-width: 767.98px) {
  .closing .img {
    width: 100%;
    margin: 0 auto;
    overflow:hidden;
    position:relative;
    /* 背景画像を下部に固定 */
    background: url("../images/extra-1-sp.png") center bottom/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0px;
  }

}

.eyebrow.is-draw::after { transform: scaleX(1); }

.hamburger:focus-visible,
.btn-outline:focus-visible,
.job-cta:focus-visible { outline:3px solid #93c5fd; outline-offset:3px; }

/* 既存の 1400px/1280px の調整はそのまま活かす前提 */

/* ==== ヘッダーの横はみ出し対策（募集要項を隠さない） ==== */

/* ヘッダー内だけは 1400px を上限に、画面幅に追随 */
header .container {
  width: min(var(--container), 100%);
  padding-inline: 16px;      /* 端の当たり防止 */
  box-sizing: border-box;
}

/* ロゴとナビのレイアウト調整：ナビ側に“縮む余地”を与える */
.header-wrap { display: flex; align-items: center; gap: 16px; }
.logo       { flex: 0 0 auto; }
header nav  { flex: 1 1 auto; min-width: 0; }  /* ← ここが重要 */
nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: nowrap;         /* 折返しなし */
  min-width: 0;              /* 子の縮小を許可 */
}

/* 1400px未満で相対縮小（フォント/パディング/ロゴ） */
@media (max-width: 1400px) {
  .logo img { width: clamp(240px, 22vw, 320px); }
  header nav { font-size: clamp(13px, 1.05vw, 16px); }
  nav a { padding: 10px 0; }
  nav ul { gap: clamp(12px, 1.8vw, 28px); }
}
@media (max-width: 1280px) {
  .logo img { width: clamp(200px, 18vw, 320px); }
  header nav { font-size: clamp(13px, 1.0vw, 15px); }
  nav ul { gap: clamp(10px, 1.4vw, 22px); }
}

/* 予期せぬはみ出しの最終ガード（横スクロール抑止） */
html, body { overflow-x: clip; }

/* PCでは非表示 */
.sp-fab-wrap {
  display: none !important;
}

/* スマホ（767.98px以下）のみ表示 */
@media (max-width: 767.98px) {
  .sp-fab-wrap {
    display: flex !important;
  }
}

/* ここから追加 */

/*---------------------------------
テキスト頭揃え
---------------------------------*/
.indent00-05 {
  display: block;
  text-indent: -0.5em;
  padding: 0 0 0 0.5em;
}
.indent01-01 {
  display: block;
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.indent01-05 {
  display: block;
  text-indent: -1.5em;
  padding: 0 0 0 1.5em;
}

/*---------------------------------
ページトップ
---------------------------------*/
#pagetopwrap {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/* 初期は非表示 → JSのfadeIn/Outに引き渡す */
#pagetop {
  display: none;
  position: fixed;
  right: 1.2077294685990339vw;   /* 1656基準で20px */
  bottom: 1.2077294685990339vw;  /* 1656基準で20px */
  width: 6.038647342995169vw;    /* 1656基準で100px */
  margin: 0;
  z-index: 100;
}

#pagetop a {
  display: block;
  width: 100%;
  -webkit-filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
  transition: transform .5s, filter .5s;
}

#pagetop a:hover {
  opacity: 1;
  transform: translateY(-0.603864734299516vw); /* 10px相当だけ持ち上げ */
  -webkit-filter: drop-shadow(0 0 5px rgba(255,255,255,1));
  filter: drop-shadow(0 0 5px rgba(255,255,255,1));
}@media screen and (max-width: 767.98px) {
#pagetopwrap {
  width: 96%;
  margin: 0 auto;
  position: relative;
}

#pagetop {
  /* 初期は非表示（JSで制御） */
  display: none;
  position: fixed;
  right: 2.666666666666667vw;  /* 750基準で20px */
  bottom: 2.666666666666667vw; /* 750基準で20px */
  width: 13.333333333333334vw; /* 750基準で100px */
  margin: 0;
  z-index: 100;
}

#pagetop a {
  display: block;
  width: 100%;
  -webkit-filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
  transition: transform .5s, filter .5s;
}

#pagetop a:hover {
  opacity: 1;
  transform: translateY(-1.3333333333333335vw); /* 10px相当 */
  -webkit-filter: drop-shadow(0 0 5px rgba(255,255,255,1));
  filter: drop-shadow(0 0 5px rgba(255,255,255,1));
}
}

/*---------------------------------
下層メインビジュアル
---------------------------------*/
#k-mainvisualwrap01 {
  width: 100%;
  position: relative;
  margin: 0;
}
#k-mainvisualwrap01 img {
  width: 100%;
  height: auto;
}
#k-mainvisualwrap01 h1{
  width: min(92vw, var(--container));
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  color: #2a70ba;
  font-size: min(1.6908212560386473vw /* 1656px基準で28px */, 28px);
  font-weight: 800;
  letter-spacing: .02em;
  font-family: "Klee One", cursive;
  text-shadow:
  0 0 10px rgba(232,240,249,0.8),
  0 0 15px rgba(232,240,249,0.8),
  0 0 30px rgba(232,240,249,0.8);
}
span.occupationlabel01 {
  display: table;
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 600;
  line-height: 100%;
  color: #ffffff;
  background: #1f4b88;
  margin: 1.9444444444444444vw 0 0; /* 1800px基準でmargin: 35px 0 0; */
  padding: 0.3em 1em;
  text-shadow: none;
}
span.occupationlabel01 img {
  display: inline-block;
  width: 1.2222222222222223vw !important; /* 1800px基準でwidth: 22px; */
  height: auto;
  margin: 0 0 0 1em;
  vertical-align: text-bottom;
}
#k-mainvisualunderinfowrap01 {
  width: 100%;
  background: #c9e7f6;
  padding: 1.2222222222222223vw; /* 1800px基準でpadding: 22px; */
}
#k-mainvisualunderinfowrap02 {
  width: 66.66666666666666vw; /* 1800px基準でwidth: 1200px; */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}
.k-mainvisualunderinfoinner01 {
  width: calc(100% - 40%);
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 500;
  color: #3e3a3a;
}
.k-mainvisualunderinfoinner01:nth-child(2) {
  width: 40%;
  line-height: 180%;
}
.k-mainvisualunderinfoinner01 ul {
  display: table;
  margin: 0 0 0.5em;
  padding: 0;
}
.k-mainvisualunderinfoinner01 ul:last-child {
  margin: 0;
  padding: 0;
}
.k-mainvisualunderinfoinner01 ul li {
  display: table-cell;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9444444444444444vw; /* 1800px基準でfont-size: 17px; */
}
.k-mainvisualunderinfoinner01 ul li:nth-child(1) {
  width: 7em;
  color: #2a70ba;
}
.k-mainvisualunderinfoinner01 ul li:nth-child(2) {
  width: calc(100% - 7em);
}
@media screen and (max-width: 767.98px) {
  #k-mainvisualwrap01 {
    width: 100%;
    position: relative;
    margin: 50px 0 0;
  }
  #k-mainvisualwrap01 img {
    width: 100%;
    height: auto;
  }
  #k-mainvisualwrap01 h1{
    width: 92vw;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    color: #2a70ba;
    font-size: clamp(20px, 6vw, 25px);
    font-weight: 800;
    letter-spacing: .02em;
    font-family: "Klee One", cursive;
    text-shadow:
    0 0 10px rgba(232,240,249,0.8),
    0 0 15px rgba(232,240,249,0.8),
    0 0 30px rgba(232,240,249,0.8);
  }
  span.occupationlabel01 {
    display: table;
    font-size: 2vw; /* 750px基準でfont-size: 15px; */
    font-weight: 600;
    line-height: 100%;
    color: #ffffff;
    background: #1f4b88;
    margin: 2vw 0 0; /* 750px基準でmargin: 15px 0 0; */
    padding: 0.3em 1em;
    text-shadow: none;
  }
  span.occupationlabel01 img {
    display: inline-block;
    width: 2.666666666666667vw !important; /* 750px基準でwidth: 20px; */
    height: auto;
    margin: 0 0 0 1em;
    vertical-align: text-bottom;
  }
  #k-mainvisualunderinfowrap01 {
    width: 100%;
    background: #c9e7f6;
    padding: 2.666666666666667vw 0; /* 750px基準でpadding: 20px 0; */
  }
  #k-mainvisualunderinfowrap02 {
    width: 94%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px 0;
  }
  .k-mainvisualunderinfoinner01 {
    width: 100%;
    font-size: 2.2666666666666666vw; /* 750px基準でfont-size: 17px; */
    font-weight: 500;
    color: #3e3a3a;
  }
  .k-mainvisualunderinfoinner01:nth-child(2) {
    width: 100%;
    line-height: 180%;
  }
  .k-mainvisualunderinfoinner01 ul {
    display: table;
    margin: 0 0 0.5em;
    padding: 0;
  }
  .k-mainvisualunderinfoinner01 ul:last-child {
    margin: 0;
    padding: 0;
  }
  .k-mainvisualunderinfoinner01 ul li {
    display: table-cell;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 2.2666666666666666vw; /* 750px基準でfont-size: 17px; */
  }
  .k-mainvisualunderinfoinner01 ul li:nth-child(1) {
    width: 7em;
    color: #2a70ba;
  }
  .k-mainvisualunderinfoinner01 ul li:nth-child(2) {
    width: calc(100% - 7em);
  }
}

/*---------------------------------
パンくずリスト
---------------------------------*/
.breadcrumb {
  width: min(92vw, var(--container));
  margin: 36px auto 0;
  color: #31475d;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* 各アイテム */
.breadcrumb li {
  display: flex;
  align-items: center;
}

/* セパレーター（>）を自動追加 */
.breadcrumb li::after {
  content: ">";
  margin-left: 6px;
  color: #31475d;
  font-size: 12px;
}

/* 最後の要素はセパレーター不要 */
.breadcrumb li:last-child::after {
  content: "";
}

/* リンク */
.breadcrumb a {
  color: #31475d;
  text-decoration: none;
  padding: 0;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* SP は少し文字大きめに */
@media (max-width: 767.98px) {
  .breadcrumb {
    width: 92vw;
    font-size: 13px;
    font-weight: 500;
    margin: 12px auto 0;
  }
}

/*---------------------------------
ページ説明ボックス
---------------------------------*/
.pagedetailwrap01 {
  width: min(92vw, var(--container));
  margin: 65px auto;
}
.pagedetailwrap01 ul {
  display: block;
  margin: 0;
  padding: 0;
}
.pagedetailwrap01 ul li {
  display: block;
  text-align: center;
  line-height: 200%;
}
.pagedetailcatch01 {
  font-size: 2vw; /* 1800px基準でfont-size: 36px; */
  font-weight: 800;
  letter-spacing: .02em;
  font-family: "Klee One", cursive;
  text-align: center;
  color: #265382;
}
@media (max-width: 767.98px) {
  .pagedetailwrap01 {
    width: 92vw;
    margin: 20px auto;
  }
  .pagedetailwrap01 ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .pagedetailwrap01 ul li {
    display: block;
    text-align: left;
    line-height: 180%;
  }
  .pagedetailcatch01 {
    font-size: 4vw; /* 750px基準でfont-size: 30px; */
    font-weight: 800;
    letter-spacing: .02em;
    font-family: "Klee One", cursive;
    text-align: center !important;
    color: #265382;
  }
}

/*---------------------------------
カテゴリー
---------------------------------*/
#categorywrap01 {
  width: 100%;
  background: rgba(234,240,252,1.0);
}
#categorywrap02 {
  width: min(67.44444444444444vw, var(--container)); /* 1800px基準で1214px */
  margin: 0 auto;
  padding: 65px 0;
}
.category-line-wrap {
  display: flex;
  align-items: center;
  padding: 0 0 50px;
}

.category-title {
  font-size: 22px;
  font-weight: 600;
  color: #1f4b88;
  margin-right: 1em;
}

.category-line {
  flex: 1;
  height: 1px;
  background: #bbd3f2;
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}

.category-list li {
  flex: 0 0 calc((100% - 128px) / 5); /* 5列固定 + gap考慮 */
  box-sizing: border-box;
}

.category-list button {
  width: 100%;
  background: #a8d8f0;
  box-shadow: 1px 1px 7px 0px rgba(108, 150, 203, 0.3);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 0.8em;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.category-list button:hover {
  background: #5587be;
  color: #fff;
}

.category-list .is-active {
  background: #5587be;
  color: #fff;
}
@media (max-width: 767.98px) {
  #categorywrap01 {
    width: 100%;
    background: rgba(234,240,252,1.0);
  }
  #categorywrap02 {
    width: 94%;
    margin: 0 auto;
    padding: 20px 0;
  }
  .category-line-wrap {
    display: flex;
    align-items: center;
    padding: 0 0 20px;
  }

  .category-title {
    font-size: clamp(16px, 5vw, 20px);
    font-weight: 600;
    margin-right: 1em;
  }

  .category-line {
    flex: 1;
    height: 1px;
    background: #bbd3f2;
  }
  .category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
  }

  .category-list li {
    flex: 0 0 calc((100% - 15px) / 2);
  }

  .category-list button {
    width: 100%;
    background: #a8d8f0;
    box-shadow: 1px 1px 7px 0px rgba(108, 150, 203, 0.3);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: none;
    padding: 0.8em;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
  }

  .category-list button:hover {
    background: #5587be;
    color: #fff;
  }

  .category-list .is-active {
    background: #5587be;
    color: #fff;
  }
  .news-heading {
    position: relative;
    border-top: 1px solid #000;
    margin: 50px 0 30px;
    padding-top: 25px; /* ラベル分の余白 */
  }
}

/*---------------------------------
下層お知らせ
---------------------------------*/
.k-news { padding: 56px 0; }
.k-news-list { margin-top: 20px; border-top: 1px solid #e8eef5; }
.k-news-row {
  display: grid;
  grid-template-columns: 140px 160px 1fr;
  grid-template-areas: "c1 c2 c3";
  gap: 24px; align-items: center; padding: 28px 0; border-bottom: 1px solid #e8eef5;
}
.k-news-row div:nth-child(1){ grid-area: c1; color:#7189a1; /* もと font-size: 18px; */ font-size: min(1.0869565217391304vw /* 1656px基準で18px */, 18px); font-weight:600; }
.k-news-row div:nth-child(2){ grid-area: c2; }
.k-news-row div:nth-child(2) p{ font-size: min(1.0869565217391304vw /* 1656px基準で18px */, 18px); font-weight:600; line-height: 180%; text-align: center; background: #2d6bae; color: #ffffff; }
.k-news-row div:nth-child(3){ grid-area: c3; /* もと font-size: 17px; */ font-size: min(1.0265700483091789vw /* 1656px基準で17px */, 17px); }
.k-news-row a { color:#0A4E9C; font-weight:500; }

.k-news-more { margin-top: 34px; text-align: center; }
.k-btn-outlineprev {
  display:inline-flex; align-items:center; gap:8px; padding:10px 36px; margin: 0 50px 0 0;
  border:1px solid #0A4E9C; border-radius:999px; font-weight:500; color:#0A4E9C; background:#fff;
}
.k-btn-outlinenext {
  display:inline-flex; align-items:center; gap:8px; padding:10px 36px;
  border:1px solid #0A4E9C; border-radius:999px; font-weight:500; color:#0A4E9C; background:#fff;
}
.k-btn-outlineprev::before { content:"←"; font-size:18px; line-height:1; }
.k-btn-outlinenext::after { content:"→"; font-size:18px; line-height:1; }

#k-news-detailwrap01 {
  padding: 0 0 28px;
  border-bottom: 1px solid #e8eef5;
}
#k-news-detailinner01 {
  width: 56.888888888888886vw; /* 1800px基準で1024px */
  margin: 0 auto;
}
#k-news-date01 {
  font-size: min(1.0869565217391304vw /* 1656px基準で18px */, 18px);
  font-weight: 600;
  color: #7189a1;
  margin: 0 0 1.5em;
}
#k-news-categoty01 {
  width: 160px;
}
#k-news-categoty01 p {
  font-size: min(1.0869565217391304vw /* 1656px基準で18px */, 18px);
  font-weight: 600;
  line-height: 180%;
  text-align: center;
  background: #2d6bae;
  color: #ffffff;
  margin: 0;
}
#k-news-title01 {
  display: table;
  font-size: min(1.0869565217391304vw /* 1656px基準で18px */, 18px);
  font-weight: 600;
  color: #31475d;
  padding: 85px 0 0;
  margin: 0 0 70px;
  border-bottom: 1.5px solid #76828e;
}
#k-news-contentswrap01 {
  display: block;
  font-size: min(1.0265700483091789vw /* 1656px基準で17px */, 17px);
  font-weight: 500;
  line-height: 180%;
}
#k-news-contentswrap01 img {
  display: block;
  width: auto !important;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767.98px) {
  .k-news { padding: 36px 0; }
  .k-news-list { border-top: none; }
  .k-news-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-areas:
    "c1 c2"
    "c3 c3"; /* c3 を下段1カラムで全幅 */
    gap: 5px 15px; align-items: center; padding: 12px 0; border-bottom: 1px solid #e8eef5;
  }
  .k-news-row div:nth-child(1){ grid-area: c1; color:#7189a1; font-size: 15px; font-weight:600; }
  .k-news-row div:nth-child(2){ grid-area: c2; }
  .k-news-row div:nth-child(2) p{ width: 160px; font-size: 15px; font-weight:600; line-height: 180%; text-align: center; background: #2d6bae; color: #ffffff; margin: 0; }
  .k-news-row div:nth-child(3){ grid-area: c3; font-size: 15px; }
  .k-news-row a { color:#0A4E9C; font-weight:500; }

  .k-news-more { margin-top: 34px; text-align: center; }
  .k-btn-outlineprev {
    display:inline-flex; align-items:center; gap:8px; padding:10px 36px; margin: 0 50px 0 0;
    border:1px solid #0A4E9C; border-radius:999px; font-weight:500; color:#0A4E9C; background:#fff;
  }
  .k-btn-outlinenext {
    display:inline-flex; align-items:center; gap:8px; padding:10px 36px;
    border:1px solid #0A4E9C; border-radius:999px; font-weight:500; color:#0A4E9C; background:#fff;
  }
  .k-btn-outlineprev::before { content:"←"; font-size:18px; line-height:1; }
  .k-btn-outlinenext::after { content:"→"; font-size:18px; line-height:1; }

  #k-news-detailwrap01 { padding: 0 0 28px; border-bottom: 1px solid #e8eef5; }
  #k-news-detailinner01 {
    width: 100%;
    margin: 0 auto;
  }

  #k-news-detailwrap01 {
    padding: 0 0 28px;
    border-bottom: 1px solid #e8eef5;
  }
  #k-news-detailinner01 {
    width: 100%;
    margin: 0 auto;
  }
  #k-news-date01 {
    font-size: 15px;
    font-weight: 600;
    color: #7189a1;
    margin: 0 0 15px;
  }
  #k-news-categoty01 {
    width: 160px;
  }
  #k-news-categoty01 p {
    font-size: 15px;
    font-weight: 600;
    line-height: 180%;
    text-align: center;
    background: #2d6bae;
    color: #ffffff;
    margin: 0;
  }
  #k-news-title01 {
    display: table;
    font-size: 15px;
    font-weight: 600;
    color: #31475d;
    padding: 15px 0 0;
    margin: 0 0 15px;
    border-bottom: 1.5px solid #76828e;
  }
  #k-news-contentswrap01 {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 180%;
  }
  #k-news-contentswrap01 img {
    display: block;
    width: auto !important;
    max-width: 100%;
    height: auto;
  }
}

/*---------------------------------
ボーダータイトル
---------------------------------*/
.bluebordertitlewrap01 {
  width: 100%;
  border-bottom: 17px solid #2a70ba;
  filter: drop-shadow(0px 10px 10px rgba(108,150,203,0.6));
  margin: 0 0 97px;
}
.bluebordertitlewrap02 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
}
.bluebordertitlewrap02 p {
  display: table;
  font-size: 24px;
  font-weight: 600;
  color: #cbe0f6;
  text-decoration: underline;
  text-decoration-color: #cbe0f6;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 8px;
  background: #2a70ba;
  margin: 0;
  padding: 22px 60px 6px 42px;
  clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 767.98px) {
  .bluebordertitlewrap01 {
    width: 100%;
    border-bottom: 10px solid #2a70ba;
    filter: drop-shadow(0px 5px 5px rgba(108,150,203,0.6));
    margin: 0 0 25px;
  }
  .bluebordertitlewrap02 {
    width: 100%;
    margin: 0 auto;
  }
  .bluebordertitlewrap02 p {
    display: table;
    font-size: 16px;
    font-weight: 600;
    color: #cbe0f6;
    text-decoration: underline;
    text-decoration-color: #cbe0f6;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 8px;
    background: #2a70ba;
    margin: 0;
    padding: 12px 2.0em 6px 1.0em;
    clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
  }
}

/*---------------------------------
タブ（詳細はeasy-responsive-tabs.css）
---------------------------------*/
#tabwrap01 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto 160px;
}

/*-- クリニック情報タブ詳細 --*/
.clinictabdetailwrap01 {
  width: auto;
  font-size: 0.8888888888888888vw; /* 1800px基準でfont-size: 16px; */
  font-weight: 600;
  line-height: 140%;
  color: #31475d;
}
.clinictabdetailwrap01:nth-child(1) {
  width: 36.11111111111111vw !important; /* 1800px基準でwidth: 650px; */
}
.clinictabdetailwrap01:nth-child(2),
.clinictabdetailwrap01:nth-child(3) {
  width: 11.11111111111111vw !important; /* 1800px基準でwidth: 200px; */
}
.clinictabdetailwrap01:nth-child(4) {
  width: 8.333333333333332vw !important; /* 1800px基準でwidth: 150px; */
}
.clinictabdetailwrap01 ul {
  display: block;
  margin: 0;
  padding: 0;
}
.clinictabdetailwrap01 ul li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
/*-- クリニック情報タブボタン --*/
.clinictabname01 {
  font-size: 1.2222222222222223vw; /* 1800px基準でfont-size: 22px; */
  line-height: 160%;
  color: #1f4b88;
}
.clinictabtel01 {
  margin: 0.5em 0 !important;
}
.clinictab-more {
  font-size: 0.6666666666666667vw; /* 1800px基準でfont-size: 12px; */
  text-align: center;
  margin: 0;
}
.clinictabbtn-outlinenext {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:5px 10px;
  border:1px solid #0A4E9C;
  border-radius:999px;
  font-weight:500;
  color:#0A4E9C;
  background:#fff;
}
.clinictabbtn-outlinenext::after {
  content:"→";
  font-size: 0.6666666666666667vw; /* 1800px基準でfont-size: 12px; */
  line-height:1;
}
@media (max-width: 767.98px) {
  #tabwrap01 {
    width: 94%;
    margin: 0 auto 30px;
  }

  /*-- クリニック情報タブ詳細 --*/
  .clinictabdetailwrap01 {
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    line-height: 160%;
    color: #31475d;
  }
  .clinictabdetailwrap01:nth-child(1) {
    width: 100%!important;
  }
  .clinictabdetailwrap01:nth-child(2),
  .clinictabdetailwrap01:nth-child(3) {
    width: 100%!important;
  }
  .clinictabdetailwrap01:nth-child(4) {
    width: 100%!important;
  }
  .clinictabdetailwrap01 ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .clinictabdetailwrap01 ul li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  /*-- クリニック情報タブボタン --*/
  .clinictabname01 {
    font-size: 18px;
    line-height: 160%;
    color: #1f4b88;
  }
  .clinictabtel01 {
    margin: 0 !important;
  }
  .clinictab-more {
    font-size:18px;
    text-align: center;
    margin: 0.5em 0 0;
  }
  .clinictabbtn-outlinenext {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 36px;
    border:1px solid #0A4E9C;
    border-radius:999px;
    font-weight:500;
    color:#0A4E9C;
    background:#fff;
  }
  .clinictabbtn-outlinenext::after {
    content:"→";
    font-size:18px;
    line-height:1;
  }
}

/*---------------------------------
仕事を知る
---------------------------------*/
.job-descriptiondetailwrap01 {
  width: 100%;
  margin: 65px 0;
  background: #faf9f7;
}
.job-descriptiondetailwrap02 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  padding: 65px 0;
}
.job-descriptiondetailinner01 {
  display: flex;
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.job-descriptiondetailinner01:last-child {
  padding: 0;
}
.job-descriptiondetailinner01 .sec-head {
  margin: 0;
}
.job-descriptiondetailinner01 .sec-head span.subtitlewrap01 {
  font-size: 1.9444444444444444vw; /* 1800px基準でfont-size: 35px; */
  font-weight: 500;
  line-height: 100%;
  color: #31475d;
  border-left: 10px solid #43aacc;
  padding: 0 1em;
  margin: 0 0 0 1em;
  vertical-align: middle;
}
.job-descriptiondetailinner01 .sec-head span.subsmalltitlewrap01 {
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.1em;
  color: #94d0ed;
  vertical-align: middle;
}
.job-descriptiondetailinner01 .sec-head {
  width: 100%;
  display: flex;
  align-items: start;
  flex-direction: column;
}
.job-descriptiondetailinner01 .sec-head .desc {
  max-width: 100%;
  text-align: left;
  font-size: min(1.0869565217391304vw /* 1656px基準で18px */, 18px);
  line-height: 1.8;
}
.job-descriptiondetailinner02 {
  display: flex;
  gap: 0 4.444444444444445vw; /* 1800px基準でgap: 0 80px; */
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.job-descriptiondetailinner02:last-child {
  padding: 0; /* 1800px基準でpadding: 0; */
}
.job-descriptiondetailcontents01 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.job-descriptiondetailcontents01:nth-child(1) {
  width: calc(100% - 35.16666666666667vw); /* 1800px基準でwidth: calc(100% - 633px); */
}
.job-descriptiondetailcontents01:nth-child(2) {
  width: 35.16666666666667vw; /* 1800px基準でwidth: 633px; */
}
.job-descriptiondetailcontents02 {
  width: auto;
  display: flex;
}
.job-descriptiondetailcontents02:nth-child(1) {
  width: calc(100% - 24.055555555555554vw); /* 1800px基準でwidth: calc(100% - 433px); */
}
.job-descriptiondetailcontents02:nth-child(2) {
  width: 24.055555555555554vw; /* 1800px基準でwidth: 433px; */
  flex-direction: column;
  align-items: flex-start;
}
.job-descriptiondetailtitlewrap01 {
  border-bottom: 1px solid #c8d5e2;
  margin: 0 0 20px;
  padding: 0 0 20px;
}
.job-descriptiondetailtitlewrap01 ul {
  display: block;
  margin: 0;
  padding: 0;
}
.job-descriptiondetailtitlewrap01 ul li {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.job-descriptiondetailtitlewrap01 ul li:nth-child(1) {
  font-size: 1.9444444444444444vw; /* 1800px基準でfont-size: 35px; */
  font-weight: 500;
  color: #31475d;
  border-left: 10px solid #43aacc;
  padding: 0 1em;
}
.job-descriptiondetailtitlewrap01 ul li:nth-child(2) {
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 500;
  color: #94d0ed;
}
.job-descriptiondetailtextwrap01 {
  width: 100%;
  padding: 0 20px 0 0;
}
.job-descriptiondetailbtnwrap01 {
  display: block;
  margin-top: auto;
}
.job-descriptiondetailiconwrap01 {
  width: 6.388888888888888vw; /* 1800px基準でwidth: 115px; */
}
.job-descriptiondetailwrap03 {
  width: calc(100% - 6.388888888888888vw); /* 1800px基準でwidth: calc(100% - 115px); */
}
.job-descriptiondetailwrap03 ul {
  display: block;
  margin: 0;
  padding: 1.3888888888888888vw 0 0 1.9444444444444444vw; /* 1800px基準でpadding: 25px 0 0 35px; */
}
.job-descriptiondetailwrap03 ul li {
  width: 100%;
  line-height: 2.3;
  margin: 0;
  padding: 0 0 0 1em;
}
.note-line01 {
  background-image: linear-gradient(180deg, #ddd 1px, transparent 1px);
  background-size: 100% 2.3em;
  background-position: bottom 1px center;
}
.job-descriptiondetailwrap03 ul li.job-descriptionlisttitle01 {
  display: table;
  font-size: 1.3888888888888888vw; /* 1800px基準でfont-size: 25px; */
  font-weight: 500;
  color: #2a70ba;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  text-decoration: underline;
  text-decoration-color: #2a70ba;
  text-underline-offset: 10px;
}

#rewardingwrap01 {
  width: 100%;
  background: rgba(234,240,252,1.0);
}
#rewardingwrap02 {
  width: min(67.44444444444444vw, var(--container)); /* 1800px基準で1214px */
  margin: 0 auto;
  padding: 0 0 65px;
  position: relative;
}
.rewarding-title-wrap {
  display: flex;
  align-items: center;
  padding: 0 0 50px;
}
.rewarding-title {
  font-size: 1.9444444444444444vw; /* 1800px基準でfont-size: 35px; */
  font-weight: 400;
  font-family: "Klee One", cursive; font-style: italic;
  line-height: 100%;
  color: #2a70ba;
  margin: -0.6em 0 0;
}

.rewardingdetailinner01 {
  display: flex;
  gap: 0 3.3333333333333335vw; /* 1800px基準でgap: 0 60px; */
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.rewardingdetailinner01:last-child {
  padding: 0; /* 1800px基準でpadding: 0; */
}
.rewardingdetailcontents01 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.rewardingdetailcontents01:nth-child(1) {
  width: calc(100% - 24.055555555555554vw); /* 1800px基準でwidth: calc(100% - 433px); */
  order: 2;
}
.rewardingdetailcontents01:nth-child(2) {
  width: 24.055555555555554vw; /* 1800px基準でwidth: 433px; */
  order: 1;
}

.rewardingdetailwrap01 {
  width: 100%;
}
.rewardingdetailwrap01 ul {
  display: block;
  margin: 0;
  padding: 1.3888888888888888vw 0 0 1.9444444444444444vw; /* 1800px基準でpadding: 25px 0 0 35px; */
}
.rewardingdetailwrap01 ul li {
  width: 100%;
  line-height: 2.3;
  margin: 0;
  padding: 0 0 0 1em;
}
.rewardingdetailwrap01 ul li.rewardinglisttitle01 {
  display: table;
  font-size: 1.3888888888888888vw; /* 1800px基準でfont-size: 25px; */
  font-weight: 500;
  color: #2a70ba;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  text-decoration: underline;
  text-decoration-color: #2a70ba;
  text-underline-offset: 10px;
}

.job-descriptionschedulewrap01 {
  width: 66.66666666666666vw; /* 1800px基準で1200px */
  margin: 0 auto;
  padding: 0 0 65px;
}
.job-descriptionscheduletitle01 {
  display: table;
  font-size: 1.3888888888888888vw; /* 1800px基準でfont-size: 25px; */
  font-weight: 500;
  color: #2a70ba;
  margin: 0 auto 50px;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: #2a70ba;
  text-underline-offset: 10px;
}
.job-descriptioncomparisonwrap01 {
  width: 47.888888888888886vw; /* 1800px基準で862px */
  margin: 0 auto;
  padding: 0 0 65px;
}
.job-descriptioncomparisontitle01 {
  display: table;
  font-size: 1.3888888888888888vw; /* 1800px基準でfont-size: 25px; */
  font-weight: 500;
  color: #2a70ba;
  margin: 0 auto 50px;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: #2a70ba;
  text-underline-offset: 10px;
}

/*---------------------------------
Point ボックス（仕事を知る／やりがい 共通・PC）
---------------------------------*/

.job-descriptionpointwrap01 {
  margin: 30px 0 20px 30px;
  padding: 20px 25px;
  border: 1px solid #94d0ed;
  border-radius: 20px;
  background: #ffffff;
}

.job-descriptionpointlabel01 {
  display: inline-block;
  margin: 0 0 15px;
  font-size: 0.8888888889vw; /* 1800px基準で16px */
  font-weight: 600;
  color: #94d0ed;
  text-decoration: underline;
  text-decoration-color: #94d0ed;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.job-descriptionpointtext01 {
  margin: 0;
  font-size: 0.8888888889vw; /* 16px相当 */
  line-height: 1.6;
  color: #31475d;
}
@media (max-width: 767.98px) {
  .job-descriptiondetailwrap01 {
    width: 100%;
    margin: 30px 0;
    background: #faf9f7;
  }
  .job-descriptiondetailwrap02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 30px 0;
  }
  .job-descriptiondetailinner01 {
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
  }
  .job-descriptiondetailinner01:last-child {
    padding: 0;
  }
  .job-descriptiondetailinner02 {
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
  }
  .job-descriptiondetailinner02:last-child {
    padding: 0;
  }

  .job-descriptiondetailinner01 .sec-head {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    margin: 0;
  }
  .job-descriptiondetailinner01 .sec-head .desc {
    width: 100%;
    max-width: 100%;
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 0;
  }
  .job-descriptiondetailinner01 .sec-head span.subtitlewrap01 {
    display: table-cell;
    width: auto;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    color: #31475d;
    border-left: 10px solid #43aacc;
    padding: 0 0.5em;
    margin: 0;
    vertical-align: middle;
  }
  .job-descriptiondetailinner01 .sec-head span.subsmalltitlewrap01 {
    display: table-cell;
    width: auto;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.1em;
    color: #94d0ed ;
    vertical-align: middle;
  }
  .job-descriptiondetailcontents01 {
    width: auto;
    display: flex;
    flex-direction: column;
  }
  .job-descriptiondetailcontents01:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
  }
  .job-descriptiondetailcontents01:nth-child(2) {
    width: 100%;
  }
  .job-descriptiondetailcontents02 {
    width: auto;
    display: flex;
  }
  .job-descriptiondetailcontents02:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
  }
  .job-descriptiondetailcontents02:nth-child(2) {
    width: 100%;
    flex-direction: column;
  }
  .job-descriptiondetailtitlewrap01 {
    border-bottom: 1px solid #c8d5e2;
    margin: 0 0 10px;
    padding: 0 0 10px;
  }
  .job-descriptiondetailtitlewrap01 ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .job-descriptiondetailtitlewrap01 ul li {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .job-descriptiondetailtitlewrap01 ul li:nth-child(1) {
    font-size: 20px;
    font-weight: 500;
    color: #31475d;
    border-left: 10px solid #43aacc;
    padding: 0 0.5em;
  }
  .job-descriptiondetailtitlewrap01 ul li:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    color: #94d0ed;
  }
  .job-descriptiondetailtextwrap01 {
    width: 100%;
    padding: 0;
  }
  .job-descriptiondetailbtnwrap01 {
    display: table;
    margin: 1em auto 0;
  }
  .job-descriptiondetailiconwrap01 {
    width: 9.333333333333334vw; /* 750px基準でwidth: 70px; */
  }
  .job-descriptiondetailwrap03 {
    width: calc(100% - 9.333333333333334vw); /* 750px基準でwidth: calc(100% - 70px); */
  }
  .job-descriptiondetailwrap03 ul {
    display: block;
    margin: 0;
    padding: 0.6666666666666667vw 0 0 2.666666666666667vw; /* 750px基準でpadding: 5px 0 0 20px; */
  }
  .job-descriptiondetailwrap03 ul li {
    width: 100%;
    line-height: 2.3;
    margin: 0;
    padding: 0 0 0 1em;
  }
  .note-line01 {
    background-image: linear-gradient(180deg, #ddd 1px, transparent 1px);
    background-size: 100% 2.3em;
    background-position: bottom 1px center;
  }
  .job-descriptiondetailwrap03 ul li.job-descriptionlisttitle01 {
    display: table;
    font-size: 16px;
    font-weight: 500;
    color: #2a70ba;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    text-decoration: underline;
    text-decoration-color: #2a70ba;
    text-underline-offset: 5px;
  }

  #rewardingwrap01 {
    width: 100%;
    background: rgba(234,240,252,1.0);
  }
  #rewardingwrap02 {
    width: 94%;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
  }
  .rewarding-line-wrap {
    display: flex;
    align-items: center;
    padding: 0 0 20px;
  }
  .rewarding-title-wrap {
    display: flex;
    align-items: center;
    padding: 0 0 10px;
  }
  .rewarding-title {
    font-size: clamp(16px, 5vw, 20px);
    font-weight: 400;
    font-family: "Klee One", cursive; font-style: italic;
    line-height: 100%;
    color: #2a70ba;
    margin: -0.6em 0 0;
  }

  .rewardingdetailinner01 {
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
  }
  .rewardingdetailinner01:last-child {
    padding: 0;
  }
  .rewardingdetailcontents01 {
    width: auto;
    display: flex;
    flex-direction: column;
  }
  .rewardingdetailcontents01:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
    order: 1;
  }
  .rewardingdetailcontents01:nth-child(2) {
    width: 100%;
    order: 2;
  }

  .rewardingdetailwrap01 {
    width: 100%;
  }
  .rewardingdetailwrap01 ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .rewardingdetailwrap01 ul li {
    width: 100%;
    line-height: 2.3;
    margin: 0;
    padding: 0 0 0 1em;
  }
  .rewardingdetailwrap01 ul li.rewardinglisttitle01 {
    display: table;
    font-size: 16px;
    font-weight: 500;
    color: #2a70ba;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    text-decoration: underline;
    text-decoration-color: #2a70ba;
    text-underline-offset: 5px;
  }

  .job-descriptionschedulewrap01 {
    width: 94%;
    margin: 0 auto;
    padding: 0 0 25px;
  }
  .job-descriptionscheduletitle01 {
    display: table;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #2a70ba;
    margin: 0 auto 20px;
    padding: 0;
    text-decoration: underline;
    text-decoration-color: #2a70ba;
    text-underline-offset: 5px;
  }
  .job-descriptioncomparisonwrap01 {
    width: 94%;
    margin: 0 auto;
    padding: 0 0 25px;
  }
  .job-descriptioncomparisontitle01 {
    display: table;
    font-size: 16px;
    font-weight: 500;
    color: #2a70ba;
    margin: 0 auto 20px;
    padding: 0;
    text-decoration: underline;
    text-decoration-color: #2a70ba;
    text-underline-offset: 5px;
  }

  /* Point ボックス（SP） */
  .job-descriptionpointwrap01 {
    margin: 20px 0 20px;
    padding: 15px 20px;
    border: 1px solid #94d0ed;
    border-radius: 20px;
    background: #ffffff;
  }

  .job-descriptionpointlabel01 {
    display: inline-block;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: #94d0ed;
    text-decoration: underline;
    text-decoration-color: #94d0ed;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
  }

  .job-descriptionpointtext01 {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #31475d;
  }
}

/*---------------------------------
スタッフインタビュー
---------------------------------*/
.voicesdetailwrap01 {
  width: 100%;
  margin: 65px 0 0;
  background: #faf9f7;
}
.voicesdetailwrap02 {
  padding: 65px 0;
}
.voiceswhitebg01 {
  background: #ffffff;
  padding: 65px 0 0;
}
.voicesdetailgrdwrap01 {
  width: 100%;
  background-image: linear-gradient(#ffffff, #ffffff 25%, #faf9f7 25%, #faf9f7);
  padding: 25px 0 65px;
}
.voicesdetailgrdwrap02 {
  width: 100%;
  background-image: linear-gradient(#ffffff, #ffffff 30%, #faf9f7 30%, #faf9f7);
  padding: 25px 0 65px;
}
.voicesdetailgrdwrap03 {
  width: 100%;
  background-image: linear-gradient(#faf9f7, #faf9f7 25%, #ffffff 25%, #ffffff);
  padding: 25px 0 65px;
}
.voicesdetailgrdwrap04 {
  width: 100%;
  background-image: linear-gradient(#faf9f7, #faf9f7 30%, #ffffff 30%, #ffffff);
  padding: 25px 0 65px;
}
.voicesdetailinner01 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  display: flex;
  gap: 0 3.3333333333333335vw; /* 1800px基準でgap: 0 60px; */
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.voicesdetailinner01:last-child {
  padding: 0;
}
.voicesdetailinner01 .sec-head {
  margin: 0;
}
.voicesdetailinner01 .sec-head span.subtitlewrap01 {
  font-size: 1.9444444444444444vw; /* 1800px基準でfont-size: 35px; */
  font-weight: 500;
  line-height: 100%;
  color: #31475d;
  border-left: 10px solid #43aacc;
  padding: 0 1em;
  margin: 0 0 0 1em;
  vertical-align: middle;
}
.voicesdetailinner01 .sec-head span.subsmalltitlewrap01 {
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.1em;
  color: #94d0ed;
  vertical-align: middle;
}
.voicesdetailinner02 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  display: flex;
  gap: 0 4.444444444444445vw; /* 1800px基準でgap: 0 80px; */
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.voicesdetailinner02:last-child {
  padding: 0; /* 1800px基準でpadding: 0; */
}
.voicesdetailinner03 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.voicesdetailinner03:last-child {
  padding: 0; /* 1800px基準でpadding: 0; */
}
.voicesdetailcontents01 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.voicesdetailcontents01:nth-child(1) {
  width: calc(100% - 35.16666666666667vw); /* 1800px基準でwidth: calc(100% - 633px); */
}
.voicesdetailcontents01:nth-child(2) {
  width: 35.16666666666667vw; /* 1800px基準でwidth: 633px; */
}
.voicesdetailcontents02 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.voicesdetailcontents02:nth-child(1) {
  width: calc(100% - 24.055555555555554vw); /* 1800px基準でwidth: calc(100% - 433px); */
}
.voicesdetailcontents02:nth-child(2) {
  width: 24.055555555555554vw; /* 1800px基準でwidth: 433px; */
}
.voicesdetailcontents03 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.voicesdetailcontents03:nth-child(1) {
  width: calc(100% - 25.333333333333336vw); /* 1800px基準でwidth: calc(100% - 456px); */
  order: 2;
}
.voicesdetailcontents03:nth-child(2) {
  width: 25.333333333333336vw; /* 1800px基準でwidth: 456px; */
  order: 1;
}
.voicesdetailtitlewrap01 {
  margin: 0 0 20px;
  padding: 0 0 20px;
}
.voicesdetailtitlewrap01 ul {
  display: block;
  margin: 0;
  padding: 0;
}
.voicesdetailtitlewrap01 ul li {
  display: block;
  font-size: 0.9333333333333335vw; /* 1800px基準でfont-size: 16.8px; */
  font-weight: 600;
  color: #265382;
  margin: 0 0 0.1em;
  padding: 0;
  list-style: none;
}
.voicesdetailtitlewrap01 ul li:nth-child(1) {
  width: 8em;
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  background: #2a70ba;
  border-radius: 40px;
  padding: 0.1em 1em;
  margin: 0 0 0.5em;
}
.voiceslistname01 {
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
}
.voicesdetailcatchwrap01 {
  font-size: 1.3333333333333335vw; /* 1800px基準でfont-size: 24px; */
  font-weight: 600;
  line-height: 180%;
  color: #05203a;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
  text-decoration-color: #656d78;
  padding: 0 0 20px;
}
.voicesdetailtextwrap01 {
  width: 100%;
  font-size: 0.9333333333333335vw; /* 1800px基準でfont-size: 16.8px; */
  color: #3e3a3a;
}
.voicesdetailtextwrap02 {
  width: 100%;
  font-size: 0.9333333333333335vw; /* 1800px基準でfont-size: 16.8px; */
  color: #3e3a3a;
  padding: 0 0 50px;
}
.voicesdetailbtnwrap01 {
  display: block;
  margin-top: auto;
}
.voicesdetailiconwrap01 {
  width: 6.388888888888888vw; /* 1800px基準でwidth: 115px; */
}
.voicesdetailwrap03 {
  width: calc(100% - 6.388888888888888vw); /* 1800px基準でwidth: calc(100% - 115px); */
}
.voicesdetailwrap03 ul {
  display: block;
  margin: 0;
  padding: 1.3888888888888888vw 0 0 1.9444444444444444vw; /* 1800px基準でpadding: 25px 0 0 35px; */
}
.voicesdetailwrap03 ul li {
  width: 100%;
  line-height: 2.3;
  margin: 0;
  padding: 0 0 0 1em;
}
.voicesdetailwrap03 ul li.voiceslisttitle01 {
  display: table;
  font-size: 1.3888888888888888vw; /* 1800px基準でfont-size: 25px; */
  font-weight: 500;
  color: #2a70ba;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  text-decoration: underline;
  text-decoration-color: #2a70ba;
  text-underline-offset: 10px;
}
.voicesbluetitle01 {
  display: table;
  font-size: 1.3888888888888888vw; /* 1800px基準でfont-size: 25px; */
  font-weight: 500;
  color: #2a70ba;
  margin: 0 0 30px;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: #2a70ba;
  text-underline-offset: 10px;
}

.voicesbluewrap01 {
  width: 100%;
  background: rgba(234,240,252,1.0);
}
.voicesbluewrap02 {
  padding: 65px 0;
}
.voiceswhitewrap01 {
  width: 100%;
  background: rgba(255,255,255,1.0);
}
.voiceswhitewrap02 {
  padding: 65px 0;
}
.voiceswhitegrdwrap01 {
  width: 100%;
  background-image: linear-gradient(#ffffff, #ffffff 50%, #faf9f7 50%, #faf9f7);
}
.voiceswhitegrdwrap02 {
  padding: 65px 0;
}
@media (max-width: 767.98px) {
  .voicesdetailwrap01 {
    width: 100%;
    margin: 30px 0 0;
    background: #faf9f7;
  }
  .voicesdetailwrap02 {
    padding: 30px 0;
  }
  .voicesdetailgrdwrap01 {
    width: 100%;
    background-image: linear-gradient(#ffffff, #ffffff 17%, #faf9f7 17%, #faf9f7);
    padding: 35px 0 65px;
  }
  .voicesdetailgrdwrap02 {
    width: 100%;
    background-image: linear-gradient(#ffffff, #ffffff 20%, #faf9f7 20%, #faf9f7);
    padding: 35px 0 65px;
  }
  .voicesdetailgrdwrap03 {
    width: 100%;
    background-image: linear-gradient(#faf9f7, #faf9f7 17%, #ffffff 17%, #ffffff);
    padding: 35px 0 65px;
  }
  .voicesdetailgrdwrap04 {
    width: 100%;
    background-image: linear-gradient(#faf9f7, #faf9f7 20%, #ffffff 20%, #ffffff);
    padding: 35px 0 65px;
  }
  .voicesdetailinner01 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
  }
  .voicesdetailinner01:last-child {
    padding: 0;
  }
  .voicesdetailinner02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
  }
  .voicesdetailinner02:last-child {
    padding: 0;
  }
  .voicesdetailinner03 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 0 0 30px;
  }
  .voicesdetailinner03:last-child {
    padding: 0;
  }

  .voicesdetailinner01 .sec-head span.subtitlewrap01 {
    display: table-cell;
    width: auto;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    color: #31475d;
    border-left: 10px solid #43aacc;
    padding: 0 0.5em;
    margin: 0;
    vertical-align: middle;
  }
  .voicesdetailinner01 .sec-head span.subsmalltitlewrap01 {
    display: table-cell;
    width: auto;
    font-size: 16px;

    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.1em;
    color: #94d0ed ;
    vertical-align: middle;
  }
  .voicesdetailcontents01 {
    width: auto;
    display: flex;
    flex-direction: column;
  }
  .voicesdetailcontents01:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
  }
  .voicesdetailcontents01:nth-child(2) {
    width: 100%;
  }
  .voicesdetailcontents02 {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .voicesdetailcontents02:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
  }
  .voicesdetailcontents02:nth-child(2) {
    width: 100%;
  }
  .voicesdetailcontents03:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
    order: 1;
  }
  .voicesdetailcontents03:nth-child(2) {
    width: 100%;
    order: 2;
  }
  .voicesdetailtitlewrap01 {
    margin: 0 0 20px;
    padding: 0 0 20px;
  }
  .voicesdetailtitlewrap01 ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .voicesdetailtitlewrap01 ul li {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #265382;
    margin: 0 0 0.1em;
    padding: 0;
    list-style: none;
  }
  .voicesdetailtitlewrap01 ul li:nth-child(1) {
    width: 8em;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    background: #2a70ba;
    border-radius: 40px;
    padding: 0.1em 1em;
    margin: 0 0 0.5em;
  }
  .voiceslistname01 {
    font-size: 18px;
  }
  .voicesdetailcatchwrap01 {
    font-size: 18px;
    font-weight: 600;
    line-height: 180%;
    color: #05203a;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
    text-decoration-color: #656d78;
    padding: 0 0 15px;
  }
  .voicesdetailtextwrap01 {
    width: 100%;
    font-size: 15px;
    color: #3e3a3a;
  }
  .voicesdetailtextwrap02 {
    width: 100%;
    font-size: 15px;
    color: #3e3a3a;
    padding: 0 0 30px;
  }
  .voicesdetailbtnwrap01 {
    display: table;
    margin: 1em auto 0;
  }
  .voicesdetailiconwrap01 {
    width: 9.333333333333334vw; /* 750px基準でwidth: 70px; */
  }
  .voicesdetailwrap03 {
    width: calc(100% - 9.333333333333334vw); /* 750px基準でwidth: calc(100% - 70px); */
  }
  .voicesdetailwrap03 ul {
    display: block;
    margin: 0;
    padding: 0.6666666666666667vw 0 0 2.666666666666667vw; /* 750px基準でpadding: 5px 0 0 20px; */
  }
  .voicesdetailwrap03 ul li {
    width: 100%;
    line-height: 2.3;
    margin: 0;
    padding: 0 0 0 1em;
  }
  .voicesdetailwrap03 ul li.voiceslisttitle01 {
    display: table;
    font-size: 16px;
    font-weight: 500;
    color: #2a70ba;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    text-decoration: underline;
    text-decoration-color: #2a70ba;
    text-underline-offset: 10px;
  }

  .voicesbluetitle01 {
    display: table;
    font-size: 16px;
    font-weight: 500;
    color: #2a70ba;
    margin: 0 0 20px;
    padding: 0;
    text-decoration: underline;
    text-decoration-color: #2a70ba;
    text-underline-offset: 5px;
  }

  .voicesbluewrap01 {
    width: 100%;
    background: rgba(234,240,252,1.0);
  }
  .voicesbluewrap02 {
    padding: 20px 0;
  }
  .voiceswhitewrap01 {
    width: 100%;
    background: rgba(255,255,255,1.0);
  }
  .voiceswhitewrap02 {
    padding: 20px 0;
  }
  .voiceswhitegrdwrap01 {
    width: 100%;
    background-image: linear-gradient(#ffffff, #ffffff 50%, #faf9f7 50%, #faf9f7);
  }
  .voiceswhitegrdwrap02 {
    padding: 20px 0;
  }
}

/*---------------------------------
お問い合わせ
---------------------------------*/
.contactdetailwrap01 {
  width: 100%;
  margin: 65px 0 0;
}
.contactdetailwrap02 {
  width: 66.66666666666666vw; /* 1800px基準で1200px */
  margin: 0 auto;
  padding: 65px 0;
}
.contactdetailinner01 {
  display: flex;
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.contactdetailinner01:last-child {
  padding: 0;
}
.contactdetailinner01 .sec-head {
  margin: 0;
}
.contactdetailinner01 .sec-head p {
  font-size: 1.2222222222222223vw; /* 1800px基準でfont-size: 22px; */
  margin: 0;
  padding: 0;
}
.contactdetailinner02 {
  display: flex;
  gap: 0 4.444444444444445vw; /* 1800px基準でgap: 0 80px; */
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.contactdetailinner02:last-child {
  padding: 0; /* 1800px基準でpadding: 0; */
}
.contactdetailcontents01 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.contactdetailcontents01:nth-child(1) {
  width: 19.444444444444446vw; /* 1800px基準でwidth: 350px; */
  font-size: 18px;
  font-weight: 500;
  color: #31475d;
  padding: 0.2em 0;
}
.contactdetailcontents01:nth-child(2) {
  width: calc(100% - 19.444444444444446vw); /* 1800px基準でwidth: calc(100% - 350px); */
}
.contactdetailcontents01 label p {
  font-size: 0.8888888888888888vw; /* 1800px基準でfont-size: 16px; */
  color: #3e3a3a;
  margin: 0;
  padding: 0;
}
.contactdetailcontents01 input {
  padding: 0.5em;
}
.contactdetailcontents01 textarea {
  padding: 0.5em;
}
ul.contactattention01 {
  display: table;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  list-style: none;
}
ul.contactattention01 li {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 0.8888888888888888vw; /* 1800px基準でfont-size: 16px; */
  font-weight: 500;
}
ul.contactattention01 li:nth-child(1) {
  color: #31475d;
  padding: 0 0 2em;
}
ul.contactattention01 li:nth-child(2) a {
  color: #db1717;
  text-decoration: underline;
  text-underline-offset: 5px;
}
ul.contactattention01 li:nth-child(2) img {
  display: inline-block;
  vertical-align: middle;
  width: 1.277777777777778vw; /* 1800px基準でwidth: 23px; */
  height: auto;
  margin: 0 0 0 1em;
}
@media (max-width: 767.98px) {
  .contactdetailwrap01 {
    width: 100%;
    margin: 30px 0 0;
  }
  .contactdetailwrap02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 30px 0;
  }
  .contactdetailinner01 {
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
  }
  .contactdetailinner01:last-child {
    padding: 0;
  }
  .contactdetailinner01 .sec-head {
    margin: 0;
  }
  .contactdetailinner01 .sec-head p {
    font-size: 15px;
    margin: 0;
    padding: 0;
  }
  .contactdetailinner02 {
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
  }
  .contactdetailinner02:last-child {
    padding: 0;
  }
  .contactdetailcontents01 {
    width: auto;
    display: flex;
    flex-direction: column;
  }
  .contactdetailcontents01:nth-child(1) {
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    color: #31475d;
    padding: 0.2em 0;
  }
  .contactdetailcontents01:nth-child(2) {
    width: 100%;
  }
  .contactdetailcontents01 label p {
    font-size: 13px;
    color: #3e3a3a;
    margin: 0;
    padding: 0;
  }
  .contactdetailcontents01 input {
    padding: 0.5em;
  }
  .contactdetailcontents01 textarea {
    padding: 0.5em;
  }
  ul.contactattention01 {
    display: table;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    list-style: none;
  }
  ul.contactattention01 li {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
  }
  ul.contactattention01 li:nth-child(1) {
    color: #31475d;
    padding: 0 0 2em;
  }
  ul.contactattention01 li:nth-child(2) a {
    color: #db1717;
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  ul.contactattention01 li:nth-child(2) img {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: auto;
    margin: 0 0 0 1em;
  }
}

/*---------------------------------
募集情報（共通）
---------------------------------*/
.recruittitlewrap01 {
  width: 20vw; /* 1800px基準でwidth: 360px; */
  margin: 0 auto;
}
.recruittitlewrap01 ul {
  display: block;
  margin: 0;
  padding: 0;
}
.recruittitlewrap01 ul li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.recruittitlewrap01 ul li img {
  width: 100%;
  height: auto;
  display: block;
}
.recruittitlewrap01 ul li:nth-child(1) {
  padding: 0 0 10px;
}
.recruittitlewrap01 ul li:nth-child(2) {
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  color: #94d0ed;
  font-weight: 600;
  line-height: 140%;
}
.recruittitlewrap01 ul li:nth-child(3) {
  font-size: 1.5555555555555556vw; /* 1800px基準でfont-size: 28px; */
  color: #1f4b88;
  font-weight: 600;
  line-height: 140%;
}

/* 詳細ページ */
.recruitdetailwrap01 {
  width: 100%;
  margin: 65px 0 0;
}
.recruitdetailwrap02 {
  width: 66.66666666666666vw; /* 1800px基準で1200px */
  margin: 0 auto;
  padding: 65px 0;
}
.recruitdetaillistwrap01 {
  display: block;
  padding: 0 0 25px;
}
.recruitdetaillistwrap01:last-child {
  padding: 0;
}
.recruitdetaillistwrap01 ul {
  display: block;
  margin: 0;
  padding: 0;
}
.recruitdetaillistwrap01 ul li {
  display: block;
  margin: 0;
  padding: 0;
}
.recruitdetaillistwrap02 {
  display: block;
  padding: 0 0 65px;
}
.recruitdetaillistwrap02:last-child {
  padding: 0;
}
ul.recruitblueitem01 {
  display: block;
  padding: 0;
  margin: 0;
}
ul.recruitblueitem01 li {
  display: inline-block;
  min-width: 8em;
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  background: #2a70ba;
  border-radius: 40px;
  padding: 0.1em 1em;
  margin: 0 1.5em 0 0;
}
ul.recruitblueitem01 li:last-child {
  margin: 0;
}
ul.recruitbrownitem01 {
  display: block;
  padding: 0;
  margin: 0;
}
ul.recruitbrownitem01 li {
  display: inline-block;
  min-width: 8em;
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  background: #813037;
  border-radius: 40px;
  padding: 0.1em 1em;
  margin: 0 1.5em 0 0;
}
ul.recruitbrownitem01 li:last-child {
  margin: 0;
}
.recruitdetailinner01 {
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.recruitdetailinner01:last-child {
  padding: 0;
}
.recruitdetailinner01 .sec-head {
  margin: 0;
}
.recruitdetailinner01 .sec-head p {
  font-size: 1.2222222222222223vw; /* 1800px基準でfont-size: 22px; */
  margin: 0;
  padding: 0;
}
.recruitdetailinner02 {
  display: flex;
  gap: 0 1.3888888888888888vw; /* 1800px基準でgap: 0 25px; */
  padding: 0;
}
.recruitdetailcontents01 {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5em 0;
}
.recruitdetailcontents01:nth-child(1) {
  width: 12.5vw; /* 1800px基準でwidth: 225px; */
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 500;
  text-align: center;
  color: #1f4b88;
  padding: 0.5em;
  background: #faf9f7;
  border-bottom: 1px solid #1f4b88;
}
.recruitdetailcontents01:nth-child(2) {
  width: calc(100% - 12.5vw); /* 1800px基準でwidth: calc(100% - 225px); */
  font-size: 0.8888888888888888vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 500;
  border-bottom: 1px solid #94d0ed;
}
.recruitdetailinner02:nth-child(1) .recruitdetailcontents01:nth-child(1) {
  border-top: 1px solid #1f4b88;
}
.recruitdetailinner02:nth-child(1) .recruitdetailcontents01:nth-child(2) {
  border-top: 1px solid #94d0ed;
}
.recruitdetailcontents01 ul {
  display: block;
  padding: 0;
}
.recruitdetailcontents01 ul li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.recruitsmalltitle01 {
  display: table;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
ul.recruitsmalltitle01 li {
  text-align: center;
  margin: 0;
  padding: 0;
}
ul.recruitsmalltitle01 li:nth-child(1) {
  font-size: 1.0911111111111111vw; /* 1800px基準でfont-size: 19.64px; */
  font-weight: 500;
  color: #2a70ba;
  text-decoration: underline;
  font-family: "Klee One", cursive;
  font-style: italic;
}
ul.recruitsmalltitle01 li:nth-child(2) {
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 500;
  color: #31475d;
}
@media (max-width: 767.98px) {
  .recruittitlewrap01 {
    width: 100%;
    margin: 0 auto;
  }
  .recruittitlewrap01 ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .recruittitlewrap01 ul li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
  }
  .recruittitlewrap01 ul li img {
    width: 100%;
    height: auto;
    display: block;
  }
  .recruittitlewrap01 ul li:nth-child(1) {
    padding: 0 0 10px;
  }
  .recruittitlewrap01 ul li:nth-child(2) {
    font-size: 13px;
    color: #94d0ed;
    font-weight: 600;
    line-height: 140%;
  }
  .recruittitlewrap01 ul li:nth-child(3) {
    font-size: 16px;
    color: #1f4b88;
    font-weight: 600;
    line-height: 140%;
  }

  /* 詳細ページ */
  .recruitdetailwrap01 {
    width: 100%;
    margin: 30px 0 0;
  }
  .recruitdetailwrap02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 30px 0;
  }
  .recruitdetaillistwrap01 {
    display: block;
    padding: 0 0 15px;
  }
  .recruitdetaillistwrap01:last-child {
    padding: 0;
  }
  .recruitdetaillistwrap01 ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .recruitdetaillistwrap01 ul li {
    display: block;
    margin: 0;
    padding: 0;
  }
  .recruitdetaillistwrap02 {
    display: block;
    padding: 0 0 25px;
  }
  .recruitdetaillistwrap02:last-child {
    padding: 0;
  }
  ul.recruitblueitem01 {
    display: block;
    padding: 0;
    margin: 0;
  }
  ul.recruitblueitem01 li {
    display: inline-block;
    min-width: 8em;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    background: #2a70ba;
    border-radius: 40px;
    padding: 0.1em 1em;
    margin: 0 1.5em 0 0;
  }
  ul.recruitblueitem01 li:last-child {
    margin: 0;
  }
  ul.recruitbrownitem01 {
    display: block;
    padding: 0;
    margin: 0;
  }
  ul.recruitbrownitem01 li {
    display: inline-block;
    min-width: 8em;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    background: #813037;
    border-radius: 40px;
    padding: 0.1em 1em;
    margin: 0 0.5em 0.5em 0;
  }
  ul.recruitbrownitem01 li:last-child {
    margin: 0;
  }
  .recruitdetailinner01 {
    padding: 0 0 25px;
  }
  .recruitdetailinner01:last-child {
    padding: 0;
  }
  .recruitdetailinner01 .sec-head {
    margin: 0;
  }
  .recruitdetailinner01 .sec-head p {
    font-size: 15px;
    margin: 0;
    padding: 0;
  }
  .recruitdetailinner02 {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .recruitdetailcontents01 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5em 0;
  }
  .recruitdetailcontents01:nth-child(1) {
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: #1f4b88;
    padding: 0.5em;
    background: #faf9f7;
    border-top: 1px solid #1f4b88;
    border-bottom: 1px solid #1f4b88;
  }
  .recruitdetailcontents01:nth-child(2) {
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    border-bottom: none;
  }
  .recruitdetailinner02:nth-child(1) .recruitdetailcontents01:nth-child(1) {
    border-top: 1px solid #1f4b88;
  }
  .recruitdetailinner02:nth-child(1) .recruitdetailcontents01:nth-child(2) {
    border-top: none;
  }
  .recruitdetailcontents01 ul {
    display: block;
    padding: 0;
  }
  .recruitdetailcontents01 ul li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  ul.recruitsmalltitle01 {
    display: table;
    text-align: center;
    margin: 0 auto;
    padding: 0;
  }
  ul.recruitsmalltitle01 li {
    text-align: center;
    margin: 0;
    padding: 0;
  }
  ul.recruitsmalltitle01 li:nth-child(1) {
    font-size: 16px;
    font-weight: 500;
    color: #2a70ba;
    text-decoration: underline;
    font-family: "Klee One", cursive;
    font-style: italic;
  }
  ul.recruitsmalltitle01 li:nth-child(2) {
    font-size: 15px;
    font-weight: 500;
    color: #31475d;
  }
}

/*---------------------------------
その他の各クリニック・事業所の募集要項
---------------------------------*/
#otherclinicwrap01 {
  width: 100%;
  background: rgba(234,240,252,1.0);
}
#otherclinicwrap02 {
  width: min(67.44444444444444vw, var(--container)); /* 1800px基準で1214px */
  margin: 0 auto;
  padding: 65px 0;
}
.otherclinic-line-wrap {
  display: flex;
  align-items: center;
  padding: 0 0 50px;
}

.otherclinic-title {
  font-size: 22px;
  font-weight: 600;
  color: #1f4b88;
  margin-right: 1em;
}

.otherclinic-line {
  flex: 1;
  height: 1px;
  background: #bbd3f2;
}
.otherclinic-list01 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}

.otherclinic-list01 ul {
  width: calc(50% - 10px); /* gapの半分調整 */
  margin: 0;
  padding: 0;
  list-style: none;
}

.otherclinic-list01 li {
  font-size: 0.9444444444444444vw; /* 1800px基準でfont-size: 17px; */
  margin: 0.5em 0;
}

.otherclinic-list01 li a {
  display: block;
  padding: 0.3em 1em;
  position: relative;
  color: #221815;
  border-left: 4px solid #31475d;
  transition: all 0.3s;
  text-decoration: none;
}

.otherclinic-list-btnarrowwrap01 {
  display: inline-block;
  width: 1.6666666666666667vw; /* 1800px基準でwidth: 30px; */
  height: 1.6666666666666667vw; /* 1800px基準でheight: 30px; */
  margin: 0 1em 0 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.otherclinic-list-btnarrow01 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #22a4e2;
  font-size: 0.8888888888888888vw; /* 1800px基準でfont-size: 16px; */
  font-weight: 700;
  padding-bottom: 0;
}
.otherclinic-list01 li a:hover .otherclinic-list-btnarrow01 {
  background: #22a4e2;
  color: #fff;
}
/* hover */
.otherclinic-list01 li a:hover {
  background: #ffffff;
}
@media (max-width: 767.98px) {
  #otherclinicwrap01 {
    width: 100%;
    background: rgba(234,240,252,1.0);
  }
  #otherclinicwrap02 {
    width: 94%;
    margin: 0 auto;
    padding: 20px 0;
  }
  .otherclinic-line-wrap {
    display: flex;
    align-items: center;
    padding: 0 0 20px;
  }

  .otherclinic-title {
    font-size: clamp(16px, 5vw, 20px);
    font-weight: 600;
    margin-right: 1em;
  }

  .otherclinic-line {
    flex: 1;
    height: 1px;
    background: #bbd3f2;
  }
  .otherclinic-list01 {
    flex-direction: column;
  }

  .otherclinic-list01 ul {
    width: 100%;
  }

  .otherclinic-list01 li {
    font-size: 15px;
    margin: 0.5em 0;
  }

  .otherclinic-list01 li a {
    display: block;
    padding: 0.3em 1em;
    position: relative;
    color: #221815;
    border-left: 4px solid #31475d;
    transition: all 0.3s;
    text-decoration: none;
  }

  .otherclinic-list-btnarrowwrap01 {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .otherclinic-list-btnarrow01 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #22a4e2;
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 0;
  }
  .otherclinic-list01 li a:hover .otherclinic-list-btnarrow01 {
    background: #22a4e2;
    color: #fff;
  }
  /* hover */
  .otherclinic-list01 li a:hover {
    background: #ffffff;
  }
}

/*---------------------------------
ボタン
---------------------------------*/
/* 1つの場合 */
.btnwrap01 {
  width: 21.22222222222222vw; /* 1800px基準でwidth: 382px; */
  margin: 0 auto;
}
/* 2カラムの場合 */
.btn2columnwrap01 {
  display: flex;
  width: 52.11111111111111vw; /* 1800px基準でwidth: 938px; */
  gap: 0 4.333333333333334vw; /* 1800px基準でgap: 0 78px; */
  margin: 0 auto;
}
.btn2columninner01 {
  width: calc(100% / 2);
}
.btnwshadow01 {
  filter: drop-shadow(10px 10px 15px rgba(108,150,203,0.5));
}

/* やじるし */
.btnarrowwrap01 {
  display: inline-block;
  width: 2vw; /* 1800px基準でwidth: 36px; */
  height: 2vw; /* 1800px基準でheight: 36px; */
  margin: 0 1em 0 0;
}
.btnarrow01 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22a4e2;
  color: #fff;
  font-size: 0.8888888888888888vw; /* 1800px基準でfont-size: 16px; */
  font-weight: 700;
  padding-bottom: 0;
}
.pdficon01 {
  display: inline-block;
  vertical-align: middle;
  width: 1.3333333333333335vw; /* 1800px基準でwidth: 24px; */
  height: auto;
}
@media (max-width: 767.98px) {
  /* 1つの場合 */
  .btnwrap01 {
    width: 60%;
    margin: 0 auto;
  }
  /* 2カラムの場合 */
  .btn2columnwrap01 {
    display: flex;
    flex-direction: column;
    width: 60%;
    gap: 15px 0;
    margin: 0 auto;
  }
  .btn2columninner01 {
    width: 100%;
  }
  .btnwshadow01 {
    filter: drop-shadow(10px 10px 15px rgba(108,150,203,0.5));
  }

  /* やじるし */
  .btnarrowwrap01 {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 1em 0 0;
  }
  .btnarrow01 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22a4e2;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 0;
  }
  .pdficon01 {
    display: inline-block;
    vertical-align: middle;
    width:  15px;
    height: auto;
  }
}

/*---------------------------------
プライバシーポリシー
---------------------------------*/
.privacydetailwrap01 {
  width: 100%;
  margin: 65px 0 0;
}
.privacydetailwrap02 {
  width: 66.66666666666666vw; /* 1800px基準で1200px */
  margin: 0 auto;
  padding: 65px 0;
}
.privacydetaillistwrap01 {
  display: block;
  padding: 0 0 65px;
}
.privacydetaillistwrap01:last-child {
  padding: 0;
}
.privacydetaillistwrap01 .sec-head {
  display: table;
  margin: 0 auto;
  text-align: center;
}
ul.privacy01 {
  display: block;
  margin: 0;
  padding: 0 0 30px;
  list-style: none;
}
ul.privacy01:last-child {
  padding: 0;
  list-style: none;
}
ul.privacy01 li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.privacy01 li:first-child {
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .privacydetailwrap01 {
    width: 100%;
    margin: 30px 0 0;
  }
  .privacydetailwrap02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 30px 0;
  }
  .privacydetaillistwrap01 {
    display: block;
    padding: 0 0 15px;
  }
  .privacydetaillistwrap01:last-child {
    padding: 0;
  }
  .privacydetaillistwrap01 .sec-head {
    display: block;
    margin: 0 auto;
    text-align: left;
  }
  ul.privacy01 {
    display: block;
    margin: 0;
    padding: 0 0 20px;
    list-style: none;
  }
  ul.privacy01:last-child {
    padding: 0;
    list-style: none;
  }
  ul.privacy01 li {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  ul.privacy01 li:first-child {
    font-weight: 600;
  }
}

/*---------------------------------
よくある質問
---------------------------------*/
.accordion {
  display: block;
}
.accordion a:link {
  color: #3e3a39;
}
.accordion a:visited {
  color: #3e3a39;
}
.accordion a:hover {
  color: #3e3a39;
}
.accordion__title {
  width: 100%;
  display: table;
  font-size: 1.1111111111111112vw; /* 1800px基準でfont-size: 20px; */
  cursor: pointer;
  position: relative;
}
a.accordion__title:link {
  color: #3e3a39;
  opacity: 1 !important;
  text-decoration: none !important;
}
a.accordion__title:hover {
  color: #3e3a39;
  opacity: 1 !important;
}
.accordion__title::before {
  content: '';
  display: inline-block;
  width: 1.1111111111111112vw; /* 1800px基準でwidth: 20px; */
  height: 0.16666666666666669vw; /* 1800px基準でheight: 3px; */
  background-color: #285d9f;
  position: absolute;
  right: 3.888888888888889vw; /* 1800px基準でright: 70px; */
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 1s;
}
.accordion__title::after {
  content: '';
  display: inline-block;
  width: 1.1111111111111112vw; /* 1800px基準でwidth: 20px; */
  height: 0.16666666666666669vw; /* 1800px基準でheight: 3px; */
  background-color: #285d9f;
  position: absolute;
  right: 3.888888888888889vw; /* 1800px基準でright: 70px; */
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 1s;
}
.accordion__title.show::before {
  opacity: 0;
}
.accordion__title.show::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordion__title p {
  display: table-cell;
  vertical-align: middle;
}
.accordion__title p:nth-child(1) {
  width: 1em;
  color: #1f4b88;
}
.accordion__title p:nth-child(2) {
  padding: 0 2em;
}
.accordion__content {
  display: none;
  padding: 1.5vw 3.3333333333333335vw; /* 1800px基準でpadding: 43px 60px; */
  margin: 1.5vw 0 0; /* 1800px基準でpadding: 43px 0 0; */
  background: #f4fafc;
}
.accordion__contentdetail {
  width: 100%;
  display: table;
  font-size: 0.8888888888888888vw; /* 1800px基準でfont-size: 16px; */
  color: #3e3a3a;
}
.accordion__contentdetail p {
  display: table-cell;
  vertical-align: top;
}
.accordion__contentdetail a:link {
  color: #298dc4;
  text-decoration: underline;
}
.accordion__contentdetail a:visited {
  color: #298dc4;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .accordion {
    display: block;
  }
  .accordion a:link {
    color: #3e3a39;
  }
  .accordion a:visited {
    color: #3e3a39;
  }
  .accordion a:hover {
    color: #3e3a39;
  }
  .accordion__title {
    width: 100%;
    display: table;
    font-size: 3.2vw; /* 750px基準でfont-size: 24px; */
    cursor: pointer;
    position: relative;
  }
  a.accordion__title:link {
    color: #3e3a39;
    opacity: 1 !important;
    text-decoration: none !important;
  }
  a.accordion__title:hover {
    color: #3e3a39;
    opacity: 1 !important;
  }
  .accordion__title::before {
    content: '';
    display: inline-block;
    width: 3.2vw; /* 750px基準でwidth: 24px; */
    height: 0.4vw; /* 750px基準でheight: 3px; */
    background-color: #285d9f;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 1s;
  }
  .accordion__title::after {
    content: '';
    display: inline-block;
    width: 3.2vw; /* 750px基準でwidth: 24px; */
    height: 0.4vw; /* 750px基準でheight: 3px; */
    background-color: #285d9f;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 1s;
  }
  .accordion__title.show::before {
    opacity: 0;
  }
  .accordion__title.show::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .accordion__title p {
    display: table-cell;
    vertical-align: middle;
  }
  .accordion__title p:nth-child(1) {
    width: 1em;
    color: #1f4b88;
  }
  .accordion__title p:nth-child(2) {
    padding: 0 1em;
  }
  .accordion__content {
    display: none;
    padding: 15px 6vw; /* 750px基準でpadding: 15px 40px; */
    margin: 15px 0 0;
    background: #f4fafc;
  }
  .accordion__contentdetail {
    width: 100%;
    display: table;
    font-size: 2.933333333333333vw; /* 750px基準でfont-size: 22px; */
    color: #3e3a3a;
  }
  .accordion__contentdetail p {
    display: table-cell;
    vertical-align: top;
  }
  .accordion__contentdetail a:link {
    color: #298dc4;
    text-decoration: underline;
  }
  .accordion__contentdetail a:visited {
    color: #298dc4;
    text-decoration: underline;
  }
}

/*---------------------------------
求める人物像
---------------------------------*/
.valuesdetailwrap01 {
  width: 100%;
  margin: 65px 0 0;
}
.valuessbluewrap01 {
  width: 100%;
  background-image: linear-gradient(30deg, rgb(42, 112, 186), rgb(67, 170, 204));
  color: #ffffff;
}
.valueswhitewrap01 {
  width: 100%;
  background: rgba(255,255,255,1.0);
  color: #3e3a3a;
}
.valuesdetailinner01 {
  padding: 65px 0;
}
.valuesdetailinner02 {
  width: 66.66666666666666vw; /* 1800px基準で1200px */
  margin: 0 auto;
  padding: 0 0 30px;
}
.valuesdetailinner02:last-child {
  padding: 0;
}
ul.valuescatch01 {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.valuescatch01 li {
  display: table;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
ul.valuescatch01 li:nth-child(1) {
  display: block;
  font-size: 1.8888888888888888vw; /* 1800px基準でfont-size: 34px; */
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #ffffff;
  margin: 0 auto 20px;
  padding: 0 0 20px;
}
ul.valuescatch01 li:nth-child(2) {
  display: table;
  font-size: 1.1111111111111112vw; /* 1800px基準でfont-size: 20px; */
  font-weight: 500;
  font-family: "Klee One", cursive;
  margin: 0 auto;
  padding: 0;
}
ul.valuescatch01 li:nth-child(3) {
  display: table;
  font-size: 1.3333333333333335vw; /* 1800px基準でfont-size: 24px; */
  font-weight: 500;
  border-bottom: 1.5px solid #ffffff;
  margin: 0 auto 30px;
  padding: 0 0 5px;
}
.valueswhitewrap01 ul.valuescatch01 li:nth-child(1) {
  color: #31475d;
  border-bottom: 1px solid #cfd3d8;
}
.valueswhitewrap01 ul.valuescatch01 li:nth-child(2) {
  color: #2a70ba;
}
.valueswhitewrap01 ul.valuescatch01 li:nth-child(3) {
  color: #2a70ba;
  border-bottom: 1.5px solid #2a70ba;
}
.valuesdetailtextwrap01 {
  width: 100%;
  font-size: 0.8888888888888888vw; /* 1800px基準でfont-size: 16px; */
}
@media (max-width: 767.98px) {
  .valuesdetailwrap01 {
    width: 100%;
    margin: 30px 0 0;
  }
  .valuessbluewrap01 {
    width: 100%;
    background-image: linear-gradient(30deg, rgb(42, 112, 186), rgb(67, 170, 204));
    color: #ffffff;
  }
  .valueswhitewrap01 {
    width: 100%;
    background: rgba(255,255,255,1.0);
    color: #3e3a3a;
  }
  .valuesdetailinner01 {
    padding: 30px 0;
  }
  .valuesdetailinner02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 0 0 30px;
  }
  .valuesdetailinner02:last-child {
    padding: 0;
  }
  ul.valuescatch01 {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  ul.valuescatch01 li {
    display: table;
    margin: 0 auto;
    padding: 0;
    list-style: none;
  }
  ul.valuescatch01 li:nth-child(1) {
    display: block;
    font-size: 3.2vw; /* 750px基準でfont-size: 24px; */
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid #ffffff;
    margin: 0 auto 15px;
    padding: 0 0 15px;
  }
  ul.valuescatch01 li:nth-child(2) {
    display: table;
    font-size: 2.666666666666667vw; /* 750px基準でfont-size: 20px; */
    font-weight: 500;
    font-family: "Klee One", cursive;
    margin: 0 auto;
    padding: 0;
  }
  ul.valuescatch01 li:nth-child(3) {
    display: table;
    font-size: 2.933333333333333vw; /* 750px基準でfont-size: 22px; */
    font-weight: 500;
    border-bottom: 1.5px solid #ffffff;
    margin: 0 auto 15px;
    padding: 0 0 5px;
  }
  .valueswhitewrap01 ul.valuescatch01 li:nth-child(1) {
    color: #31475d;
    border-bottom: 1px solid #cfd3d8;
  }
  .valueswhitewrap01 ul.valuescatch01 li:nth-child(2) {
    color: #2a70ba;
  }
  .valueswhitewrap01 ul.valuescatch01 li:nth-child(3) {
    color: #2a70ba;
    border-bottom: 1.5px solid #2a70ba;
  }
  .valuesdetailtextwrap01 {
    width: 100%;
    font-size: 2.666666666666667vw; /* 750px基準でfont-size: 20px; */
  }
}

/*---------------------------------
修志会グループについて
---------------------------------*/
.aboutdetailwrap01 {
  width: 100%;
  margin: 65px 0 0;
  background: #faf9f7;
}
.aboutdetailwrap02 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  padding: 65px 0;
}
.aboutdetailinner01 {
  display: flex;
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.aboutdetailinner01:last-child {
  padding: 0;
}
.aboutdetailcontents01 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.aboutdetailcontents01:nth-child(1) {
  width: calc(100% - 35.16666666666667vw); /* 1800px基準でwidth: calc(100% - 633px); */
}
.aboutdetailcontents01:nth-child(2) {
  width: 35.16666666666667vw; /* 1800px基準でwidth: 633px; */
}
.aboutdetailtitlewrap01 {
  border-bottom: 1px solid #c8d5e2;
  margin: 0 0 20px;
  padding: 0 0 20px;
}
.aboutdetailtitlewrap01 ul {
  display: block;
  margin: 0;
  padding: 0;
}
.aboutdetailtitlewrap01 ul li {
  display: block;
  font-size: 1.9444444444444444vw; /* 1800px基準でfont-size: 35px; */
  font-weight: 500;
  color: #31475d;
  line-height: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.aboutdetailtextwrap01 {
  width: 100%;
  padding: 0 20px 0 0;
  color: #31475d;
}
.aboutdetailbtnwrap01 {
  display: block;
  margin-top: auto;
}
@media (max-width: 767.98px) {
  .aboutdetailwrap01 {
    width: 100%;
    margin: 30px 0 0;
    background: #faf9f7;
  }
  .aboutdetailwrap02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 30px 0;
  }
  .aboutdetailinner01 {
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
  }
  .aboutdetailinner01:last-child {
    padding: 0;
  }
  .aboutdetailcontents01 {
    width: auto;
    display: flex;
    flex-direction: column;
  }
  .aboutdetailcontents01:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
  }
  .aboutdetailcontents01:nth-child(2) {
    width: 100%;
  }
  .aboutdetailtitlewrap01 {
    border-bottom: 1px solid #c8d5e2;
    margin: 0 0 10px;
    padding: 0 0 10px;
  }
  .aboutdetailtitlewrap01 ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .aboutdetailtitlewrap01 ul li {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #31475d;
    line-height: 1;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .aboutdetailtextwrap01 {
    width: 100%;
    padding: 0;
    color: #31475d;
  }
  .aboutdetailbtnwrap01 {
    display: table;
    margin: 1em auto 0;
  }
}

/*---------------------------------
研修制度・福利厚生・キャリアプラン
---------------------------------*/
.welfaredetailwrap01 {
  width: 100%;
  margin: 0;
}
.welfaredetailwrap02 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  padding: 65px 0;
}
.welfaredetailinner01 {
  display: flex;
  gap: 0 4.444444444444445vw; /* 1800px基準でgap: 0 80px; */
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.welfaredetailinner01:last-child {
  padding: 0;
}
.welfaredetailinner01 .sec-head {
  display: table;
  margin: 0 auto;
  text-align: center;
}
.welfaredetailinner02 {
  display: flex;
  padding: 0 0 4.444444444444445vw; /* 1800px基準でpadding: 0 0 80px; */
}
.welfaredetailinner02:last-child {
  padding: 0;
}
.welfaredetailinner02 .sec-head {
  display: table;
  margin: 0 auto;
  text-align: center;
}
.welfaredetailcontents01 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.welfaredetailcontents01:nth-child(1) {
  width: calc(100% - 35.16666666666667vw); /* 1800px基準でwidth: calc(100% - 633px); */
}
.welfaredetailcontents01:nth-child(2) {
  width: 35.16666666666667vw; /* 1800px基準でwidth: 633px; */
}
.welfaredetailcontents02 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.welfaredetailcontents02:nth-child(1) {
  width: calc(100% - 35.16666666666667vw); /* 1800px基準でwidth: calc(100% - 633px); */
  order: 2;
}
.welfaredetailcontents02:nth-child(2) {
  width: 35.16666666666667vw; /* 1800px基準でwidth: 633px; */
  order: 1;
}
.welfaredetailtitlewrap01 {
  border-bottom: 1px solid #c8d5e2;
  margin: 0 0 20px;
  padding: 0 0 20px;
}
.welfaredetailtitlewrap01 ul {
  display: block;
  margin: 0;
  padding: 0;
}
.welfaredetailtitlewrap01 ul li {
  font-size: 1.9444444444444444vw; /* 1800px基準でfont-size: 35px; */
  font-weight: 500;
  color: #31475d;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  list-style: none;
}
.welfaredetailtitlewrap01 ul li p {
  display: block;
}
.welfaredetailtextwrap01 {
  width: 100%;
  padding: 0 20px 0 0;
}

#welfarelistwrap01 {
  width: 100%;
  background: rgba(234,240,252,1.0);
}
#welfarelistwrap02 {
  width: min(67.44444444444444vw, var(--container)); /* 1800px基準で1214px */
  margin: 0 auto;
  padding: 65px 0;
}
ul.welfarelist01 {
  width: 100%;
  display: flex;
  gap: 0 4.444444444444445vw; /* 1800px基準でgap: 0 80px; */
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #c8d5e2;
}
ul.welfarelist01:last-child {
  border-bottom: none;
}
ul.welfarelist01 li {
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  margin: 0.5em 0;
}
ul.welfarelist01 li:nth-child(1) {
  width: 11.11111111111111vw;  /* 1800px基準でwidth: 200px; */
  margin: 0.5em 1em;
  font-weight: 600;
}
ul.welfarelist01 li:nth-child(2) {
  width: calc(100% - 11.11111111111111vw);
}
@media (max-width: 767.98px) {
  .welfaredetailwrap01 {
    width: 100%;
    margin: 0;
  }
  .welfaredetailwrap02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 30px 0;
  }
  .welfaredetailinner01 {
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
  }
  .welfaredetailinner01:last-child {
    padding: 0;
  }
  .welfaredetailinner02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    display: flex;
    padding: 0 0 30px;
  }
  .welfaredetailinner02:last-child {
    padding: 0;
  }
  .welfaredetailinner01 .sec-head {
    display: block;
    margin: 0;
    text-align: left;
  }
  .welfaredetailinner02 .sec-head {
    display: block;
    margin: 0;
    text-align: left;
  }
  .welfaredetailcontents01 {
    width: auto;
    display: flex;
    flex-direction: column;
  }
  .welfaredetailcontents01:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
  }
  .welfaredetailcontents01:nth-child(2) {
    width: 100%;
  }
  .welfaredetailcontents02 {
    width: auto;
    display: flex;
  }
  .welfaredetailcontents02:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
    order: 1;
  }
  .welfaredetailcontents02:nth-child(2) {
    width: 100%;
    flex-direction: column;
    order: 2;
  }
  .welfaredetailtitlewrap01 {
    border-bottom: 1px solid #c8d5e2;
    margin: 0 0 10px;
    padding: 0 0 10px;
  }
  .welfaredetailtitlewrap01 ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .welfaredetailtitlewrap01 ul li {
    font-size: 20px;
    font-weight: 500;
    color: #31475d;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .welfaredetailtitlewrap01 ul li p {
    display: block;
  }
  .welfaredetailtextwrap01 {
    width: 100%;
    padding: 0;
  }

  #welfarelistwrap01 {
    width: 100%;
    background: rgba(234,240,252,1.0);
  }
  #welfarelistwrap02 {
    width: 94%;
    margin: 0 auto;
    padding: 20px 0;
  }
  ul.welfarelist01 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 15px;
    padding: 0 0 15px;
    list-style: none;
    border-bottom: 1px solid #c8d5e2;
  }
  ul.welfarelist01:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
  }
  ul.welfarelist01 li {
    font-size: 15px;
    margin: 0;
  }
  ul.welfarelist01 li:nth-child(1) {
    width: 100%;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }
  ul.welfarelist01 li:nth-child(2) {
    width: 100%;
  }
  ul.welfarelist01 li p {
    margin: 0;
  }
}

/*---------------------------------
法人概要
---------------------------------*/
.companydetailwrap01 {
  width: 100%;
  margin: 65px 0 0;
  background: #faf9f7;
}
.companydetailwrap02 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  padding: 65px 0;
}
.companydetailwrap03 {
  width: 100%;
  margin: 0;
}
.companydetailwrap04 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  padding: 65px 0;
}
.companydetailinner01 {
  width: 52.5vw; /* 1800px基準で945px */
  margin: 0 auto;
  padding: 0 0 4.444444444444445vw; /* 1800px基準でpadding: 0 0 80px; */
}
.companydetailinner01:last-child {
  padding: 0;
}
.companydetailinner01 .sec-head {
  display: table;
  margin: 0 auto;
  text-align: center;
}
.companydetailinner02 {
  display: flex;
  padding: 0 0 4.444444444444445vw; /* 1800px基準でpadding: 0 0 80px; */
}
.companydetailinner02:last-child {
  padding: 0;
}
.companydetailinner02 .sec-head {
  display: table;
  margin: 0 auto;
  text-align: center;
}
.companyimgwrap01 {
  width: 43.888888888888886vw; /* 1800px基準でwidth: 790px; */
  margin: 0 auto;
  display: flex;
  gap: 0 7.777777777777778vw; /* 1800px基準でgap: 0 140px; */
}
.companyimginner01 {
  width: calc(100% / 2);
}

.companymap01 {
  width: 100%;
  background: #ffffff;
}
.companymap01 iframe {
  width: 100%;
  height: 500px;
}

.companydetailtitlewrap01 {
  border-bottom: 1px solid #c8d5e2;
  margin: 0 0 20px;
  padding: 0 0 20px;
}
.companydetailtitlewrap01 ul {
  display: block;
  margin: 0;
  padding: 0;
}
.companydetailtitlewrap01 ul li {
  font-size: 1.9444444444444444vw; /* 1800px基準でfont-size: 35px; */
  font-weight: 500;
  color: #31475d;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  list-style: none;
}
.companydetailtitlewrap01 ul li p {
  display: block;
}
.companydetailtextwrap01 {
  width: 100%;
  padding: 0 20px 0 0;
}

#companylistwrap01 {
  width: 100%;
  background: rgba(234,240,252,1.0);
}
#companylistwrap02 {
  width: min(67.44444444444444vw, var(--container)); /* 1800px基準で1214px */
  margin: 0 auto;
  padding: 65px 0;
}
ul.companylist01 {
  width: 100%;
  display: flex;
  gap: 0 4.444444444444445vw; /* 1800px基準でgap: 0 80px; */
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.companylist01 li {
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  margin: 0 0 0.5em;
  padding: 0 0 0.5em;
}
ul.companylist01 li:nth-child(1) {
  width: 11.11111111111111vw;  /* 1800px基準でwidth: 200px; */
  margin: 0 1em 0.5em;
  font-weight: 600;
  border-bottom: 1px solid #ffffff;
}
ul.companylist01 li:nth-child(2) {
  width: calc(100% - 11.11111111111111vw);
  border-bottom: 1px solid #c8d5e2;
}

.k-company-btnwrap01 { text-align: center; }
.k-company-btn01 {
  min-width: 16em;
  display:inline-block;
  align-items:center;
  gap:8px;
  padding:10px 36px;
  margin: 0 50px 0 0;
  border:1px solid #0A4E9C;
  border-radius:999px;
  font-weight:500;
  text-align: center;
  color:#0A4E9C;
  background:#fff;
}
.k-company-btn01:last-child {
  margin: 0;
}
.k-company-btn01::before { content:"→"; font-size:18px; line-height:1; }
@media (max-width: 767.98px) {
  .companydetailwrap01 {
    width: 100%;
    margin: 30px 0 0;
    background: #faf9f7;
  }
  .companydetailwrap02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 30px 0;
  }
  .companydetailwrap03 {
    width: 100%;
    margin: 0;
  }
  .companydetailwrap04 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 30px 0;
  }
  .companydetailinner01 {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 30px;
  }
  .companydetailinner01:last-child {
    padding: 0;
  }
  .companydetailinner02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    display: flex;
    padding: 0 0 30px;
  }
  .companydetailinner02:last-child {
    padding: 0;
  }
  .companydetailinner01 .sec-head {
    display: block;
    margin: 0;
    text-align: left;
  }
  .companydetailinner02 .sec-head {
    display: block;
    margin: 0;
    text-align: left;
  }
  .companyimgwrap01 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 0 15px;
  }
  .companyimginner01 {
    width: calc(100% / 2);
  }

  .companymap01 {
    width: 100%;
    background: #ffffff;
  }
  .companymap01 iframe {
    width: 100%;
    height: 300px;
  }

  .companydetailcontents02 {
    width: auto;
    display: flex;
  }
  .companydetailcontents02:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
    order: 1;
  }
  .companydetailcontents02:nth-child(2) {
    width: 100%;
    flex-direction: column;
    order: 2;
  }
  .companydetailtitlewrap01 {
    border-bottom: 1px solid #c8d5e2;
    margin: 0 0 10px;
    padding: 0 0 10px;
  }
  .companydetailtitlewrap01 ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .companydetailtitlewrap01 ul li {
    font-size: 20px;
    font-weight: 500;
    color: #31475d;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .companydetailtitlewrap01 ul li p {
    display: block;
  }
  .companydetailtextwrap01 {
    width: 100%;
    padding: 0;
  }

  #companylistwrap01 {
    width: 100%;
    background: rgba(234,240,252,1.0);
  }
  #companylistwrap02 {
    width: 94%;
    margin: 0 auto;
    padding: 20px 0;
  }
  ul.companylist01 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0 0 15px;
    list-style: none;
  }
  ul.companylist01 li {
    font-size: 15px;
    margin: 0;
    padding: 0.5em 0;
  }
  ul.companylist01 li:nth-child(1) {
    width: 100%;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #c8d5e2;
  }
  ul.companylist01 li:nth-child(2) {
    width: 100%;
    border-bottom: 1px solid #c8d5e2;
  }
  ul.companylist01 li p {
    margin: 0;
  }

  .k-company-btnwrap01 { text-align: center; }
  .k-company-btn01 {
    min-width: 17em;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 36px;
    margin: 0 0 15px;
    border:1px solid #0A4E9C; border-radius:999px; font-weight:500; color:#0A4E9C; background:#fff;
  }
  .k-company-btn01:last-child {
    margin: 0;
  }
  .k-company-btn01::before { content:"→"; font-size:18px; line-height:1; }
}

/* 全体ラッパ */
.profile-history {
  /* 必要なら max-width や margin はこちらに */
}

/* スクロールエリア＋バーをまとめる箱 */
.profile-history__scroll {
  position: relative;
  max-width: 670px;   /* デザインに合わせて */
  margin: 0 auto;
}

/* 実際にスクロールする中身 */
.profile-history__inner {
  max-height: min(60vh, 520px);  /* PC/SP両対応の高さ */
  overflow-y: auto;
  padding-right: 24px;           /* バー分の余白 */
  -webkit-overflow-scrolling: touch;
}

/* ネイティブスクロールバーを非表示にする */
.profile-history__inner::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.profile-history__inner {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* 旧Edge/IE */
}

/* グレーの帯（トラック） */
.profile-history__bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: #e4e3e1;
}

/* 青いバー（thumb） */
.profile-history__thumb {
  position: absolute;
  left: 0;
  width: 100%;
  height: 150px;
  background: #59a8c9;
}

/* 年表レイアウト（今までのをそのまま流用可） */
.profile-history__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-history__item {
  display: grid;
  grid-template-columns: 80px 80px 1fr; /* 年 / 月 / テキスト */
  align-items: baseline;
  column-gap: 24px;
  padding: 6px 0;
}

/* 月の左の●マーカー */
.profile-history__month {
  position: relative;
  padding-left: 18px;
}

.profile-history__month::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #265382;
  border-radius: 50%;
}

/* 年 */
.profile-history__year {
  font-size: 20px;
  font-weight: 600;
  font-family: "Klee One", cursive;
  color: #265382;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 8px;
}

/* テキスト */
.profile-history__text {
  line-height: 1.8;
}

/* レスポンシブ */
@media (max-width: 767.98px) {
  .profile-history__inner {
    max-height: 70vh;
    padding-right: 16px;
  }

  .profile-history__bar {
    width: 6px;
  }

  .profile-history__item {
    grid-template-columns: 70px 70px 1fr;
    column-gap: 16px;
  }
}

/*---------------------------------
経営理念
---------------------------------*/
.philosophydetailwrap01 {
  width: 100%;
  margin: 0 0 65px;
}
.philosophydetailwrap02 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  padding: 65px 0;
}
.philosophybluelwrap01 {
  width: 100%;
  margin: 65px 0 0;
}
.philosophybluewrap02 {
  width: 100%;
  background-image: linear-gradient(30deg, rgb(42, 112, 186), rgb(67, 170, 204));
  color: #ffffff;
  padding: 65px 0;
}
.philosophybluewrap02 .section-title{ color:#ffffff; }
.philosophybluewrap02 .eyebrow{ color:#ffffff; }
.philosophybluewrap02 .eyebrow::after { background: linear-gradient(90deg, #e3f2ff, #bfe5ff); }

.philosophycatchwrap01 ul {
  display: table;
  margin: 30px auto 0;
  padding: 0;
}
.philosophycatchwrap01 ul li {
  display: block;
  text-align: center;
  line-height: 200%;
}
.philosophycatch01 {
  font-size: 2.2222222222222223vw; /* 1800px基準でfont-size: 40px; */
  font-weight: 800;
  letter-spacing: .02em;
  font-family: "Klee One", cursive;
  text-align: center;
  color: #265382;
}
.philosophydetailimgwrap01 {
  width: 87.33333333333333vw; /* 1800px基準で1572px */
  margin: 0 auto;
  padding: 3.6666666666666665vw 4.833333333333333vw; /* 1800px基準でpadding: 66px 87px; */
  background: url(../philosophy/images/imgbg01.png) no-repeat;
  background-size: contain;
}
.philosophydetailimgwrap02 {
  width: 39.5vw; /* 1800px基準でwidth: 711px; */
  margin: 0 auto;
}

.philosophydetailinner01 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  padding: 0 0 4.444444444444445vw; /* 1800px基準でpadding: 0 0 80px; */
}
.philosophydetailinner01:last-child {
  padding: 0;
}
.philosophydetailinner01 .sec-head {
  display: table;
  margin: 0 auto;
  text-align: center;
}

.philosophydetailwhitewrap01 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  padding: 3.6666666666666665vw; /* 1800px基準でpadding: 66px; */
  background: #ffffff;
}
.philosophydetailwhiteinner01 {
  display: flex;
  padding: 0 0 50px;
}
.philosophydetailwhiteinner01:last-child {
  padding: 0;
}
.philosophydetailcontents01 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.philosophydetailcontents01:nth-child(1) {
  width: calc(100% - 39.5vw); /* 1800px基準でwidth: calc(100% - 711px); */
}
.philosophydetailcontents01:nth-child(2) {
  width: 39.5vw; /* 1800px基準でwidth: 711px; */
}

.philosophyimgwrap01 {
  width: 43.888888888888886vw; /* 1800px基準でwidth: 790px; */
  margin: 0 auto;
  display: flex;
  gap: 0 7.777777777777778vw; /* 1800px基準でgap: 0 140px; */
}
.philosophyimginner01 {
  width: calc(100% / 2);
}

.philosophymap01 {
  width: 100%;
  background: #ffffff;
}
.philosophymap01 iframe {
  width: 100%;
  height: 500px;
}

.philosophydetailtitlewrap01 {
  border-bottom: 1px solid #c8d5e2;
  margin: 0 0 20px;
  padding: 0 0 20px;
}
.philosophydetailtitlewrap01 ul {
  display: block;
  margin: 0;
  padding: 0;
}
.philosophydetailtitlewrap01 ul li {
  display: block;
  font-size: 1.9444444444444444vw; /* 1800px基準でfont-size: 35px; */
  font-weight: 500;
  color: #31475d;
  line-height: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.philosophydetailtitleicon01 {
  width: 6.388888888888888vw; /* 1800px基準でwidth: 115px; */
}
.philosophydetailtextwrap01 {
  width: 100%;
  font-size: 1.4444444444444444vw; /* 1800px基準でfont-size: 22px; */
  padding: 0 20px 0 0;
  color: #31475d;
}
@media (max-width: 767.98px) {
  .philosophydetailwrap01 {
    width: 100%;
    margin: 0 0 30px;
  }
  .philosophydetailwrap02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 30px 0;
  }
  .philosophybluelwrap01 {
    width: 100%;
    margin: 30px 0 0;
  }
  .philosophybluewrap02 {
    width: 100%;
    background-image: linear-gradient(30deg, rgb(42, 112, 186), rgb(67, 170, 204));
    color: #ffffff;
    padding: 30px 0;
  }
  .philosophybluewrap02 .section-title{ color:#ffffff; }
  .philosophybluewrap02 .eyebrow{ color:#ffffff; }
  .philosophybluewrap02 .eyebrow::after { background: linear-gradient(90deg, #e3f2ff, #bfe5ff); }

  .philosophycatchwrap01 ul {
    display: table;
    margin: 15px auto 0;
    padding: 0;
  }
  .philosophycatchwrap01 ul li {
    display: block;
    text-align: left;
    line-height: 180%;
  }
  .philosophycatch01 {
    font-size: 4vw; /* 750px基準でfont-size: 30px; */
    font-weight: 800;
    letter-spacing: .02em;
    font-family: "Klee One", cursive;
    text-align: center !important;
    color: #265382;
  }
  .philosophydetailimgwrap01 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 4%;
    background: url(../philosophy/images/imgbg01.png) no-repeat;
    background-size: contain;
  }
  .philosophydetailimgwrap02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
  }

  .philosophydetailinner01 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 0 0 30px;
  }
  .philosophydetailinner01:last-child {
    padding: 0;
  }
  .philosophydetailinner01 .sec-head {
    display: block;
    margin: 0;
    text-align: left;
  }

  .philosophydetailwhitewrap01 {
    width: 100%;
    margin: 0 auto;
    padding: 4%;
    background: #ffffff;
  }
  .philosophydetailwhiteinner01 {
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
  }
  .philosophydetailwhiteinner01:last-child {
    padding: 0;
  }
  .philosophydetailcontents01 {
    width: auto;
    display: flex;
    flex-direction: column;
  }
  .philosophydetailcontents01:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
  }
  .philosophydetailcontents01:nth-child(2) {
    width: 100%;
  }

  .philosophydetailtitlewrap01 {
    border-bottom: 1px solid #c8d5e2;
    margin: 0 0 10px;
    padding: 0 0 1cqh;
  }
  .philosophydetailtitlewrap01 ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .philosophydetailtitlewrap01 ul li {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #31475d;
    line-height: 1;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .philosophydetailtitleicon01 {
    width: 9.333333333333334vw; /* 750px基準でwidth: 70px; */
  }
  .philosophydetailtextwrap01 {
    width: 100%;
    font-size: 15px;
    padding: 0 20px 0 0;
    color: #31475d;
  }
}

/*---------------------------------
ご挨拶
---------------------------------*/
.greetingdetailwrap01 {
  width: 100%;
  margin: 65px 0 0;
  padding: 65px 0;
  background: #faf9f7;
}
.greetingdetailwrap02 {
  padding: 65px 0;
  background: url(../greeting/images/rightbg01.png) no-repeat;
  background-position: top right;
  background-size: 25% 100%;
}
.greetingdetailwrap03 {
  padding: 65px 0;
  background: url(../greeting/images/leftbg01.png) no-repeat;
  background-position: top left;
  background-size: 25% 100%;
}
.greetingwhitebg01 {
  background: #ffffff;
  padding: 65px 0 0;
}
.greetingdetailgrdwrap01 {
  width: 100%;
  background-image: linear-gradient(#ffffff, #ffffff 25%, #faf9f7 25%, #faf9f7);
  padding: 25px 0 65px;
}
.greetingdetailgrdwrap02 {
  width: 100%;
  background-image: linear-gradient(#ffffff, #ffffff 33%, #faf9f7 33%, #faf9f7);
  padding: 25px 0 65px;
}
.greetingdetailgrdwrap03 {
  width: 100%;
  background-image: linear-gradient(#faf9f7, #faf9f7 25%, #ffffff 25%, #ffffff);
  padding: 25px 0 65px;
}
.greetingdetailinner01 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  display: flex;
  gap: 0 3.3333333333333335vw; /* 1800px基準でgap: 0 60px; */
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.greetingdetailinner01:last-child {
  padding: 0;
}
.greetingdetailinner01 .sec-head {
  margin: 0;
}
.greetingdetailinner01 .sec-head span.subtitlewrap01 {
  font-size: 1.9444444444444444vw; /* 1800px基準でfont-size: 35px; */
  font-weight: 500;
  line-height: 100%;
  color: #31475d;
  border-left: 10px solid #43aacc;
  padding: 0 1em;
  margin: 0 0 0 1em;
  vertical-align: middle;
}
.greetingdetailinner01 .sec-head span.subsmalltitlewrap01 {
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.1em;
  color: #94d0ed;
  vertical-align: middle;
}
.greetingdetailinner02 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  display: flex;
  gap: 0 4.444444444444445vw; /* 1800px基準でgap: 0 80px; */
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.greetingdetailinner02:last-child {
  padding: 0; /* 1800px基準でpadding: 0; */
}
.greetingdetailinner03 {
  width: 77.77777777777779vw; /* 1800px基準で1400px */
  margin: 0 auto;
  padding: 0 0 6.388888888888888vw; /* 1800px基準でpadding: 0 0 115px; */
}
.greetingdetailinner03:last-child {
  padding: 0; /* 1800px基準でpadding: 0; */
}
.greetingdetailcontents01 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.greetingdetailcontents01:nth-child(1) {
  width: calc(100% - 23.72222222222222vw); /* 1800px基準でwidth: calc(100% - 427px); */
}
.greetingdetailcontents01:nth-child(2) {
  width: 23.72222222222222vw; /* 1800px基準でwidth: 427px; */
}
.greetingdetailcontents01 .sec-head {
  margin: 0 0 50px;
}
.greetingdetailcontents02 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.greetingdetailcontents02:nth-child(1) {
  width: calc(100% - 23.72222222222222vw); /* 1800px基準でwidth: calc(100% - 427px); */
  order: 2;
}
.greetingdetailcontents02:nth-child(2) {
  width: 23.72222222222222vw; /* 1800px基準でwidth: 427px; */
  order: 1;
}
.greetingdetailcontents02 .sec-head {
  margin: 0 0 50px;
}
.greetingdetailtitlewrap01 {
  margin: 0 0 20px;
  padding: 0 0 20px;
}
.greetingdetailtitlewrap01 ul {
  display: block;
  margin: 0;
  padding: 0;
}
.greetingdetailtitlewrap01 ul li {
  display: block;
  font-size: 1.1111111111111112vw; /* 1800px基準でfont-size: 20px; */
  font-weight: 600;
  font-family: "Klee One", cursive;
  color: #265382;
  margin: 0 0 0.1em;
  padding: 0;
  list-style: none;
}
.greetingdetailconentswrap01 {
  margin: 0 0 1.5em;
}
.greetingdetailconentswrap01:last-child {
  margin: 0;
}
.greetingdetailcatchwrap01 {
  font-size: 1vw; /* 1800px基準でfont-size: 18px; */
  font-weight: 600;
  line-height: 180%;
  color: #2a70ba;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: #a5bbd9;
  padding: 0 0 20px;
}
.greetingdetailtextwrap01 {
  width: 100%;
  font-size: 0.9333333333333335vw; /* 1800px基準でfont-size: 16.8px; */
  color: #3e3a3a;
}
ul.greetingprofile01 {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.greetingprofile01 li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9333333333333335vw; /* 1800px基準でfont-size: 16.8px; */
  font-weight: 600;
  font-family: "Klee One", cursive;
  color: #265382;
  text-align: right;
}
ul.greetingprofile01 li:nth-child(1) {
  margin: 0 0 1em;
  padding: 0;
}
.greetingname01 {
  font-size: 1.1111111111111112vw; /* 1800px基準でfont-size: 20px; */
}
.greetingbannerwrap01 {
  width: 67.94444444444444vw; /* 1800px基準でwidth: 1223px; */
  display: flex;
  gap: 0 40px;
  margin: 60px auto;
}
.greetingbannerwrap01 a {
  width: calc(100% / 2);
}
.greetingbannerwrap01 img {
  width: 100%;
  height: auto;
  display: block;
}
.greetingbannerwrap02 {
  width: 57.55555555555556vw; /* 1800px基準でwidth: 1036px; */
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .greetingdetailwrap01 {
    width: 100%;
    margin: 30px 0 0;
    padding: 0;
    background: #faf9f7;
  }
  .greetingdetailwrap02 {
    margin: 0;
    padding: 30px 0;
    background: none;
  }
  .greetingdetailwrap03 {
    margin: 0;
    padding: 30px 0;
    background: none;
  }
  .greetingdetailgrdwrap01 {
    width: 100%;
    background-image: linear-gradient(#ffffff, #ffffff 17%, #faf9f7 17%, #faf9f7);
    padding: 35px 0 65px;
  }
  .greetingdetailgrdwrap02 {
    width: 100%;
    background-image: linear-gradient(#ffffff, #ffffff 20%, #faf9f7 20%, #faf9f7);
    padding: 35px 0 65px;
  }
  .greetingdetailgrdwrap03 {
    width: 100%;
    background-image: linear-gradient(#faf9f7, #faf9f7 17%, #ffffff 17%, #ffffff);
    padding: 35px 0 65px;
  }
  .greetingdetailinner01 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
  }
  .greetingdetailinner01:last-child {
    padding: 0;
  }
  .greetingdetailinner02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
  }
  .greetingdetailinner02:last-child {
    padding: 0;
  }
  .greetingdetailinner03 {
    width: min(92vw, var(--container));
    margin: 0 auto;
    padding: 0 0 30px;
  }
  .greetingdetailinner03:last-child {
    padding: 0;
  }

  .greetingdetailinner01 .sec-head span.subtitlewrap01 {
    display: table-cell;
    width: auto;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    color: #31475d;
    border-left: 10px solid #43aacc;
    padding: 0 0.5em;
    margin: 0;
    vertical-align: middle;
  }
  .greetingdetailinner01 .sec-head span.subsmalltitlewrap01 {
    display: table-cell;
    width: auto;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.1em;
    color: #94d0ed ;
    vertical-align: middle;
  }
  .greetingdetailcontents01 {
    width: auto;
    display: flex;
    flex-direction: column;
  }
  .greetingdetailcontents01:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
  }
  .greetingdetailcontents01:nth-child(2) {
    width: 100%;
  }
  .greetingdetailcontents01 .sec-head {
    margin: 0 0 30px;
  }
  .greetingdetailcontents02 {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .greetingdetailcontents02:nth-child(1) {
    width: 100%;
    padding: 0 0 15px;
    order: 1;
  }
  .greetingdetailcontents02:nth-child(2) {
    width: 100%;
    order: 2;
  }
  .greetingdetailcontents02 .sec-head {
    margin: 0 0 30px;
  }
  .greetingdetailtitlewrap01 {
    margin: 0 0 20px;
    padding: 0 0 20px;
  }
  .greetingdetailtitlewrap01 ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .greetingdetailtitlewrap01 ul li {
    display: block;
    font-size: 15px;
    font-weight: 600;
    font-family: "Klee One", cursive;
    color: #265382;
    margin: 0 0 0.1em;
    padding: 0;
    list-style: none;
  }
  .greetingdetailconentswrap01 {
    margin: 0 0 1em;
  }
  .greetingdetailconentswrap01:last-child {
    margin: 0;
  }
  .greetingdetailcatchwrap01 {
    font-size: 18px;
    font-weight: 600;
    line-height: 180%;
    color: #2a70ba;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
    text-decoration-color: #a5bbd9;
    padding: 0 0 15px;
  }
  .greetingdetailtextwrap01 {
    width: 100%;
    font-size: 15px;
    color: #3e3a3a;
  }
  ul.greetingprofile01 {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  ul.greetingprofile01 li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 15px;
    font-weight: 600;
    font-family: "Klee One", cursive;
    color: #265382;
    text-align: right;
  }
  ul.greetingprofile01 li:nth-child(1) {
    margin: 0 0 1em;
    padding: 0;
  }
  .greetingname01 {
    font-size: 18px;
  }
  .greetingyoutubewrap01 {
    width: min(92vw, var(--container));
    margin: 30px auto;
  }
  .greetingbannerwrap01 {
    width: min(92vw, var(--container));
    display: flex;
    gap: 0 20px;
    margin: 30px auto;
  }
  .greetingbannerwrap01 a {
    width: calc(100% / 2);
  }
  .greetingbannerwrap01 img {
    width: 100%;
    height: auto;
    display: block;
  }
  .greetingbannerwrap02 {
    width: min(92vw, var(--container));
    margin: 0 auto;
  }
}

/*---------------------------------
フォントカラー
---------------------------------*/
.font-red01 {
  color: #d62929;
}

/*---------------------------------
改行設定
---------------------------------*/
.break:before {
  content: "\A";
  white-space: pre;
}
.pcno-break:before {
  content: "";
  white-space: pre;
}
.spno-break:before {
  content: "\A";
  white-space: pre;
}
@media (max-width: 767.98px) {
  .break:before {
    content: "\A";
    white-space: pre;
  }
  .pcno-break:before {
    content: "\A";
    white-space: pre;
  }
  .spno-break:before {
    content: "";
    white-space: pre;
  }
}

/*2026-02-09*/

/* ===== Corporate News ===== */
.corp-news{
  padding: 110px 0 120px;
  background: #fff;
}

.corp-news__head{
  text-align: center;
  margin-bottom: 54px;
}

.corp-news__en{
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: .22em;
  color: #7b3a3a;
  font-size: 12px;
}

.corp-news__ttl{
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: .06em;
  color: #252a2f;
}

.corp-news__list{
  width: min(980px, 100%);
  margin: 0 auto;
  border-top: 1px solid #e9e9e9;
}

.corp-news__item{
  display: grid;
  grid-template-columns: 160px 140px 1fr;
  align-items: center;
  column-gap: 22px;
  padding: 24px 10px;
  border-bottom: 1px solid #e9e9e9;
  color: inherit;
}

.corp-news__date{
  font-size: 14px;
  color: #252a2f;
  letter-spacing: .02em;
}

.corp-news__tag{
  justify-self: start;
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid #efcfd4;
  background: #fff6f7;
  color: #7b3a3a;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  white-space: nowrap;
}

.corp-news__title{
  font-size: 16px;
  font-weight: 500;
  color: #252a2f;
  line-height: 1.6;
  text-decoration: none;
}
.corp-news__title:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== News button（丸ボタン） ===== */
.corp-news__more{
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.corp-btn-pill{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 38px;
  border-radius: 999px;
  border: 2px solid #d9d9d9;
  background: #fff;
  text-decoration: none;
  color: #252a2f;
  font-weight: 700;
}

.corp-btn-pill__arrow{
  width: 10px;
  height: 10px;
  display: inline-block;
  transform: rotate(-45deg);
  border-right: 2px solid #b64b57;
  border-bottom: 2px solid #b64b57;
}

.corp-btn-pill:hover{
  transition: transform .2s ease;
}

/* ===== 修志会の想い + 導線3枚 ===== */
.corp-vision{
  position: relative;
  padding: 120px 0 110px;
  background: url("../images/corp-vision-bg.jpg");
  background-size: cover;
  overflow: hidden;
}
/* corp-visionだけ container を 1400px に */
.corp-vision .container{
  max-width: 1400px;
}

/* シルク調 背景（画像は後で差替え） */
.corp-vision::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("../images/bg-silk.jpg") center/cover no-repeat; /* ★あなたが用意する画像に差替え */
  opacity: .22; /* かなり薄め */
  pointer-events:none;
}

/* 見出し */
.corp-vision__head{
  position: relative;  /* ★これが重要：floatの基準 */
  text-align: center;
  padding-top: 10px;
  padding-bottom: 40px; /* ★floatがhead内に収まるよう余白を少し確保 */
}

.corp-vision__mark{
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  background: #7b3a3a;
  -webkit-mask: url("../images/mark-s.svg") center/contain no-repeat;
  mask: url("../images/mark-s.svg") center/contain no-repeat;
}

/* ひとまずSマークが未用意でも崩れない保険 */
@supports not (mask: url("")) {
  .corp-vision__mark{
    border-radius: 999px;
    background: #7b3a3a;
  }
}

.corp-vision__ttl{
  margin: 0 0 34px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: .08em;
  color: #7b3a3a;
}

/* ===== corp-vision title：1文字ずつ下からフェード ===== */
.corp-vision__ttl .vchar{
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(1.5px);
  will-change: opacity, transform, filter;
}

.corp-vision__ttl.is-anim .vchar{
  animation: visionCharIn .75s ease forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes visionCharIn{
  to{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.corp-vision__lead{
  margin: 0;
  font-size: 20px;
  color: #7b3a3a;
  letter-spacing: .06em;
  line-height: 2.2;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;

}

.corp-vision__quote{
  margin: 18px 0 18px;
  font-size: 24px;
  font-weight: 700;
  color: #7b3a3a;
  letter-spacing: .06em;
  line-height: 2.2;
  font-family: "Zen Old Mincho", serif;
}

/* 浮遊する正方形4つ（ベタ塗り仮） */
.corp-vision__float{
  position:absolute;
  width: 140px;
  height: 140px;
  background: rgba(239, 207, 212, .55); /* 仮：薄ピンク */
  border-radius: 2px;
  filter: blur(.2px);
  opacity: .65;
  animation: corpFloatY 6.8s ease-in-out infinite;
  pointer-events:none;
  z-index: 0;
}
.corp-vision__head > *:not(.corp-vision__float){
  position: relative;
  z-index: 1;
}
/* head内配置に最適化（PC） */
.corp-vision__float--lt{ left: 70px;  top: 40px;  animation-duration: 6.2s; }
.corp-vision__float--lb{ left: 160px; top: 260px; width: 64px;  height: 64px;  animation-duration: 5.2s; animation-delay: -1.4s; opacity: .45; }
.corp-vision__float--rt{ right: 80px; top: 28px;  width: 160px; height: 160px; animation-duration: 5.8s; animation-delay: -2.0s; }
.corp-vision__float--rb{ right: 90px; top: 280px; width: 90px;  height: 90px;  animation-duration: 5.4s; animation-delay: -1.0s; opacity: .50; }

@keyframes corpFloatY{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-28px); } /* ←振れ幅UP */
  100% { transform: translateY(0); }
}

/* カード3枚 */
.corp-vision__cards{
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  margin: 78px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.corp-card{
  position: relative;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.corp-card__bg{
  position:absolute;
  inset:0;

  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  /* 既存の position/inset/background 等はそのまま */
  transition: transform .35s ease; /* ★通常状態に入れるのがポイント */
}

/* 各カードの仮背景（後であなたの画像に差替え） */
.corp-card:nth-child(1) .corp-card__bg{ background: url("../images/corp-card-1.jpg") center/cover no-repeat; } /* 経営理念 */
.corp-card:nth-child(2) .corp-card__bg{ background: url("../images/corp-card-2.jpg") center/cover no-repeat; } /* ご挨拶 */
.corp-card:nth-child(3) .corp-card__bg{ background: url("../images/corp-card-3.jpg") center/cover no-repeat; } /* 法人概要 */

.corp-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(119,119,119,.25); /* #777 / 25% */
}

.corp-card__en{
  margin-top: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  font-size: 12px;
  opacity: .95;
}

.corp-card__jp{
  margin-top: -4px;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: .10em;
}

.corp-card__btn{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
}

.corp-card__arrow{
  width: 0;
  height: 0;
  display: inline-block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgba(255,255,255,.95); /* 白 */
  opacity: .9;
}

.corp-card:hover .corp-card__bg{
  transform: scale(1.08);

}
.corp-card:hover{
  transition: transform .2s ease;
}

/* ===== corp-card layering fix ===== */
.corp-card{
  position: relative;
}

/* 背景画像（いちばん下） */
.corp-card__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* 透過カラー（背景画像の上） */
.corp-card::after{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(119,119,119,.25); /* #777 / 25% */
  pointer-events: none;
}

/* テキスト・ボタン（最前面） */
.corp-card__en,
.corp-card__jp,
.corp-card__btn{
  position: relative;
  z-index: 2;
}

/* ===== corp-card：中央寄せを強めて、要素間を詰める ===== */
.corp-card{
  /* 既存のdisplay:grid / place-items を上書き */
  display: flex;
  flex-direction: column;
  justify-content: center;  /* ★縦方向の中央寄せ */
  align-items: center;
  gap: 15px;                /* ★3要素の間隔（必要なら8〜12で調整） */
  padding: 0 18px;          /* 文字が長い時の保険 */
}

/* 余計な上下マージンを殺す（離れすぎ防止） */
.corp-card__en,
.corp-card__jp,
.corp-card__btn{
  margin: 0;
}

/* 既存で margin-top が入っている場合の打ち消し */
.corp-card__en{ margin-top: 0 !important; }
.corp-card__jp{ margin-top: 0 !important; }
.corp-card__btn{ margin-top: 4px !important; } /* ボタンだけ少し下げたい場合 */

/* ===== オーダーメイドの医療（画像＋テキスト） ===== */
.corp-pm{
  padding: 120px 0 110px;
  background: #fff;
}

.corp-pm .container{
  max-width: 1400px; /* 全体の密度合わせ（必要なら削除OK） */
  text-align: center;
}

.corp-pm__head{
  position: relative;
  z-index: 2;
}

.corp-pm__en{
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: .22em;
  color: #7b3a3a;
  font-size: 12px;
}

.corp-pm__ttl{
  margin: 0 0 36px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: .06em;
  color: #252a2f;
}

.corp-pm__lead{
  margin: 0;
  font-size: 16px;
  color: #252a2f;
  letter-spacing: .06em;
  line-height: 2.4;
}

.corp-pm__desc{
  margin: 18px 0 0;
  font-size: 16px;
  color: #252a2f;
  letter-spacing: .06em;
  line-height: 2.4;
}

.corp-pm__more{
  margin: 60px 0 0;
}

/* 画像とテキストを少し重ねる */
.corp-pm__media{
  width: min(980px, 100%);
  margin: -26px auto 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition-delay: .25s; /* 少し遅れて */
  will-change: opacity, transform;
  filter: saturate(1.02);
}

/* ★スクロールで表示 */
.corp-pm__media.is-inview{
  opacity: 1;
  transform: translateY(0);
}

.corp-pm__media img{
  display: block;
  width: 100%;
  height: auto;
}

/* ===== 数字でわかる 修志会の魅力 ===== */
.corp-stats{
  position: relative;
  padding: 120px 0 110px;
  background: url(../images/corp-stats-bg.png);
  overflow: hidden;
}

.corp-stats .container{
  position: relative;
  z-index: 1;
  max-width: 1400px;
}

.corp-stats__head{
  text-align: center;
  margin-bottom: 56px;
}

.corp-stats__en{
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: .22em;
  color: #7b3a3a;
  font-size: 12px;
}

.corp-stats__ttl{
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: .06em;
  color: #252a2f;
}

/* 2×2 */
.corp-stats__grid{
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

/* Card */
.stat-card{
  background: #fff;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 6px;
  padding: 34px 22px 30px;
  box-shadow: 0 18px 40px rgb(255 44 44 / 10%);
  text-align: center;
}

.stat-card__badge{
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 34px;
  padding: 0 20px;
  border-radius: 999px;
  background: #d96a78;      /* デザイン寄せ：ピンク濃 */
  color: #fff;
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 16px;
}

.stat-card__catch{
  margin: 0 0 18px;
  color: #d96a78;          /* デザイン寄せ：見出しピンク */
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.8;
  font-size: 16px;
}

.stat-card__value{
  margin: 6px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center; /* 全体は中央 */
  gap: 14px;               /* アイコンと数字の隙間 */
}

.stat-card__icon{
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: rgba(217,106,120,.08);
  border: 1px solid rgba(217,106,120,.20);
  position: relative;
  flex: 0 0 auto;
}
/* SVGアイコン表示（共通） */
.stat-card__icon{
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px 50px; /* 必要なら調整 */
  border: none;              /* 枠が不要なら。残したいなら消さない */
}

/* 既存のダミー線画を消す */
.stat-card__icon::after{
  content: none !important;
}

/* 1: 拠点数 */
.corp-stats__grid .stat-card:nth-child(1) .stat-card__icon{
  background-image: url("../images/stat-card-icon-1.svg");
}

/* 2: 訪問医療件数 */
.corp-stats__grid .stat-card:nth-child(2) .stat-card__icon{
  background-image: url("../images/stat-card-icon-2.svg");
}

/* 3: スタッフ数（ファイル名が怪しいので保険で2つ） */
.corp-stats__grid .stat-card:nth-child(3) .stat-card__icon{
  background-image: url("../images/stat-card-icon-3.svg");
}

/* 4: 外来数 */
.corp-stats__grid .stat-card:nth-child(4) .stat-card__icon{
  background-image: url("../images/stat-card-icon-4.svg");
}

.stat-card__icon--people::after{
  inset: 20px;
  border-radius: 999px;
}
.stat-card__icon--clip::after{
  inset: 16px 22px 22px 16px;
}
.stat-card__icon--hospital::after{
  inset: 16px;
  border-radius: 6px;
}

.stat-card__num{
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  color: #d96a78; /* 数字の色 */
  font-weight: 900;
}

.stat-card__num .value{
  font-size: 64px;
  line-height: 1;
  letter-spacing: .02em;
}

.stat-card__unit{
  font-size: 18px;
  color: #d96a78;
  font-weight: 900;
}

.stat-card__desc{
  margin: 0;
  color: #252a2f;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: .06em;
}

.stat-card__desc span{
  font-size: 12px;
  color: #d26977;
  font-weight: 600;
}

/* 下の大きい注釈ボックス */
.corp-stats__note{
  width: min(1120px, 100%);
  margin: 54px auto 0;
  background: #fff;
  border: 1px solid #df7079;
  border-radius: 999px;
  padding: 36px 34px;
  text-align: center;
}

.corp-stats__note-ttl{
  margin: 0 0 15px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #252a2f;
  font-size: 19px;
}

.corp-stats__note-txt{
  margin: 0;
  color: #252a2f;
  font-size: 16px;
  line-height: 2.0;
  letter-spacing: .06em;
}

/* ===== 診療案内（カード一覧） ===== */
.corp-services{
  position: relative;
  padding: 120px 0 110px;
  background: #f3d9dd; /* デザイン寄せ：淡いピンク */
  overflow: hidden;
}

.corp-services .container{
  position: relative;
  max-width: 1200px;
}

/* 右側：縦書き見出し */
.corp-services__sidehead{
  position: absolute;
  right: 80px;
  top: 0;
  display: grid;
  justify-items: center;  /* 子要素の中央ラインを揃える */
  align-items: start;
  text-align: center;
}

/* 縦書きは見かけの中心がズレやすいので微調整 */
.corp-services__ttl{
  transform: translateX(2px); /* 0〜3pxの範囲で微調整。まず2px */
}

.corp-services__en{
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: .22em;
  color: #7b3a3a;
  font-size: 12px;
}

.corp-services__ttl{
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: .08em;
  color: #252a2f;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* 左側：白パネル（縦見出しの分、右に余白を残す） */
.corp-services__panel{
  width: min(860px, 100%);
  margin: 0 auto;
  background: #fff;
  padding: 60px 60px;
  box-shadow: 0 18px 40px rgb(255 44 44 / 10%);
}

/* PC：診療案内パネルを「数字でわかる」のグリッドと同幅・同左端に揃える */
@media (min-width: 768px){
  .corp-services__panel{
    width: 900px; /* corp-stats__grid の幅に合わせる */
    margin-left: 0;
    margin-right: auto;       /* container内で同じ基準の中央＝左端も一致 */
  }
}

.corp-services__intro{
  margin: 0 0 60px;
  text-align: left;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: .06em;
  color: #252a2f;
}

/* カード：2列 */
.corp-services__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 44px;
  row-gap: 34px;
  padding: 0 30px;
}

.svc-card--wide{
  grid-column: 1 / -1;
  justify-self: start;
  max-width: none;
  width: calc((100% - 44px) / 2); /* column-gap:44px に合わせて左半分 */
}

.svc-card{
  display: grid;
  grid-template-rows: auto auto;
  text-decoration: none;
  color: inherit;
}

.svc-card__img{
  display: block;
  overflow: hidden;
  background: #eee;
}

.svc-card__img img{
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
  transition: transform .35s ease; /* ★通常状態に入れる（戻りもゆっくり） */
}

.svc-card__label{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px 16px 36px;
  font-weight: 500;
  letter-spacing: .06em;
  color: #252a2f;
  font-size: 16px;
  border-bottom: 1px solid #ececec;
}

/* テキストは中央、矢印は右端固定 */
.svc-card__label > span{
  position: relative;
  display: inline-block;
  padding-right: 30px; /* 矢印分の余白 */
}

.svc-card__label > span::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #b64b57; /* 診療案内のアクセント色 */
  opacity: .9;
}

/* hover */
.svc-card:hover .svc-card__img img{
  transform: scale(1.05);
}
.svc-card:hover .svc-card__label{

}

/* ===== 事業所一覧（地図＋導線） ===== */
.corp-fac{
  position: relative;
  padding: 120px 0 110px;
  background: url("../images/corp-fac-bg.jpg");
  background-size: cover;
  overflow: hidden;
}

/* 背景ぼかし（後で画像差替え） */
.corp-fac::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("../images/bg-facilities-dummy.jpg") center/cover no-repeat;
  opacity: .85;
  filter: blur(0px);
  pointer-events:none;
}

.corp-fac .container{
  position: relative;
  z-index: 1;
  max-width: 1400px;
}

.corp-fac__head{
  text-align: center;
  margin-bottom: 34px;
}
.corp-fac__en{
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: .22em;
  color: #7b3a3a;
  font-size: 12px;
}
.corp-fac__ttl{
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: .06em;
  color: #252a2f;
}

/* PC地図 */
.corp-fac__map{
  width: 835px;
  margin: 22px auto 120px;
}
.corp-fac__map img{
  width: 100%;
  height: auto;
  display: block;
}

/* CTA 2枚 */
.corp-fac__cta{
  width: min(820px, 100%);
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.cta-card{
  position: relative;
  display: grid;
  place-items: center;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  padding: 25px;
}

/* ===== cta-card layering fix ===== */
.cta-card__bg{
  z-index: 0;
  transition: transform .35s ease; /* ★戻りもゆっくりにする */
}

.cta-card::after{
  z-index: 1;
  pointer-events: none;
}

/* テキスト類だけ最前面 */
.cta-card__en,
.cta-card__jp,
.cta-card__btn{
  position: relative;
  z-index: 2;
}

.cta-card__bg{
  position:absolute; inset:0;
  background: #8c8c8c; /* 仮（後で画像に） */
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
/* 事業所一覧CTA（1枚目）背景画像 */
.corp-fac__cta .cta-card:nth-child(1) .cta-card__bg{
  background-image: url("../images/cta-card-bg-01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* 診療案内CTA（2枚目）背景画像 */
.corp-fac__cta .cta-card:nth-child(2) .cta-card__bg{
  background-image: url("../images/cta-card-bg-02.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-card__bg--alt{ background:#6f93a8; }
.cta-card::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,.25);
}

/* 事業所一覧CTA（1枚目）茶色フィルター */
.corp-fac__cta .cta-card:nth-child(1)::after{
  background: rgba(92, 63, 45, .35); /* 茶色系 / 不透明度は調整 */
}
/* 診療案内CTA（2枚目）青色フィルター */
.corp-fac__cta .cta-card:nth-child(2)::after{
  background: rgba(42, 92, 140, .35); /* 青系 / 不透明度は調整 */
}

.cta-card__en{
  font-weight: 800;
  letter-spacing: .16em;
  font-size: 12px;
  opacity: .95;
}
.cta-card__jp{
  font-weight: 600;
  font-size: 28px;
  letter-spacing: .15em;
  margin-top: -2px;
}
.cta-card__btn{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  font-weight: 700;
  font-size: 14px;
}
.cta-card__arrow{
  width: 0;
  height: 0;
  display: inline-block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgba(255,255,255,.95);
  opacity: .9;
}

.cta-card:hover .cta-card__bg{ transform: scale(1.08); }
.cta-card:hover{transition: transform .2s ease; }

/* PC/SP 表示切替 */
.pc-only{ display:block; }
.sp-only{ display:none; }

/* ===== Footer banners ===== */
.footer-bnr{
  padding: 100px 0 100px;
  background: #fff;
}
/* STAFFバナー：『スタッフ紹介』の左に▶を追加 */
.footer-bnr__card--staff .footer-bnr__jp{
  position: relative;
}

.footer-bnr__card--staff .footer-bnr__jp::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #c88a5d;
  opacity: .9;
}

/* STAFF：『スタッフ紹介』の直後に▶ */
.footer-bnr__card--staff .footer-bnr__jp{
  padding-right: 0;            /* 右寄せ対策を解除 */
}

.footer-bnr__card--staff .footer-bnr__jp::after{
  content: "";
  display: inline-block;
  margin-left: 8px;            /* 文字との隙間 */
  vertical-align: middle;

  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #c88a5d;
  opacity: .9;

  /* 右寄せ用のabsoluteを打ち消す */
  position: static;
  transform: none;
}

/* COLUMNバナー：『コラム』の右に▶を追加 */
.footer-bnr__card--column .footer-bnr__jp{
  position: relative;
  padding-right: 14px; /* ▶分の余白 */
}

.footer-bnr__card--column .footer-bnr__jp::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #8f6b6d; /* COLUMN側のアクセント色 */
  opacity: .9;
}

/* COLUMN：『コラム』の直後に▶ */
.footer-bnr__card--column .footer-bnr__jp{
  padding-right: 0;
}

.footer-bnr__card--column .footer-bnr__jp::after{
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;

  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #8f6b6d;
  opacity: .9;

  position: static;
  transform: none;
}

.footer-bnr .container{
  max-width: 914px;
}

.footer-bnr__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: stretch;
}

/*
.footer-bnr__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: stretch;
}
*/

.footer-bnr__card{
  position: relative;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  align-items: end;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
  width: 432px;
}

.footer-bnr__img{
  position: absolute;
  inset: 0;
  background: #ddd center/cover no-repeat;
  transform: scale(1.02);
  transition: transform .35s ease; /* ★戻りもゆっくり */
}

/* 画像は仮。後で差替え */
.footer-bnr__card--staff .footer-bnr__img{ background-image: url("../images/footer-staff.jpg"); }
.footer-bnr__card--column .footer-bnr__img{ background-image: url("../images/footer-column.jpg"); }

.footer-bnr__label{
  position: relative;
  z-index: 1;
  margin: 0 0 18px 18px;
  padding: 16px 22px 16px 22px;
  width: 220px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
  color: #252a2f;
}

.footer-bnr__en{
  display: block;
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 28px;
  line-height: 1.1;
  color: #c88a5d; /* STAFF側のニュアンス（必要なら後で個別化） */
}
.footer-bnr__card--column .footer-bnr__en{ color: #8f6b6d; }

.footer-bnr__jp{
  display: block;
  margin-top: 6px;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 14px;
}

/* hover */
.footer-bnr__card:hover{transition: transform .2s ease; }
.footer-bnr__card:hover .footer-bnr__img{ transform: scale(1.06);}

/* ===== Footer ===== */
.corp-footer{
  padding: 100px 0 100px;
  background: #fbfafa;
}

.corp-footer .container{
  max-width: 1400px;
}

.corp-footer__top{
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

.corp-footer__logo img{
  width: 320px;
  height: auto;
  display: block;
}

.corp-footer__addr{
  margin: 14px 0 0;
  font-size: 16px;
  color: #252a2f;
  letter-spacing: .04em;
}

.corp-footer__nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 4px;
}

.corp-footer__nav a{
  position: relative;
  display: inline-block;
  padding-left: 16px;
  text-decoration: none;
  color: #252a2f;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .06em;
}

/* ●の淡いピンク */
.corp-footer__nav a::before{
  content:"";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #f3c8cf;
}

.corp-footer__nav a:hover{ text-decoration: underline; text-underline-offset: 4px; }

/* 下段 */
.corp-footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
}

.corp-footer__links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  color: #252a2f;
}

.corp-footer__links li{
  display: inline-flex;
  align-items: center;
}

.corp-footer__links li + li::before{
  content: "|";
  margin: 0 14px;
  color: rgba(37,42,47,.45);
}

.corp-footer__links a{
  text-decoration: none;
  color: #252a2f;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
}

.corp-footer__links a:hover{ text-decoration: underline; text-underline-offset: 4px; }

.corp-footer__copy{
  margin: 0;
  font-size: 13px;
  color: rgba(37,42,47,.55);
  letter-spacing: .02em;
  white-space: nowrap;
}

/* ===== RECRUIT float: always on top (PC/SP) ===== */
.recruit-float{
  position: fixed !important;
  z-index: 2147483647 !important;  /* 最上位級 */
  isolation: isolate;               /* 外部スタッキングの干渉を切る */
  transform: translate3d(0,0,0);    /* 合成レイヤー化で潜りを防ぎやすい */
  pointer-events: auto;
}

/* ===== Hamburger icon：3本線を縦横完全中央 ===== */
.hamburger{
  position: relative; /* spanの基準 */
}

.hamburger span{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;              /* 線の長さ（必要なら微調整） */
  height: 2px;              /* 線の太さ */
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

/* 上・中・下の間隔（均等） */
.hamburger span:nth-child(1){ transform: translate(-50%, calc(-50% - 7px)); }
.hamburger span:nth-child(2){ transform: translate(-50%, -50%); }
.hamburger span:nth-child(3){ transform: translate(-50%, calc(-50% + 7px)); }

/* RECRUITフロート：全体を約2/3に縮小（PC） */
@media (min-width: 768px){
  .recruit-float{
    transform: scale(0.75) !important;
    transform-origin: right bottom; /* 右下基準で縮小 */
  }
}

/* =========================================================
Thoughts page : 修志会の想い
========================================================= */

/* KV画像（下層） */
.k-mainvisual--thoughts img{
  max-height: 240px;
  object-fit: cover;
}

/* 共通セクション見出し（このページ用） */
.thought-sec__en{
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: .22em;
  color: #7b3a3a;
  font-size: 12px;
  text-align: center;
}
.thought-sec__ttl{
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: .06em;
  color: #252a2f;
  text-align: center;
}

/* ===== 修志会の想い：導入 ===== */
.thought-hero{
  position: relative;
  padding: 90px 0 90px;
  background: #fff;
  overflow: hidden;
}
.thought-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("../images/bg-silk.jpg") center/cover no-repeat;
  opacity: .20;
  pointer-events:none;
}
.thought-hero__inner{
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 50px 24px 44px;
  text-align: center;
}

/* Sマーク（既存のmask資産があればそれを利用） */
.thought-hero__mark{
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  background: #7b3a3a;
  -webkit-mask: url("../images/mark-s.svg") center/contain no-repeat;
  mask: url("../images/mark-s.svg") center/contain no-repeat;
}
@supports not (mask: url("")){
  .thought-hero__mark{ border-radius: 999px; }
}

.thought-hero__ttl{
  margin: 0 0 22px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: .08em;
  color: #7b3a3a;
}
.thought-hero__lead{
  margin: 0;
  color: #7b3a3a;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: .06em;
}

/* 背景スクエア装飾 */
.thought-hero__sq{
  position:absolute;
  background: rgba(239, 207, 212, .55);
  border-radius: 2px;
  opacity: .65;
  filter: blur(.2px);
  animation: thoughtFloatY 6.8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes thoughtFloatY{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-26px); }
  100%{ transform: translateY(0); }
}
.thought-hero__sq--lt{ width: 118px; height:118px; left: 70px; top: 40px; animation-duration: 6.2s; }
.thought-hero__sq--rt{ width: 132px; height:132px; right: 80px; top: 44px; animation-duration: 5.8s; animation-delay: -1.6s; }
.thought-hero__sq--lm{ width: 44px; height:44px; left: 170px; top: 220px; animation-duration: 5.2s; opacity:.45; }
.thought-hero__sq--rm{ width: 64px; height:64px; right: 170px; top: 214px; animation-duration: 5.6s; opacity:.50; animation-delay:-1.1s; }
.thought-hero__sq--lb{ width: 90px; height:90px; left: 92px; bottom: 40px; animation-duration: 5.4s; opacity:.50; }
.thought-hero__sq--rb{ width: 62px; height:62px; right: 98px; bottom: 44px; animation-duration: 5.1s; opacity:.42; animation-delay:-1.4s; }

/* ページ内リンク：3タイル（正方形） */
.thought-tiles{
  width: min(520px, 100%);
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.thought-tile{
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}
.thought-tile__img{
  height: 140px;
  background: url("../images/thoughts-tile-philo.jpg") center/cover no-repeat;
}
.thought-tile__img--greeting{
  background-image: url("../images/thoughts-tile-greeting.jpg");
}
.thought-tile__img--company{
  background-image: url("../images/thoughts-tile-company.jpg");
}
.thought-tile__cap{
  display: grid;
  place-items: center;
  height: 44px;
  background: rgba(0,0,0,.42);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 14px;
}

/* ===== 経営理念 ===== */
.thought-philo{
  padding: 110px 0 110px;
  background: #f3d9dd; /* デザインの淡いピンク帯 */
}
.thought-philo__grid{
  width: min(1100px, 100%);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 44px;
  align-items: start;
}
.thought-philo__photo{
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}
.thought-philo__photo img{
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.thought-philo__catch{
  margin: 0 0 22px;
  font-family: "Klee One", cursive;
  font-weight: 800;
  color: #7b3a3a;
  font-size: 28px;
  line-height: 1.8;
  letter-spacing: .04em;
}
.thought-philo__body{
  color: #252a2f;
  font-size: 15px;
  line-height: 2.0;
  letter-spacing: .06em;
}
.thought-philo__body p{ margin: 0 0 14px; }
.thought-philo__more{ margin-top: 22px; display: flex; justify-content: flex-start; }

/* ===== 3ポイント ===== */
.thought-points{
  padding: 110px 0 110px;
  background: #f6f6f4; /* 生成画像の薄いグレー寄せ */
}
.thought-points__list{
  width: min(1100px, 100%);
  margin: 52px auto 0;
  display: grid;
  gap: 28px;
}

/* 1アイテム */
.thought-point{
  position: relative;
  display: grid;
  align-items: center;

  gap: 20px;
}
.thought-point--r{
  grid-template-columns: 1fr 480px;
}
.thought-point--l{
  grid-template-columns: 480px 1fr;
}

.thought-point__num{
  position: absolute;
  left: 0;
  top: -18px;
  font-family: "Zen Old Mincho", serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(217,106,120,.35);
}

.thought-point__box{
  background: #fff;
  border-radius: 8px;
  padding: 26px 28px;
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  position: relative;
}
.thought-point__box::after{
  content:"";
  position:absolute;
  right: -10px;
  bottom: -10px;
  width: 46px;
  height: 46px;
  background: rgba(239, 207, 212, .55);
}
.thought-point--l .thought-point__box::after{
  right: auto;
  left: -10px;
}

.thought-point__ttl{
  margin: 0 0 10px;
  font-weight: 700;
  color: #252a2f;
  letter-spacing: .06em;
  font-size: 16px;
}
.thought-point__desc{
  margin: 0;
  color: #252a2f;
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: .06em;
}

.thought-point__img{
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}
.thought-point__img img{
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ===== 6タイル ===== */
.thought-grid{
  padding: 110px 0 110px;
  background: #fff;
}
.thought-grid__tiles{
  width: min(980px, 100%);
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tg-tile{
  border-radius: 8px;
  overflow: hidden;
  height: 160px;
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
}
.tg-tile--text{
  background: #c65a66; /* デザインの濃いピンク */
  color: #fff;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.8;
}
.tg-tile--text p{ margin: 0; font-size: 14px; }
.tg-tile--img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== ご挨拶 ===== */
.thought-greet{
  padding: 110px 0 110px;
  background: #fff;
}
.thought-greet__hero{
  width: min(980px, 100%);
  margin: 46px auto 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.thought-greet__hero img{
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.thought-greet__quote{
  width: min(820px, 100%);
  margin: -26px auto 0;
  background: rgba(255,255,255,.92);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  padding: 18px 22px;
  text-align: center;
}
.thought-greet__quote p{
  margin: 0;
  color: #252a2f;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.9;
  font-size: 14px;
}

.thought-greet__block{
  width: min(980px, 100%);
  margin: 48px auto 0;
  display: grid;
  gap: 34px;
  align-items: start;
}
.thought-greet__block--a{
  grid-template-columns: 1fr 420px;
}
.thought-greet__block--b{
  grid-template-columns: 420px 1fr;
}

.thought-greet__photo{
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}
.thought-greet__photo img{
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.thought-greet__name{
  margin: 0 0 10px;
  font-family: "Klee One", cursive;
  font-weight: 700;
  color: #265382;
  font-size: 18px;
  letter-spacing: .06em;
}
.thought-greet__body{
  color: #3e3a3a;
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: .06em;
}
.thought-greet__body p{ margin: 0 0 12px; }

/* ===== 法人概要 ===== */
.thought-company{
  padding: 110px 0 110px;
  background: #faf9f7;
}
.thought-company__grid{
  width: min(980px, 100%);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: start;
}
.thought-company__photo{
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}
.thought-company__photo img{
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.thought-company__table{
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  padding: 18px 18px;
}
.thought-company__table dl{
  margin: 0;
}
.thought-company__table .row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 12px 8px;
  border-bottom: 1px solid #e8eef5;
}
.thought-company__table .row:last-child{ border-bottom: none; }
.thought-company__table dt{
  margin: 0;
  font-weight: 700;
  color: #265382;
  letter-spacing: .06em;
  font-size: 14px;
}
.thought-company__table dd{
  margin: 0;
  color: #3e3a3a;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .06em;
}

/* =========================================================
微調整：修志会の想い（デザイン寄せ／上書き用）
========================================================= */

/* ページ内リンク時、固定ヘッダーで見出しが隠れないように */
#philosophy, #greeting, #company{
  scroll-margin-top: 120px;
}

/* 見出し（英字ラベル＋和文）：行間・字間をデザイン寄せ */
.thought-sec__en{
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .28em;
  line-height: 1;
  opacity: .95;
}
.thought-sec__ttl{
  font-size: 38px;
  letter-spacing: .10em;
  line-height: 1.15;
}

/* ===== 導入（修志会の想い） ===== */
.thought-hero{
  padding: 84px 0 92px;
}
.thought-hero__inner{
  width: min(920px, 100%);
  padding: 46px 24px 42px;
}
.thought-hero__ttl{
  font-size: 38px;
  letter-spacing: .12em;
  line-height: 1.2;
  margin: 0 0 18px;
}
.thought-hero__lead{
  font-size: 15px;
  letter-spacing: .10em;
  line-height: 2.25;
}

/* 装飾スクエア：デザインの“薄さ”と“位置”を寄せる */
.thought-hero__sq{
  opacity: .58;
  border-radius: 3px;
}
.thought-hero__sq--lt{ left: 84px; top: 46px; width: 112px; height:112px; }
.thought-hero__sq--rt{ right: 92px; top: 48px; width: 124px; height:124px; }
.thought-hero__sq--lm{ left: 196px; top: 228px; width: 42px; height:42px; opacity:.42; }
.thought-hero__sq--rm{ right: 196px; top: 220px; width: 58px; height:58px; opacity:.46; }
.thought-hero__sq--lb{ left: 108px; bottom: 46px; width: 84px; height:84px; opacity:.46; }
.thought-hero__sq--rb{ right: 112px; bottom: 48px; width: 58px; height:58px; opacity:.40; }

/* ===== 3タイル（経営理念／ご挨拶／法人概要） =====
・正方形感を強める
・キャプションは画像上に“重ねる” */
.thought-tiles{
  width: min(560px, 100%);
  margin: 40px auto 0;
  gap: 20px;
}
.thought-tile{
  position: relative;
  aspect-ratio: 1 / 1;      /* 正方形 */
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(0,0,0,.14);
}
.thought-tile__img{
  height: 100%;
}
.thought-tile__cap{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  background: rgba(0,0,0,.38);
  font-size: 14px;
  letter-spacing: .10em;
}

/* ===== 経営理念：余白・行間・字間 ===== */
.thought-philo{
  padding: 104px 0 110px;
}
.thought-philo__grid{
  width: min(1040px, 100%);
  margin-top: 44px;
  grid-template-columns: 520px 1fr;
  gap: 48px;
}
.thought-philo__photo img{
  height: 332px;
}
.thought-philo__catch{
  font-size: 26px;
  letter-spacing: .06em;
  line-height: 1.85;
  margin: 0 0 18px;
}
.thought-philo__body{
  font-size: 14px;
  letter-spacing: .08em;
  line-height: 2.05;
}
.thought-philo__body p{ margin: 0 0 12px; }
.thought-philo__more{ margin-top: 18px; }

/* ===== 01/02/03：余白（間）をデザイン寄せ ===== */
.thought-points{
  padding: 108px 0 112px;
}
.thought-points__list{
  width: min(1040px, 100%);
  margin-top: 50px;
  gap: 34px; /* ← ここが“間”の肝 */
}

/* カード全体の比率を整える */
.thought-point--r{
  grid-template-columns: 1fr 500px;
  gap: 26px;
}
.thought-point--l{
  grid-template-columns: 500px 1fr;
  gap: 26px;
}

/* 01/02/03 の番号：薄さ＆位置 */
.thought-point__num{
  top: -22px;
  font-size: 52px;
  letter-spacing: .12em;
  color: rgba(217,106,120,.30);
}

/* テキストボックス：行間・字間・高さ感 */
.thought-point__box{
  padding: 24px 26px;
  border-radius: 10px;
}
.thought-point__ttl{
  font-size: 15px;
  letter-spacing: .08em;
  line-height: 1.6;
  margin: 0 0 8px;
}
.thought-point__desc{
  font-size: 13.5px;
  letter-spacing: .08em;
  line-height: 2.05;
}

/* 画像：高さをデザインに寄せる */
.thought-point__img{
  border-radius: 10px;
}
.thought-point__img img{
  height: 190px;
}

/* ===== 6タイル：高さと余白を締める ===== */
.thought-grid{
  padding: 104px 0 110px;
}
.thought-grid__tiles{
  width: min(980px, 100%);
  margin-top: 50px;
  gap: 16px;
}
.tg-tile{
  height: 168px; /* デザインの“厚み”に寄せる */
  border-radius: 10px;
}
.tg-tile--text{
  padding: 18px 16px;
}
.tg-tile--text p{
  font-size: 13.5px;
  letter-spacing: .08em;
  line-height: 1.75;
}

/* ===== ご挨拶：帯（白）と本文の“間” ===== */
.thought-greet{
  padding: 104px 0 112px;
}
.thought-greet__hero{
  margin-top: 44px;
}
.thought-greet__hero img{
  height: 340px;
}
.thought-greet__quote{
  width: min(860px, 100%);
  margin: -28px auto 0;
  padding: 18px 22px;
}
.thought-greet__quote p{
  font-size: 13.5px;
  letter-spacing: .08em;
  line-height: 2.0;
}
.thought-greet__block{
  margin-top: 52px;
  gap: 38px;
}
.thought-greet__name{
  letter-spacing: .08em;
  line-height: 1.6;
}
.thought-greet__body{
  font-size: 13.5px;
  letter-spacing: .08em;
  line-height: 2.05;
}
.thought-greet__photo img{
  height: 272px;
}

/* ===== 法人概要：表の行間・字間・行の高さ ===== */
.thought-company{
  padding: 104px 0 112px;
}
.thought-company__grid{
  margin-top: 44px;
  gap: 36px;
}
.thought-company__photo img{
  height: 300px;
}
.thought-company__table{
  padding: 20px 18px;
}
.thought-company__table .row{
  padding: 12px 8px;
}
.thought-company__table dt,
.thought-company__table dd{
  letter-spacing: .08em;
  line-height: 2.0;
}

/* =========================================================
thoughts: corp-card をページ内リンク用「下矢印ボタン」に変更
========================================================= */

/* thought-hero 内のカード余白（デザイン寄せ） */
.thought-hero .corp-vision__cards{
  margin: 64px auto 0;
}

/* 下矢印ボタン（丸） */
.corp-card__btn.corp-card__btn--down{
  margin-top: 18px;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid rgba(255,255,255,.70);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  position: relative;
  font-size: 0; /* 「詳細はこちら」を消す（要素は残す） */
}

/* 縦線 + 矢印（下向き） */
.corp-card__btn.corp-card__btn--down::before{
  content:"";
  position:absolute;
  left:50%;
  top:18px;
  width:2px;
  height:20px;
  transform:translateX(-50%);
  background: rgba(255,255,255,.95);
  border-radius: 2px;
}
.corp-card__btn.corp-card__btn--down::after{
  content:"";
  position:absolute;
  left:50%;
  top:34px;
  width:10px;
  height:10px;
  transform:translateX(-50%) rotate(45deg);
  border-right:2px solid rgba(255,255,255,.95);
  border-bottom:2px solid rgba(255,255,255,.95);
}

/* hover時の見え方をデザイン寄せ */
.corp-card:hover .corp-card__btn.corp-card__btn--down{
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.85);
}

/* ===== 経営理念：見出し色（デザイン寄せ） ===== */
#philosophy .thought-sec__en,
#philosophy .thought-sec__ttl{
  color: #7b3a3a;
}

/* ===== 経営理念：レイアウト修正（左：キャッチ＋写真 / 右：本文） ===== */
.thought-philo__grid{
  grid-template-columns: 520px 1fr; /* 既存と同等 */
  align-items: start;
}

.thought-philo__left{
  display: grid;
  gap: 26px; /* キャッチと写真の間 */
}

.thought-philo__catch{
  margin: 0;
  font-family: "Klee One", cursive;
  font-weight: 800;
  color: #7b3a3a;
  font-size: 34px;      /* デザインの大きめ見出し感 */
  line-height: 2.0;
  letter-spacing: .08em;
}

/* 画像は「下がふわっと抜ける」感じに寄せる */
.thought-philo__photo{
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0,0,0,.12);
  position: relative;
}
.thought-philo__photo::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height: 64px;
  background: linear-gradient(to bottom, rgba(243,217,221,0), rgba(243,217,221,.95));
  pointer-events:none;
}

.thought-philo__photo img{
  width: 100%;
  height: 520px; /* デザインは縦長で大きいので上げる */
  object-fit: cover;
}

.thought-philo__right{
  padding-top: 6px; /* 見た目の揃い */
}

.thought-philo__body{
  color: #7b3a3a;       /* デザインの本文色（赤茶） */
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: .08em;
}
.thought-philo__body p{
  margin: 0 0 22px;
}
.thought-philo__body p:last-child{
  margin-bottom: 0;
}

/* =========================================================
3つのお約束（見出しデザイン + 01/02/03 レイアウト）
========================================================= */

.promise{
  padding: 110px 0 120px;
  background: #f3f1ee; /* 添付の薄いグレージュ寄せ */
}

/* 見出し：中央＋赤い下線（他セクションと別） */
.promise__ttl{
  margin: 0;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .14em;
  color: #3e3a3a;
  position: relative;
}
.promise__line{
  display: block;
  width: 46px;
  height: 2px;
  background: #d86a78;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* リスト全体 */
.promise__list{
  width: min(1180px, 100%);
  margin: 70px auto 0;
  display: grid;
  gap: 86px; /* 各段の間（デザインの“間”を確保） */
}

/* 1段 */
.promise__item{
  position: relative;
  display: grid;
  align-items: center;
  gap: 0;
}

/* 01/03：テキスト左・画像右（白帯が横に伸びる） */
.promise__item--01,
.promise__item--03{
  grid-template-columns: 560px 1fr;
}

/* 02：画像左・テキスト右 */
.promise__item--02{
  grid-template-columns: 1fr 560px;
}

/* 画像 */
.promise__img{
  margin: 0;
  border-radius: 0;
  overflow: visible;
  justify-self: end;
  width: 640px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.promise__item--02 .promise__img{
  justify-self: start;
}
.promise__img img{
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  box-shadow: 0 18px 44px rgba(0,0,0,.10);
}

/* テキストの白い帯（半透明） */
.promise__box{
  position: relative;
  z-index: 3;
  background: rgba(255,255,255,.72);
  padding: 38px 44px 36px;
  width: 560px;
  max-width: 100%;
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
}

/* 01：白帯が左→右へ（画像にかぶる） */
.promise__item--01 .promise__box{
  justify-self: start;
  margin-right: -140px; /* ここで画像に重ねる */
}

/* 02：白帯が右側、左へ少し重ねる */
.promise__item--02 .promise__box{
  justify-self: end;
  margin-left: -140px; /* ここで画像に重ねる */
}

/* 03：白帯が左→右へ */
.promise__item--03 .promise__box{
  justify-self: start;
  margin-right: -140px;
}

/* 01/02/03 番号（添付のピンク文字＋位置固定） */
.promise__num{
  position: absolute;
  left: 32px;
  top: -32px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 54px;
  letter-spacing: .06em;
  color: rgba(216,106,120,.82);
}

/* ★02だけ「右上」にする（指摘対応） */
.promise__num--right{
  left: auto;
  right: 34px;
  top: -32px;
}

/* テキスト */
.promise__lead{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .10em;
  color: #3e3a3a;
  line-height: 2.0;
}
.promise__desc{
  margin: 0;
  font-size: 14px;
  letter-spacing: .10em;
  color: #3e3a3a;
  line-height: 2.0;
}

/* 背景のピンクスクエア（左右） */
.promise__sq{
  position: absolute;
  width: 86px;
  height: 86px;
  background: rgba(239, 207, 212, .62);
  z-index: 1;
}
.promise__sq--l{ left: 40px; top: -22px; }
.promise__sq--r{ right: 48px; bottom: -18px; }

.promise__item--02 .promise__sq--l{ left: 46px; bottom: -18px; top: auto; }
.promise__item--02 .promise__sq--r{ right: 40px; top: -22px; bottom: auto; }

/* =========================================================
基本方針（デザイン寄せ）
========================================================= */

.policy{
  padding: 110px 0 120px;
  background: #fff;
}

/* 見出し：中央＋赤線（promiseと同系） */
.policy__ttl{
  margin: 0;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .14em;
  color: #3e3a3a;
}
.policy__line{
  display: block;
  width: 56px;
  height: 2px;
  background: #d86a78;
  margin: 14px auto 0;
  border-radius: 2px;
}

.policy__grid{
  width: min(1100px, 100%);
  margin: 64px auto 0;
  display: grid;
  gap: 34px;
}

/* 1段（2枚並び） */
.policy__pair{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.policy__pair--single{
  grid-template-columns: 1fr 1fr;
}
.policy__pair--single .policy__card{
  grid-column: 1 / 2; /* 左だけに置く */
}

/* カード共通 */
.policy__card{
  border-radius: 0;   /* 添付は角丸なし */
  overflow: hidden;
  min-height: 220px;
  box-shadow: none;
}

/* 赤いテキスト単体（左上のやつ） */
.policy__card--text{
  background: #d86a78;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: .10em;
  line-height: 2.1;
  font-size: 18px;
  padding: 28px 22px;
}

/* 赤＋画像の2分割カード */
.policy__card--split{
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左：赤、右：画像 */
}

.policy__split-text{
  background: #d86a78;
  color: #fff;
  display: grid;
  align-content: center;
  padding: 28px 26px;
  font-weight: 700;
  letter-spacing: .10em;
  line-height: 2.1;
  font-size: 18px;
}

.policy__split-img{
  margin: 0;
  background: #fff;
}
.policy__split-img img{
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

/* =========================================================
ご挨拶（デザイン寄せ）
========================================================= */

.greet{
  padding: 110px 0 120px;
  background: #fff;
}

/* 見出し（中央＋赤線） */
.greet-head{
  text-align: center;
}
.greet-head__en{
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .28em;
  color: #7b3a3a;
  font-weight: 700;
}
.greet-head__ttl{
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 38px;
  letter-spacing: .12em;
  color: #252a2f;
}
.greet-head__line{
  display: block;
  width: 56px;
  height: 2px;
  background: #d86a78;
  margin: 18px auto 0;
  border-radius: 2px;
}

/* 上部写真 */
.greet-hero{
  width: min(980px, 100%);
  margin: 54px auto 0;
  border-radius: 0;
  overflow: hidden;
}
.greet-hero img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* 白帯メッセージ（写真に重ねる） */
.greet-quote{
  width: min(900px, 100%);
  margin: -54px auto 0;
  background: rgba(255,255,255,.92);
  padding: 20px 26px;
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
}
.greet-quote p{
  margin: 0;
  color: #7b3a3a;
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 2.1;
  text-align: center;
}

/* 2人分ブロック */
.greet-person{
  margin-top: 70px;
}
.greet-person__grid{
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 46px;
  align-items: start;
}
.greet-person--a .greet-person__grid{
  grid-template-columns: 1fr 420px; /* テキスト左・写真右 */
}
.greet-person--b .greet-person__grid{
  grid-template-columns: 420px 1fr; /* 写真左・テキスト右 */
}

/* 写真（縦長） */
.greet-person__photo{
  margin: 0;
  overflow: hidden;
}
.greet-person__photo img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* タイトル（赤線付き） */
.greet-person__title{
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 22px;
}
.greet-person__ttl{
  margin: 0 0 10px;
  font-weight: 700;
  color: #252a2f;
  letter-spacing: .06em;
  font-size: 18px;
}
.greet-person__name{
  margin: 0;
  font-size: 12.5px;
  letter-spacing: .08em;
  color: #7b3a3a;
}
.greet-person__line{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  height: 2px;
  background: #d86a78;
}

/* 小見出し */
.greet-person__h{
  margin: 24px 0 12px;
  font-weight: 700;
  color: #252a2f;
  letter-spacing: .06em;
  font-size: 14px;
  line-height: 1.9;
}

/* 本文 */
.greet-person__body{
  margin: 0;
}
.greet-person__body p{
  margin: 0 0 14px;
  font-size: 13.5px;
  letter-spacing: .08em;
  line-height: 2.05;
  color: #252a2f;
}
.greet-person__body p:last-child{
  margin-bottom: 0;
}

/* =========================================================
ご挨拶：人物タイトル（2色ライン＋氏名を灰ライン上に）
========================================================= */

.greet-person__title{
  position: relative;
  padding-bottom: 34px; /* ライン＋氏名のために確保（デザイン寄せ） */
  margin-bottom: 26px;  /* 本文との間 */
}

/* タイトル（太め・詰め） */
.greet-person__ttl{
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .06em;
  line-height: 1.5;
  color: #252a2f;
}

/* 2色ライン：左 茶 / 右 灰 */
.greet-person__line{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;            /* 氏名が“線の上”に乗る位置 */
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
  to right,
  #7b3a3a 0%,
  #7b3a3a 62%,
  #c7cdd6 62%,
  #c7cdd6 100%
  );
}

/* 氏名：灰ライン部分の上に配置（右寄せ気味） */
.greet-person__name{
  position: absolute;
  right: 0;
  bottom: 18px;           /* ラインの少し上 */
  margin: 0;
  padding: 0 2px;
  font-size: 13px;
  letter-spacing: .08em;
  color: #252a2f;
  line-height: 1.2;
  text-align: right;
  background: transparent; /* 画像のように背景は付けない */
}

/* 既存の赤線（単色）指定が残っている場合の打ち消し（保険） */
.greet-person__line{
  width: auto;
}

/* =========================================================
ご挨拶：写真下以降を全幅化（確実版）
========================================================= */

/* PC想定：写真と同じ幅(980px)で中央、左右余白を埋める */
@media (min-width: 768px){
  .greet-person__full{
    width: min(980px, 100%);
    margin: 18px auto 0; /* 写真下の“間” */
  }
}

/* 文字組みは greet-person__body と同じ */
.greet-person__full p{
  margin: 0 0 14px;
  font-size: 13.5px;
  letter-spacing: .08em;
  line-height: 2.05;
  color: #252a2f;
}
.greet-person__full p:last-child{
  margin-bottom: 0;
}
/* ご挨拶：全幅段落を“写真直下”に寄せる（保険） */
@media (min-width: 768px){
  .greet-person__full{
    margin-top: 0;           /* まずゼロに */
  }
  .greet-person__grid + .greet-person__full{
    margin-top: 18px;        /* 写真下の余白（必要なら 12〜24 で調整） */
  }
}

/* =========================================================
ご挨拶：ここから下を全幅（container幅いっぱい）に
========================================================= */
@media (min-width: 768px){
  /* greet-person__grid の直後に来る全幅ブロック */
  .greet-person__grid + .greet-person__full{
    width: 100%;
    margin-top: 18px; /* 写真下との間（必要なら 12〜24で調整） */
  }
}

/* 全幅側の本文は通常本文と同じ文字組み */
.greet-person__full p{
  margin: 0 0 14px;
  font-size: 13.5px;
  letter-spacing: .08em;
  line-height: 2.05;
  color: #252a2f;
}
.greet-person__full p:last-child{
  margin-bottom: 0;
}

/* 全幅側見出し：上のまとまりと間を作る */
.greet-person__h--full{
  margin-top: 26px;
}

/* 全幅側の body は margin だけ最適化 */
.greet-person__body--full p{
  margin-bottom: 14px;
}

/* ご挨拶：全幅ブロックのはみ出し防止（保険） */
.greet-person__full{
  width: 100%;
  max-width: min(980px, 100%);   /* greet-person__gridの幅感に合わせる */
  margin: 18px auto 0;
  box-sizing: border-box;
}

.greet-person__full p,
.greet-person__body--full p{
  overflow-wrap: anywhere; /* 万一の長文・記号でもはみ出さない */
}

/* 全幅側の見出し/本文の間 */
.greet-person__h--full{ margin-top: 26px; }

/* =========================================================
   Hover policy (2026-02-27):
   - Global navigation (#globalNav) keeps animated underline (color #813037)
   - All other links: no underline on hover (opacity only, handled per component)
========================================================= */
a:hover,
a:focus,
a:focus-visible {
  text-decoration: none !important;
}

/* Safety: ensure non-global nav links never show the animated underline */
nav:not(#globalNav) a::after {
  content: none !important;
  display: none !important;
}



/* ===== footer banner disabled (COLUMN) ===== */
.footer-bnr__card--disabled{
  cursor: auto;
}

.footer-bnr__card--disabled .footer-bnr__img{
  filter: grayscale(100%);
  opacity: .35;
}

/* グレー透過の被せ（クリックできなさそう演出） */
.footer-bnr__card--disabled::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(128,128,128,.28);
  z-index: 2;
}

/* テキストも少し弱める（可読性は維持） */
.footer-bnr__card--disabled .footer-bnr__label{
  opacity: .65;
}

/* 念のため hover で下線などが出ないよう抑止 */
.footer-bnr__card--disabled:hover{
  text-decoration: none;
}





/* ===== footer banner disabled (COLUMN): stop fade/hover completely ===== */
.footer-bnr__card--disabled,
.footer-bnr__card--disabled::before,
.footer-bnr__card--disabled::after,
.footer-bnr__card--disabled *{
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

/* 画像側：通常時の見た目を固定（hoverでも変えさせない） */
.footer-bnr__card--disabled .footer-bnr__img,
.footer-bnr__card--disabled:hover .footer-bnr__img,
.footer-bnr__card--disabled:focus .footer-bnr__img,
.footer-bnr__card--disabled:focus-visible .footer-bnr__img{
  opacity: .35 !important;
  filter: grayscale(100%) !important;
  transform: none !important;
}

/* もし hover で疑似要素が出る実装でも固定 */
.footer-bnr__card--disabled:hover::before,
.footer-bnr__card--disabled:hover::after{
  opacity: 1 !important;
  transform: none !important;
}

/* テキストも固定（hoverで濃く/薄くなるのを抑止） */
.footer-bnr__card--disabled .footer-bnr__label,
.footer-bnr__card--disabled:hover .footer-bnr__label{
  opacity: .65 !important;
}

/* クリックできない演出（任意：見た目のみ） */
.footer-bnr__card--disabled{
  cursor: auto;
}



/* ===== svc-card disabled（福祉用具などリンク無し） ===== */
.svc-card--disabled{
  cursor: default;
}

/* ▶アイコン（疑似要素）を無効化 */
.svc-card--disabled::after,
.svc-card--disabled .svc-card__label::after,
.svc-card--disabled .svc-card__label span::after{
  content: none !important;
  display: none !important;
}

/* hover時の見た目変化がある場合も抑止（任意だが安全） */
.svc-card--disabled:hover{
  transform: none !important;
}



/* ===== svc-card disabled：hover zoom無効化 ===== */
.svc-card--disabled .svc-card__img img{
  transform: none !important;
  transition: none !important;
}

.svc-card--disabled:hover .svc-card__img img,
.svc-card--disabled:focus .svc-card__img img,
.svc-card--disabled:focus-visible .svc-card__img img{
  transform: none !important;
  transition: none !important;
}



/* ===== Footer banners：COLUMNを一旦非表示 ===== */
.footer-bnr__card--column{
  display: none;
}

/* ===== PC：バナーが1枚のとき中央寄せ ===== */
@media (min-width: 768px){
  .footer-bnr__grid{
    grid-template-columns: 1fr;
    justify-items: center;
  }

  /* 1枚だけ残るSTAFFカードを中央に */
  .footer-bnr__card--staff{
    margin-inline: auto;
  }
}
