/* ==========================
    全体の基本設定
========================== */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  background: #eee;
  color: #333;
  margin: 0;
}

h1 {
  margin: 0;
  font-size: 2.2rem;
}

/* SEO・アクセシビリティ用に非表示（どの画面サイズでも） */
.site-title {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* PC/SP 切り替え */
.pc-text {
  display: block;
}

.sp-text {
  display: none;
}

/* ==========================
    ヘッダー全体
========================== */
header {
  background: #dbd5d1;
  padding: 18px 5vw;
}

/* ヘッダー内部を左右に配置 */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* ロゴ画像 */
.logo img {
  height: 30px; /* 文言2行分くらいの高さ（調整可） */
  width: auto;
}

/* キャッチコピー全体を右寄せ */
.catchcopy {
  text-align: right;      /* テキスト右揃え */
  flex-shrink: 0;         /* 折り返さない */
}

/* キャッチコピー */
.catchcopy p {
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
  text-align: right;
}

/* ==========================
    本文
========================== */
main {
  padding: 40px 20px;
  text-align: center;
}

main > p {
  font-weight: normal; /* 太字を解除 */
  line-height: 1.8;    /* 行間を少し広く */
}

section {
  padding: 20px 5vw;
  margin-bottom: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* h2を左寄せにする */
section h2 {
  text-align: left !important;
  font-size: 1.4rem;
  margin-top: 40px; 
  margin-bottom: 10px;
  color: #444;
  border-left: 4px solid #b0a69e; /* 上品なアクセントカラー */
  padding-left: 10px;
}

/* ==========================
    テーブル
========================== */
.company-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
  border-collapse: collapse;
  text-align: left;
}

.company-table th,
.company-table td {
  padding: 30px 15px;
  border-bottom: 1px solid #ccc;
  vertical-align: top;
}

.company-table th {
  width: 200px;
  font-weight: 600; 
}

/* th の中の p も上寄せ */
.company-table th p {
  margin: 0;           /* デフォルトの p マージンをリセット */
  vertical-align: top; /* 上寄せ */
}

.company-table td a {
  color: #0077cc;
  text-decoration: none;
}

.company-table td a:hover {
  text-decoration: underline;
}

/* 代表者写真 */
.rep-photo {
  display: block;
  margin-top: 10px;
  width: 150px;
  height: auto;
}

/* 右寄せの詳細リンク（事業詳細） */
.detail-link {
  text-align: right;  /* 右寄せ */
  margin-top: 10px;
}

.detail-link a {
  color: #0077cc;
  text-decoration: none;
}

.detail-link a:hover {
  text-decoration: underline;
}

/* ==========================
    FABEA紹介セクション
========================== */
.product-box {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  max-width: 1100px;
}

.product-box-inner {
  padding: 40px;
}

.product-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* 画面が狭いと縦並び */
}

.product-text {
  flex: 1 1 50%;
  text-align: center;
}

.product-text h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;        /* ← 中央寄せ */
  text-decoration: none;     /* ← 下線を消す */
}

.product-text p {
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 30px;
}

/* 画像部分 */
.product-img {
  flex: 1 1 40%;
  text-align: center;
}

.product-img img {
  max-width: 80%;
  border-radius: 10px;
}

/* ボタン */
.btn-shop {
  display: inline-flex;       /* テキストと三角形を横並びに */
  align-items: center;
  text-align: center;
  text-decoration: none;
  background-color: #dbd5d1;
  color: #333;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
  border: none;
  font-size: 16px;
}

.btn-shop::before {
  content: "";                /* 擬似要素なので文字は空 */
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 8px;          /* テキストとの間隔 */
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #333333;
  border-right: 0;
}

.btn-shop:hover {
  background-color: #b0a69e;
  transform: translateY(-2px);
}

/* ==========================
    お問い合わせフォーム
========================== */
.contact-title {
  margin-bottom: 40px !important;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row label {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  position: relative;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

/* ご希望の連絡方法チェックボックス */
.contact-methods {
  margin-top: 8px;        /* 見出しとの間に少し余白 */
}

.contact-methods label {
  display: inline-block;
  font-weight: normal;    /* 通常の太さに（見出しとの区別） */
  margin-right: 30px;     /* チェックボックス同士の間隔 */
}

.contact-methods input[type="checkbox"] {
  transform: scale(1.3);  /* 1.0 が標準サイズ、1.3 で少し大きめ */
  margin: 0;              /* scale でズレないようにマージン調整 */
}

/* 必須マーク */
.required {
  position: relative;
}

.required .label-text::after {
  content: "必須";
  color: #fff;
  background: #cc0000;
  font-size: 0.7em;
  padding: 0.2em 0.5em;
  border-radius: 0.4em;
  margin-left: 0.4em;
}

/* プライバシーチェック */
.privacy-row {
  margin: 30px auto;
  text-align: center;
}

.privacy-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-weight: normal !important;
  line-height: 1.5;
}

/* プライバシーチェックボックス */
.privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;                /* チェックと文字の間の余白 */
}

.privacy-label input[type="checkbox"] {
  transform: scale(1.3);
  margin: 0;              /* scale でズレないようにマージン調整 */
}

.privacy-label a {
  color: #0077cc;
  text-decoration: underline;
}

/* お問い合わせ専用のボタン */
.btn-contact {  
  background-color: #dbd5d1;
  color: #333;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  border: none;
  font-size: 20px;
}

.btn-contact:disabled {
  background-color: #ccc;   /* グレーアウト */
  color: #aaa;
  cursor: not-allowed;
  transform: none;
}

.btn-contact:enabled {
  background-color: #dbd5d1;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.btn-contact:enabled:hover {
  background-color: #b0a69e;
  transform: translateY(-2px);
}

/* ==========================
    別ウィンドウで開くマーク
    （ボタンは除外）
========================== */
a[target="_blank"]:not(.btn-shop):not(.btn-contact) {
  padding-right: 20px;
  background: url(../img/newwinicon.gif) right center / 15px auto no-repeat;
}

/* ==========================
    フッター
========================== */
footer {
  background: #dbd5d1;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}

/* ==========================
    スマホ表示
========================== */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;            /* 全体の基準文字サイズを少し小さく */
    margin: 0;
  }

  /* PC/SP 切り替え */
  .pc-text {
    display: none;
  }

  .sp-text {
    display: block;
  }

  /* ヘッダー内のレイアウトを縦方向に変更 */
  .header-inner {
    flex-direction: column;    /* 縦並びにする */
    align-items: center;       /* 中央寄せ */
    text-align: center;        /* テキスト中央揃え */
  }

  /* ロゴ画像 */
  .logo img {
    height: 20px;
  }

  /* キャッチコピー */
  .catchcopy {
    margin-top: 10px;          /* ロゴとの間に余白 */
  }

  .catchcopy p {
    text-align: center;        /* 中央揃えに変更 */
    font-size: 14px;           /* 少し小さめに調整 */
    line-height: 1.5;
  }

  /* ロゴの大きさをスマホ向けに少し小さく */
  .logo img {
    height: 28px;
  }

  /* 全体の余白調整 */
  header {
    padding: 15px 20px;
  }

  /* ==========================
    本文
  ========================== */
  main {
    padding: 30px 15px;
    text-align: center;
  }

  main > p {
    text-align: center;
    line-height: 1.6;       /* 読みやすくする */
  }

  /* h2を左寄せにする */
  section h2 {
    font-size: 18px;
    text-underline-offset: 5px; /* 下線と文字の間隔を調整 */
    text-decoration-thickness: 2px; /* 下線の太さ */
  }

  /* ==========================
    テーブル
  ========================== */
  .company-table {
    width: 100%;            /* 横幅100% */
    font-size: 14px;        /* 文字を少し小さめ */
    table-layout: fixed;    /* 固定レイアウトにする */
    margin: 0 auto;
  }

  .company-table th,
  .company-table td {
    padding: 8px 10px;      /* パディングを縮小 */
  }

  .company-table th {
    width: 30%;             /* th:td = 1:2 に対応 */
  }

  .company-table td {
    width: 70%;             /* th:td = 1:2 に対応 */
  }

  .rep-photo {
    width: 80px;        /* 写真サイズを小さく */
  }

  /* ==========================
    FABEA紹介セクション
  ========================== */
  .product-box-inner {
    padding: 20px;
  }

  .product-text {
    flex: 1 1 50%;
    text-align: center;
  }

  .product-text h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;        /* ← 中央寄せ */
    text-decoration: none;     /* ← 下線を消す */
  }

  .product-text p {
    line-height: 1.8;
    font-size: 12px;
  }

  .product-img img {
    max-width: 60%;
  }

  /* ボタン */
  .btn-shop {
    font-size: 12px;
  }

  /* ==========================
    お問い合わせフォーム
  ========================== */
  .contact-title {
    margin-bottom: 30px !important;
  }

  /* ご希望の連絡方法チェックボックス */
  .contact-methods input[type="checkbox"] {
    transform: scale(1.0);
    margin: 0;
  }

 .form-row {
    display: grid;
    flex-direction: column;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 12px;
  }
  
  /* ボタン */
  .btn-contact {
    font-size: 12px;
  }

  /* プライバシーチェックボックス */
  .privacy-label input[type="checkbox"] {
    transform: scale(1.0);
    margin: 0;
  }

  /* ==========================
    フッター
  ========================== */
  footer {
    font-size: 9px;
  }

}
