/* TOP挿画の下部に表示するお知らせ用スタイル */
.top-video-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* 動画のスタイル */
.top-video {
    width: 100%;
    height: auto;
    display: block;
}

/* お知らせボックスの位置とスタイル */
.news-overlay {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 3em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Shippori Mincho', serif;
    text-align: center;
    width: 70%;
    z-index: 10;
}

/* お知らせの中身のレイアウト */
.news-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.5em;
    font-size: 15px;
    color: #000;
}

/* Newsラベル */
.news-label {
    font-weight: bold;
    color: #c00;
}

/* 日付 */
.news-date {
    font-style: italic;
    color: #000;
}

/* テキスト */
.news-text {
    margin: 0 0.5em;
}

/* ボタン */
.news-button {
    background-color: #992251;
    color: #fff;
    padding: 4px 10px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    font-size: 15px;
    margin-left: 1em;
}

.news-button:hover {
    background-color: #900;
}

/* スマホ対応（画面幅600px以下） */
@media screen and (max-width: 600px) {
    .news-overlay {
        padding: 8px 1em;
        width: 90%;
    }

    .news-content {
        flex-direction: column;
        align-items: flex-start;
        font-size: 13px;
        gap: 0.3em;
    }

    .news-label,
    .news-date,
    .news-text {
        display: block;
        width: 100%;
    }

    .news-button {
        font-size: 13px;
        padding: 3px 8px;
        margin-left: 0;
        align-self: flex-end;
    }
}


/* トップページ　トップメッセージエリア */
.vertical-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2em;
  padding: 2em;
  background-color: #fdfaf5;
  border: 1px solid #e0dcd5;
  max-width: 1000px;
  margin: 2em auto;
}

/* スライダーコンテナ（画像エリア） */
.slider-container {
  position: relative;
  flex: 1;
  max-width: 50%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* スライダー内の画像 */
.slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slider img.active {
  opacity: 1;
  z-index: 1;
}

/* 縦書きテキストエリア（PC表示） */
.vertical-text {
  flex: 1;
  max-width: 50%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  line-height: 2;
  color: #3c2f2f;
  background: rgba(255, 255, 255, 0.8);
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 見出し */
.vertical-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1em;
  color: #992251;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
  .vertical-section {
    flex-direction: column;
    padding: 1em;
  }

  .slider-container {
    max-width: 100%;
    width: 100%;
    height: 250px;
  }

  .vertical-text {
    max-width: 100%;
    width: 100%;
    writing-mode: horizontal-tb; /* ← 横書きに変更 */
    text-orientation: initial;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 1em;
    font-family: 'Shippori Mincho', serif;
    color: #3c2f2f;
    background: rgba(255, 255, 255, 0.8);
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .vertical-heading {
    font-size: 18px;
    margin-bottom: 0.5em;
    color: #992251;
  }
}



/*トップ見出しデザイン*/
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap');
/* 見出し全体 */
.product-heading {
  text-align: center;
  margin: 4rem 0 2rem;
  position: relative;
}

/* メイン見出し */
.product-heading h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.8rem;
  color: #992251;
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5em;
}

/* アンダーライン装飾 */
.product-heading h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #d4af37, #992251);
  margin: 0.5em auto 0;
}

/* 日本語タイトル */
.jp-title {
  display: block;
}

/* 英語サブタイトル */
.en-sub {
  display: block;
  font-size: 0.9rem;
  color: #666;
  font-family: 'Shippori Mincho', serif;
  margin-top: 0.3em;
  letter-spacing: 0.1em;
}

/* スマホ対応（768px以下） */
@media (max-width: 768px) {
  .product-heading h2 {
    font-size: 2rem;
    letter-spacing: 0.1em;
    padding-bottom: 0.4em;
  }

  .product-heading h2::after {
    width: 40px;
    height: 1.5px;
    margin-top: 0.4em;
  }

  .en-sub {
    font-size: 0.8rem;
    margin-top: 0.2em;
  }
}



/*代表挨拶エリア*/
/* 色の定義（カスタムプロパティ） */
:root {
  --main-color: #992251;       /* ベースカラー：深紅紫 */
  --accent-color: #d4af37;     /* 金色アクセント */
  --bg-color: #fdfaf5;         /* 和紙風生成り背景 */
  --text-color: #2c2c2c;       /* 墨色テキスト */
}

/* サブタイトル（ご挨拶） */
.subtitle {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.4rem;
  color: var(--main-color);
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}

.subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  margin: 1rem auto 0;
}

/* 社長挨拶セクション */
.president-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3rem;
  margin: 4rem 0;
  background: #f1f1f1;
  padding: 2rem;
  /* border-radius: 12px; */
  box-shadow: 0 4px 16px rgb(24 17 17 / 56%);
  max-width: 1100px;
  margin: auto;
}

/* 社長写真 */
.president-photo img {
  width: 300px;
  border-radius: 12px;
  /*border: 4px solid var(--main-color);*/
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* メッセージ本文 */
.president-message {
  flex: 1;
  font-family: 'Shippori Mincho', serif;
  color: var(--text-color);
  line-height: 2;
  padding-right: 1rem;
}

/* 見出し（代表挨拶） */
.president-message h3 {
  font-size: 1.2rem;
  color: var(--main-color);
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent-color);
  padding-left: 0.5rem;
}

/* サブ見出し（社長の言葉） */
.president-message h4 {
  font-size: 1.2rem;
  color: #444;
  font-weight: normal;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* 社長署名 */
.signature {
  margin-top: 2rem;
  font-style: normal;
  font-weight: bold;
  color: var(--main-color);
}

/* モバイル対応 */
@media (max-width: 768px) {
  .president-section {
    flex-direction: column;

    padding: 1.5rem;
  }

  .president-message {
    padding: 0;
  }

  .president-photo img {
    width: 80%;
    max-width: 280px;
  }
  .president-photo{
    display:none;
  }
}



/*　会社概要用スタイル　*/
.company-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
  background: #fdfaf5; /* 和紙風生成り背景 */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.overview-title {
  flex: 0 0 125px;
  font-family: 'Shippori Mincho', serif;
  color: #992251;
  border-left: 4px solid #d4af37;
  padding-left: 1rem;
}

.overview-title h3 {
  font-size: 1.6rem;
  margin: 0;
}

.overview-content {
  flex: 1;
  font-family: 'Shippori Mincho', serif;
  color: #2c2c2c;
}

.overview-content dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 1rem;
  column-gap: 1rem;
}

.overview-content dt {
  font-weight: bold;
  color: #555;
}

.overview-content dd {
  margin: 0;
  line-height: 1.6;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .company-overview {
    flex-direction: column;
    padding: 1.5rem;
  }

  .overview-title {
    border-left: none;
    border-bottom: 2px solid #d4af37;
    padding-left: 0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .overview-title h3 {
    font-size: 1.4rem;
  }

  .overview-content dl {
    grid-template-columns: 1fr;
  }

  .overview-content dt {
    margin-top: 1rem;
    font-size: 0.95rem;
  }

  .overview-content dd {
    font-size: 0.95rem;
  }
}
.factory-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.factory-info {
  flex: 1;
  font-family: 'Shippori Mincho', serif;
  color: #2c2c2c;
  line-height: 1.6;
}

.factory-photo img {
  width: 240px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .factory-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .factory-photo img {
    width: 80%;
    max-width: 300px;
  }
}



/**　アクセスエリアの内容　**/

.access-block {
  margin: 4rem 0;
  background: #fdfaf5;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.factory-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.6rem;
  color: #992251;
  border-left: 4px solid #d4af37;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.access-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.access-details {
  flex: 1;
  font-family: 'Shippori Mincho', serif;
  color: #2c2c2c;
}

.access-details dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  row-gap: 1rem;
  column-gap: 1rem;font-family: 'Shippori Mincho', serif;
}

.access-details dt {
  font-weight: bold;
  color: #555;font-family: 'Shippori Mincho', serif;
}

.access-details dd {
  margin: 0;
  line-height: 1.6;
}

.access-photo {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}

.access-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .access-info {
    flex-direction: column;
    text-align: center;
  }

  .access-details dl {
    grid-template-columns: 1fr;
  }

  .access-photo {
    width: 100%;
  }

  .access-photo img {
    max-width: 300px;
    margin: 0 auto;
  }

  .factory-title {
    text-align: center;
    border-left: none;
    border-bottom: 2px solid #d4af37;
    padding-left: 0;
    padding-bottom: 0.5rem;
  }
}


/*お問い合わせフォーム用　スタイル*/
/* ===========================
   お問い合わせページ全体
=========================== */
#MainContants .col-sm-9 {
  background: url("IMG/washi-bg.png") center/cover no-repeat;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(153,34,81,0.25);
  font-family: 'Shippori Mincho', serif;
}

/* タイトル（お問い合わせ） */
.contTitle {
  font-size: 2.4em;
  text-align: center;
  color: #992251;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 25px;
}

.contTitle::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #b8860b, #f7e7a1, #b8860b);
  border-radius: 2px;
}

/* 小見出し */
.subTitle_h3 {
  font-size: 1.1em;
  color: #5c1934;
  margin: 20px 0 15px;
  padding-left: 12px;
  border-left: 6px solid #d4af37;
  font-weight: bold;
  letter-spacing: 0.05em;
}


/* 電話番号 */
.inquiry_item {
  background: rgba(255, 255, 245, 0.9);
  padding: 4px 25px;
  /* border-radius: 10px; */
  /* font-size: 1em; */
  color: #25171c;
  font-weight: bold;
  box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
}

/* ===========================
   テーブル（フォーム本体）
=========================== */

.contact-renew {
  max-width: 900px;
  margin: 5px 5px;
  padding: 20px 25px;
  background: #fdf9f4;
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(#fdf9f4, #fdf9f4), linear-gradient(90deg, #b8860b, #f7e7a1, #b8860b);
  box-shadow: 0 10px 26px rgb(0 0 0 / 52%);
  /* border-radius: 16px; */
  font-family: 'Shippori Mincho', serif;
}


.contact-renew-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.contact-renew-table th {
  background: rgba(245,240,235,0.9);
  color: #201419;
  padding: 10px;
  width: 30%;
  font-weight: bold;
  box-shadow: 0 4px 12px rgb(227 157 154);
}

.contact-renew-table td {
  background: rgba(255,255,255,0.95);
  padding: 10px;
  box-shadow: 0 4px 12px rgb(227 157 154);
  font-weight: bold;
font-size: 0.98em;

}

/* 入力欄 */
.contact-renew-table input[type="text"],
.contact-renew-table textarea {
  width: 100%;
padding: 6px 10px;
/* border-radius: 8px; */
border: 2px solid #e5d9d0;
background: rgba(255, 255, 255, 0.95);
font-size: 1.05em;
transition: all 0.3s ease;
font-weight: bold;
}

.contact-renew-table input[type="text"]:focus,
.contact-renew-table textarea:focus {
  border-color: #992251;
  box-shadow: 0 0 8px rgba(153,34,81,0.3);
  outline: none;
}

/* ラジオボタン */
.contact-renew-table input[type="radio"] {
  transform: scale(1.3);
  margin-right: 6px;
}

/* 必須マーク */
.req {
  color: #d40000;
  font-weight: bold;
}

/* ===========================
   ボタン
=========================== */
.contact-renew-buttons {
  text-align: center;
  margin-top: 40px;
}

.contact-renew-btn {
  padding: 14px 28px;
  margin: 0 12px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  background: #ddd;
  transition: all 0.3s ease;
  font-size: 1.1em;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.contact-renew-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.contact-renew-btn.main {
  background: linear-gradient(90deg, #992251, #d4af37);
  color: #fff;
}

.contact-renew-btn.main:hover {
  background: linear-gradient(90deg, #d4af37, #992251);
}
.contact-renew-ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-renew-ul li {
  margin-bottom: 16px;
  padding: 10px 15px;

  /* 上品な生成りカード */
  background: #fdf9f4;
  border-radius: 10px;

  /* 左に金箔ライン */
  border-left: 6px solid transparent;
  background-image:
    linear-gradient(#fdf9f4, #fdf9f4),
    linear-gradient(90deg, #b8860b, #f7e7a1, #b8860b);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;

  /* 影（控えめで上品） */
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);

  /* 文字 */
  color: #1c1810;
  font-size: 0.95em;
  line-height: 1.5;
  font-weight: bold;
}

/* リンク（プライバシーポリシー） */
.contact-renew-ul li a {
  color: #992251;
  font-weight: bold;
  text-decoration: underline;
}

.contact-renew-ul li a:hover {
  opacity: 0.8;
}

/* ===========================
   スマホ対応
=========================== */
@media screen and (max-width: 600px) {
  #MainContants .col-sm-9 {
    padding: 25px 15px;
  }

  .contTitle { font-size: 1.9em; }
  .subTitle_h3 { font-size: 1.25em; }

  .contact-renew-table th,
  .contact-renew-table td {
    font-size: 0.95em;
    padding: 10px;
  }

  .contact-renew-btn {
    font-size: 1em;
    padding: 12px 20px;
    margin: 8px 0;
    width: 100%;
  }
}

@media screen and (max-width: 900px) {

  /* 全体の余白を少し縮める */
  #MainContants .col-sm-9 {
    padding: 40px 30px;
  }

  /* タイトル */
  .contTitle {
    font-size: 2.1em;
  }

  /* 小見出し */
  .subTitle_h3 {
    font-size: 1.35em;
    margin: 28px 0 12px;
  }

  /* 注意書き */
  .contact-renew-ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .contact-renew-ul li {
    margin-bottom: 16px;
  padding: 16px 20px;
  background: #fdf9f4;
  border-radius: 10px;
  border-left: 6px solid transparent;
  background-image: linear-gradient(#fdf9f4, #fdf9f4), linear-gradient(90deg, #b8860b, #f7e7a1, #b8860b);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  color: #1c1810;
  font-size: 0.8em;
  line-height: 1.5;
  font-weight: bold;
  }

  /* リンク（プライバシーポリシー） */
  .contact-renew-ul li a {
    color: #992251;
    font-weight: bold;
    text-decoration: underline;
  }

  .contact-renew-ul li a:hover {
    opacity: 0.8;
  }


  /* 電話番号 */
  .inquiry_item {
    font-size: 0.95em;
    padding: 15px 20px;
  }

  /* フォーム外枠 */
  .contact-renew {
    padding: 40px 30px;
    margin: 20px 5px;
  }

  /* テーブル */
  .contact-renew-table th {
    font-size: 0.95em;
    padding: 12px;
  }

  .contact-renew-table td {
    font-size: 0.95em;
    padding: 12px;
  }

  /* 入力欄 */
  .contact-renew-table input[type="text"],
  .contact-renew-table textarea {
    font-size: 1em;
    padding: 10px 12px;
  }

  /* ボタン */
  .contact-renew-btn {
    font-size: 1.05em;
    padding: 12px 24px;
  }
}
@media screen and (max-width: 600px) {

  /* 全体の余白をさらに調整 */
  #MainContants .col-sm-9 {
    padding: 20px 12px;
  }

  /* タイトル */
  .contTitle {
    font-size: 1.7em;
    margin-bottom: 18px;
  }

  /* 小見出し */
  .subTitle_h3 {
    font-size: 1.15em;
    margin: 22px 0 10px;
    padding-left: 10px;
  }

  /* 注意書き */
  .contact-renew-ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }


  /* リンク（プライバシーポリシー） */
  .contact-renew-ul li a {
    color: #992251;
    font-weight: bold;
    text-decoration: underline;
  }

  .contact-renew-ul li a:hover {
    opacity: 0.8;
  }


  /* 電話番号 */
  .inquiry_item {
    font-size: 0.85em;
    padding: 12px 15px;
  }

  /* フォーム外枠 */
  .contact-renew {
    padding: 25px 15px;

  }

  /* テーブル */
  .contact-renew-table th,
  .contact-renew-table td {
    font-size: 0.8em;
    padding: 10px;
  }

  /* 入力欄 */
  .contact-renew-table input[type="text"],
  .contact-renew-table textarea {
    font-size: 0.95em;
    padding: 10px;
  }

  /* ボタン */
  .contact-renew-btn {
    width: 100%;
    margin: 10px 0;
    font-size: 0.95em;
    padding: 12px 18px;
  }
}

/* ===========================
   確認画面（Confirmation モード）
   入力欄と同じデザインに統一
=========================== */

/* table（確認画面） */
.table {
  width: 100% !important;
  border-collapse: separate;
  border-spacing: 0 6px;
}

/* 左側（項目名） */
.table th {
  background: rgba(245,240,235,0.9);
  color: #201419;
  padding: 10px;
  width: 30%;
  font-weight: bold;
  box-shadow: 0 4px 12px rgb(227 157 154);
}

/* 右側（入力内容） */
.table td {
  background: rgba(255,255,255,0.95);
  padding: 10px;
  box-shadow: 0 4px 12px rgb(227 157 154);
  font-weight: bold;
font-size: 0.98em;
}

/* readonly の input / textarea を “表示専用カード” に */
.table input[readonly],
.table textarea[readonly] {
  width: 100%;
  padding: 10px 12px;
  background: #fdf9f4;
  border: 2px solid #e5d9d0;
  font-size: 1em;
  font-weight: bold;
  color: #333;
  border-radius: 6px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}

/* ラジオボタン（確認画面でも統一） */
.table input[type="radio"] {
  transform: scale(1.2);
  margin-right: 6px;
}

/* ボタン（戻る・送信） */
#button input[type="button"] {
  padding: 12px 24px;
  margin: 0 10px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  background: #ddd;
  transition: all 0.3s ease;
  font-size: 1.05em;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

#button input[type="button"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

#button input[name="confirmation"] {
  background: linear-gradient(90deg, #992251, #d4af37);
  color: #fff;
}

#button input[name="confirmation"]:hover {
  background: linear-gradient(90deg, #d4af37, #992251);
}


@media screen and (max-width: 900px) {

  /* table（確認画面） */
  .table {
    border-spacing: 0 5px;
  }

  .table th {
    font-size: 0.9em;
    padding: 8px 10px;
  }

  .table td {
    font-size: 0.9em;
    padding: 8px 10px;
  }

  /* readonly input / textarea */
  .table input[readonly],
  .table textarea[readonly] {
    font-size: 0.9em;
    padding: 8px 10px;
  }

  /* ラジオボタン */
  .table input[type="radio"] {
    transform: scale(1.1);
  }

  /* ボタン */
  #button input[type="button"] {
    font-size: 0.95em;
    padding: 10px 20px;
    margin: 8px;
  }
}

@media screen and (max-width: 600px) {

  /* table（確認画面） */
  .table {
    border-spacing: 0 4px;
  }

  .table th {
    font-size: 0.8em;
    padding: 6px 8px;
  }

  .table td {
    font-size: 0.8em;
    padding: 6px 8px;
  }

  /* readonly input / textarea */
  .table input[readonly],
  .table textarea[readonly] {
    font-size: 0.85em;
    padding: 8px;
  }

  /* ラジオボタン */
  .table input[type="radio"] {
    transform: scale(1.05);
  }

  /* ボタン */
  #button input[type="button"] {
    font-size: 0.9em;
    padding: 10px 16px;
    margin: 10px 0;
  }
}
