/* 共通スタイル */
@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

/* ローディング画面全体 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
}

/* ロゴと社名の中央表示 */
.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease-in-out;
}

/* ロゴサイズなど調整 */
.loading-inner img {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

.loading-inner h1 {
  font-size: 34px;
  color: #333;
}

/* style.css に追加 or 変更 */
.animate-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.animate-section.visible {
  opacity: 1;
  transform: translateY(0);
}




/* フェードイン */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* フェードアウト */
#loading.fade-out {
  opacity: 0;
  pointer-events: none;
}



body {
  font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
  font-size: 15px;
  border-top: 20px solid #333 !important;
  line-height: 2;
}

body li a {
  transition: 0.5s;
}

body li a:hover {
  color: #2979FF;
}

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

.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo img {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 5px;
  width: 100px;
}

.w_inner {
  width: 100%;
  margin: 0 auto;
}

.header ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.header ul li {
  width: 200px;
  text-align: center;
  border-right: 1px solid #ddd;
  list-style: none;
  font-weight: bold;
}

.header ul li:first-child {
  border-left: 1px solid #ddd;
}

.header ul li a {
  display: block;
  position: relative; /* 下線の基準点を設定 */
}

.header ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px; /* 下線の位置を調整 */
  width: 0;
  height: 2px; /* 下線の太さ */
  background-color: #2979FF;
  transition: width 0.3s ease-out; /* アニメーションの速度と効果 */
}

.header ul li a:hover::after {
  width: 100%; /* ホバー時に下線を100%の幅にする */
}

/* ナビゲーションのロゴアイコンのスタイル */
.nav-logo-icon {
    width: 20px; /* ロゴサイズ */
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}
.nav-logo-link {
    display: flex; /* ロゴとテキストを横並びにする */
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}


/* ハンバーガーボタンの初期非表示（PC） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 24px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
}
/* ハンバーガー初期状態（PCでは非表示） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* スマホ対応 */
@media screen and (max-width: 480px) {
  .hamburger {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
  }

  .header ul {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background-color: rgba(0, 0, 0, 0.9); /* 背景色 */
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 1000;
  }

  .header ul.active {
    display: flex;
  }

  .header ul li {
    width: 100%;
    text-align: center;
    border: none;
  }

  .header ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 16px;
  }

  /* 背景が黒なのでロゴやハンバーガーは白くしたいなら追加で */
  .hamburger span {
    background: #000;
  }
}



#hero {
  background-image: url(img/toppage.png); /* ★修正：CSSファイルから見た正しい相対パスに変更 */
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 16 / 9; /* 高さを確保 */
  /* ... */
}

#hero::before {
  content: '';
  width:100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  z-index: 1;
}

.hero_inner {
  z-index: 2;
  color: #ffffff;
  width: 100%;
  text-align: center;
}

.hero_inner p{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero_inner h1{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}


/* .header_img {
  width: 1200px;
  margin: auto;
  display: block;
  margin-bottom: 50px;
  border-radius: 30px;
} */

.container_service .service_block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.container_service .service {
  width: 380px;
  text-align: center;
  margin-bottom: 50px;
}

.container_service h2 {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}

.container_service .service img {
  margin-bottom: 20px;
}

.container_service .service .ttl {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

.container_service .service .explain {
  margin-bottom: 25px;
}

.container_service .service a {
  background: #2979FF;
  color: #fff;
  padding: 15px 200px 12px;
}


.copy {
  text-align: center;
  color: #fff;
  font-size: 12px;
  padding: 7px 0 3px;
}

section {
  padding: 40px 0;
}

/* ------------------------------------ */
/* ★h2 (大タイトル) 修正箇所 - 中央揃え、ロゴ対応 */
/* ------------------------------------ */
h2 {
    /* 大タイトルとして統一 */
    font-size: 32px;
    font-weight: 700;
    color: #2979FF;
    
    /* Flexboxでロゴとテキストを中央に配置 */
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid #2979FF;
    padding-bottom: 8px; 
    
    /* 内容幅に合わせ、親要素の center に頼らず中央寄せ */
    width: fit-content; 
    margin: 0 auto 40px; /* 上下に余白、左右中央寄せを確定 */
}



.section-logo-icon {
    width: 35px; /* ロゴサイズ */
    height: 35px;
    margin-right: 12px; /* テキストとの間隔 */
}
/* ------------------------------------ */
/* ★h2 修正ここまで */
/* ------------------------------------ */


p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.service_block {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service {
  width: calc(33.33% - 30px);
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 40px;
}

.service img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.explain {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

.service a {
  display: block;
  margin-top: 15px;
  text-decoration: none;
  color: #2979FF;
}

/* ------------------------------------ */
/* ★h3 (小見出し) 修正箇所 - 左詰め固定 */
/* ------------------------------------ */
h3,
.aaa {
    font-size: 20px;
    margin-top: 40px;
    color: #2979FF;
    font-weight: bold;
    border-left: 5px solid #2979FF;
    padding-left: 10px;
    text-align: left; /* 左詰めを固定 */
}
/* ------------------------------------ */
/* ★h3 修正ここまで */
/* ------------------------------------ */


strong {
  color: #000;
  font-weight: bold;
}

.first {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}

.second {
  margin-left: 25px;
  margin-top: 5px;
}

.motto {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}

.final-message {
font-size: 25px;
font-weight: bold;
color: #2979FF;
margin-top: 50px;
position: relative;
display: block; /* flexを使わず自然なブロック表示に */
text-align: center;
width: 100%;
white-space: normal; /* ←改行可能にする */
word-wrap: break-word; /* 長い単語が折り返せるようにする */
}
  

.aaa {
  margin-top: 40px;
}

.Form {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
  }
  @media screen and (max-width: 480px) {
    .Form {
      margin-top: 40px;
    }
  }
  .Form-Item {
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  @media screen and (max-width: 480px) {
    .Form-Item {
      padding-left: 14px;
      padding-right: 14px;
      padding-top: 16px;
      padding-bottom: 16px;
      flex-wrap: wrap;
    }
  }
  .Form-Item-Label {
    width: 100%;
    max-width: 248px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 18px;
  }
  @media screen and (max-width: 480px) {
    .Form-Item-Label {
      max-width: inherit;
      display: flex;
      align-items: center;
      font-size: 15px;
    }
  }
  .Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
  }
  @media screen and (max-width: 480px) {
    .Form-Item-Label.isMsg {
      margin-top: 0;
    }
  }

.tel-number {
  background: linear-gradient(to right, #2979FF, #00BCD4); /* グラデーションで目立たせる */
  border-radius: 8px;
  text-align: center;
  padding: 16px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 12px auto 24px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* ふわっと浮かせる効果 */
  transition: transform 0.2s ease;
}

.tel-number:hover {
  transform: scale(1.02); /* ホバー時に少し拡大してクリック誘導 */
}

.tel-number a {
  color: #fff;              /* ← 白字にする指定 */
  text-decoration: none;    /* 下線を消す（お好みで） */
  display: block;
  width: 100%;
}



  .Form-Item-Label-Required {
    border-radius: 6px;
    margin-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 48px;
    display: inline-block;
    text-align: center;
    background: #2979FF;
    color: #fff;
    font-size: 14px;
  }
  @media screen and (max-width: 480px) {
    .Form-Item-Label-Required {
      border-radius: 4px;
      padding-top: 4px;
      padding-bottom: 4px;
      width: 32px;
      font-size: 10px;
    }
  }
  .Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 0px;
    padding-left: 1em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: 100%;
    /* max-width: 500px; */
    background: #eaedf2;
    font-size: 18px;
  }
  @media screen and (max-width: 480px) {
    .Form-Item-Input {
      margin-left: 0;
      margin-top: 18px;
      height: 40px;
      flex: inherit;
      font-size: 15px;
    }
  }
  .Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin: 0;
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    /* max-width: 500px; */
    background: #eaedf2;
    font-size: 18px;
  }
  @media screen and (max-width: 480px) {
    .Form-Item-Textarea {
      margin-top: 18px;
      margin-left: 0;
      height: 200px;
      flex: inherit;
      font-size: 15px;
    }
  }
  .Form-Btn {
    display: block;
    margin: 32px auto 0;      /* 上だけ余白、左右中央 */
    padding: 20px 0;
    width: 90%;               /* スマホにも対応 */
    max-width: 280px;         /* 最大幅を指定してPCで大きくなりすぎないように */
    border-radius: 6px;
    letter-spacing: 0.05em;
    background: linear-gradient(to right, #2979FF, #00BCD4);
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    box-sizing: border-box;   /* 幅計算にpadding含める */
    border: none; /* ← これを追加！ */
  }
  
  @media screen and (max-width: 480px) {
    .Form-Btn {
      margin-top: 24px;
      padding-top: 8px;
      padding-bottom: 8px;
      width: 160px;
      font-size: 16px;
    }
  }


.gure{
    padding: 20px 20px;
    background-color: #f9f9f9;
  }


  .gure h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 3px solid #2979FF;
    display: inline-block;
    padding-bottom: 0px;
    color: #2979FF;
  }
/* 業務内容セクション追加 */
.service-details {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.service-details .container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  margin-bottom: 40px;
  text-align: left;
}

.service-item h3 {
  font-size: 20px;
  color: #2979FF;
  margin-bottom: 10px;
  border-left: 5px solid #2979FF;
  padding-left: 10px;
}

.service-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}



.recruit-info {
    padding: 20px 20px;
    background-color: #f9f9f9;
  }
  
  .recruit-info .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .recruit-info h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid #2979FF;
    display: inline-block;
    padding-bottom: 8px;
    color: #2979FF;
  }
  
  .info-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }
  
  .info-item .label {
    width: 150px;
    font-weight: bold;
    color: #2979FF;
  }
  
  .info-item .value {
    flex: 1;
    color: #333;
    line-height: 1.8;
  }
  


  @media screen and (max-width: 1200px) {
  .container {
    width: 100%;
  }
}

.container{
  width: 90%;
  max-width: 1120px;
  margin:0 auto;
  position:relative;
}

  .info-item .value a:hover {
    color: #2979FF;
    font-size: 1.1em; 
    transition: 0.5s;
  }


  /* ====================================
// 応募フォーム専用スタイル (必須強調版)
// ==================================== */

/* フォーム全体を中央に配置するためのコンテナの調整 */
.form-container {
    max-width: 800px; /* フォームの最大幅を調整 */
    margin: 0 auto;
    padding: 20px;
}

.entry-form-body {
    background-color: #fff; /* フォーム背景を白に */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* フォームの各行（ラベルと入力欄）のレイアウト */
.form-row {
    display: flex;
    align-items: center; 
    padding: 15px 0;
    border-bottom: 1px solid #eee; 
    min-height: 48px; /* ズレを防ぐための最低高 */
}

.form-row:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

/* ラベルのスタイル */
.form-row .label {
    /* 必須マークを分離したため、ここでは純粋なラベルとして扱う */
    width: 200px; /* ラベルの幅を固定 */
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    flex-shrink: 0; 
    padding-right: 15px;
    box-sizing: border-box;
    /* 修正点: 必須マークが分離したことで、文字のズレが解消しやすくなります */
}

/* 必須マークの新しいスタイル（入力欄の隣に配置） */
.required-badge {
    display: inline-flex; 
    justify-content: center;
    align-items: center;
    /* 修正点: 背景色をより鮮やかな赤に変更し、視認性を強調 */
    background-color: #e74c3c; /* 鮮やかな赤 */
    color: white;
    font-size: 12px;
    font-weight: bold; /* フォントも太くして強調 */
    padding: 2px 6px;
    margin-right: 15px; /* 入力欄との隙間 */
    border-radius: 3px;
    white-space: nowrap;
    line-height: 1;
    height: 20px; 
    flex-shrink: 0; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* 影を付けて浮き上がらせる */
}

/* 入力フィールドの基本スタイルを統一 */
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 1em;
    height: 48px;
    flex-grow: 1; 
    max-width: 400px; /* PCでの最大幅 */
    background: #eaedf2; 
    font-size: 16px; 
    box-sizing: border-box;
}

/* テキストエリアの調整 */
.form-row textarea {
    height: 200px; 
    line-height: 1.5;
    resize: vertical; 
    max-width: 100%; 
}

/* 住所欄のレイアウト調整 */
.address-row .label {
    align-self: flex-start; /* ラベルを上端に配置 */
    padding-top: 10px; /* 郵便番号エリアに合わせて調整 */
}

.address-row .address-inputs {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    max-width: 400px;
}

.address-row .zip-area {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    width: 100%; 
}

.address-row .zip-mark {
    font-size: 18px;
    margin-right: 5px;
    color: #333;
    font-weight: bold;
}

.address-row #zip {
    width: 150px; 
    flex-grow: 0;
    max-width: 150px;
}

/* 応募動機・自己PRのエリアの調整 */
.form-row.text-area-row {
    align-items: flex-start; 
    padding-bottom: 30px;
}

.form-row.text-area-row .pr-label {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 5px;
}

.pr-note {
    font-size: 14px;
    color: #c0392b; 
    font-weight: normal;
    line-height: 1.4;
    margin-top: 5px;
}

/* 確認ボタンのスタイル */
.submit-area {
    text-align: center;
    padding-top: 30px;
}

.confirm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 15px 40px;
    width: 280px;
    max-width: 100%;
    border-radius: 6px;
    letter-spacing: 0.05em;
    background: #333; 
    color: white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.confirm-button:hover {
    background: #555;
}

.confirm-button .arrow {
    margin-left: 10px;
    font-weight: bold;
}

/* ====================================
// レスポンシブ対応 (768px以下)
// ==================================== */
@media screen and (max-width: 768px) {
    .form-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }

    .form-row .label {
        width: 100%;
        margin-bottom: 5px;
        padding-right: 0;
        display: inline-block;
    }
    
    /* スマホ表示時：ラベルとバッジを横並びに */
    .form-row:not(.address-row):not(.text-area-row) {
        display: block;
    }

    .required-badge {
        display: inline-flex;
        margin-left: 10px;
        margin-right: 0;
    }


    .form-row input[type="text"],
    .form-row input[type="email"],
    .form-row input[type="tel"],
    .address-row .address-inputs {
        max-width: 100%;
        width: 100%;
    }
    
    .form-row input[type="text"],
    .form-row input[type="email"],
    .form-row input[type="tel"] {
        height: 40px;
    }

    .address-row .zip-area {
        justify-content: flex-start;
    }
    
    .address-row #zip {
        max-width: 120px;
    }

    .form-row.text-area-row {
        align-items: flex-start;
    }

    .form-row.text-area-row textarea {
        max-width: 100%;
        width: 100%;
    }

    .confirm-button {
        width: 200px;
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* ====================================
// プライバシーポリシー専用スタイル (統一版)
// ==================================== */
.policy-section {
    /* 既存の .gure クラスと同じ背景とパディングを適用 */
    padding: 20px 20px;
    background-color: #f9f9f9; 
}

.policy-container {
    max-width: 900px; /* 既存の .recruit-info .container に合わせて調整 */
    margin: 0 auto;
}

.policy-section h2.policy-title {
    /* 既存の .gure h2 スタイルを適用 */
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px; /* 他のセクションと統一 */
    border-bottom: 3px solid #2979FF;
    display: inline-block;
    padding-bottom: 8px; /* 他のセクションと統一 */
    color: #2979FF;
    font-weight: bold;
}

.company-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.policy-heading {
    display: flex;
    align-items: center;
    /* 画像を参考にグレーの背景色を維持し、他の見出しと差別化 */
    background-color: #a9a9a9; 
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.policy-heading .dot {
    font-size: 20px;
    line-height: 1;
    margin-right: 10px;
}

.policy-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-list {
    list-style: none;
    padding-left: 20px;
}

.policy-list li {
    font-size: 16px;
    line-height: 2;
    padding-left: 10px;
    margin-bottom: 5px;
}

.policy-list li::before {
    content: "・"; /* リストの先頭に黒丸を付ける */
    color: #333;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* レスポンシブ対応 (モバイル向け) */
@media (max-width: 768px) {
    .policy-section h2.policy-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .policy-heading {
        font-size: 16px;
        padding: 10px 15px;
    }
}

/* ====================================
// お問い合わせフォーム専用スタイル (画像再現版)
// ==================================== */

.contact-container {
    max-width: 800px; 
    margin: 0 auto;
}

.contact-intro-text {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* --- 電話/メールの青いタイトルボタンデザイン --- */
.contact-button {
    /* 文字サイズを大きくし、タイトル感を出す */
    font-size: 20px; 
    font-weight: bold;
    color: white; /* 白い文字 */
    padding: 15px 20px;
    width: 100%;
    max-width: none;
    text-align: center;
    cursor: default;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    /* padding-top/bottom を増やし、ボタンの高さを出す */
    padding-top: 20px; 
    padding-bottom: 20px;
}

.wide-blue-bg {
    /* 背景を青色にし、ご要望に合わせて明るい水色系を維持 */
    background-color: #2979FF; 
}

/* --- 電話ブロック --- */
.phone-block {
    margin-bottom: 40px;
}

.tel-number-display {
    font-size: 20px; /* 電話番号を大きく */
    font-weight: bold;
    color: #333;
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: left; 
}

.phone-time-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    text-align: left;
}


/* --- メールブロック --- */
.mail-block {
    background-color: white;
    padding: 0; 
    border-radius: 8px;
    box-shadow: none;
    margin-top: 40px;
}

.mail-block .contact-button {
    border-radius: 4px; 
    margin-bottom: 30px;
}

/* --- フォームと説明文 --- */

.form-instruction {
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8;
}

.form-note {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    text-align: left;
}

.contact-form-body {
    padding: 20px 30px 30px;
    box-shadow: none;
    border: 1px solid #eee;
}

/* 既存フォーム行のスタイルは省略（変更なし） */

/* --- レスポンシブ対応 --- */
@media screen and (max-width: 768px) {
    .contact-button {
        font-size: 18px; /* スマホでは少し小さく */
        padding-top: 15px; 
        padding-bottom: 15px;
    }
}

/* お問い合わせフォームの電話番号リンクの装飾解除 */
.tel-number-display a {
    color: inherit; /* 親要素の色（黒）を引き継ぐ */
    text-decoration: none; /* 下線を消す */
    font-weight: bold;
    display: inline-block; /* トランスフォームのためにインラインブロックに変更 */
    transition: transform 0.2s ease-out, color 0.2s; /* アニメーションを追加 */
}

/* 修正/追加箇所: ホバー時の拡大アニメーション */
.tel-number-display a:hover {
    color: #2979FF; /* ホバー時に青色に変わる */
    text-decoration: none;
    transform: scale(1.05); /* 1.05倍に少し拡大 */
    opacity: 1; /* 不透明度を1に戻す */
}


/* ====================================
// 強みセクション (#strengths) 専用スタイル
// ==================================== */

.strengths-lead {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd; /* 導入文と強みリストを分ける線 */
    text-align: left; /* 強みセクションの導入文は左寄せを維持 */
}

.strength-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #ccc; /* 各強み項目を点線で区切る */
}

.strength-item.last-item {
    border-bottom: none; /* 最後の項目は区切り線なし */
    margin-bottom: 0;
    padding-bottom: 0;
}

.strength-item h3 {
    /* 既存のh3 (.aaa) スタイルを利用しつつ、強調する */
    font-size: 22px;
    margin-top: 0; /* 導入文からの距離を調整 */
    margin-bottom: 15px;
    color: #2979FF;
    font-weight: bold;
    border-left: 5px solid #2979FF;
    padding-left: 15px; /* 青い線からの余白を少し広げる */
    text-align: left; /* 小見出しは左寄せを維持 */
}

.strength-item p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 20px; /* 見出しの線と文章のインデントを揃える */
    text-align: left; /* 本文は左寄せを維持 */
}

.strength-item p:last-child {
    margin-bottom: 0;
}

/* モバイル対応 */
@media screen and (max-width: 480px) {
    .strength-item {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    .strength-item h3 {
        font-size: 20px;
        padding-left: 10px;
    }
    .strength-item p {
        padding-left: 10px;
    }
}