/* ==========================================================================
   site.css — 有限会社居宅介護支援センター珊瑚 サイト固有スタイル
   ========================================================================== */

/* --------------------------------------------------------------------------
   フォント上書き（main.css の font-en を Roboto Condensed に統一）
   -------------------------------------------------------------------------- */
body {
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", sans-serif;
  letter-spacing: 0.03em;
}

.heading__en,
.font-en,
.header__nav-en,
.sp-nav__en {
  font-family: "Roboto Condensed", sans-serif;
}

/* --------------------------------------------------------------------------
   サイトロゴ（画像ロゴ）
   -------------------------------------------------------------------------- */

/* ヘッダーロゴ：リンク要素 */
a.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

/* ヘッダーロゴ画像 */
.site-logo img {
  height: auto;
  max-height: 46px;
  width: auto;
  display: block;
}

/* フッターロゴ：divラッパー */
.site-logo--footer {
  display: flex;
  align-items: center;
}

/* フッターロゴ画像：やや小さめ */
.site-logo--footer img {
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   ヘッダーロゴ（テキストロゴ — 旧定義・未使用だが互換のため残す）
   -------------------------------------------------------------------------- */
.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  color: inherit;
}

.header-logo__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
}

.header-logo__sub {
  font-size: 0.9rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  color: #3E85EC;
  letter-spacing: 0.1em;
}

.header-logo--dark .header-logo__name {
  color: #fff;
}

.header-logo--dark .header-logo__sub {
  color: rgba(255, 255, 255, 0.75);
}

/* --------------------------------------------------------------------------
   ヘッダーSNSアイコン
   -------------------------------------------------------------------------- */

/* ── ヘッダーナビ：カラム落ち防止（viewport=1200 固定のため常に1行に収める） */
.header__inner {
  flex-wrap: nowrap;
}

.header__nav {
  flex-shrink: 1;
  min-width: 0;
  flex-wrap: nowrap;
  margin-right: 10px;
}

.header__nav-item a {
  padding: 8px 10px;
  white-space: nowrap;
}

.header__nav-en {
  font-size: 0.9rem;
}

.header__nav-ja {
  font-size: 1.1rem;
}

.header__tel {
  font-size: 1.7rem;
}

.sango-header-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(62, 133, 236, 0.1);
  color: #3E85EC;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sango-header-sns:hover {
  background: #3E85EC;
  color: #fff;
}

.sango-sp-sns,
.sango-footer-sns {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3E85EC;
  text-decoration: none;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
}

.sango-footer-sns {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #3E85EC;
  justify-content: center;
  font-size: 1.8rem;
}

.sango-footer-sns:hover,
.sango-sp-sns:hover {
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   フッター本体
   -------------------------------------------------------------------------- */
.footer-body {
  padding: 80px 0 60px;
  background: #F0FAFF;
  position: relative;
}

.footer-body__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

@media (max-width: 896px) {
  .footer-body__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.footer-body__left {
  flex: 0 0 300px;
}

.footer-body__right {
  flex: 1;
}

.footer-body__info p {
  font-size: 1.4rem;
  line-height: 2;
  color: #555;
}

.footer-body__info a {
  color: #555;
  text-decoration: none;
}

.footer-body__info a:hover {
  color: #3E85EC;
}

.footer-body__map {
  width: 100%;
  height: 300px;
}

.footer-body__map iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
}

@media (max-width: 639px) {
  .footer-body {
    padding: 50px 0 40px;
  }
  .footer-body__map {
    height: 220px;
  }
}

/* --------------------------------------------------------------------------
   コピーライト行
   -------------------------------------------------------------------------- */
.footer-bottom {
  text-align: center;
  padding: 18px 20px;
}

.footer-bottom--dark {
  background: #1a3a6b;
}

.footer-bottom__copyright {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   TOPページ：メインビジュアル（slideshow）
   aspect-ratio ベースで高さを算出し、画面リサイズ時の空白を防止。
   max-height で PC 表示時に画面いっぱいになりすぎないよう制御。
   -------------------------------------------------------------------------- */
#slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;           /* 画像比率に近い値 — 空白が出ない */
  max-height: 90vh;               /* PC では画面の90%を上限に */
  overflow: hidden;
}

/* CMSスライダーを #slideshow に絶対配置で全面に敷く */
#cms-slider-1-1-area {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

/* JS がインラインスタイルで上書きしても強制適用 */
#cms-slider-1-1-area .swiper,
#cms-slider-1-1-area .swiper-wrapper,
#cms-slider-1-1-area .swiper-slide {
  height: 100% !important;
}

.swiper-slide .main_slider__inner {
  width: 100%;
  height: 100% !important;
  position: relative;
  overflow: hidden;
}

.swiper-slide .main_slider__inner img,
#cms-slider-1-1-area .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
}

/* MVキャッチコピー */
.sango-mv-catch {
  position: absolute;
  left: 6%;
  bottom: 6%;
  z-index: 10;
  color: #fff;
}

@media (max-width: 639px) {
  .sango-mv-catch {
    left: 5%;
    bottom: 10%;
  }
}

.sango-mv-catch__main {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  display: block;
  letter-spacing: 0.05em;
}

.sango-mv-catch__sub {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 500;
  margin-top: 12px;
  display: block;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.08em;
}

/* キャッチコピー画像 */
.sango-mv-catch img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
}

/* スマホスケーリング時：キャッチコピーを縮小 */
@media (min-height: 1450px) {
  .sango-mv-catch img {
    max-width: 500px;
  }
}

/* MVオーバーレイ */
.sango-mv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   TOPページ：無料体験バナー / 求人バナー
   -------------------------------------------------------------------------- */
.sango-promo-banner {
  display: block;
  background: linear-gradient(135deg, #3E85EC 0%, #19A9F7 100%);
  color: #fff;
  text-align: center;
  padding: 22px 20px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.sango-promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-20deg) translateX(-110%);
  transition: transform 0.5s ease;
}

.sango-promo-banner:hover {
  opacity: 0.9;
  color: #fff;
}

.sango-promo-banner:hover::before {
  transform: skewX(-20deg) translateX(110%);
}

.sango-promo-banner--recruit {
  background: linear-gradient(135deg, #5DBB7B 0%, #3E85EC 100%);
}

/* --------------------------------------------------------------------------
   TOPページ：最近の活動セクション
   -------------------------------------------------------------------------- */
.sango-activity {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 896px) {
  .sango-activity {
    flex-direction: column;
    gap: 24px;
  }
}

.sango-activity__img {
  flex: 0 0 42%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(62, 133, 236, 0.15);
}

.sango-activity__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sango-activity__img:hover img {
  transform: scale(1.04);
}

/* 縦長画像2枚並び */
.sango-activity__img--double {
  display: flex;
  gap: 8px;
  overflow: visible;              /* 親の overflow:hidden を解除 */
  border-radius: 0;
  box-shadow: none;
}

.sango-activity__img--double img {
  flex: 1;
  width: 0;                       /* flex で均等分割 */
  height: auto;
  object-fit: unset;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(62, 133, 236, 0.15);
  transition: transform 0.4s ease;
}

.sango-activity__img--double img:hover {
  transform: scale(1.02);
}

/* 詳しく見るボタン */
.sango-activity__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding: 11px 32px;
  background: #3E85EC;
  color: #fff;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  transition: background 0.25s ease;
}

.sango-activity__btn:hover {
  background: #2a6fd4;
  color: #fff;
}

.sango-activity__body {
  flex: 1;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 24px 28px;
}

.sango-activity__date {
  font-size: 1.3rem;
  font-family: "Roboto Condensed", sans-serif;
  color: #3E85EC;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.sango-activity__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  margin-bottom: 16px;
}

@media (max-width: 639px) {
  .sango-activity__title {
    font-size: 1.7rem;
  }
}

.sango-activity__text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #555;
}

/* --------------------------------------------------------------------------
   TOPページ：サービス紹介バナー
   -------------------------------------------------------------------------- */
.sango-service-bnr {
  display: flex;
  gap: 16px;
}

@media (max-width: 639px) {
  .sango-service-bnr {
    flex-direction: column;
  }
}

.sango-service-bnr__item {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: block;
  text-decoration: none;
}

.sango-service-bnr__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(60%);
}

@media (max-width: 639px) {
  .sango-service-bnr__img {
    height: 220px;
  }
}

.sango-service-bnr__item:hover .sango-service-bnr__img {
  transform: scale(1.07);
  filter: brightness(80%);
}

.sango-service-bnr__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: #fff;
  pointer-events: none;
}

.sango-service-bnr__en {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  opacity: 0.85;
  margin-bottom: 4px;
}

.sango-service-bnr__ja {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.sango-service-bnr__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  margin-top: 12px;
  transition: background 0.3s ease;
}

.sango-service-bnr__item:hover .sango-service-bnr__arrow {
  background: rgba(255,255,255,0.2);
}

/* --------------------------------------------------------------------------
   TOPページ：アクセスセクション
   -------------------------------------------------------------------------- */
.sango-access {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

@media (max-width: 896px) {
  .sango-access {
    flex-direction: column;
    gap: 30px;
  }
}

.sango-access__map {
  flex: 1;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.sango-access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 639px) {
  .sango-access__map {
    height: 250px;
  }
}

.sango-access__info {
  flex: 0 0 280px;
}

.sango-access__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #cce0ff;
  font-size: 1.5rem;
  color: #444;
}

.sango-access__info-item:first-child {
  border-top: 1px solid #cce0ff;
}

.sango-access__info-icon {
  color: #3E85EC;
  font-size: 1.6rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   下層ページ：ページヒーロー共通調整
   -------------------------------------------------------------------------- */
.page-hero {
  min-height: 220px;
}

/* --------------------------------------------------------------------------
   下層ページ：ごあいさつ（photo fade 型）
   -------------------------------------------------------------------------- */
.sango-greeting-box {
  position: relative;
  padding: 80px 0;
}

/* --------------------------------------------------------------------------
   下層ページ：駐車場・アコーディオン系
   -------------------------------------------------------------------------- */
.sango-parking-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.sango-parking-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   下層ページ：経営基本方針・求める人材　numbered list
   -------------------------------------------------------------------------- */
.sango-policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sango-policy-list__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fefefe;
  border-left: 5px solid #3E85EC;
  border-radius: 0 10px 10px 0;
  padding: 18px 24px;
  font-size: 1.55rem;
  line-height: 1.7;
  color: #333;
}

.sango-policy-list__num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #3E85EC;
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
}

/* --------------------------------------------------------------------------
   下層ページ：特徴カード（デイサービス）
   -------------------------------------------------------------------------- */
.sango-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 639px) {
  .sango-feature-grid {
    grid-template-columns: 1fr;
  }
}

.sango-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow: 0 4px 20px rgba(62, 133, 236, 0.1);
  border-top: 4px solid #3E85EC;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sango-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(62, 133, 236, 0.18);
}

.sango-feature-card__icon {
  font-size: 3rem;
  margin-bottom: 14px;
  display: block;
}

.sango-feature-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a3a6b;
  margin-bottom: 10px;
}

.sango-feature-card__text {
  font-size: 1.45rem;
  line-height: 1.8;
  color: #555;
}

/* --------------------------------------------------------------------------
   下層ページ：サービス内容テーブル / 募集職種テーブル
   -------------------------------------------------------------------------- */
.sango-program-list--3col {
  grid-template-columns: repeat(3, 1fr) !important;
}

.sango-program-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 639px) {
  .sango-program-list {
    grid-template-columns: 1fr;
  }
}

.sango-program-list__item {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 20px;
}

.sango-program-list__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3E85EC;
  margin-bottom: 8px;
}

.sango-program-list__text {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #555;
}

/* --------------------------------------------------------------------------
   ブログ：お知らせカテゴリーナビ
   -------------------------------------------------------------------------- */
.sango-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.sango-cat-nav__item {
  padding: 8px 20px;
  border-radius: 9999px;
  border: 2px solid #3E85EC;
  font-size: 1.4rem;
  font-weight: 600;
  color: #3E85EC;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sango-cat-nav__item:hover,
.sango-cat-nav__item.is-active {
  background: #3E85EC;
  color: #fff;
}

/* --------------------------------------------------------------------------
   お問い合わせCTAバー（電話 ＋ アクセスマップ 2カラム）
   -------------------------------------------------------------------------- */
.sango-cta-bar {
  background: linear-gradient(135deg, #3E85EC 0%, #19A9F7 100%);
  padding: 52px 20px;
}

.sango-cta-bar__inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 各カラム */
.sango-cta-bar__col {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
  padding: 8px 40px;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.25s ease;
}

.sango-cta-bar__col:hover {
  opacity: 0.8;
  color: #fff;
}

/* 丸枠アイコン */
.sango-cta-bar__icon {
  width: 68px;
  height: 68px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
}

/* テキストブロック */
.sango-cta-bar__body {
  display: flex;
  flex-direction: column;
}

/* 電話番号 */
.sango-cta-bar__tel {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

/* Access map タイトル */
.sango-cta-bar__title {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

/* 補足テキスト */
.sango-cta-bar__note {
  display: block;
  font-size: 1.3rem;
  margin-top: 7px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

/* 縦区切り線 */
.sango-cta-bar__divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   ユーティリティ補完
   -------------------------------------------------------------------------- */
.sango-sign {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3E85EC;
  margin-top: 24px;
  text-align: right;
}

/* --------------------------------------------------------------------------
   ユーティリティ：最大幅拡張
   -------------------------------------------------------------------------- */
.max-w-1000 {
  max-width: 1000px;
  width: 100%;
}

.max-w-1200 {
  max-width: 1200px;
  width: 100%;
}

/* --------------------------------------------------------------------------
   ごあいさつ：右下珊瑚装飾（1600×702px → 縦横比 43.875%）
   -------------------------------------------------------------------------- */
.sango-greeting {
  position: relative;
  overflow: hidden;
}

.sango-greeting > .container {
  position: relative;
  z-index: 1;
}

/* 説明文に白縁をつけて背景画像との被りに対応 */
.sango-greeting .sentence p,
.sango-greeting .sango-sign {
  text-shadow:
    1px  1px 0 #fff,
   -1px  1px 0 #fff,
    1px -1px 0 #fff,
   -1px -1px 0 #fff,
    0    2px 6px rgba(255, 255, 255, 0.8);
}

/* 珊瑚画像を右下に絶対配置 */
.sango-greeting::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  aspect-ratio: 1600 / 702;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27298/sango2.png) right bottom / contain no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* --------------------------------------------------------------------------
   デイサービス：デイサービスについてセクション 左下珊瑚装飾（1600×357px）
   -------------------------------------------------------------------------- */
.sango-about-day {
  position: relative;
  overflow: hidden;
}

.sango-about-day > .container {
  position: relative;
  z-index: 1;
}

/* 説明文に白縁 */
.sango-about-day .sentence p {
  text-shadow:
    1px  1px 0 #fff,
   -1px  1px 0 #fff,
    1px -1px 0 #fff,
   -1px -1px 0 #fff,
    0    2px 6px rgba(255, 255, 255, 0.8);
}

.sango-about-day::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  aspect-ratio: 1600 / 357;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27298/sango3.png) left bottom / contain no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* --------------------------------------------------------------------------
   デイサービス：無料体験バナー（プロモバナーと同グラデーション）
   -------------------------------------------------------------------------- */
.sango-trial-banner {
  background: linear-gradient(135deg, #5DBB7B 0%, #3E85EC 100%) !important;
}

.sango-trial-banner::before {
  display: none;
}

/* --------------------------------------------------------------------------
   汎用2カラム：テキスト＋画像
   -------------------------------------------------------------------------- */
.sango-2col {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sango-2col__text {
  flex: 1;
}

.sango-2col__img {
  flex: 0 0 42%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(62, 133, 236, 0.12);
}

.sango-2col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   ご利用の流れ：ステップリスト
   -------------------------------------------------------------------------- */
.sango-flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 各ステップ行 */
.sango-flow-step {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 32px;
  border-bottom: 1px solid #dce8f8;
  background: #fefefe;
  margin-bottom: 30px;
}

.sango-flow-step:first-child {
  border-top: 1px solid #dce8f8;
}

/* STEP番号ボックス */
.sango-flow-step__num {
  flex: 0 0 88px;
  height: 88px;
  background: #3E85EC;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 2px;
}

.sango-flow-step__label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.sango-flow-step__no {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

/* サムネイル画像 */
.sango-flow-step__img {
  flex: 0 0 160px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
}

.sango-flow-step__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキストエリア */
.sango-flow-step__body {
  flex: 1;
}

.sango-flow-step__title {
  font-size: 2rem;
  font-weight: 700;
  color: #3E85EC;
  margin-bottom: 10px;
}

.sango-flow-step__text {
  font-size: 1.5rem;
  line-height: 1.85;
  color: #444;
}

/* --------------------------------------------------------------------------
   テーブル：td背景色上書き
   -------------------------------------------------------------------------- */
.table-basic td {
  background: #fefefe;
}

/* --------------------------------------------------------------------------
   求める人材：3カラムカード
   -------------------------------------------------------------------------- */
.sango-person-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sango-person-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(62, 133, 236, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sango-person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(62, 133, 236, 0.18);
}

.sango-person-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.sango-person-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sango-person-card:hover .sango-person-card__img img {
  transform: scale(1.05);
}

.sango-person-card__body {
  padding: 20px 24px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sango-person-card__num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #3E85EC;
  line-height: 1;
  flex-shrink: 0;
}

.sango-person-card__text {
  font-size: 1.55rem;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   珊瑚背景装飾：sango.png を下部に敷く（全ページ共通）
   -------------------------------------------------------------------------- */
.sango-activity-section {
  position: relative;
  overflow: hidden;
}

.sango-activity-section > .container {
  position: relative;
  z-index: 1;
}

.sango-activity-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 30%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27298/sango.png) center bottom / 100% auto no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* --------------------------------------------------------------------------
   背景パターン：サークル柄
   -------------------------------------------------------------------------- */
.bg-circle {
  position: relative;
}

.bg-circle::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27298/bg-circle.png) repeat-y;
  opacity: 0.6;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   フォトギャラリー
   -------------------------------------------------------------------------- */
.sango-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .sango-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .sango-gallery {
    grid-template-columns: 1fr;
  }
}

.sango-gallery__item {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sango-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.sango-gallery__caption {
  font-size: 1.35rem;
  color: #555;
  text-align: center;
  padding: 10px 12px;
  margin: 0;
}

