@charset "UTF-8";
/*-------------------------------------
00 additional reset
--------------------------------------*/
button {
	background: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* .form input {   フォーカス時のアウトラインを消す
  outline: 0;
  } */
/*-------------------------------------
00 setup
--------------------------------------*/
*, *::before, *::after{
  box-sizing: border-box; /* Ensures consistent box model behavior */
}
  html {
    -webkit-text-size-adjust: none;
    font-size: 62.5%;/*10px*/
    box-sizing: border-box;
  }
  body {
    width: 100%;
    height: 100vh !important;
    font-family: Arial, "ヒラギノ角ゴ Pro", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, " ＭＳ Ｐゴシック", MS PGothic, "sans-serif";
    color: #333;
    background: #fff;
    /*overflow: hidden;*/
    text-align: justify;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  img {
    max-width: 100%;
  }
  a {
    text-decoration: none;
  }
  /* a:link {

  } */
  /* a:hover,
  a:active,
  a:focus {
    color: #;
  } */
  p {
    line-height: 1.75;
  }

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


.header_inner, .main_inner {
  width: 1000px;
  margin: 0 auto;

}
/*-------------------------------------
01 header
--------------------------------------*/
.header {
  height: 54px;
  display: flex; /* フレックスボックスを適用 */
  justify-content: center; /* 横方向の中央揃え */
  align-items: center; /* 縦方向の中央揃え */
}

.header_inner {
  height: 49px;
  font-size: 1.4rem;
  display: flex; /* フレックスボックスを適用 */
  justify-content: center; /* 子要素を横方向で中央揃え */
  align-items: center; /* 子要素を縦方向で中央揃え */
}

.header_inner img {
  display: inline-block;
  height: 35px;
  margin: 0; /* 余白をリセット */
}

.header_inner span {
  display: inline-block;
  margin-top: 7px;
}


/*-------------------------------------
02 flow & bnr
--------------------------------------*/
.flow {
  margin: 20px 0 0;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
}
.flow .step1{
  border: 1px solid #5B9CF2;
  border-radius: 4px;
  width: 300px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5B9CF2;
  position: relative;
  margin-right: 50px;
}
.flow .step1:after{
  content: '';
  position: absolute;
  width: 0;
height: 0;
border-style: solid;
border-width: 8px 0 8px 14px;
border-color: transparent transparent transparent #AAEAFA;
right: -35px;
top: 50%;
transform: translateY(-50%);
}
.flow .step2 {
  border: 1px solid #F7931E;
  border-radius: 4px;
  width: 300px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F7931E;
}
.flow2 {
  margin: 10px 0 0;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
}
.flow2 li {
  position: relative;
  flex: 1;
  text-align: center;
  background-color: #f5f5f5; /* 背景色（任意） */
  padding: 10px 0;
  border-radius: 5px;
  margin: 0 40px 0 0; /* 右側の余白を40pxに増やして矢印スペース確保 */
  font-size: 16px;
  font-weight: bold;
}

.flow2 li:last-child {
  margin-right: 0; /* 最後のli（step3）は右余白をなくす */
}
.flow2 .step1 {
  border: 1px solid #5B9CF2;
  border-radius: 4px;
  width: 450px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5B9CF2;
  position: relative;
}
/* 矢印 */
.flow2 .step1:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #5B9CF2;
  right: -30px; /* 矢印をli間の中央寄りに配置 */
  top: 50%;
  transform: translateY(-50%);
}
.flow2 .step2 {
  border: 1px solid #F7931E;
  border-radius: 4px;
  width: 450px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F7931E;
}
.tx_step {
  font-family: 'Philosopher', sans-serif;
  font-size: 18px;
}
.flow .step1.is_selected,
.flow .step2.is_selected {
  background-color: #5B9CF2;
  color: #fff;
}
.flow2 .step1.is_selected,
.flow2 .step2.is_selected {
  background-color: #5B9CF2;
  color: #fff;
}
.is_selected .tx_step {
  color: #FCEE00;
}

.flow .step2.is_selected {
  background-color: #F7931E;
  color: #fff;
}
.flow2 .step2.is_selected {
  background-color: #F7931E;
  color: #fff;
}
.form_bnr {
  width: 1000px;
  height: auto;
}
/*-------------------------------------
03 form
--------------------------------------*/

.form_title_l {
  font-size: 2rem;
  background: #5B9CF2;
  border-bottom: 2px solid #5B9CF2;
  width: 100%;
  height: 48px;
  padding-left: 20px;
  line-height: 48px;
  margin-top: 20px;

}
p {
  font-size: 1.6rem;
  padding: 1.6rem;
}
.form_title_m {
  font-size: 1.8rem;
  color: #fff; 
  background: #5B9CF2;
  border-bottom: 2px solid #5B9CF2;
  width: 100%;
  height: 46px;
  padding-left: 20px;
  line-height: 46px;
  margin-top: 15px;
  margin-bottom: 0%;
}
.form table {
  letter-spacing: normal;
  text-align: left;
}
.info_wrap {
  display: flex;
  justify-content: space-between;

}
.customer, .travel {
  width: 480px;
}
.form_table {
  width: 480px;
}

.form_table th {
  width: 168px;
  background: #F6F6F6;
  border-bottom: 1px solid #CCCCCC;
  height: 50px;
  padding-left: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  vertical-align: middle;
  /*padding-top: 25px;*/
}
.form_table th.higher {
  height: 45px;
}
.form_table td {
  padding: 5px 0 5px 10px;
  border-bottom: 1px solid #CCCCCC;
  vertical-align: top;
}
.form .must {
  display: inline-block;
  background: #DD4848;
  color: #fff;
  font-size: 12px;
  width: 36px;
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  margin-left: 7px;
  font-weight: normal;
  padding-top: 1px;
}
.form .optional {
  display: inline-block;
  background: #999999;
  color: #fff;
  font-size: 12px;
  width: 36px;
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  margin-left: 7px;
  font-weight: normal;
  padding-top: 1px;
}

.form input:not([type="checkbox"]):not([type="radio"]) {
  border: 1px solid #b3b3b3;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 15px;
  width: 290px;
  height: 38px;
}
.form textarea {
  border: 1px solid #b3b3b3;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 15px;
  width: 90%;
  height: 100px;
  display: block; /* ブロック要素化 */
  margin: 20px auto 20px; /* 左右マージンを自動で中央に */
}
.form input::placeholder,
.form textarea::placeholder {
  color: #999999;
}
.inquiry_wrap {
  display: flex;
 border-top: 1px solid #CCCCCC;
 border-bottom: 1px solid #CCCCCC;
 margin-top: 10px;
}
.inquiry_wrap label {
  width: 310px;
  display: block;
  background-color: #F6F6F6;
  font-size: 1.4rem;
  padding: 25px 10px;
  font-weight: bold;
}
.form_btn {
  width: 400px;
height: 60px;
background: #F7931E 0% 0% no-repeat padding-box;
box-shadow: 0px 4px 0px #C47418;
border-radius: 4px;
text-align: center;
font-size: 16px;
color: #FFFFFF;
font-weight: 600;
display: block;
margin: 8px auto 30px;
}
.form_btn:hover {
  opacity: .8;
  color: #FCEE00;
  transition: .5s;

}
/*---------------- EFO関連操作 -----------------------*/

.form input:required {
  background-color: #FFF9D9;
}
.form .ok {
  display: inline-block;
  background: #1FA232;
  color: #fff;
  font-size: 12px;
  width: 36px;
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  margin-left: 7px;
  position: relative;
  z-index: 99999;
  padding-top: 1px;
}
.form .ok:after {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  content: '\f00c';
  right: -22px;
  color: #1FA232;
  font-size: 16px;
  font-weight: 900;
}

.form .error {
  background: #FFD3CF;
}

.form .error p {
  margin: 0;
  padding: 0;
  padding-top: 5px;
  text-align: left;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
  color: #FA1B00;
}
/*-------------------------------------
04 footer
--------------------------------------*/
.footer {
  text-align: center;
  font-size: 1.2rem;
  border-top: 1px solid #EEEEEE;
  margin-top: 20px;
  padding: 10px;
}

/*----------------------------------------------------
top form  2022.1.30
-------------------------------------------------------*/
.privacy_link {
	font-size: 13px;
	text-align: center;
	padding: .5em 0 0;
	margin: 0;
	text-decoration: underline;
}
.privacy_link a[target="_blank"] {
	position: relative;
}
.privacy_link a[target="_blank"]::after {
	position: absolute;
	content: '';
	display: inline-block;
	background: url('../images/form/external-link.svg') center center no-repeat;
	background-size: contain;
	width: 16px;
	height: 16px;
	top: -1px;
	right: -20px;
	margin-left: 5px;
	/* padding: 20px 5px 0; */
}
/*----------------------------------------------------
add age 2022.7.13
-------------------------------------------------------*/
/* select {outline: none;} */
select {
  padding: 10px; border-radius: 4px; font-size: 1.6rem;
}
.select-wrap {display: flex; align-items: center;}
.select-wrap .age-select {width: 150px; border-color: #ccc; background-color: #fff9d9;}
.select-wrap .numbers {width: 78px; margin-left: 0.5em; border-color: #ccc; background-color: #fff9d9;}
.select-wrap .btn-plus {padding-left: 0.5em;}
.select-wrap .btn-minus {padding-left: 0.5em;}
/* .fukidashi_base {position: relative;} */
.fukidashi {
  margin-bottom: 0.5em;
  display: inline-block;
  position: relative;
  color: #fff; background: #FD7373; font-size: 13px; font-weight: normal; width: 230px; left: 0; text-align: center; padding: .25em .5em; line-height: 1;}
.fukidashi:before {
	content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 5px solid #FD7373;
}
.mt5 {margin-top: 5px;}
.info_wrap{
	margin-top: 0;
}

/*----------------------------------------------------
add 2023.0308
-------------------------------------------------------*/

.form input:focus{
  border:solid 2px #3cb371 !important;
  outline: none;
}
.form textarea:focus{
  border:solid 2px #3cb371 !important;
  outline: none;
}

/*----------------------------------------------------
add 2024.0813
-------------------------------------------------------*/
/* .tacのスタイル修正 */
.tac {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto; /* 中央揃え */
  position: relative;
  background: #FA8C1E;
  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: #faa754;
  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: #FA8C1E; /* 背景色を#FA8C1Eに設定 */
  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;
}

 /* 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: 2rem;
  font-weight: bold; /* これで文字が太くなります */
}

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

.leave-message .box-leave p {
  font-size: 1.6rem; /* 本文のフォントサイズを少し大きく */
  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: 1.5rem; /* テキストのサイズを大きくします */
}
.leave-message .box-leave ul li::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/form/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: 1.4rem; /* ボタンのテキストサイズを大きく */
  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; 
}

.ui-autocomplete {
  background-color: white; /* ドロップダウンの背景色を白に設定 */
  border: 1px solid #ccc; /* 枠線の色と太さを設定 */
  max-height: 200px; /* ドロップダウンの最大高さを設定 */
  overflow-y: auto; /* 内容が多い場合に縦スクロールバーを表示 */
  overflow-x: hidden; /* 横スクロールバーは非表示に */
  cursor: pointer; /* カーソルをポインターに */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* 影の設定 */
  padding: 5px 0; /* 内側の余白設定 */
}
.ui-menu-item-wrapper {
  padding: 2px 10px; /* ドロップダウン内の項目のパディング設定 */
  font-size: 14px; /* 文字の大きさ */
  line-height: 1.5; /* 行の高さ */
}

.ui-helper-hidden-accessible {
  display: none !important;
}

.input-filled {
  background-color: #ffffff !important;
}

.form.step1 input {
border: 1px solid #b3b3b3;
}
.ok_label .must {
display: none;
}
.ok_span {
display: none;
}
.ok_label .ok_span.ok {
display: inline-flex;
}
.must {
display: inline-flex;
}
.form_table p {
display: none;
}
.form_table .error p {
display: block;
}
.input-error {
border-color: red;
}

/*	step	*/
.form.step1 input {
	border: 1px solid #b3b3b3;
}

.form .modoru {
	background: #ccc 0% 0% no-repeat padding-box;
	box-shadow: 0px 4px 0px #aaa;
}

/*	error	*/
.form_table p {
	display: none;
}
.form_table .error p {
	display: block;
}
.form_table .error.empty p.hankaku {
	display: none;
}
.form_table .error.hankaku p.empty {
	display: none;
}
.form_table .error.hankaku p.hankaku {
	display: block;
}
.form_table .error.empty p.empty {
	display: block;
}
.form_title_m.other {
  margin-top: 0;
}
.other_requests {
  width: 100%;
}
.form_table.other {
  width: 100%;
  margin-top: 0; /* 空白をなくすために修正 */
}
.form_title_m.other {
  margin-top: 30px;
  margin-bottom: 0; /* 空白をなくすために修正 */
}
/* ボタンのスタイル */
.button-group {
  display: flex; /* 横並びに配置 */
  gap: 1rem; /* ボタン間の余白を調整 */
  margin: 10px 0 10px 0;
}
.checkbox-item-wrapper {
  flex: 1; /* 各ボタンを同じ幅にする */
  align-items: center; /* チェックボックスとテキストを縦方向に中央揃え */
  gap: 0.5rem; /* チェックボックスとテキストの間隔を調整 */
  width: 100%; /* チェックボックスの幅を100%に */
}
.checkbox-item-wrapper input {
  display: none; /* デフォルトのチェックボックスを非表示にする */
}
.checkbox-item-wrapper span {
  color: #969696; /* 文字色を黒に */
  font-size: 14px; /* 文字サイズを14pxに */
  border: 1px solid #E1E1E1; /* 枠線を指定 */
  border-radius: 5px; /* 角丸を入れて、左右が丸いボタンにする */
  padding: 5px 5px; /* 上下左右に余白を設定 */
  text-align: center; /* テキストを中央揃え */
  cursor: pointer; /* カーソルをポインタに変更 */
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E1E1E1;
}
.checkbox-item-wrapper input:checked + span {
  color: #FFF; /* 文字色を白に */
  background: #55a4e0; /* 背景色を薄い赤に */
  border: 1px solid #55a4e0; /* 枠線を薄い赤に */
}
.form_table.other th {
  width: 168px;
  background: #F6F6F6;
  border: none;
  height: 50px;
  padding-left: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  vertical-align: middle;
}
.form_table.other td {
  padding: 5px 0 5px 10px;
  border: none;
  vertical-align: top;
}

.container {
  width: 100%;
}
.form-title {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 8px;
}
.etc_requests_label {
  display: block;        /* ラベルをブロック要素化（下に改行） */
  font-size: 16px;       /* 文字サイズ */
  font-weight: bold;     /* 太字にする */
  color: #333;           /* 文字色 */
  margin: 20px 50px;
}
/* テキストエリアのスタイル */
.input-field {
  padding: 10px; /* テキストエリア内の余白を調整 */
  font-size: 14px; /* フォントサイズを調整 */
  line-height: 1.5; /* 行間を調整 */
  text-align: left; /* 水平方向の位置を左揃え */
  vertical-align: top; /* 垂直方向の位置を上揃え */
  resize: none; /* テキストエリアのサイズ変更を無効化（必要に応じて） */
  width: 100%; /* テキストエリアの幅を親要素に合わせる */
  box-sizing: border-box; /* パディングを含めて幅を計算 */
  background-color: #fffae6;
}

.input-field::placeholder {
  color: #aaa;
}

.input-field:focus {
  outline: none;
  border-color: #c0c0c0;
}
.radio-wrap-method {
  display: flex;
  gap: 20px;
  align-items: center; /* ラジオボタンとテキストの縦位置を揃える */
  height: 100%; /* tdの高さいっぱいに */
}

td > .radio-wrap-method {
  height: 100%;
  align-items: center;
}
.radio-label {
  display: flex;
  align-items: center;  /* 縦位置を揃える */
  gap: 5px;             /* ボタンと文字の間を少し空ける */
  font-size: 16px;      /* テキストサイズ調整（お好みで） */
}
.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
}
.main_inner figure {
  width: 100%;
  margin: 0;
}

.main_inner figure img.form_bnr {
  width: 100%;
  height: auto;
  display: block;
}
.main_inner ol.flow2 {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  list-style: none; /* olの番号を消す */
}

.main_inner ol.flow2 li {
  flex: 1;
  text-align: center;
  background-color: #fff; /* 好みで背景色 */
  padding: 10px 0;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
}
.accordion-content {
  display: none;
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion-content.open {
  display: block;
}
.accordion-header {
  position: relative;
  cursor: pointer;
}
.accordion-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: bold;
}
.policy {
  text-align: center;
  padding-bottom: 0;
  font-size: 14px;
  padding-top: 10px;
}
.policy a {
  color: #2773C0;
  text-decoration: underline;

}
.policy i {
  color: #2773C0;
}

.checkbox-group label {
  display: contents;
  align-items: center;
  gap: 0.3em;
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 0;
  padding-left: 0;
  position: relative;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 0.4em;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
/* ボタンスタイルの調整 */
button.top_form_btn {
  cursor: pointer;
  padding: 0 10px; /* パディングを追加して内部のテキストとの間隔を作る */
  width: auto; /* 自動幅 */
  height: 45px;
  font-weight: 700;
  color: #fff;
  line-height: 45px;
  background: #FA8C1E; /* 背景色を#FA8C1Eに設定 */
  font-size: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  flex-grow: 1; /* フレックスアイテムとして拡張を許可 */
  display: block;
  margin: 0 auto; /* 横中央 */
}