.kenko-t1 {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%; /* table幅を100%に指定 */
    background: #fff;
    border: none;
}
.kenko-t1 th,
.kenko-t1 td {
    display: block; /* セルをブロック要素に指定 */
    width: 100%; /* セルを親要素いっぱいの幅に指定 */
    border: none;
    font-size: 14px;   
    padding: 10px;
    vertical-align: top;
    text-align: center;
    box-sizing: border-box;
}
.kenko-t1 th {
    font-weight: 700;
    color: #fff;
    background: #14116e; /* thの背景色 */
}


.simple-h2 {
  font-family: "Yu Mincho", "MS PMincho", serif;
  font-size: 22px;
  color: #5a4630; /* 深めブラウンで高級感 */
  padding: 8px 0 10px;
  margin: 35px 0 20px;
  border-bottom: 2px solid #c9a35a; /* ゴールドライン */
  letter-spacing: 1px;
}
.simple-p {
  font-family: "Yu Mincho", "MS PMincho", serif;
  font-size: 16px;
}


/* -------------- page_topボタン -------------- */
.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  background-color: #c9a97e; /* ベージュ寄りの高級感カラー */
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 999;
}

.page-top:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}


/* -------------- 測定の流れ -------------- */
.flow {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px 20px;
  background: #f9f5ef;
  border: 1px solid #e3d6c4;
  border-radius: 10px;
  zoom: 1; /* IE用 */
}

.flow-title {
  font-size: 22px;
  text-align: center;
  margin-bottom: 24px;
  color: #5b4a3a;
}

/* リスト全体 */
.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各ステップ */
.flow-list li {
  padding: 20px 0;
  border-bottom: 1px dashed #ddcbb4;
  overflow: hidden; /* float解除 */
}

.flow-list li:last-child {
  border-bottom: none;
}

/* 丸い番号 */
.flow-step {
  float: left;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: #c9a97e;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  margin-right: 15px;
}

/* 本文 */
.flow-body h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #4a3b2e;
}

.flow-body p {
  margin: 0;
  font-size: 14px;
  color: #7a6a59;
  line-height: 1.7;
}


/* -------------- 料金表 -------------- */

.price-table {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px 20px;
  background: #f9f5ef; /* やわらかいベージュ */
  border: 1px solid #e3d6c4;
  border-radius: 12px;
  zoom: 1; /* IE対策 */
}

.price-title {
  text-align: center;
  font-size: 22px;
  color: #5b4a3a;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

/* 各メニュー行 */
.price-item {
  overflow: hidden; /* float解除 */
  padding: 16px 0;
  border-bottom: 1px dashed #d8c7b3;
}

.price-item:last-child {
  border-bottom: none;
}

/* メニュー名 */
.price-name {
  float: left;
  font-size: 16px;
  color: #4a3b2e;
}

/* 料金 */
.price-value {
  float: right;
  font-size: 18px;
  font-weight: bold;
  color: #c9a97e; /* ゴールドベージュ */
}

/* -------------- 比較表 -------------- */

.hikaku-box {
  margin: 30px 0;
  font-family: "MS PGothic", "Yu Gothic", sans-serif;
}

.hikaku-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
  color: #b08a3c;
  border-bottom: 1px solid #e6d9b8;
  padding-bottom: 8px;
  font-weight: bold;
}

.hikaku-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6d9b8;
  background-color: #fffdf7;
  table-layout: fixed; /* ← IEで最重要 */
}

.hikaku-table th,
.hikaku-table td {
  border: 1px solid #e6d9b8;
  padding: 10px;
  font-size: 14px;
  color: #444;
  vertical-align: top;
  word-wrap: break-word; /* ← IEで文字がはみ出さない */
}

.hikaku-table th {
  background-color: #f6ecda;
  color: #7b5a1f;
  text-align: center;
}

.hikaku-table .item {
  background-color: #fbf4e5;
  width: 22%;
  color: #7b5a1f;
}



/* -------------- よくある質問 -------------- */


.faq-section {
  background: #f7f3eb;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e0d8c8;
  margin:0px 50px;
  zoom: 1; /* IE用 */
}

.faq-title {
  font-size: 24px;
  color: #bfa15a;
  margin-bottom: 20px;
  text-align: center;
}

/* 各項目 */
.faq-item {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  zoom: 1; /* IE用 */
}

/* QとAの行 */
.faq-question,
.faq-answer {
  overflow: hidden; /* float解除 */
  margin-bottom: 10px;
}

/* アイコン */
.faq-icon {
  float: left;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 28px;
  margin-right: 10px;
}

.q-icon {
  background: #bfa15a; /* ゴールド */
}

.a-icon {
  background: #888; /* グレー */
}

/* テキスト */
.faq-question,
.faq-answer {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/*推奨される摂取量　一覧*/
.nmn-dose-box-ie {
  width: 90%;
  max-width: 480px;
  margin: 40px auto;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #d8d2c4;
  border-radius: 10px; /* IE11はOK */
  zoom: 1; /* IE用 */
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #333;
}

.nmn-dose-box-ie h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  color: #b89b5e;
}

.dose-item-ie {
  padding: 15px;
  margin-bottom: 15px;
  background: #f7f4ef;
  border-left: 4px solid #c9b68a;
  border-radius: 6px;
}

.dose-item-ie h3 {
  margin: 0 0 5px;
  font-size: 15px;
  color: #6b5e4a;
}

.dose-item-ie p {
  margin: 0;
  font-size: 17px;
  font-weight: bold;
  color: #333;
}

.note-ie {
  font-size: 12px;
  color: #777;
  margin-top: 15px;
  text-align: center;
}





/* こんな方におすすめ */
.osusume-box {
  border: 2px solid #d4b46a; /* ゴールド系 */
  padding: 20px;
  background: #fffdf7; /* ややベージュ */
  margin: 30px 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  width:80%;
}

.osusume-title {
  font-size: 20px;
  color: #b08a3c;
  text-align: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6d9b8;
  padding-bottom: 8px;
}

.osusume-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.osusume-list li {
  padding: 10px 0 10px 28px;
  background: url('https://upload.wikimedia.org/wikipedia/commons/2/27/Gold_star.svg') no-repeat 0 8px;
  background-size: 18px 18px;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #f0e8d8;
}

.osusume-list li:last-child {
  border-bottom: none;
}

/* -------------- メディア一覧 -------------- */


  .tv-appearance {
    background: linear-gradient(to bottom, #fdfaf5, #f7f2e9);
    padding: 40px 20px;
    border-top: 1px solid #d8c79c;
    border-bottom: 1px solid #d8c79c;
  }
  .tv-title {
    text-align: center;
    font-family: "Hiragino Mincho ProN", serif;
    color: #b89b5e;
    font-size: 2.2em;
    margin-bottom: 25px;
  }
  .tv-generation {
    font-family: "Hiragino Mincho ProN", serif;
    color: #8c7b6a;
    font-size: 1.2em;
    margin: 25px 0 10px;
  }
  .tv-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    margin-bottom: 20px;
    font-size: 0.95em;
  }
  .tv-table th,
  .tv-table td {
    border: 1px solid #e0d4b8;
    padding: 10px 12px;
    text-align: left;
  }
  .tv-table th {
    background: #f5ecdd;
    color: #6b5b4b;
    font-weight: 600;
  }
  .tv-table tbody tr:nth-child(even) {
    background: #fbf7ef;
  }



@media screen and (min-width: 768px) {
    .kenko-t1 th,
    .kenko-t1 td {
        display: table-cell; /* デフォルト値に指定 */
        border-bottom: 1px solid #ccc;
        color: #000;
        background: #fff;
    }
    .kenko-t1 th {
        color: #000;
        background: #fff; /* thの背景色 */
    }
    .kenko-t1 tr th:first-child {
        width: 100px; /* thの固定幅 */
    }
}


