@charset "utf-8";
/*===============================================
 ネオリッチピンクカスタム Ver.1.0
===============================================*/

/* 基本設定 */
body {
  color: #5b4b2a; /* 優しい黒 */
  background-color: #fffdf7;
  font-size: 100%;
  font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
}

html>/**/body {
  font-size: 12px;
}

p {
  font-size: 1.6em;
  line-height: 150%;
}

@media (max-width: 640px) {
  p {
    font-size: 1.5em;
  }
}

/* 背景色ブロック */
.bg_01, .bg_02, .bg_03 {
  background-color: #fffdf7;
}

/* ヘッダー */
header {
  width: 100%;
  background-color: #fffdf7;
  box-sizing: border-box;
  border-bottom: 10px solid #e8a7b0;
}

/* 見出し */
.heading-main {
  font-size: 2.5em;
  font-weight: bold;
  color: #bfa14a;
  text-align: center;
  margin: 1em auto;
  border-bottom: 3px solid #e8a7b0;
  padding-bottom: 0.2em;
  display: block;
  width: fit-content;
}

/* テーブル */
#table03 {
  font-size: 1.4em;
  text-align: center;
  margin: 0 auto;
 border-collapse: collapse;
  width: 90%; /* 少し余裕を持たせつつ大きく */
  font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif; /* 明朝系 */
}

#table03 th {
  background-color: #f2d6dc;
  color: #000; /* ゴールド背景に黒文字 */
  border: 1px solid #fff; /* ホワイトの罫線 */
}

#table03 td {
  background-color: #f7f2e1; /* アイボリー */
  color: #000; 
  border: solid 3px #f7f2e1;
  border: 1px solid #fff; /* ホワイトの罫線 */
}

#table03 .head {
  background-color: #e8a7b0;
  color: #fff;
}

#table03 td span {
  font-size: 0.7em;
  color: #999;
}

/* スマホ時テーブル */
@media only screen and (max-width: 768px) {
  #table03 {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  #table03 .fixed {
    position: sticky;
    left: 0;
  }
}

/* ボタン */
a.btn_03 {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  margin: 0 auto;
  padding: 0.5em;
  font-weight: bold;
  border: 2px solid #e8a7b0;
  color: #fff !important;
  border-radius: 100vh;
  transition: 0.5s;
  background-color: #e8a7b0;
}
a.btn_03:hover {
  color: #5b4b2a;
  background: #e8a7b0;
}

/* フッター */
footer {
  background-color: #e8a7b0;
  color: #fff;
  padding: 1em;
  text-align: center;
}
