/* ==========================================================================
   中城モール 事業部紹介ページ  スタイルシート
   マリンテーマ（水色ベース ＋ レッドアクセント）
   ========================================================================== */

:root {
  --c-sky: #e3f4fd;
  --c-sky-deep: #cbeafb;
  --c-blue: #1d95d4;
  --c-blue-dark: #0f6fa8;
  --c-navy: #1b4f6b;
  --c-red: #e5352b;
  --c-red-dark: #c22318;
  --c-yellow: #ffd23f;
  --c-green: #4bbf8a;
  --c-text: #33393d;
  --c-text-sub: #6a757c;
  --c-line: #dce8ef;
  --radius-l: 28px;
  --radius-m: 18px;
  --shadow-card: 0 8px 24px rgba(29, 149, 212, 0.12);
  --shadow-soft: 0 4px 14px rgba(29, 149, 212, 0.1);
  --maxw: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', 'Yu Gothic', sans-serif;
  color: var(--c-text);
  background: #fff;
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--c-blue-dark);
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.narrow {
  max-width: 880px;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(27, 79, 107, 0.08);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--c-blue) 0%, #4fc3f7 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(29, 149, 212, 0.35);
}

.logo-text {
  line-height: 1.25;
}

.logo-text strong {
  display: block;
  font-size: 19px;
  color: var(--c-blue-dark);
  letter-spacing: 0.02em;
}

.logo-text span {
  display: block;
  font-size: 10.5px;
  color: var(--c-text-sub);
  letter-spacing: 0.08em;
}

.global-nav {
  margin-left: auto;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}

.global-nav a {
  font-size: 14px;
  color: var(--c-navy);
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
}

.global-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--c-red);
  transition: width 0.25s;
}

.global-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--c-red);
  box-shadow: 0 3px 0 var(--c-red-dark);
  transition: transform 0.15s;
}

.btn-mini.blue {
  background: var(--c-blue);
  box-shadow: 0 3px 0 var(--c-blue-dark);
}

.btn-mini:hover {
  transform: translateY(2px);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--c-blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 40px;
  font-size: 18px;
}

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #b7e5fb 0%, var(--c-sky) 65%, var(--c-sky) 100%);
  padding: 56px 0 120px;
  overflow: hidden;
  text-align: center;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.hero::before {
  width: 220px;
  height: 220px;
  top: -70px;
  left: -60px;
}

.hero::after {
  width: 160px;
  height: 160px;
  bottom: 40px;
  right: -50px;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-size: 12.5px;
  color: var(--c-blue-dark);
  margin-bottom: 26px;
}

.breadcrumb a {
  color: var(--c-blue-dark);
}

.breadcrumb span {
  opacity: 0.6;
  margin: 0 6px;
}

.hero-en {
  font-family: 'Baloo 2', sans-serif;
  color: var(--c-red);
  font-size: 15px;
  letter-spacing: 0.14em;
  margin: 0 0 6px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  margin: 0 0 18px;
  color: var(--c-navy);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.hero h1 .accent {
  color: var(--c-blue);
}

.hero-lead {
  max-width: 660px;
  margin: 0 auto;
  color: #40606f;
  font-size: 15.5px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-badges li {
  background: #fff;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-blue-dark);
  box-shadow: var(--shadow-soft);
}

.hero-badges i {
  color: var(--c-red);
  margin-right: 6px;
}

/* 波 */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.wave.bottom {
  bottom: -1px;
}

.wave.top {
  top: -1px;
  transform: rotate(180deg);
}

.wave svg {
  width: 100%;
  height: 70px;
  display: block;
}

/* ---------- セクション共通 ---------- */
.section {
  padding: 74px 0;
  position: relative;
}

.section.sky {
  background: var(--c-sky);
}

.section.sky-deep {
  background: linear-gradient(180deg, var(--c-sky-deep) 0%, var(--c-sky) 100%);
}

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.section-head .en {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  color: var(--c-red);
  font-size: 13.5px;
  letter-spacing: 0.16em;
  margin-bottom: 2px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(23px, 3.6vw, 31px);
  color: var(--c-navy);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.section-head p {
  margin: 12px auto 0;
  max-width: 640px;
  font-size: 14.5px;
  color: var(--c-text-sub);
}

.section-head h2::after {
  content: '';
  display: block;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: var(--c-yellow);
  margin: 12px auto 0;
}

/* ---------- 事業部インデックス ---------- */
.dept-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.dept-card {
  background: #fff;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(29, 149, 212, 0.2);
}

.dept-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.dept-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dept-no {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--c-red);
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.dept-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dept-card-body h3 {
  margin: 0 0 10px;
  font-size: 21px;
  color: var(--c-navy);
}

.dept-card-body h3 i {
  color: var(--c-blue);
  margin-right: 8px;
}

.dept-card-body p {
  margin: 0 0 16px;
  font-size: 14.5px;
  color: var(--c-text-sub);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.tag-list li {
  font-size: 12px;
  background: var(--c-sky);
  color: var(--c-blue-dark);
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 700;
}

.dept-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--c-red);
  box-shadow: 0 4px 0 var(--c-red-dark);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(3px);
  box-shadow: none;
}

.btn.blue {
  background: var(--c-blue);
  box-shadow: 0 4px 0 var(--c-blue-dark);
}

.btn.outline {
  background: #fff;
  color: var(--c-blue-dark);
  border: 2px solid var(--c-blue);
  box-shadow: 0 4px 0 rgba(29, 149, 212, 0.3);
}

.btn.lg {
  padding: 16px 40px;
  font-size: 16.5px;
}

.btn-center {
  text-align: center;
  margin-top: 38px;
}

/* ---------- 事業部詳細 ---------- */
.dept-section {
  padding: 78px 0;
  position: relative;
}

.dept-section.alt {
  background: var(--c-sky);
}

.dept-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.dept-header .num {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  border-radius: 20px;
  background: var(--c-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Baloo 2', sans-serif;
  font-size: 26px;
  box-shadow: 0 5px 0 var(--c-blue-dark);
}

.dept-section.alt .dept-header .num {
  background: var(--c-green);
  box-shadow: 0 5px 0 #34946a;
}

.dept-header .en {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  color: var(--c-red);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.dept-header h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
  color: var(--c-navy);
  font-weight: 900;
}

.dept-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 52px;
}

.dept-hero-img {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}

.dept-hero-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dept-mission {
  background: #fff;
  border-radius: var(--radius-m);
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
  border-left: 6px solid var(--c-yellow);
  margin-bottom: 20px;
}

.dept-mission .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}

.dept-mission p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.8;
}

.dept-desc {
  font-size: 15px;
  color: #4a5760;
  margin: 0 0 20px;
}

/* 小見出し */
.sub-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  color: var(--c-navy);
  margin: 0 0 20px;
  font-weight: 900;
}

.sub-head i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--c-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
}

.dept-section.alt .sub-head i {
  background: var(--c-green);
}

.block {
  margin-bottom: 50px;
}

/* ---------- カードグリッド ---------- */
.grid {
  display: grid;
  gap: 18px;
}

.grid.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.col4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #fff;
  border-radius: var(--radius-m);
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
}

.card h4 {
  margin: 0 0 10px;
  font-size: 16.5px;
  color: var(--c-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card h4 i {
  color: var(--c-blue);
}

.dept-section.alt .card h4 i {
  color: var(--c-green);
}

.card p,
.card ul {
  margin: 0;
  font-size: 14.5px;
  color: var(--c-text-sub);
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
  font-size: 14.5px;
  color: #4a5760;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-blue);
  font-size: 14px;
}

.dept-section.alt .check-list li::before {
  color: var(--c-green);
}

/* アイコンカード（強み） */
.point-card {
  background: #fff;
  border-radius: var(--radius-m);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.point-card .icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--c-sky);
  color: var(--c-blue);
  display: grid;
  place-items: center;
  font-size: 24px;
}

.dept-section.alt .point-card .icon {
  background: #e4f6ee;
  color: var(--c-green);
}

.point-card h4 {
  margin: 0 0 8px;
  font-size: 16.5px;
  color: var(--c-navy);
  justify-content: center;
}

.point-card p {
  margin: 0;
  font-size: 14px;
  color: var(--c-text-sub);
}

.point-card .no {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 30px;
  color: rgba(29, 149, 212, 0.14);
}

.dept-section.alt .point-card .no {
  color: rgba(75, 191, 138, 0.18);
}

/* ---------- 商品カテゴリ ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.cat-item {
  background: #fff;
  border-radius: var(--radius-m);
  padding: 22px 10px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s;
}

.cat-item:hover {
  transform: translateY(-5px);
}

.cat-item i {
  font-size: 26px;
  color: var(--c-blue);
  display: block;
  margin-bottom: 10px;
}

.cat-item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-navy);
  display: block;
}

.cat-item small {
  font-size: 11.5px;
  color: var(--c-text-sub);
}

/* ---------- ブランド ---------- */
.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.brand-list li {
  background: #fff;
  border: 2px dashed var(--c-sky-deep);
  border-radius: var(--radius-m);
  padding: 16px 28px;
  font-weight: 700;
  color: var(--c-navy);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-list li i {
  color: var(--c-red);
}

/* ---------- 情報テーブル ---------- */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  font-size: 14.5px;
}

.info-table th,
.info-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table th {
  width: 32%;
  background: var(--c-sky);
  color: var(--c-blue-dark);
  font-weight: 700;
  white-space: nowrap;
}

.dept-section.alt .info-table th {
  background: #e8f7f1;
  color: #2c7d5c;
}

.info-table td {
  color: #4a5760;
}

.info-table td small {
  display: block;
  color: var(--c-text-sub);
  font-size: 12.5px;
}

/* ---------- フローステップ ---------- */
.flow {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.flow li {
  counter-increment: step;
  background: #fff;
  border-radius: var(--radius-m);
  padding: 20px 24px 20px 74px;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.flow li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-size: 18px;
  display: grid;
  place-items: center;
}

.dept-section.alt .flow li::before {
  background: var(--c-green);
}

.flow li strong {
  display: block;
  color: var(--c-navy);
  font-size: 16px;
}

.flow li span {
  font-size: 13.8px;
  color: var(--c-text-sub);
}

/* ---------- 料金ハイライト ---------- */
.price-box {
  background: #fff;
  border-radius: var(--radius-l);
  padding: 30px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-item {
  background: var(--c-sky);
  border-radius: var(--radius-m);
  padding: 22px;
  text-align: center;
}

.price-item.hl {
  background: #fff5f4;
  border: 2px solid #ffd9d5;
}

.price-item .ttl {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-navy);
  display: block;
  margin-bottom: 4px;
}

.price-item .amount {
  font-family: 'Baloo 2', sans-serif;
  font-size: 34px;
  color: var(--c-blue-dark);
  line-height: 1.2;
}

.price-item.hl .amount {
  color: var(--c-red);
}

.price-item .unit {
  font-size: 14px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.price-item small {
  display: block;
  font-size: 12.5px;
  color: var(--c-text-sub);
  margin-top: 4px;
}

.note {
  font-size: 12.8px;
  color: var(--c-text-sub);
  margin: 14px 0 0;
}

/* ---------- 吹き出し（お客様の声/相談） ---------- */
.voice-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.voice {
  background: #fff;
  border-radius: var(--radius-m);
  padding: 20px 22px;
  position: relative;
  box-shadow: var(--shadow-soft);
  font-size: 14.3px;
  color: #4a5760;
}

.voice::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 34px;
  border: 7px solid transparent;
  border-top-color: #fff;
  border-width: 12px 10px 0 10px;
}

.voice i {
  color: var(--c-red);
  margin-right: 6px;
}

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(160deg, #1d95d4 0%, #4fc3f7 100%);
  padding: 70px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(23px, 3.6vw, 31px);
  font-weight: 900;
}

.cta p {
  margin: 0 auto 30px;
  max-width: 620px;
  font-size: 15px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-buttons .btn.white {
  background: #fff;
  color: var(--c-blue-dark);
  box-shadow: 0 4px 0 rgba(15, 111, 168, 0.45);
}

.tel-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--c-red);
  border-radius: 999px;
  padding: 14px 34px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 28px;
  box-shadow: 0 4px 0 rgba(15, 111, 168, 0.35);
  margin-bottom: 8px;
}

.tel-big i {
  font-size: 22px;
}

.cta small {
  display: block;
  font-size: 13px;
  opacity: 0.95;
}

/* ---------- フッター ---------- */
.site-footer {
  background: var(--c-red);
  color: #fff;
  text-align: center;
  padding: 44px 20px 30px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.footer-nav a {
  color: #fff;
  font-size: 13.5px;
  opacity: 0.95;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.sns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.sns a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 17px;
}

.sns a:hover {
  background: #fff;
  color: var(--c-red);
}

.footer-logo {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.copyright {
  font-size: 12px;
  opacity: 0.85;
  margin: 0;
}

/* ---------- ページ内リンク（ページトップ） ---------- */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(15, 111, 168, 0.35);
  z-index: 90;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 960px) {
  .global-nav {
    display: none;
  }
  .global-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 16px rgba(27, 79, 107, 0.12);
    padding: 12px 20px 18px;
  }
  .global-nav.open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .site-header {
    position: relative;
  }
  .nav-toggle {
    display: block;
  }
  .header-cta {
    display: none;
  }
  .dept-hero {
    grid-template-columns: 1fr;
  }
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .voice-list {
    grid-template-columns: 1fr;
  }
  .grid.col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }
  .section,
  .dept-section {
    padding: 54px 0;
  }
  .dept-index,
  .grid.col2,
  .grid.col3,
  .price-box {
    grid-template-columns: 1fr;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    white-space: normal;
  }
  .info-table th {
    border-bottom: none;
    padding-bottom: 6px;
  }
  .tel-big {
    font-size: 22px;
    padding: 12px 24px;
  }
  .hero {
    padding: 34px 0 100px;
  }
}

/* ==========================================================================
   採用情報ページ 専用スタイル
   ========================================================================== */

/* ---------- 採用ヒーロー（写真背景） ---------- */
.recruit-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 70px 0 110px;
}

.recruit-hero .bg {
  position: absolute;
  inset: 0;
  background-image: url('/static/images/okinawa-sea.jpg');
  background-size: cover;
  background-position: center 60%;
}

.recruit-hero .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 74, 112, 0.5) 0%, rgba(9, 74, 112, 0.3) 50%, rgba(29, 149, 212, 0.45) 100%);
}

.recruit-hero .container {
  position: relative;
  z-index: 2;
}

.recruit-hero .breadcrumb,
.recruit-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
}

.recruit-hero .welcome {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(15px, 2.4vw, 19px);
  letter-spacing: 0.16em;
  margin: 0 0 4px;
  color: #ffe36a;
}

.recruit-hero h1 {
  font-size: clamp(28px, 5.4vw, 48px);
  font-weight: 900;
  margin: 0 0 6px;
  text-shadow: 0 3px 14px rgba(6, 52, 79, 0.45);
  letter-spacing: 0.04em;
}

.recruit-hero .welcome-jp {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  margin: 0 0 20px;
  text-shadow: 0 2px 10px rgba(6, 52, 79, 0.45);
}

.recruit-hero .catch {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 15.5px;
  line-height: 2;
  text-shadow: 0 2px 10px rgba(6, 52, 79, 0.4);
}

/* ---------- 縦書き風リード（メッセージ） ---------- */
.message-section {
  background: #fff;
  padding: 80px 0;
}

.message-body {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.message-lead {
  font-size: clamp(20px, 3.4vw, 28px);
  font-weight: 900;
  color: var(--c-navy);
  line-height: 1.9;
  margin: 0 0 28px;
}

.message-lead em {
  font-style: normal;
  color: var(--c-blue);
  background: linear-gradient(180deg, transparent 66%, rgba(255, 210, 63, 0.6) 66%);
  padding: 0 2px;
}

.message-text {
  font-size: 16px;
  line-height: 2.2;
  color: #46545e;
  margin: 0 0 32px;
}

.moment-list {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: left;
}

.moment-list li {
  background: var(--c-sky);
  border-radius: var(--radius-m);
  padding: 15px 20px 15px 52px;
  position: relative;
  font-size: 15px;
  color: #34505f;
  font-weight: 500;
}

.moment-list li::before {
  content: '\f0da';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 22px;
  top: 15px;
  color: var(--c-blue);
}

.message-close {
  display: inline-block;
  background: linear-gradient(180deg, transparent 62%, rgba(255, 210, 63, 0.6) 62%);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 900;
  color: var(--c-navy);
  line-height: 1.9;
}

/* ---------- Hello（メンバー紹介） ---------- */
.hello-section {
  background: var(--c-sky);
  padding: 80px 0;
  position: relative;
}

.hello-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
}

.hello-card {
  background: #fff;
  border-radius: var(--radius-l);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.hello-card .avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--c-blue) 0%, #6fd0f7 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 42px;
  box-shadow: 0 6px 16px rgba(29, 149, 212, 0.32);
}

.hello-card .hello-en {
  font-family: 'Baloo 2', sans-serif;
  color: var(--c-red);
  font-size: 22px;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 2px;
}

.hello-card .name {
  font-size: 19px;
  font-weight: 900;
  color: var(--c-navy);
  margin: 0 0 2px;
}

.hello-card .role {
  font-size: 13px;
  color: var(--c-text-sub);
  margin: 0;
}

.hello-text p {
  font-size: 16px;
  line-height: 2.1;
  color: #46545e;
  margin: 0 0 18px;
}

.ace-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff6d9;
  border: 2px solid var(--c-yellow);
  border-radius: var(--radius-m);
  padding: 14px 22px;
  font-weight: 900;
  color: #8a6300;
  font-size: 16.5px;
  margin-bottom: 22px;
}

.ace-badge i {
  color: #e8a900;
  font-size: 20px;
}

.bg-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bg-list li {
  background: #fff;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-blue-dark);
  box-shadow: var(--shadow-soft);
}

.bg-list li i {
  margin-right: 6px;
  color: var(--c-red);
}

.age-range {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-m);
  padding: 18px 24px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.age-range .big {
  font-family: 'Baloo 2', sans-serif;
  font-size: 34px;
  color: var(--c-blue-dark);
  line-height: 1;
}

.age-range .txt {
  font-size: 14.5px;
  color: var(--c-text-sub);
}

/* ---------- 魅力ランキング ---------- */
.rank-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius-m);
  padding: 20px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s;
}

.rank-item:hover {
  transform: translateX(6px);
}

.rank-item .medal {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Baloo 2', sans-serif;
  font-size: 15px;
  color: #fff;
  background: var(--c-blue);
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 4px 0 var(--c-blue-dark);
}

.rank-item:nth-child(1) .medal {
  background: #f6c445;
  box-shadow: 0 4px 0 #d3a325;
  color: #6b4c00;
  font-size: 17px;
}

.rank-item:nth-child(2) .medal {
  background: #c3ced6;
  box-shadow: 0 4px 0 #9fb0ba;
  color: #4b5b66;
  font-size: 17px;
}

.rank-item:nth-child(3) .medal {
  background: #dda372;
  box-shadow: 0 4px 0 #b98253;
  color: #5c3610;
  font-size: 17px;
}

.rank-item .medal small {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.08em;
}

.rank-item .body h4 {
  margin: 0 0 2px;
  font-size: 18px;
  color: var(--c-navy);
}

.rank-item .body p {
  margin: 0;
  font-size: 14px;
  color: var(--c-text-sub);
}

.rank-item .icon {
  margin-left: auto;
  font-size: 24px;
  color: rgba(29, 149, 212, 0.28);
  flex-shrink: 0;
}

/* ---------- 番外編 / 大変なこと ---------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  align-items: start;
}

.panel {
  background: #fff;
  border-radius: var(--radius-l);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 19px;
  font-weight: 900;
  color: var(--c-navy);
}

.panel-head .chip {
  font-size: 11.5px;
  font-family: 'Baloo 2', sans-serif;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--c-blue);
  border-radius: 999px;
  padding: 3px 12px;
}

.panel.warn {
  background: #fff8f5;
  border: 2px solid #ffdccf;
  box-shadow: none;
}

.panel.warn .panel-head .chip {
  background: #f08a4b;
}

.panel ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  font-size: 14.8px;
  color: #46545e;
  line-height: 1.85;
}

.panel ul li:last-child {
  margin-bottom: 0;
}

.panel ul li::before {
  content: '\f005';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--c-yellow);
  font-size: 13px;
}

.panel.warn ul li::before {
  content: '\f071';
  color: #f08a4b;
}

.panel ul li .sup {
  display: block;
  font-size: 13px;
  color: var(--c-blue-dark);
  font-weight: 700;
  margin-top: 2px;
}

/* ---------- メンター制度 ---------- */
.mentor-box {
  background: linear-gradient(150deg, #1d95d4 0%, #4fc3f7 100%);
  border-radius: var(--radius-l);
  color: #fff;
  padding: 40px 34px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(29, 149, 212, 0.28);
  position: relative;
  overflow: hidden;
}

.mentor-box .icon-lg {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  font-size: 30px;
}

.mentor-box h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 3.2vw, 27px);
  font-weight: 900;
}

.mentor-box p {
  margin: 0 auto;
  max-width: 620px;
  font-size: 15.5px;
  line-height: 2;
  opacity: 0.96;
}

/* ---------- 職場環境（海） ---------- */
.env-section {
  position: relative;
  padding: 90px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.env-section .bg {
  position: absolute;
  inset: 0;
  background-image: url('/static/images/okinawa-beach.jpg');
  background-size: cover;
  background-position: center;
}

.env-section .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 66, 100, 0.48);
}

.env-section .container {
  position: relative;
  z-index: 2;
}

.env-section .en {
  font-family: 'Baloo 2', sans-serif;
  color: #ffe36a;
  letter-spacing: 0.16em;
  font-size: 13.5px;
  display: block;
  margin-bottom: 4px;
}

.env-section h2 {
  margin: 0 0 22px;
  font-size: clamp(22px, 3.8vw, 32px);
  font-weight: 900;
  text-shadow: 0 3px 12px rgba(6, 52, 79, 0.45);
}

.env-section p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 2.1;
  text-shadow: 0 2px 8px rgba(6, 52, 79, 0.4);
}

.env-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 800px;
  margin: 32px auto 0;
}

.env-points li {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-m);
  padding: 18px 14px;
  color: var(--c-navy);
  font-weight: 700;
  font-size: 14.5px;
}

.env-points i {
  display: block;
  font-size: 22px;
  color: var(--c-blue);
  margin-bottom: 8px;
}

/* ---------- 募集職種 ---------- */
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.job-card {
  background: #fff;
  border-radius: var(--radius-l);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  border-top: 6px solid var(--c-blue);
}

.job-card.care {
  border-top-color: var(--c-green);
}

.job-card .job-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--c-blue);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.job-card.care .job-tag {
  background: var(--c-green);
}

.job-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  color: var(--c-navy);
}

.job-card dl {
  margin: 0 0 20px;
  font-size: 14.3px;
}

.job-card dl div {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--c-line);
}

.job-card dl div:last-child {
  border-bottom: none;
}

.job-card dt {
  flex: 0 0 92px;
  font-weight: 700;
  color: var(--c-blue-dark);
}

.job-card.care dt {
  color: #2c7d5c;
}

.job-card dd {
  margin: 0;
  color: #4a5760;
  flex: 1;
}

.job-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- 応募CTA ---------- */
.apply-section {
  background: var(--c-sky);
  padding: 80px 0;
}

.apply-box {
  background: #fff;
  border-radius: var(--radius-l);
  padding: 44px 34px;
  text-align: center;
  box-shadow: var(--shadow-card);
  max-width: 760px;
  margin: 0 auto;
}

.apply-box h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3.6vw, 30px);
  color: var(--c-navy);
  font-weight: 900;
}

.apply-box .en {
  font-family: 'Baloo 2', sans-serif;
  color: var(--c-red);
  letter-spacing: 0.16em;
  font-size: 13.5px;
  display: block;
  margin-bottom: 2px;
}

.apply-box p {
  font-size: 15px;
  color: #4a5760;
  margin: 14px 0 26px;
  line-height: 2;
}

.indeed-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-sky);
  border-radius: var(--radius-m);
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-blue-dark);
  margin-bottom: 24px;
}

.indeed-note i {
  color: var(--c-red);
}

.apply-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 56px;
  font-weight: 700;
  color: var(--c-navy);
  font-size: 15.5px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: 'Q';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Baloo 2', sans-serif;
  color: var(--c-red);
  font-size: 20px;
}

.faq-item summary::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-blue);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item .answer {
  padding: 0 26px 20px 56px;
  font-size: 14.5px;
  color: #4a5760;
  line-height: 2;
  position: relative;
}

.faq-item .answer::before {
  content: 'A';
  position: absolute;
  left: 22px;
  top: -2px;
  font-family: 'Baloo 2', sans-serif;
  color: var(--c-blue);
  font-size: 20px;
}

@media (max-width: 960px) {
  .hello-inner {
    grid-template-columns: 1fr;
  }
  .pros-cons,
  .job-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .recruit-hero {
    min-height: 380px;
    padding: 40px 0 90px;
  }
  .message-section,
  .hello-section,
  .apply-section {
    padding: 54px 0;
  }
  .env-section {
    padding: 60px 0;
  }
  .env-points {
    grid-template-columns: 1fr;
  }
  .rank-item {
    gap: 14px;
    padding: 16px 18px;
  }
  .rank-item .icon {
    display: none;
  }
  .job-card dl div {
    flex-direction: column;
    gap: 2px;
  }
}
