/* 基本設定 */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #f7fafc;
    background-image: radial-gradient(#ebf4ff 1px, transparent 1px);
    background-size: 20px 20px; /* 隠し味に薄いドット模様 */
    color: #6d7177;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

/* ナビゲーション */
header {
    background: #fff;
    padding: 20px 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #005bac; /* コーポレートカラー例 */
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* ヘッダー全体のスタイル */
.site-header {
    position: fixed; /* 画面上部に固定 */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    /* ほんのり背景をぼかすとおしゃれ（グラスモーフィズム） */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-sizing: border-box; /* パディングを横幅の中に含める設定 */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px; /* コンテンツの最大幅 */
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between; /* ロゴを左、ナビを右に */
    align-items: center;
}

/* 会社名（ロゴ）のデザイン */
.logo a {
    font-size: 20px;
    font-weight: 700;
    color: 005bac;      /* 背景画像の上なので白が見やすい */
    text-decoration: none;
    letter-spacing: 0.15em; /* 文字の間隔を広げて高級感を出す */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: opacity 0.3s ease;
}

/* マウスを乗せた時に少し透けさせる（おしゃれ演出） */
.logo a:hover {
    opacity: 0.7;
}
/* これが最低限必要なCSSです */
.top-hero {
    position: relative;
    width: 100%;
    height: 80vh; /* これがないと表示されません */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    /* 背景画像が表示されているか確認 */
    background-image: url('top_image.jpeg');
    background-size: cover; 
    background-position: center;
    color: white; /* 文字を白くして見えるようにする */
}

/* オーバーレイ（画像の上に重ねる半透明の層） */
.top-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* 画像が明るすぎる場合に備えて少し暗く */
}

/* 文字コンテンツ */
.top-hero-content {
    position: relative;
    z-index: 2; /* オーバーレイより上に表示 */
}
/* メインビジュアル（Heroセクション） */
.hero-split {
    display: flex;
    align-items: center; /* 上下中央揃え */
    height: 60vh;
    margin: 40px;
    background-color: #eef3f8; /* テキスト側の背景色 */
    overflow: hidden; /* 画像のはみ出し防止 */
    border-radius: 8px; /* 任意：角を少し丸くすると今風になります */
}

/* 左側：画像の設定 */
.hero-image {
    flex: 1; /* 幅を均等に分ける */
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 枠いっぱいに画像を広げる（歪ませない） */
}

/* 右側：テキストの設定 */
.hero-content {
    flex: 1; /* 幅を均等に分ける */
    padding: 0 5%;
    color: #fff;
    text-align: left;
}
.hero-content h1 {
    font-size: 2.2rem;
    color: #090909;
}
.hero-content h2 {
    font-size: 1.5rem;
    color: #0153f6;
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero2-split {
    display: flex;
    align-items: center; /* 上下中央揃え */
    height: 60vh;
    margin: 40px;
    background-color: #f8eef2; /* テキスト側の背景色 */
    overflow: hidden; /* 画像のはみ出し防止 */
    border-radius: 8px; /* 任意：角を少し丸くすると今風になります */
}

/* 左側：画像の設定 */
.hero2-image {
    flex: 1; /* 幅を均等に分ける */
    height: 100%;
}

.hero2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 枠いっぱいに画像を広げる（歪ませない） */
}

/* 右側：テキストの設定 */
.hero2-content {
    flex: 1; /* 幅を均等に分ける */
    padding: 0 5%;
    color: #fff;
    text-align: left;
}
.hero2-content h1 {
    font-size: 2.2rem;
    color: #090909;
}
.hero2-content h2 {
    font-size: 1.5rem;
    color: #f6013a;
}

.hero2-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn {
    background: #005bac;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}
.btn2 {
    background: #ac4200;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    align-items: center;
    display: flex;           /* Flexbox（レイアウトツール）を有効化 */
    justify-content: center;  /* 横方向の配置を中央（センター）にする */
}

.btn:hover {
    background: #004585;
}

/* フッター */
footer {
    text-align: center;
    padding: 40px 0;
    background: #f8f8f8;
    font-size: 14px;
}
/* 追加するスタイル */

.page-header {
    background: #f4f7f9;
    padding: 20px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #005bac;
    margin: 0;
}

.content-wrapper {
    max-width: 1100px;
    margin: 10px auto;
    padding: 0 20px;
}

/* サービス紹介の装飾 */
.service-item {
    max-width: 1100px;
    margin-bottom: 40px;
    padding: 30px;
    border-left: 5px solid #005bac;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


/* お問い合わせフォームの装飾 */
.contact-form {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group label span {
    background: #ff4d4d;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 10px;
    vertical-align: middle;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* 幅の計算を楽にする */
    font-size: 16px;
}

.form-group textarea {
    resize: vertical; /* 縦方向にのみリサイズ可能 */
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    border: none;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    max-width: 300px;
}
/* Google風ミニマルスタイル */
.about-page {
    background-color: #fff;
    color: #3c4043; /* Googleがよく使う少し薄い黒 */
}
.glue-headline--headline-1 {
    text-align: center; /* 文字を中央に寄せる */
    margin-top: 50px;   /* 上に少し隙間を作る（必要に応じて） */
    line-height: 1.6;   /* 行間を少し広げると読みやすくなります */
}
.about-hero {
    padding: 120px 10%;
    text-align: left;
    max-width: 1000px;
}

.about-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 80px 10%;
    background-color: #f8f9fa; /* 薄いグレーの背景 */
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    color: #1a73e8; /* Google Blue */
    font-weight: bold;
}

.about-story {
    padding: 100px 10%;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    border-radius: 8px; /* わずかな角丸がGoogle流 */
    box-shadow: 0 1px 3px rgba(60,64,67,0.3);
}


     .contact-card {
    border-radius: 8px;
    box-shadow: 0 0 0 0 transparent;
    display: block;
    height: 100%;
    min-height: 96px;
    outline: 0;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .25s;
    transform: translateZ(0);
    width: 100%;
    margin: 10px; 
    }


    .contact-card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
      transform: translateY(-2px);
    }

    .contact-card:hover .arrow {
      transform: translateX(5px);
    }

    .text-section {
      flex: 0 0 280px;
      padding: 0px 35px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: #ffffff;
    }

    .text-section h2 {
      margin: 0 0 25px 0;
      font-size: 20px;
      color: #333;
      font-weight: 500;
      letter-spacing: 0.03em;
    }

    .arrow {
      font-size: 28px;
      color: #4A90E2;
      font-weight: 300;
      transition: transform 0.3s ease;
      display: inline-block;
    }

    .image-section {
      flex: 1;
      position: relative;
      min-height: 220px;
      overflow: hidden;
    }

    .image-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
/* 募集要項セクション全体 */
.recruit-section {
    padding: 20px 20px;
    background-color: #fcfdfe; /* 非常に薄い青でさわやかに */
    color: #333;

}

.recruit-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* タイトル */
.section-title {
    text-align: center;
font-size: 2.5rem !important; /* 一旦極端に大きくして確認 */
    margin-bottom: 60px;
    color: #005bac;
    margin: 0;
}



.section-title span {
    display: block;
    font-size: 0.9rem;
    color: #4A90E2;
    letter-spacing: 0.2em;
    margin-top: 10px;
}

/* リード文 */
.recruit-lead {
    text-align: center;
    margin-bottom: 50px;
}

.recruit-lead h3 {
    font-size: 1.5rem;
    color: #34a853; /* 以前の「社会の土台」カラー */
    margin-bottom: 15px;
}

/* 募集要項テーブル */
.specs-table dl {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e2e8f0;
}

.specs-table dt {
    width: 100%;
    padding: 25px;
    background-color: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    font-weight: bold;
    color: #4a5568;
}

.specs-table dd {
    width: 100%;
    padding: 25px;
    margin: 0;
    border-bottom: 1px solid #e2e8f0;
    background-color: #fff;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ea4335; /* 「価値」のカラー */
}

.price-detail {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* インターンカード */
.intern-card {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    border: 1px solid #b2f5ea;
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    margin: 60px 0;
}

.intern-card h4 {
    font-size: 1.4rem;
    color: #2c7a7b;
    margin-bottom: 10px;
}

/* 応募ガイド */
.apply-info {
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

}

.apply-notes {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 30px;
    border-left: 3px solid #cbd5e0;
    padding-left: 20px;
}

.contact-box {
    text-align: center;
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 10px;
}

.company-name { font-weight: bold; font-size: 1.1rem; }
.tel { font-size: 1.8rem; font-weight: bold; color: #1a365d; margin: 10px 0; }
/* ナビゲーション */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* 横並びにする */
    gap: 30px; /* メニュー間の余白 */
}

.main-nav a {
    text-decoration: none;
    color: #4a5568;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}
.single-comparison {
  padding: 40px 20px;
  text-align: center;
  background-color: #fdfdfd;
}

.comparison-item-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #444;
}

.comparison-flex {
  display: flex;
  justify-content: center;
  align-items: stretch; /* 高さを揃える */
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* 共通のカードデザイン */
.comp-card {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px 20px;
  background-color: #fff;
  position: relative;
}

/* 自社カードの強調 */
.my-company {
  border: 3px solid #ffcc00; /* ブランドカラー */
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: scale(1.05); /* 少し大きく見せる */
  z-index: 1;
}

.card-label {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #666;
}

.my-company .card-label {
  font-weight: bold;
  color: #333;
}

/* バッジの装飾 */
.card-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  color: #000;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* 記号とテキスト */
.symbol-bad { font-size: 2.5rem; color: #ccc; display: block; }
.symbol-best { font-size: 2.5rem; color: #ffcc00; display: block; }

.card-content p {
  margin-top: 10px;
  line-height: 1.6;
}

:root {
  --primary-color: #004b91; /* 信頼感のある紺色 */
  --bg-color: #f8f9fa;
  --text-color: #333;
}

.unexperienced-section {
  padding: 80px 20px;
  background-color: var(--bg-color);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: var(--text-color);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.section-title .en {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-color);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.section-lead {

  margin-bottom: 50px;
  line-height: 1.8;
  color: #666;
}

/* グリッドレイアウト */
.support-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.support-item {
  flex: 1;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: relative;
  text-align: center;
}

/* 中央（二人一組）を強調 */
.support-item.highlight {
  border-top: 5px solid var(--primary-color);
  transform: translateY(-10px);
}

.item-number {
  font-size: 3rem;
  font-weight: bold;
  color: rgba(0, 75, 145, 0.1);
  position: absolute;
  top: 10px;
  left: 20px;
}

.item-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.support-item h3 {
  font-size: 1.15rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.support-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}
/* サービスカードの並び */
.service-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* スマホで折り返し */
}

.service-card {
  flex: 1;
  min-width: 300px; /* スマホで1枚にするための設定 */
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* カードの見出し */
.card-header {
  background: #005bac;
  color: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  font-family: serif;
  font-weight: bold;
  font-size: 1.2rem;
  opacity: 0.8;
}

.card-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

/* カードの内容 */
.card-body {
  padding: 30px 20px;
  text-align: center;
}

.icon-circle {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.card-body p {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
.access-section {
  padding: 80px 20px;
  background-color: #fff;
}

.access-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* 地図の箱 */
.map-container {
  flex: 1.2;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0; /* 下の余白対策 */
}

/* 事務所情報の箱 */
.info-container {
  flex: 1;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.info-table th, 
.info-table td {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-table th {
  width: 30%;
  text-align: left;
  color: #005bac; /* メインカラー */
  font-weight: bold;
  vertical-align: top;
}

.info-table td a {
  color: inherit;
  text-decoration: none;
}


.btn-map:hover {
  opacity: 0.8;
}

/* フッター全体のスタイル */
.main-footer {
  background-color: #1a1a1a; /* 真っ黒すぎない高級感のある黒 */
  color: #fff;
  padding: 20px 0 0;
  font-family: sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

/* 各セクションの幅調整 */
.footer-info, .footer-nav, .footer-contact {
  width: auto;
  margin: 10px;
}

/* ロゴ・住所 */
.footer-logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #ccc; /* 少し明るさを落とした白 */
}

/* ナビゲーション */
.footer-nav h4, .footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  border-left: 3px solid #005bac; /* アクセントカラー */
  padding-left: 10px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #fff;
}

/* 連絡先・ボタン */
.tel {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.time {
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 20px;
}

.footer-btn {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.footer-btn:hover {
  background-color: #fff;
  color: #1a1a1a;
}

/* 下部コピーライト部分 */
.footer-bottom {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
  font-size: 0.75rem;
  color: #666;
}
.policy-page {
  background-color: #f9f9f9;
  padding: 40px 0;
  color: #333;
  line-height: 1.8;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* パンくずリスト */
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 30px;
  color: #666;
}
.breadcrumb a {
  color: #005bac;
  text-decoration: none;
}

/* コンテンツ全体 */
.policy-content {
  background: #fff;
  padding: 50px;
  border: 1px solid #eee;
  border-radius: 4px;
}

.policy-content h1 {
  font-size: 1.8rem;
  color: #005bac;
  border-bottom: 2px solid #005bac;
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.intro {
  margin-bottom: 40px;
}

/* 会社情報・窓口ボックス */
.company-box, .window {
  background-color: #f5f7f9;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.company-box h3, .window p strong {
  color: #005bac;
  margin-bottom: 10px;
  display: block;
}

/* 各項目 */
.policy-item {
  margin-bottom: 40px;
}
.policy-item h2 {
  font-size: 1.3rem;
  border-left: 4px solid #005bac;
  padding-left: 15px;
  margin-bottom: 20px;
  background: #f8f9fa;
  padding-top: 5px;
  padding-bottom: 5px;
}
.policy-item h3 {
  font-size: 1.1rem;
  margin: 25px 0 10px;
}

/* リスト形式 */
.sub-list {
  margin: 20px 0;
  padding-left: 20px;
}
.sub-list ul {
  margin-top: 10px;
}

.contact-box {
  margin-top: 60px;
  border-top: 1px solid #eee;
  padding-top: 40px;
}
.form-privacy {
    margin: 30px 0;
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.privacy-note {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #666;
}

.privacy-note a {
    color: #005bac;
    text-decoration: underline;
    font-weight: bold;
}

/* チェックボックス全体の装飾 */
.checkbox-container {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
}

/* 本来のチェックボックスは隠す */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* カスタムチェックボックスの枠 */
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 3px;
}

/* チェックされた時の背景色 */
.checkbox-container input:checked ~ .checkmark {
    background-color: #005bac;
    border-color: #005bac;
}

/* チェックマークの形（白線） */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* スマホ対応 */
@media (max-width: 688px) {
    .specs-table dt, .specs-table dd {
        width: 100%;
    }
    .specs-table dt {
        padding: 15px 25px 5px;
        border-bottom: none;
    }
    .apply-info {
        padding: 30px 20px;
    }
    .about-hero h1 { font-size: 2rem; }
    .about-stats { grid-template-columns: 1fr; }
    .story-block { flex-direction: column; gap: 40px; }
      .comparison-flex {
    flex-direction: column;
    align-items: center;
  }
  .my-company {
    transform: scale(1);
    order: -1; /* 自社を上に持ってくる */
  }
  .support-grid {
    flex-direction: column;
  }
  .support-item.highlight {
    transform: none;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .service-list {
    flex-direction: column;
  }
  .access-flex {
    flex-direction: column;
  }
  .map-container, .info-container {
    width: 100%;
  }
  .map-container iframe {
    height: 300px;
  }
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .hero2-split {
        flex-direction: column; /* 縦並び */
        height: auto; /* 高さを自動調整 */
        margin: 20px;
    }
    .hero2-image {
        width: 100%;
        height: 250px; /* スマホ時の画像の高さ */
    }
    .hero2-content {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }
      .hero-split {
        flex-direction: column; /* 縦並び */
        height: auto; /* 高さを自動調整 */
        margin: 20px;
    }
    .hero-image {
        width: 100%;
        height: 250px; /* スマホ時の画像の高さ */
    }
    .hero-content {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }
    .glue-headline--headline-1 {
        width: 100%;
        font-size: 1.5rem;
}
    .policy-content {
    padding: 30px 20px;
  }
  .policy-content h1 {
    font-size: 1.5rem;
  }
  .logo {
    max-width: 80%; /* ロゴが占める最大幅を制限 */
    display: block; /* スマホの時だけ「＆」で改行させる */
    font-size: 0.9rem;
    color: #666; /* 少し色を薄くしてバランスをとる */
  }


  .logo a {
    display: block;          /* ブロック要素にして改行しやすくする */
    font-size: 1.1rem;      /* 文字サイズを少し小さくする（元のサイズに合わせて調整） */
    line-height: 1.4;       /* 改行された時の行間を整える */
    white-space: normal;    /* 文字が長くても折り返されるようにする */
    word-break: break-all;  /* 適切な場所で区切る */
  }
}