body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  box-sizing: border-box;
}

/* ヘッダー全体のスタイル */
.main_header {
  background-color: #d98b87;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: relative;
}

/* ロゴ部分 */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 240px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.5em;
  margin: 0;
}

/* 連絡先情報 */
.contact-info {
  display: flex;
  align-items: center;
}

.contact-info .phone {
  margin-right: 20px;
  font-size: 16px;
}

/* ボタン全体のレイアウト */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 10px; /* ボタン間のスペース */
}

/* 個別ボタンのスタイル */
#button-mail, #button-line, #button-menu, #button-instagram {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-weight: bold;
  line-height: 0px;
  padding: 10px;
  transition: transform 0.3s ease-in-out;
}

/* メールボタン */
#button-mail {
  background-color: #00c2f3;
  color: #ffffff;
  font-size: 16px;
}

/* LINEボタン */
#button-line {
  background-color: #2fc356;
  font-size: 16px;
}

#button-line a {
  text-decoration: none;
  color: #ffffff;
  align-items: center;
  text-align: center;
}

/* Instagramボタン */
#button-instagram {
  background-color: #e4405f;
  font-size: 14px;
}

#button-instagram a {
  text-decoration: none;
  color: #ffffff;
  align-items: center;
  text-align: center;
}

/* メニューボタン */
#button-menu {
  background-color: #f8f5c2;
  color: #2fc356;
  font-size: 14px;
}

/* アイコン */
.contact-icons i {
  font-size: 32px;
}

/* ホバー時のエフェクト */
#button-mail:hover, #button-line:hover,
#button-instagram:hover,
#button-menu:hover {
  transform: scale(1.1);
}

/* ナビゲーションメニュー */
.nav-menu {
  display: none;
  position: absolute;
  top: 80px;
  right: 20px;
  background: #d98b87; /* ヘッダーと同じピンク色 */
  color: white;
  width: 250px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* メニューリスト */
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  padding: 10px;
  text-align: center;
}

.nav-menu li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  display: block;
  transition: background 0.3s ease-in-out;
}

.nav-menu li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* SNSリンク（スマホ時のみ表示） */
.nav-social {
  display: none; /* デフォルトでは非表示 */
  margin-top: 15px;
  text-align: center;
}

.nav-social a {
  display: block;
  margin: 5px 0;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.nav-social a i {
  margin-right: 5px;
  font-size: 18px;
}

/* メニューが開いた時の表示 */
.nav-menu.open {
  display: block;
}

/* スマホ時にSNSリンクを表示 */
@media screen and (max-width: 768px) {
  .nav-social {
      display: block; /* スマホ時のみ表示 */
  }
}

/* スマホ用調整 */
@media screen and (max-width: 768px) {
  /* 電話番号と受付時間を非表示 */
  .phone p {
      display: none;
  }
  
  /* メールとLINEとInstagramアイコンを非表示 */
  #button-mail, #button-line, #button-instagram {
      display: none;
  }

  /* メニューの位置調整 */
  .nav-menu {
      width: 100%;
      right: 0;
  }
}

/* ヒーローエリア */

.hero {
  text-align: center;
  height: 500px;
  background: url('田舎道02.jpg') no-repeat center/cover;
  color: white;
  padding: 60px 20px;
}

/* セクション全体のスタイル */
section {
  padding: 40px 20px;
  text-align: center;
}

/* SAFETY and SPEEDYセクション */
.intro {
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(232, 179, 179, 0.8)),  
  url('トラック.jpg') no-repeat center/cover;
  color: black;
  padding: 60px 20px;
}

.intro-content h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 1.2em;
  line-height: 1.8;
}

/* ハルミの強みセクション */
.strengths {
  background-color: #d98b87; /* ピンク系 */
  color: white;
}

.strengths h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
}

.strengths-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  color: black;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  text-align: left;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.2em;
  margin: 15px;
}

.card p {
  font-size: 0.9em;
  margin: 0 15px 15px 15px;
}


/* サービス内容 */

.service-section {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
}

.service-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.service-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.service-text h2 {
  color: #c97d6b;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 10px;
}

.service-text p {
  margin-bottom: 20px;
  color: #333;
  font-size: 16px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 40px;
  background-color: #d29a8a;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-more:hover {
  background-color: #c97d6b;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-image img {
  width: 450px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* スマホ用のレイアウト調整 */
@media screen and (max-width: 768px) {
  .service-section {
      text-align: center;
  }

  .service-image {
      order: 1; /* 画像を最初に */
  }

  .service-title {
      order: 2; /* タイトルを2番目に */
  }

  .service-content {
      order: 3; /* 説明文を3番目に */
  }

  .more-btn {
      order: 4; /* Moreボタンを最後に */
      margin: 10px auto 0;
  }
}

/* Googleマップのコンテナ */
.company-map {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Googleマップのサイズ調整 */
.company-map iframe {
  width: 100%; /* 親要素の幅いっぱいに広げる */
  max-width: 500px; /* PC時の最大幅を設定 */
  height: 300px; /* 高さを固定 */
  border-radius: 10px;
}

/* スマホ時のレイアウト調整 */
@media screen and (max-width: 768px) {
  .company-section {
      flex-direction: column;
      text-align: center;
  }

  .company-map iframe {
      width: 90%; /* スマホ時は画面幅の90% */
      max-width: 100%; /* 最大幅の制限を解除 */
      height: 250px; /* スマホ時は少し小さく */
  }
}

/* セクション全体の共通スタイル */
.news {
  margin: 50px auto;
  padding: 20px;
  max-width: 800px;
  text-align: center;
}

.news h2 {
  font-size: 24px;
  font-weight: bold;
  color: #c58282;
  margin-bottom: 20px;
}

/* お知らせセクション */
.news ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.news li {
  font-size: 14px;
  line-height: 1.8;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  text-align: left;
}

.news li span {
  font-weight: bold;
  margin-right: 10px;
  color: #555;
}

.more-btn {
  display: inline-block;
  background-color: #d29a8a;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.more-btn:hover {
  background-color: #b56f6f;
}

/* お問い合わせ & 採用情報セクション */
.contact-recruit-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
}

/* 各ボックス */
.contact-recruit-box {
  position: relative;
  width: 48%;
  height: 250px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* お問い合わせの背景画像 */
.contact-recruit-box {
  background-image: url('仕事風景01.jpg'); /* 画像を適宜変更 */
}

/* 採用情報の背景画像 */
.contact-recruit-box.recruit {
  background-image: url('募集.jpeg'); /* 画像を適宜変更 */
}

/* コンテンツのスタイル */
.contact-recruit-content {
  text-align: center;
  padding: 20px;
  width: 80%;
  border-radius: 10px;
}

/* タイトルのスタイル */
.contact-recruit-content h3 {
  color: white;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Moreボタンのスタイル */
.more-button {
  display: inline-block;
  background-color: #D96C6C; /* ピンク */
  color: white;
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.more-button:hover {
  background-color: #C55B5B;
}

/* スマホ時（768px以下）に1列にする */
@media screen and (max-width: 768px) {
  .contact-recruit-section {
      flex-direction: column;
      gap: 15px;
  }

  .contact-recruit-box {
      width: 100%;
  }
}

/* フッター */

/* フッター全体 */
.footer {
  background-color: #D96C6C; /* ピンク */
  color: white;
  padding: 30px 0;
}

/* フッターのコンテナ */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴのスタイル */
.footer-logo a {
  display: block;
}

.footer-logo img {
  width: 150px;
}

/* フッターナビゲーション */
.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

.footer-nav ul li {
  display: inline-block;
}

.footer-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

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

/* 著作権表示 */
.footer-copyright {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}

/* フッターのSNSリンク（スマホ用） */
.footer-social {
  display: none; /* PCでは非表示 */
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer-social a i {
  margin-right: 5px;
}

/* スマホ用レイアウト（768px以下） */
@media screen and (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-nav ul {
      flex-direction: column;
      gap: 10px;
  }

  .footer-nav ul li {
      display: block;
  }

  .footer-logo img {
      width: 120px;
      margin-bottom: 15px;
  }

  /* スマホ時にSNSリンクを表示 */
  .footer-social {
      display: block;
  }
}

/* 詳細ページ */

/* ベーススタイル */

.breadcrumb a {
  text-decoration: none;
  color: #333;
}

.breadcrumb a:hover {
  text-decoration: underline;
}


.header-bg {
  width: 100%;
  height: 300px;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(232, 179, 179, 0.8)),  
  url('トラック.jpg') no-repeat center/cover;
  color: white;
  padding: 60px 20px;
}

.header-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 48px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* パンくずリスト */
.breadcrumb {
  margin: 20px;
  font-size: 14px;
}

/* メインコンテンツ */
.main-content {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
}

.vision-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vision-title {
  font-size: 24px;
  color: #555;
  text-align: center;
  margin-bottom: 10px;
}

.vision-subtitle {
  font-size: 20px;
  color: #d65f5f;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.vision-content ol {
  padding-left: 20px;
}

.vision-content ol li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* 役員挨拶セクション */
.executive-section {
  max-width: 940px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.executive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  padding: 16px;
}

.executive:last-child {
  margin-bottom: 0;
}

.executive-image {
  flex: 1;
}

.executive-image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  margin-right: 20px;
}

.executive-text p {
  flex: 2;
  margin: 0 0 16px 0;
  text-align: left;
  line-height: 1.6;
  font-size: 16px;
  color: #333;
}

.executive-text p:last-child {
  text-align: right;
  font-weight: bold;
  font-size: 24px;
  color: #555;
}

/* スマホ用のレイアウト調整 */
@media screen and (max-width: 768px) {
    .executive {
        flex-direction: column;
        text-align: center;
    }

    .executive-image {
        order: 1;
    }

    .executive-text {
        order: 2;
    }
}

/* セクション全体のスタイル */
.company-profile {
  margin: 50px auto;
  max-width: 800px;
  padding: 20px;
  font-family: "Arial", sans-serif;
}

/* 見出しスタイル */
.section-title {
  font-size: 24px;
  color: #d48585;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

/* テーブルのスタイル */
.profile-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

/* テーブルの見出しセル（左側） */
.profile-table th {
  width: 30%;
  background-color: #f0f0f0;
  text-align: left;
  padding: 10px;
  font-weight: bold;
  border: 1px solid #ddd;
  color: #333;
}

/* テーブルのデータセル（右側） */
.profile-table td {
  width: 70%;
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
  color: #555;
}

/* テーブルの行のスタイル */
.profile-table tr:nth-child(even) {
  background-color: #fafafa;
}

/* 運送サービスのスタイル */

/* 配送サービスセクション */
.delivery-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f8f1f1; /* ピンクベース */
}

/* セクションタイトル */
.delivery-title {
  color: #D96C6C; /* 濃いピンク */
  font-size: 24px;
  margin-bottom: 30px;
}

/* 配送サービスのボックスをまとめるコンテナ */
.delivery-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 各配送サービスのボックス */
.delivery-box {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: left; /* 左寄せ */
  transition: transform 0.3s ease;
}

/* 見出し */
.delivery-heading {
  font-size: 22px;
  font-weight: bold;
  color: #b24c4c; /* ピンク系の濃い色 */
  margin-bottom: 10px;
}

/* 説明文 */
.delivery-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* ホバーエフェクト */
.delivery-box:hover {
  transform: translateY(-5px);
}

/* スマホ用（1列表示） */
@media screen and (max-width: 768px) {
  .delivery-container {
      flex-direction: column;
      align-items: center;
  }
  .delivery-box {
      width: 90%; /* スマホでは幅を広げる */
  }
}

/* セクションのデザイン */
.fare-section {
  margin: 0 auto;
  padding: 20px;
  max-width: 1200px;
}

/* タイトルデザイン */
.fare-title {
  color: #D96C6C; /* 濃いピンク */
  padding: 10px;
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* 料金表のコンテナ */
.fare-container {
  display: flex;
  justify-content: space-between; /* 均等配置 */
  gap: 10px;
  flex-wrap: wrap; /* 画面サイズが小さい場合に折り返し */
}

/* 料金ボックス */
.fare-box {
  background-color: white;
  padding: 20px;
  width: 20%; /* 4つ均等に並ぶように調整 */
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid #D96C6C; /* 濃いピンクの枠線 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 料金ボックスのヘッダー */
.fare-header {
  background-color: #D96C6C; /* 濃いピンク */
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  width: 100%;
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* 料金の数値を強調 */
.fare-box p {
  font-size: 18px;
  color: black;
  margin: 10px 0 0;
}

.fare-box strong {
  font-size: 24px;
  color: black;
  font-weight: bold;
}

/* 1200px以下（タブレット）では2列にする */
@media screen and (max-width: 1200px) {
    .fare-box {
        width: 40%; /* 2列表示 */
    }

    .fare-container {
        gap: 10px; /* 間隔を狭くする */
    }
}

/* 768px以下（スマホ）では1列にする */
@media screen and (max-width: 768px) {
    .fare-container {
        flex-direction: column;
        align-items: center;
    }

    .fare-box {
        width: 80%; /* 1列表示 */
    }
}

/* 早見表の全体デザイン */
.fare-chart-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

/* タイトルデザイン */
.fare-chart-title {
  color: #D96C6C; /* ピンクのタイトル */
  padding: 10px;
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* 料金表のコンテナ（2列レイアウト） */
.fare-chart-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* 各料金表 */
.fare-table {
  width: 48%;
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #D96C6C; /* ピンクの枠線 */
}

/* 1日貸切料金のボックス */
.fare-table.full-width {
  width: 97%;
  margin: 20px auto;
  text-align: center;
}

/* 料金表タイトル */
.fare-table-title {
  background-color: #D96C6C; /* ピンク */
  color: white;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  margin-bottom: 10px;
}

/* 1日貸切料金の値段 */
.fare-price {
  font-size: 24px;
  font-weight: bold;
  color: #D96C6C;
  margin-bottom: 15px;
}

/* テーブルのデザイン */
table {
  width: 100%;
  border-collapse: collapse;
}

/* ヘッダーのデザイン */
table thead tr {
  background-color: #F8A1A1; /* 明るいピンク */
  color: white;
  font-weight: bold;
}

/* 各セルのデザイン */
table th, table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

/* 交互の背景色 */
table tbody tr:nth-child(even) {
  background-color: #FDE8E8; /* 薄いピンク */
}

table tbody tr:nth-child(odd) {
  background-color: #FFF5F5; /* もっと薄いピンク */
}

/* 注意事項のリスト */
.fare-notice-list {
  text-align: left;
  padding: 10px 20px;
}

.fare-notice-list li {
  margin-bottom: 5px;
  font-size: 16px;
}

/* レスポンシブ対応（スマホでは1列表示） */
@media screen and (max-width: 768px) {
  .fare-chart-container {
      flex-direction: column;
      align-items: center;
  }

  .fare-table {
      width: 90%;
  }
}

/* === 募集要項セクション === */
.recruit-info {
  padding: 40px;
  background: #FFF;
  text-align: center;
}

/* セクションタイトル */
.section-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #8B5A5A;
  margin-bottom: 20px;
}

/* 説明セクション（教育体制・福利厚生） */
.recruit-section {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 30px auto 0;
  background: #f8f0f0;
  padding: 20px;
  border-radius: 10px;
}

/* 画像 */
.recruit-image {
  width: 50%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像のサイズ調整 */
.recruit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

/* 説明文 */
.recruit-text {
  width: 60%;
  text-align: left;
  margin-left: 16px;
}

/* 募集要項タイトル */
.recruit-title {
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  color: #8B5A5A;
  margin-top: 50px;
  margin-bottom: 40px;
  border-left: 8px solid #D98B87;
  padding-left: 15px;
}

/* 募集要項の表 */
.recruit-table-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 60px;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* 左列（タイトル） */
.recruit-table th {
  background: #D98B87;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: bold;
  width: 30%;
}

/* 右列（説明） */
.recruit-table td {
  background: #FFF;
  padding: 15px;
  text-align: left;
  color: #333;
  border-bottom: 1px solid #DDD;
}

/* ボタンデザイン */

.recruit-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.recruit-button {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  width: 320px;
  justify-content: flex-start;
}

.recruit-btn-application {
  background: #D98B87; /* ピンク */
}

.recruit-btn-entry {
  background: #4CAF50; /* 緑 */
}

/* ボタンのアイコン */
.recruit-button .icon {
  font-size: 1.5em;
  margin-right: 15px;
}

/* ボタンのテキスト */
.button-text {
  display: flex;
  flex-direction: column;
}

.button-title {
  font-size: 1em;
  font-weight: bold;
}

.button-subtitle {
  font-size: 0.8em;
  opacity: 0.8;
}

/* === スマホ対応 === */
@media screen and (max-width: 768px) {
  .recruit-buttons {
      flex-direction: column;
      gap: 20px;
      margin-top: 40px;
      margin-bottom: 40px;
  }

  .recruit-button {
      width: 90%;
      justify-content: center;
  }
}

/* セクション全体 */
.safety-section {
  background-color: #f8e1e1;
  padding: 50px 20px;
  text-align: center;
}

/* タイトル */
.safety-title {
  font-size: 24px;
  font-weight: bold;
  color: #964b4b;
  margin-bottom: 40px;
}

/* 基本方針 */
.safety-policy {
  text-align: center;
  border-radius: 16px;
  background: white;
  padding: 32px;
  margin:40px auto;
  max-width: 70%;
}

.safety-main-title {
  font-size: 22px;
  font-weight: bold;
  color: #b24c4c;
  margin-bottom: 20px;
}

/* 基本方針の本文 */
.safety-main-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* リスト部分 */
.safety-list {
  text-align: left;
  max-width: 600px;
  margin: 20px auto;
  padding-left: 20px;
}

.safety-list li {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 5px;
}

/* セクションコンテナ */
.safety-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 70%;
  margin: 0 auto;
}

/* 各項目のボックス */
.safety-box {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 画像部分（3:2の比率調整） */
.safety-image {
  flex: 2;
}

.safety-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

/* 文章部分 */
.safety-content {
  flex: 3;
  text-align: left;
}

.safety-heading {
  font-size: 20px;
  font-weight: bold;
  color: #b24c4c;
  margin-bottom: 10px;
}

.safety-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .safety-container {
      flex-direction: column;
  }

  .safety-box {
      flex-direction: column;
      text-align: center;
  }

  .safety-image {
      flex: none;
      width: 100%;
      max-width: 250px;
  }

  .safety-content {
      text-align: center;
  }

  .safety-list {
      text-align: center;
      padding-left: 0;
  }
}

/* 全体のデザイン */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
}

/* お問い合わせセクション */
.contact-section {
  background-color: #ffffff;
  padding: 50px 15px;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* 見出し */
.contact-container h2 {
  color: #d98b87;
  font-size: 28px;
  margin-bottom: 15px;
}

/* 説明文 */
.contact-container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Googleフォームの埋め込みスタイル */
iframe {
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  height: 600px;
  border: none;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .contact-container {
      padding: 20px;
  }

  iframe {
      height: 500px;
  }
}