@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
/*-------------------------------------
00 additional reset
--------------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*-------------------------------------
00 setup 
--------------------------------------*/
html {
  -webkit-text-size-adjust: none;
  font-size: 100%; /*16px*/
}

body {
  width: 100%;
  height: 100%;
  font-family: "Meiryo UI", "Hiragino Sans", "Yu Gothic UI", "MS PGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333333;
  background: #fff;
  text-align: justify;
  letter-spacing: 0;
  line-height: 1.8;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

/*-------------------------------------
00 layout
--------------------------------------*/
.header, .main, .footer {
  width: 100%;
}

.header-inner, .main-inner {
  width: 1200px;
  margin: 0 auto;
}

.info-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.info-wrap > div {
  width: calc((100% - 40px) / 2);
}

/*-------------------------------------
01 header
--------------------------------------*/
.header {
  height: 54px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header .header-inner {
  padding: 7px 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
.header .header-inner img {
  margin-right: 1.2rem;
  height: 40px;
}

/*-------------------------------------
02 footer
--------------------------------------*/
.footer {
  height: 30px;
  background-color: #fff;
  border-top: 1px solid #CCC;
  text-align: center;
  font-size: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

/*-------------------------------------
step
--------------------------------------*/
.flow {
  width: 1000px;
  margin: 15px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
}
.flow .flow1 {
  border: 1px solid #0C6AC4;
  border-radius: 4px;
  width: 470px;
  height: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0C6AC4;
  position: relative;
}
.flow .flow1:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #182987;
  right: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.flow .flow1.is-selected {
  background-color: #0C6AC4;
  color: #fff;
}
.flow .flow2 {
  border: 1px solid #EE9323;
  border-radius: 4px;
  width: 470px;
  height: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #EE9323;
}
.flow .flow2 strong {
  font-size: larger;
}
.flow .flow2.is-selected {
  background-color: #EE9323;
  color: #fff;
}

/*-------------------------------------
bnr
--------------------------------------*/
.bnr {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

/*-------------------------------------
03 form
--------------------------------------*/
.form .form-ttl-h2 {
  font-size: 1.1rem;
  background: -webkit-linear-gradient(120deg, #0178DC 0 50%, #0068D6 50%);
  width: 100%;
  height: 40px;
  padding-left: 20px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
}
.form .info-wrap .customer table {
  min-height: 380px;
}
.form .info-wrap .form-table {
  width: 100%;
}
.form .info-wrap .form-table th {
  width: 168px;
  background: #F6F6F6;
  border-bottom: 1px solid #CCC;
  font-size: 0.875rem; /*14px*/
  font-weight: bold;
  vertical-align: top;
  padding: 12px 0 10px 10px;
  line-height: 1.7;
  text-align: left;
}
.form .info-wrap .form-table td {
  padding: 6px;
  border-bottom: 1px solid #CCCCCC;
  vertical-align: top;
  font-size: 15px;
}
.form .info-wrap .form-table td .error {
  color: #FA1B00;
  font-weight: 700;
  font-size: 0.8125rem; /*13px*/
  display: none;
}

.must {
  display: inline-block;
  background: #EE9323;
  color: #fff;
  font-size: 11px;
  width: 34px;
  height: 17px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  margin-left: 7px;
  margin-right: 7px;
  font-weight: 700;
  padding-top: 1px;
}

.optional {
  display: inline-block;
  background: #999999;
  color: #fff;
  font-size: 11px;
  width: 34px;
  height: 17px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  margin-left: 7px;
  font-weight: 700;
  padding-top: 1px;
}

.radio-wrap-method {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 250px;
}
.radio-wrap-method label {
  display: inline-block;
  width: 125px;
  height: 30px;
  font-size: 1rem;
  line-height: 30px;
}
.radio-wrap-method label:first-child {
  margin-right: 10px;
}

.checkbox-wrap label {
  margin-right: 0.5em;
}

.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form input[type=number],
select {
  border: 1px solid #CCC;
  padding: 10px;
  border-radius: 4px;
  font-size: 15px;
  width: 100%;
  height: 40px;
}

textarea {
  margin: 0;
  border: 1px solid #CCC;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 15px;
  width: 100%;
  height: 50px;
  line-height: 1.5;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999999;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999999;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #999999;
}

input::placeholder,
textarea::placeholder {
  color: #999999;
}

input[type=radio],
input[type=checkbox] {
  margin-right: 0.4em;
}

.ml0 {
  margin-left: 0;
}

.form-btn {
  width: 400px;
  height: 60px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 179, 36)), to(rgb(218, 110, 33)));
  background-image: -webkit-linear-gradient(top, rgb(255, 179, 36), rgb(218, 110, 33));
  background-image: linear-gradient(180deg, rgb(255, 179, 36), rgb(218, 110, 33));
  -webkit-box-shadow: 0px 4px 0px #A85A25;
          box-shadow: 0px 4px 0px #A85A25;
  border-radius: 30px;
  text-align: center;
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 700;
  display: block;
  margin: 10px auto 20px;
  cursor: pointer;
}
.form-btn:hover {
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a.form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.policy {
  margin-top: 0.5rem;
  text-align: center;
  padding-bottom: 0;
  font-size: 14px;
}
.policy a {
  color: #2773C0;
  text-decoration: underline;
}
.policy i {
  color: #2773C0;
}

.thanks-page {
  position: relative;
}
.thanks-page #footer {
  position: fixed;
  bottom: 0;
}

.thanks-message {
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
}
.thanks-message h1 {
  font-size: 24px;
  margin-bottom: 1em;
}
.thanks-message p {
  font-size: 20px;
}
.thanks-message .button-wrap {
  margin-top: 60px;
}

.ok_span {
  display: inline-block;
  background: #1FA232;
  color: #fff;
  font-size: 11px;
  width: 34px;
  height: 17px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  position: relative;
  z-index: 99999;
  padding-top: 1px;
  margin-left: 7px;
  display: none;
}
.ok_span:after {
  position: absolute;
  font: var(--fa-font-solid);
  content: "\f00c";
  right: -22px;
  color: #1FA232;
  font-size: 16px;
}

#formerror.error {
  color: #FA1B00;
  font-weight: 700;
  font-size: 1rem;
  background-color: #FFD3CF;
  padding: 10px;
  border-radius: 3px;
}

.ui-autocomplete {
  z-index: 1000; /* 確実に前面に表示 */
  background-color: white; /* 背景色 */
  border: 1px solid #ccc; /* 境界線 */
  max-height: 150px; /* 高さの上限 */
  overflow-y: auto; /* スクロール可能 */
}

/*----------------------------------------------------
add 2024.0813
-------------------------------------------------------*/
/* .tacのスタイル修正 */
.tac {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto; /* 中央揃え */
  position: relative;
  background: #fc612d;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
  overflow: hidden;
  width: 350px; /* 幅を適切に設定 */
  height: 50px; /* 高さを設定 */
}

/* .muryoのスタイル調整 */
.muryo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fd952d;
  color: #fff;
  font-size: 12px;
  padding: 0 10px; /* パディングを追加 */
  height: 50px; /* 高さをボタンに合わせる */
  border-radius: 10px 0 0 10px; /* 角丸を左側にのみ適用 */
  writing-mode: vertical-rl; /* 縦書き */
  letter-spacing: 5px; /* 文字間隔 */
}

.disabled-button {
  background-color: #cccccc; /* 灰色 */
  color: #666666; /* 濃い灰色の文字 */
  pointer-events: none;
  opacity: 0.5;
}

.disabled-text {
  color: #cccccc; /* 灰色のテキスト */
  cursor: not-allowed;
}

/* tac と muryo を灰色にする */
.disabled-tac {
  background-color: #cccccc; /* tac の背景を灰色に */
  color: #666666; /* テキストを濃い灰色に */
}

.disabled-muryo {
  background-color:#cccccc; /* muryo の背景を灰色に */
  color: #666666; /* テキストを濃い灰色に */
}

/* ボタンスタイルの調整 */
button.t_form_btn {
  cursor: pointer;
  margin: 0;
  padding: 0 10px; /* パディングを追加して内部のテキストとの間隔を作る */
  width: auto; /* 自動幅 */
  height: 45px;
  font-weight: 700;
  color: #fff;
  line-height: 45px;
  background: #fc612d; /* 背景色を#fc612dに設定 */
  font-size: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  flex-grow: 1; /* フレックスアイテムとして拡張を許可 */
}
/* 全体的なスタイリング */
.disabled-button, .disabled-text {
  opacity: 1; /* 透明度を通常に戻す */
  color: #aaa; /* テキスト色を灰色に */
  cursor: not-allowed; /* カーソルを禁止マークに */
  pointer-events: none; /* クリック操作を無効に */
  background-color: #ccc; /* 背景色を灰色に設定 */
}

.t_form_btn.disabled-button {
  background-color: #ccc; /* 背景色を灰色に設定 */
  color: #666; /* テキスト色を暗めの灰色に */
}

/* テキスト固有のスタイリング（.muryoを含む） */
.muryo.disabled-text span {
  background-color: #ccc; /* 背景色を灰色に設定 */
  color: #666; /* テキスト色を暗めの灰色に */
  padding: 2px 5px; /* パディングを設定 */
  border-radius: 4px; /* 角を丸く */
}

button.t_form_btn::before {
  position: absolute;
  background-color: #fff;
  content: "";
  width: 30px;
  height: 100%;
  left: 0;
  opacity: 0;
  top: -180px;
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
	  0% { transform: scale(0) rotate(45deg); opacity: 0; }
	 80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
	 81% { transform: scale(4) rotate(45deg); opacity: 1; }
	100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

/* 追加 */
.t_form_btn.disabled-button::before {
  animation: none;
}
/* 追加 */
.form input:required,
.form select:required {
  background-color: #FFF9D9;
}
.form .error {
    background: #FFD3CF;
  }
.ok_span {
    padding: 2px 6px;
}
.ok_span:after {
    top: 0;
}
#salesRow {
  display: none;
}

/* for modal dialog */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  overflow-y: auto; /* 内容が長い場合にスクロール可能に */

}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  max-width: 100%; /* ビューポートの幅を超えないように */
  width: 90%; /* モーダルの幅、必要に応じて調整 */
  box-sizing: border-box; /* パディングを幅に含める */
  overflow: hidden; /* コンテンツがはみ出た場合に隠す */
  background: #fff; /* モーダルの背景色 */
  border-radius: 8px; /* 角を丸める */
  /* 中央配置に関する追加のスタイルが必要な場合はここに追加 */
}

.leave-message {
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  position: fixed; /* 固定位置 */
  top: 50%; /* 上辺をビューポートの中心に */
  left: 50%; /* 左辺をビューポートの中心に */
  transform: translate(-50%, -50%); /* 中心を基準にして配置 */
  width: 100%;
  max-width: 600px; /* 最大幅 */
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1050; /* 必要に応じて */

}

.box-leave {
  padding: 40px; /* 水平方向の内側余白をvw単位からpx単位に変更することで、親要素の幅に依存しない値にします */
  text-align: center;
  width: 100%; /* 幅を100%に設定して、親要素に合わせます */
}


/* スマートフォンや小さめのデバイス用のスタイル */
@media (max-width: 768px) {
.leave-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; /* スマートフォンの画面幅に合わせて調整 */
  max-width: none; /* 最大幅の制限を解除 */
  padding: 20px;
  margin: 10% auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 1050; /* 必要に応じてz-indexを調整 */
}

.box-leave {
  margin: 10% auto;
  width: 90%;
  padding: 15px; /* パディングを調整 */
  text-align: center; /* テキストを中央揃えに */
}
}

.leave-message .box-leave {
  background: #fff;
  padding: 40px 120px;
  text-align: center;
  border-radius: 4px;
  position: relative;
}
.leave-message .box-leave .btn-close {
  position: absolute;
  top: -8px;
  right: -8px;
}
.leave-message .box-leave h3 {
  font-size: 20px;
  font-weight: bold; /* これで文字が太くなります */
}

.leave-message .box-leave h3 .green {
  color: #5FB52B;
}

.leave-message .box-leave p {
  font-size: 16px; /* 本文のフォントサイズを少し大きく */
  line-height: 1.5;  /* 行間を適切に設定 */
}
.leave-message .box-leave ul {
  text-align: left;
  color: #5FB52B;
  font-weight: bold;
  list-style: none;
  margin-left: -1em;
}
.leave-message .box-leave ul li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 15px;
  font-size: 15px; /* テキストのサイズを大きくします */
}
.leave-message .box-leave ul li::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon-check.svg) center center no-repeat;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

  #id_wdp_border{
    width: 100vw;
    height: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.btn-wrap {
  text-align: center; /* コンテナ内の要素を中央揃えにする */
  margin: 10px auto; /* 必要に応じて上下のマージンを調整 */
  width: auto; /* ボタンの幅に応じて自動調整するように設定 */
  max-width: 380px; /* 最大幅を設定して、デザイン上の意図に合わせる */
}
.btn-wrap button {
  display: inline-block; /* ブロックレベルのインライン表示にする */
  margin: 0 auto; /* 上下のマージンは0、左右のマージンは自動で中央揃え */
  color: white;
  background: #FD952E;
  width: 100%;
  height: 48px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}
.btn-wrap button:focus {
  outline: 3px solid #5FB52B;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-wrap button[disabled] {
  background: #B3B3B3;
}
.btn-wrap a {
  color: white;
  background: #FD952E;
  width: 100%;
  height: 48px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-wrap a:focus {
  outline: 3px solid #5FB52B;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-wrap.btn-submit {
  position: relative;
}
.btn-wrap.btn-submit button {
  padding-left: 38px;
  background: #F55B31;
  font-size: 0.875rem;
}
.btn-wrap.btn-submit button:disabled {
  background: #B3B3B3;
}
.btn-wrap.btn-submit .free {
  position: absolute;
  display: inline-block;
  width: 38px;
  height: 100%;
  left: 0;
  top: 0;
  color: #fff;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  background: #FD952E;
  border-radius: 10px 0 0 10px;
  font-size: 0.8125rem;
  padding-right: 0.7em;
  font-weight: 700;
}
.btn-wrap button, .btn-wrap a {
  font-size: 14px; /* ボタンのテキストサイズを大きく */
  padding: 12px 24px; /* ボタンのパディングを増やす */
}

.btn-wrap button:hover, .btn-wrap a:hover {
  background-color: #E8842B; /* ホバー時の背景色を少し明るく */
  transition: background-color 0.3s ease; /* スムーズな遷移を追加 */
}
.fwb {
  font-weight: bold;
}
.mt14 {
  margin-top: 14px;
  font-weight: bold; 
}

/* 売上高の行を初期状態で非表示 */
#salesRow {
  display: none;
  transition: all 0.5s ease;
}
/* ボタンが無効化されている場合のスタイル */
.disabled-button {
  background-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
}
.ok_span {
  display: none; /* 初期非表示 */
}

