@charset "UTF-8";

/* =================================================
   1. 基本設定（全デバイス共通）
   ================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  background: #333;
  color: #333;
}
/* -----------------------------
  変数定義
----------------------------- */
:root {
  /* カラー */
  --color-primary: #4FB0DD;
  --color-secondary: #F8F8F8;
  --color-accent: #333333;
  --color-text: #000;
  --color-link: #006ad6;
  --color-white: #fff;
  --color-gray: #D9D9D9;
  --color-footer: #333333;

  /* レイアウト */
  --width-content: 1200px;
  --width-narrow: 770px;
  --space-unit: 15px;
  --space-section: 45px;

  /* その他 */
  --duration: 0.7s;
}

/* -----------------------------
  レイアウト
----------------------------- */
.wrapper {
  width: var(--width-content);
  margin: 0 auto;
  position: relative;
  padding: 0 var(--space-unit);
  box-sizing: border-box;
}

/* -----------------------------
  共通コンポーネント
----------------------------- */
.sub-title {
  display: block;
  font-size: 24px;
  font-weight:100;
  text-align: center;
  padding-bottom: var(--space-unit);
  color: #333;
}
.main-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  padding-bottom: var(--space-unit);
  color: #333;
}
.vertical-line {
  position: relative;
  height: 60px;
  margin: 15px auto 30px;
}

.vertical-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #333;
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.sp-only {
  display: none !important;
}

/* アニメーション関連のCSS */
.f-up {
  opacity: 0;
}

.f-up.fadeup {
  animation: fadeupanime 1s forwards;
}

@keyframes fadeupanime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .sub-title {
    font-size: 18px;
  }
  .main-title {
    font-size: 24px;
  }
}

/* =================================================
   2. ヘッダー（PCサイズをベースに設定）
   ================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  background: transparent;
  pointer-events: none;
  transition: all 0.4s ease;
}

/* ヘッダーの中の要素だけクリックできるようにする */
.site-logo,
.menu-trigger {
  pointer-events: auto;
}

/* ロゴの基本（PC） */
.site-logo h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.4em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* メニューボタンの基本（PC） */
.menu-trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
}

.menu-trigger span {
  font-size: 18px;
  font-weight: 700;
  margin-right: 15px;
}

.hamburger {
  width: 35px;
  height: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* =================================================
   3. スクロール後のヘッダー（白背景）
   ================================================== */
.site-header.is-colored {
  background-color: #ffffff;
  height: 70px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.site-header.is-colored .site-logo h1,
.site-header.is-colored .menu-trigger {
  color: #333;
}

.site-header.is-colored .hamburger span {
  background-color: #333;
}

/* =================================================
   4. メインビジュアル・スライダー設定
   ================================================== */
.slideshow {
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100vh !important;
}

.slideshow-left {
  left: 0;
  z-index: 1;
}

.slideshow-right {
  right: 0;
  z-index: 1;
}

.item {
  height: 100vh !important;
  width: 50vw;
  position: relative;
  overflow: hidden;
  background: #222;
}

.item img {
  display: block;
  position: absolute;
  top: 0;
  width: 100vw !important;
  height: 100vh !important;
  object-fit: cover;
}

.slideshow-left .item img {
  left: 0 !important;
}

.slideshow-right .item img {
  left: -50vw !important;
}

/* 中央テキスト */
.slideshow-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  pointer-events: none;
}

.text-item {
  height: 100vh !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.text-item h2,
.text-item h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.8);
}

/* ドット（PC） */
.slick-dots {
  position: absolute !important;
  bottom: 30px !important;
  right: 30px !important;
  display: flex !important;
  list-style: none !important;
  z-index: 99 !important;
  width: auto !important;
}

.slick-dots li {
  margin: 0 5px !important;
}

.slick-dots li button {
  width: 30px !important;
  height: 4px !important;
  background-color: #fff !important;
  border: none !important;
  opacity: 0.3;
  cursor: pointer;
  text-indent: -9999px;
  transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
  opacity: 1 !important;
  width: 50px !important;
  background-color: #4FB0DD !important;
}
#js-main-slider,
#js-right-slider,
#js-text-slider {
  touch-action: auto !important;
  /* ブラウザ標準のスクロールを許可 */
  pointer-events: none;
  /* スライダーへのタッチ反応を完全に消す（必要に応じて） */
}

/* スライダー内のリンクなどを押せるようにしたい場合はこちら */
#js-main-slider .item {
  pointer-events: auto;
}

/* =================================================
   5. レスポンシブ調整（ここでサイズを上書き）
   ================================================== */

/* --- タブレット用（768px 〜 1024px） --- */
@media screen and (max-width: 1024px) {
  .site-logo h1 {
    font-size: 1.5rem;
  }

  .text-item h2,
  .text-item h1 {
    font-size: 4rem;
  }
}

/* --- スマホ用（767px 以下） --- */
@media screen and (max-width: 767px) {
  .pc-only {
      display: none !important;
    }
  
  .sp-only {
    display: block !important;
    width: 100% !important;
    height: 100dvh !important;
    object-fit: cover;
    left: 0 !important;
  }
  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .site-logo h1 {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
  }

  .menu-trigger span {
    font-size: 14px !important;
    margin-right: 12px;
  }

  .hamburger {
    width: 28px !important;
    height: 8px !important;
  }

  .text-item h2,
  .text-item h1 {
    font-size: 3.2rem !important;
    width: 90%;
    line-height: 1.2;
  }

  .slick-dots {
    bottom: 20px !important;
    right: 20px !important;
  }

  .slick-dots li button {
    width: 20px !important;
  }

  .slick-dots li.slick-active button {
    width: 35px !important;
  }
}

/* =================================================
   全画面メニューのスタイル
   ================================================== */
.full-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  /* ほぼ真っ黒、少しだけ透ける */
  z-index: 9999;
  /* ヘッダー(10000)のすぐ下 */
  display: flex;
  justify-content: center;
  align-items: center;

  /* 最初は隠しておく */
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

/* メニューが開いた時の状態 */
.full-menu.is-active {
  opacity: 1;
  visibility: visible;
}

/* リストのデザイン */
.menu-list {
  list-style: none;
  text-align: center;
}

.menu-list li {
  margin: 25px 0;
  overflow: hidden;
  /* アニメーション用 */
}

.menu-list a {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff !important;
  /* メニュー内では常に白文字にする */
  text-decoration: none;
  letter-spacing: 0.1em;
  display: block;
  transition: all 0.3s ease;
}

/* ホバーしたら少し動く */
.full-menu .menu-list a:hover {
  color: #4FB0DD !important;
  transform: translateX(10px);
}

.menu-footer {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 0 20px;
  box-sizing: border-box;
}
/* メニューが開いた時のハンバーガー線の動き */
#js-menu-trigger.is-active .hamburger span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
  /* 上の線を斜めに */
}

#js-menu-trigger.is-active .hamburger span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
  /* 下の線を逆向きに斜めに */
}

/* ついでに「MENU」という文字を「CLOSE」に変えたい場合はこれ */
/* ※必須ではないですが、分かりやすくなります */
#js-menu-trigger.is-active span {
  opacity: 0.7;
}

/* スマホ用のサイズ調整 */
@media screen and (max-width: 767px) {
  .menu-list a {
    font-size: 1.5rem;
  }
}
/* =================================================
   ADVANTAGEセクション
   ================================================== */
/* セクション全体の余白 */
.sec-01 {
  padding: 100px 0;
  background-color: #fff;
  margin-top: 100vh;
  position: relative;
  z-index: 10;
}

/* 1つ1つのブロック（POINT.01, 02...） */
.advantage-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 80px auto;
}

.sec-01 .description {
  font-size: 20px;
  font-weight: 700;
}

/* 左側の画像エリア */
.advantage-img {
  width: 45%;
}

.advantage-img img {
  width: 100%;
  height: auto;
  max-width: 400px;
}

/* 右側のテキストエリア */
.advantage-text {
  width: 50%;
}

/* POINT.01の部分 */
.advantage-text h3 {
  font-family: 'Oswald', sans-serif;
  color:var(--color-primary);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 5px;
  margin-bottom: 20px;
}

/* 見出しと説明文 */
.advantage-text p span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.advantage-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

/* ボタン全体の配置 */
.advantage-btn-area {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 20px;
}

/* ボタン本体のスタイル */
.btn-contact {
  display: inline-block;
  background-color: #4FB0DD;
  color: #fff !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20px 80px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 176, 221, 0.3);
}

.btn-contact:hover {
  background-color: #3f90b5;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(79, 176, 221, 0.5);
  opacity: 1 !important;
}

/* スマホ用：縦並びにする */
@media screen and (max-width: 767px) {
  .advantage-inner {
    flex-direction: column;
    text-align: center;
    margin-bottom: 60px;
  }

  .advantage-img,
  .advantage-text {
    width: 100%;
  }

  .advantage-img {
    margin-bottom: 30px;
  }

  .advantage-text p span {
    font-size: 1.08rem;
  }
  .btn-contact {
    padding: 18px 40px;
    width: 90%;
    /* スマホでは横幅いっぱいに近く */
    font-size: 1rem;
  }
}
/* =================================================
     SERVICEセクション
   ================================================== */
  .sec-02 {
    background-color: var(--color-secondary);
    padding: 100px 0;
  }
  .sec-02 .description {
    max-width: 650px;
    margin: 0 auto;
  }
  .sec-02 .description span {
    font-size: 20px;
    font-weight: 700;
  }
  .service-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 80px auto;
  }
  .service-img {
    width: 45%;
  }
  .service-img img {
    width: 100%;
    height: auto;
    max-width: 400px;
  }
  .service-text {
    width: 50%;
  }
  .reverse {
    flex-direction: row-reverse;
  }
  .service-heading {
    font-size: 22px;
    font-weight: 700;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
  }

  .service-text p {
    line-height: 1.8;
  }
  .service-text p span {
    font-size: 18px;
  }

/* =================================================
  MESSAGEセクション
  ================================================== */
.sec-03 {
  background-color: #fff;
  padding: 100px 0;
}
.message-box {
  max-width: 700px;
  margin: 0 auto;
}
.message-heading {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

.sec-03 .description {
  max-width: 650px;
  color: #333;
  margin: 0 auto;
}
.sec-03 .description span {
  font-weight: 700;
}
/* 文字分解アニメーション用のベース */
.span-anime span {
  opacity: 0;
  /* 最初は隠す */
  display: inline-block;
  transform: translateY(15px);
  transition: all 0.5s ease;
}

/* スクロールして fadeup が付いた瞬間だけ表示する */
.span-anime.fadeup span {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================
  NEWSセクション
  ================================================== */
  .sec-04 {
    background-color: var(--color-secondary);
    padding: 100px 0;
  }
    /* リスト全体のコンテナ（中央寄せと幅の調整） */
    .news-list {
      max-width: 700px;
      margin: 0 auto;
      border-top: 1px solid #333;
    }
  
    /* 1行ごとのスタイル */
    .news-item {
      display: flex;
      padding: 15px 10px;
      border-bottom: 1px solid #333;
      text-decoration: none;
      color: #333;
      transition: opacity 0.3s;
    }
  
    .news-item:hover {
      opacity: 0.6;
    }
  
    /* 日付部分 */
    .news-date {
      width: 120px;
      flex-shrink: 0;
      font-family: 'Oswald', sans-serif;
    }
  
    .news-text {
      margin-left: 20px;
      flex-grow: 1;
    }
 
    .news-item.fadeup {
      animation-delay: 0.2s;
    }
    /* 1番目はそのまま（0秒） */
    .news-item:nth-child(1).fadeup {
      animation-delay: 0s;
    }

    /* 2番目は0.2秒遅らせる */
    .news-item:nth-child(2).fadeup {
      animation-delay: 0.2s;
    }

    /* 3番目は0.4秒遅らせる */
    .news-item:nth-child(3).fadeup {
      animation-delay: 0.4s;
    }

    /* 4番目は0.6秒遅らせる */
    .news-item:nth-child(4).fadeup {
      animation-delay: 0.6s;
    }
    /* お知らせセクションの下にボタンを配置 */
    .news-btn-area {
      text-align: center;
      margin-top: 40px;
      width: 100%;
    }

    .btn-view-all {
      display: inline-block;
      padding: 12px 40px;
      border: 1px solid #333;
      /* 枠線 */
      color: #333;
      text-decoration: none;
      font-size: 14px;
      letter-spacing: 0.1em;
      transition: all 0.3s;
    }

    .btn-view-all:hover {
      background-color: #333;
      /* ホバーで反転 */
      color: #fff;
    }
/*=================================================
COMPANYセクション
================================================== */
.sec-05 {
  background: linear-gradient(rgba(79, 176, 221, 0.8), rgba(79, 176, 221, 0.8)),
      url('../img/company.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}
.sec-05 .sub-title {
  color: #fff;
}
.sec-05 .main-title {
  color: #fff;
}
.sec-05 .vertical-line::before {
  background-color: #fff;
}
.company-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.company-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30%;
  /* dtの幅（30%）と同じ位置に置く */
  width: 1px;
  /* 線の太さ */
  background: #fff;
  /* 半透明じゃない白 */
  z-index: 1;
}
.company-row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.company-row dt {
  width: 30%;
  padding: 20px 30px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
    /* 幅30%を絶対維持 */
}
.company-row dd {
  width: 70%;
  padding: 20px 30px;
  margin: 0;
  color: #fff;
  font-size: 18px;
}
.company-row dd+dd {
  width: 70%;
  /* dtと同じ幅を空けたいので、dd自体の幅は70%のまま */
  margin-left: 30%;
  /* ★dtの幅(30%)と同じ分だけ左に余白を作る */
  padding-top: 0;
  /* 2行目の上の余白を詰める（お好みで） */
  margin-top: -10px;
  /* 1行目との距離が空きすぎならマイナスで調整 */
}
.map-container {
  width: 100%;
  line-height: 0;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  /* filter: grayscale(100%) brightness(0.7) contrast(1.2);
  transition: 0.5s; */
}
/* マウスを乗せた時に色を戻す */
/* .map-container iframe:hover {
  filter: grayscale(0%);
} */
/*=================================================
固定バー
==================================================*/
/* mainタグを sticky が動ける土台にする */
main {
  position: relative;
  overflow: visible;
  /* これが重要！hiddenだとstickyが止まります */
}

.fixed-btn-bar {
  position: -webkit-sticky;
  /* Safari対策 */
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px 0;
  text-align: center;
  z-index: 5000;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
}

.contact-btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 15px 60px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}
/*=================================================
footer
==================================================*/
.site-footer {
  background-color: #333;
  color: #fff;
  padding: 100px 0 100px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}


.footer-logo {
  font-size: 42px;
  /* 大きめのロゴ */
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.copyright {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
}

/* 右側ナビゲーション */
.footer-nav-list {
  list-style: none;
  padding: 0;
}

.footer-nav-list li {
  margin-bottom: 20px;
}

.footer-nav-list a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.footer-nav-list a:hover {
  opacity: 0.7;
}

.footer-nav-list a span {
  font-size: 12px;
  margin-right: 15px;
}

/* スマホ用：縦に並べる */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 50px;
  }
}
/*=================================================
contact
==================================================*/
/* ==========================================
   1. ページ共通・ヘッダー設定
   ========================================== */
.contact-container {
  background-color: #fff;
  overflow: hidden;
  /* スマホの横揺れ防止 */
}

/* 固定ヘッダーの設定（お問い合わせ・一覧ページなど） */
.page .site-header {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 1;
  visibility: visible;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.page .site-logo h1,
.page .menu-trigger {
  color: #333;
}

.page .hamburger span {
  background-color: #333;
}

/* ==========================================
   2. お問い合わせページ レイアウト
   ========================================== */
.contact-page {
  padding: 170px 20px 100px;
  /* ヘッダー高さ分を考慮して調整 */
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
}

.contact-lead {
  text-align: center;
  font-size: 14px;
  margin-bottom: 50px;
}

/* フォームの行設定 */
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.form-group dt {
  width: 250px;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.required {
  color: #ff0000;
  font-size: 12px;
  margin-left: 8px;
}

.form-group dd {
  flex: 1;
  margin-left: 0;
}

/* 入力欄スタイル */
.form-group dd input[type="text"],
.form-group dd input[type="email"],
.form-group dd input[type="tel"],
.form-group dd textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #b2e2f5;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
}

.form-group dd textarea {
  height: 150px;
  resize: vertical;
}

/* ==========================================
   3. 姓名入力欄（レスポンシブ対応）
   ========================================== */
.name-inputs {
  display: flex;
  gap: 20px;
}

.input-item {
  display: flex;
  align-items: center;
  width: 50%;
  position: relative;
}

.input-item span {
  flex-shrink: 0;
  margin-right: 10px;
  font-size: 14px;
  width: 2em;
}

.name-inputs .wpcf7-form-control-wrap {
  flex-grow: 1;
  display: block;
}

/* エラーチップ（CF7） */
.wpcf7-not-valid-tip {
  position: absolute;
  top: 100%;
  left: 0;
  white-space: nowrap;
  font-size: 12px;
  color: #ff4b4b;
  z-index: 5;
}

/* ==========================================
   4. 送信ボタン・CF7通知
   ========================================== */
.submit-btn-wrap {
  text-align: center;
  margin-top: 50px;
}

.submit-btn {
  background: linear-gradient(to right, #61b8e2, #56aed8);
  color: #fff;
  border: none;
  padding: 15px 80px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.8;
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
  border-radius: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: 2px solid #ff4b4b !important;
  background-color: #fff5f5;
  color: #ff4b4b;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 2px solid #b2e2f5 !important;
  background-color: #f0f9ff;
}

/* ==========================================
   5. スマホ対応
   ========================================== */
@media screen and (max-width: 767px) {
  .contact-page {
    padding: 140px 10px 80px;
  }

  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-group dt {
    width: 100%;
    margin-bottom: 8px;
  }

  .form-group dd {
    width: 100%;
  }

  .name-inputs {
    flex-direction: column;
    gap: 35px;
    /* エラー表示スペース */
  }

  .input-item {
    width: 100%;
  }

  .submit-btn {
    width: 100%;
    padding: 15px 0;
  }
}
/*=================================================
シングルページ
==================================================*/
/* 1. ヘッダーを白く固定（お問い合わせページと同じ仕組み） */
.single-page-main~.site-header,
body.single .site-header {
  background-color: #ffffff !important;
  height: 70px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* ロゴとメニューボタンのテキスト色 */
body.single .site-logo h1,
body.single .menu-trigger {
  color: #333 !important;
  background-color: transparent !important;
  /* 背景は透明にする */
}

/* ハンバーガーメニューの「線」だけを黒くする */
body.single .hamburger span {
  background-color: #333 !important;
  /* ここだけ背景色（＝線の色）が必要 */
}

/* もしロゴが画像なら、こちらも追加 */
body.single .site-logo a {
  background: none !important;
}

/* 2. 記事全体のレイアウト */
.single-page-main {
  padding-top: 140px;
  /* ヘッダー分をガッツリ空ける */
  padding-bottom: 100px;
  background-color: #f9f9f9;
  /* 少し背景色をつけると高級感が出ます */
}

.wrapper {
  max-width: 800px;
  /* 記事は読みやすいように少し細めに */
  margin: 0 auto;
  padding: 0 20px;
}

.post-content {
  background: #fff;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 3. タイトル・日付周り */
.post-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.post-date {
  font-size: 14px;
  color: #888;
  display: block;
  margin-bottom: 10px;
}

.post-title {
  font-size: 24px;
  color: #333;
  line-height: 1.4;
}

/* 4. 本文の装飾 */
.post-body {
  line-height: 2;
  /* 行間を広げて読みやすく */
  color: #444;
}

.post-body p {
  margin-bottom: 2em;
  /* 段落ごとの隙間 */
}

/* 5. 戻るボタン */
.post-footer {
  text-align: center;
  margin-top: 50px;
}

.btn-back {
  display: inline-block;
  padding: 15px 50px;
  background: #333;
  color: #fff !important;
  text-decoration: none;
  transition: 0.3s;
}

.btn-back:hover {
  background: #000;
  transform: translateY(-2px);
}
.post-category {
  display: block;
  margin-bottom: 10px;
}

.post-category a {
  display: inline-block;
  background-color: #eee;
  /* 薄いグレー背景 */
  color: #666 !important;
  /* 文字色 */
  padding: 2px 10px;
  font-size: 11px;
  text-decoration: none;
  border-radius: 2px;
  margin-right: 5px;
  transition: 0.3s;
}

.post-category a:hover {
  background-color: #333;
  color: #fff !important;
}
/* 記事ナビゲーション全体のレイアウト */
.post-nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 30px 0;
  margin: 60px 0;
}

.nav-item {
  width: 45%;
  /* 左右に分ける */
}

/* リンク自体の装飾 */
.post-nav a {
  text-decoration: none;
  color: #333;
  font-family: "Oswald", sans-serif;
  /* 英語部分はシュッとしたフォントに */
  font-size: 14px;
  display: block;
  transition: 0.3s;
}

/* タイトル部分（span） */
.post-nav a span {
  display: block;
  font-size: 12px;
  color: #888;
  font-family: "Noto Sans JP", sans-serif;
  /* 日本語は標準で */
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* 長すぎるタイトルは「...」にする */
}

/* ホバーした時の動き */
.post-nav a:hover {
  opacity: 0.6;
  transform: translateX(-5px);
  /* 左側は少し左に動く */
}

.nav-item.next a:hover {
  transform: translateX(5px);
  /* 右側は少し右に動く */
}

/* 右寄せの設定 */
.nav-item.next {
  text-align: right;
}
.post-img img {
  width: 100%;
  height: auto;
}
/* 投稿本文内のリスト設定 */
.post-body ul {
  margin: 20px 0;
  padding-left: 1.5em;
  /* 点を入れるための左余白 */
  list-style-type: disc;
  /* 黒丸（・）を表示 */
}

.post-body ul li {
  margin-bottom: 10px;
  /* 項目ごとの隙間 */
  line-height: 1.6;
}

/* 番号付きリスト（1. 2. 3.）も使うなら */
.post-body ol {
  margin: 20px 0;
  padding-left: 1.5em;
  list-style-type: decimal;
  /* 数字を表示 */
}
/* 記事内の見出し（H2）の例 */
.post-body h2 {
  border-left: 5px solid #333;
  padding: 10px 15px;
  margin: 40px 0 20px;
  background: #f4f4f4;
  font-size: 1.25rem;
}
/* 画像の下の説明文 */
.post-body figcaption {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  margin-top: 5px;
}

/* 一覧ページ全体 */
.archive-main {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.archive-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Oswald", sans-serif;
}

/* 記事カードの並び */
.post-list {
  max-width: 800px;
  margin: 0 auto;
}

.post-item {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.post-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-item-link {
  display: flex;
  /* 横並びにする（画像左、テキスト右） */
  text-decoration: none;
  color: #333;
}

.post-item-img {
  width: 30%;
  /* 画像の幅 */
  min-width: 150px;
}

.post-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-item-info {
  padding: 20px;
  width: 70%;
}

.post-item-title {
  font-size: 18px;
  margin: 10px 0;
}

.post-item-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* スマホでは縦並びにする */
@media (max-width: 600px) {
  .post-item-link {
    flex-direction: column;
  }

  .post-item-img {
    width: 100%;
  }

  .post-item-info {
    width: 100%;
  }
}
/* 一覧ページ全体のスタイル */
.archive-main {
  background-color: #ffffff;
  padding: 180px 0 100px;
  min-height: 100vh;
}

.archive-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.post-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.post-item {
  background: #fff;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.post-item-link {
  display: flex;
  gap: 20px;
  text-decoration: none;
  color: #333;
}

.post-item-img {
  width: 250px;
  /* 画像のサイズを指定 */
  height: 150px;
  flex-shrink: 0;
}

.post-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-item-info {
  flex: 1;
}

/* スマホでは縦並びにする */
@media (max-width: 768px) {
  .post-item-link {
    flex-direction: column;
  }

  .post-item-img {
    width: 100%;
    height: auto;
  }
}
.archive .site-header {
  background-color: #ffffff !important;
  position: fixed !important;
  top: 0 !important;
  height: 70px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.archive .site-logo h1,
.archive .menu-trigger {
  color: #333 !important;
}

.archive .hamburger span {
  background-color: #333 !important;
}

/* -----------------------------
  レスポンシブ - タブレット
----------------------------- */
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .wrapper {
      width: 768px;
    }
}
/* -----------------------------
  レスポンシブ - スマートフォン
----------------------------- */
@media screen and (max-width: 767px) {
  .wrapper {
      width: 100%;
    }
  .description {
    font-size: 16px;
  }
  .sec-01,
  .sec-02,
  .sec-03,
  .sec-04,
  .sec-05 {
    padding: 80px 0;
  }

/* -----------------------------
  セクション02(SP)
----------------------------- */
  .service-inner {
    flex-direction: column;
    margin: 50px auto 25px;
  }
  .service-img {
    width: 100%;
  }
  .service-text {
    width: 100%;
    margin-top: 30px;
  }
  .service-text p span {
    font-size: 17px;
  }
  /* -----------------------------
    セクション03(SP)
  ----------------------------- */
  .sec-03 .description {
    max-width: 90%;
  }
/* -----------------------------
  セクション05(SP)
----------------------------- */
.company-row dt {
  padding: 20px 10px;
}
.company-row dd {
      padding: 20px 18px;
}
/* -----------------------------
  footer(SP)
----------------------------- */
.footer-logo {
  font-size: 30px;
}
}