@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: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid #eef2f7;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.logo img { width: 403px; }

nav ul { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }

nav a { font-weight: 700; color: #31475d; padding: 8px 10px; border-radius: 10px; }

.nav-cta {
  background: linear-gradient(320deg, var(--c-primary) 20%, var(--c-primary-2));
  color: #fff;
  padding: 16px 48px;
  border-radius: 3px;
  box-shadow: 0 6px 16px rgba(12, 121, 214, .25);
  font-weight: 500;
  letter-spacing: 1px;
}
.nav-cta:hover { opacity: .8; }

.nav-cta.sponly {
  display: none;
}
@media (max-width: 767.98px) {
.nav-cta {
  min-width: 12em;
}
.nav-cta.sponly {
  display: block;
}
}
/* ===== Hamburger (PCでは非示) ===== */
.hamburger {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(16, 24, 40, .08);
  cursor: pointer;
}
.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 ===== */
.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: min(92vw, var(--container)); margin: 0 auto; 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 .more {
  display: table;
  margin: 90px auto 0;
  padding:8px 24px;
  border:1px solid #0A4E9C;
  border-radius:999px;
  color:#0A4E9C;
  font-weight:500;
  background:#fff;
}
@media (max-width: 767.98px) {
.about .more {
  display: table;
  margin: 30px auto 0;
  padding:8px 24px;
  border:1px solid #0A4E9C;
  border-radius:999px;
  color:#0A4E9C;
  font-weight:500;
  background:#fff;
}
}

.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; }
.ytbox iframe { width:100%; height:100%; }
.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;
} */
.jobs .more {
  display: table;
  margin: 30px auto 0;
  padding:8px 24px;
  border:1px solid #0A4E9C;
  border-radius:999px;
  color:#0A4E9C;
  font-weight:500;
  background:#fff;
}
.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;
} */
.voices .more {
  display: table;
  margin: 30px auto 0;
  padding:8px 24px;
  border:1px solid #0A4E9C;
  border-radius:999px;
  color:#0A4E9C;
  font-weight:500;
  background:#fff;
}

.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(260px, 24vw, 403px); }  /* ロゴ流体縮小 */
  header nav { font-size: clamp(13px, 1.05vw, 16px); }
  nav a { padding: clamp(4px, .6vw, 8px) clamp(8px, .8vw, 10px); border-radius: 8px; }
  nav ul { gap: clamp(10px, 1.6vw, 20px); }
  .nav-cta { padding: clamp(8px, .9vw, 16px) clamp(14px, 1.4vw, 32px); border-radius: 6px; }
}

/* 1280px未満でさらに一段詰める（1200pxまで耐える想定） */
@media (max-width: 1280px) {
  .logo img { width: clamp(200px, 18vw, 403px); }   /* ロゴ最小 200px */
  /* header nav { font-size: clamp(12px, .95vw, 13px); } */
  header nav { font-size: clamp(13px, 3.5vw, 16px); }
  nav ul { gap: clamp(8px, 1.2vw, 14px); }
  .nav-cta { padding: clamp(6px, .7vw, 12px) clamp(12px, 1.2vw, 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;
    /* flex-direction: column; */
  }
}


/* ここから追加 */
/*---------------------------------
  テキスト頭揃え
---------------------------------*/
.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: 16vw; /* 750基準で50px */
  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.9333333333333335vw; /* 1800px基準でfont-size: 16.8px; */
  text-align: center;
}
@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; */
  text-align: left;
}
}

/*---------------------------------
  修志会グループについて
---------------------------------*/
.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 40px;
}
.greetingyoutubewrap01 {
  width: 57.55555555555556vw; /* 1800px基準でwidth: 1036px; */
  margin: 0 auto 40px;
  aspect-ratio:16/9;
}
.greetingyoutubewrap01:last-child {
  margin: 0 auto;
}
.greetingyoutubewrap01 iframe {
  width:100%;
  height:100%;
}
@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 20px;
}
.greetingyoutubewrap01 {
  width: min(92vw, var(--container));
  margin: 0 auto 20px;
  aspect-ratio:16/9;
}
.greetingyoutubewrap01:last-child {
  margin: 0 auto;
}
.greetingyoutubewrap01 iframe {
  width:100%;
  height:100%;
}
}

/*---------------------------------
  フォントカラー
---------------------------------*/
.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;
}
}