@media (min-width: 769px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media (max-width: 769px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
body {
  /*background: #f7f7fa;*/
  /*font-family: 'Yu Gothic', 'Hiragino Sans', Arial, sans-serif;*/
  color: #333;
  margin: 0;
  padding: 0;
  font-size: 1.4rem; /* PC用デフォルト */
}
.inner {
  width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 769px) {
  .inner {
    width: 100%;
    margin: 0 auto;
  }
  .cta_contact {
    margin: 0 10px;
  }
}
h1.title_head {
  font-size: 24px;
  border-bottom: 3px solid #9fa0a0;
  padding-bottom: 10px;
  position: relative;
  margin-top: 30px;
}
h1.title_head:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  width: 50px;
  height: 3px;
  background: #ef859b;
}
@media screen and (max-width: 769px) {
  h1.title_head {
    font-size: 20px;
    border-bottom: 2px solid #9fa0a0;
    padding-bottom: 6px;
    position: relative;
    font-weight: normal;
    margin-bottom: 20px;
  }
}
/*フォームタイトル*/
h2.formtitle {
  font-size: 21px;
  padding: 10px 10px;
  background: #efeff1;
  margin-bottom: 20px;
  font-weight: normal;
  border-radius: 5px;
}
h2.formtitle span.small {
  font-size: 80%;
}
@media screen and (max-width: 769px) {
  h2.formtitle {
    font-size: 4.8vw;
    margin-bottom: 10px;
  }
}
form {
  background: #fff;
  /*max-width: 600px;*/
  margin: 0 auto 60px auto; /* 下に60px */
  padding: 2em 2.5em;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgb(182 27 99 / 30%), 0 1.5px 5px rgba(0, 0, 0, 0.02);
}
label {
  display: block;
  margin-bottom: 1.5em;
  font-size: 18px;
  color: #223355;
}
input[type="text"], input[type="email"], input[type="tel"], textarea, select.styled-select {
  width: 100%;
  padding: 0.6em 0.8em;
  border: 1px solid #ccd6dd;
  border-radius: 5px;
  font-size: 18px;
  margin-top: 0.5em;
  box-sizing: border-box;
  background: #f9fafc;
  transition: border-color 0.2s;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select.styled-select:focus {
  border-color: #cc3371;
  outline: none;
  background: #fff;
}
textarea {
  resize: vertical;
  min-height: 80px;
}
select.styled-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f9fafc url('data:image/svg+xml;charset=UTF-8,<svg width="16" height="16" fill="gray" xmlns="http://www.w3.org/2000/svg"><polygon points="3,6 8,11 13,6"/></svg>') no-repeat right 0.7em center/1em;
  cursor: pointer;
}
select.styled-select {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.5s cubic-bezier(.67, 1.67, .38, .76), transform 0.5s cubic-bezier(.67, 1.67, .38, .76);
}
.step.active select.styled-select {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .1s;
}
.step {
  display: none;
}
.step.active {
  display: block;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-buttons {
  margin-top: 1.5em;
  text-align: right;
}
.step-buttons button {
  background: #3399cc;
  color: #fff;
  border: none;
  padding: 0.7em 2em;
  border-radius: 5px;
  font-size: 1em;
  margin-left: 0.7em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.step-buttons button:hover {
  background: #226688;
  transform: scale(1.05);
}
.required-label {
  background: #ef859b;
  line-height: 20px;
  padding: 5px 8px;
  font-size: 80%;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  margin-left: 6px;
  margin-right: 2px;
  vertical-align: middle;
  text-align: center;
}
/* スマホ用 */
@media (max-width: 769px) {
  body {
    font-size: 4.8vw;
  }
  h1 {
    font-size: 6.4vw;
  }
  form {
    max-width: 100vw;
    margin: 0 10px 40px 10px;
    padding: 20px !important; /* 余白を20pxに */
  }
  .required-label {
    font-size: 4.8vw;
    height: auto;
    width: auto;
    line-height: normal;
    padding: 3px 10px;
  }
  .step-buttons button {
    padding: 0.7em 1.5em;
  }
  .step-buttons button:nth-child(1) {
    margin-bottom: 20px;
  }
  label, input[type="text"], input[type="email"], input[type="tel"], textarea, select.styled-select {
    font-size: 4.8vw;
  }
}
/*確認画面*/
#btn_search_address {
  display: none;
}
.confirm-table {
  background: #fff;
  margin: 20px auto 30px;
  padding: 2em 1.5em;
  border-radius: 10px;
  font-size: 1em;
  box-shadow: 0 4px 18px rgba(18, 60, 90, 0.08);
}
.confirm-table th, .confirm-table td {
  text-align: left;
  padding: 1em 0 0.5em 1em;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 18px;
}
.confirm-table th {
  color: #223355;
}
.confirm-table tr {
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}
.confirm-table td {
  padding-top: 0;
}
.confirm-table tr:last-child {
  border: none;
}
@media (min-width:769px) {
  .confirm-table {
    width: 100%;
  }
}
@media (max-width:769px) {
  .confirm-table {
    max-width: 100vw;
    margin: 30px 0px 30px 0px;
    padding: 20px !important;
    font-size: 4.8vw;
    width: 100%;
  }
  .confirm-table tr {
    display: flex;
    flex-direction: column;
  }
  .confirm-table th, .confirm-table td {
    width: 100%;
  }
  .confirm-table td {
    padding-top: 0;
  }
}
/* 編集ボタン（confirm-table用） */
.edit-btn {
  background: #fff;
  color: #ef859b;
  border: 1.5px solid #ef859b;
  border-radius: 5px;
  padding: 0.4em 1.2em;
  font-size: 0.98em;
  font-weight: bold;
  margin-left: 0.7em;
  margin-top: 0.6em;
  margin-bottom: 0.4em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1.5px 4px rgba(239, 133, 155, 0.10);
  outline: none;
  display: inline-block;
  vertical-align: middle;
}
.edit-btn:hover, .edit-btn:focus {
  background: #ef859b;
  color: #fff;
  border-color: #ef859b;
  transform: scale(1.05);
  box-shadow: 0 3px 12px rgba(239, 133, 155, 0.15);
}
/* 確認画面のテーブルに合うよう少し余白調整 */
.confirm-table td .edit-btn {
  margin-top: 0.3em;
  margin-left: 0em;
  font-size: 0.95em;
}
/* スマホ対応 */
@media (max-width: 769px) {
  .edit-btn, .confirm-table td .edit-btn {
    font-size: 4vw;
    padding: 0.5em 1.7em;
    margin-top: 0.7em;
    margin-left: 0;
    margin-bottom: 0.6em;
  }
}
/*サンクスページ*/
.thanks-message {
  background: #fff;
  max-width: 960px;
  margin: 60px auto 60px auto;
  padding: 2em 2.5em;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgb(182 27 99 / 30%), 0 1.5px 5px rgba(0, 0, 0, 0.02);
  text-align: center;
  font-size: 1em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.thanks-message h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #d34376;
}
.thanks-message p {
  margin: 30px 0 30px;
  text-align: left;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
}
.thanks-message p.small_text {
  font-size: 100%;
  text-align: center;
  margin-top: -20px;
}
/*.thanks-message a {
  display: inline-block;
  margin-top: 2em;
  color: #3399cc;
  text-decoration: underline;
  font-size: 1em;
}*/
.thanks-message .tel_pc_flex {
  align-items: center;
}
.thanks-message p.tel_pc_intro {
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 3px;
  width: 43%;
  line-height: 1.4;
  padding-left: 0;
  margin: 0;
}
.thanks-message p.regular_btn {
  margin: 0 auto;
}
.thanks-message .regular_btn a i {
  width: 6px;
  height: 6px;
  border-top: 2px solid #B43965;
  border-right: 2px solid #B43965;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: calc(50% - 5px);
}
@media (max-width: 769px) {
  .thanks-message {
    max-width: 100vw;
    margin: 40px 10px 40px 10px;
    padding: 30px 10px !important;
    font-size: 4.8vw;
  }
  .thanks-message h2 {
    font-size: 5.6vw;
  }
  .thanks-message h1 {
    font-size: 6.4vw;
    margin-top: 0;
  }
  .thanks-message p {
    font-size: 4.2vw;
    margin-bottom: 0;
    margin-top: 20px;
  }
  .thanks-message p.small_text {
    font-size: 75%;
    text-align: left;
    margin-top: 10px;
	  margin-bottom: 20px;
  }
  .thanks-message a {
    font-size: 4.8vw;
  }
  .thanks-message section.cta_common_box .copy_txt {
    font-size: 4.2vw !important;
  }
  .sp_none {
    display: none;
  }
}
/*同意書*/
.privacy-agreement {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(18, 60, 90, 0.04), 0 1.5px 5px rgba(0, 0, 0, 0.02);
  margin: 40px auto 0 auto;
  padding: 2em 2em 1.5em 2em;
  max-width: 600px;
}
.privacy-title {
  color: #114488;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 1em;
  text-align: center;
}
.privacy-box {
  background: #f5f8fa;
  border-radius: 8px;
  padding: 1.5em 1.2em;
  margin-bottom: 1.2em;
  font-size: 0.98em;
  line-height: 1.7;
}
.privacy-box h2 {
  font-size: 1.12em;
  margin-top: 0;
  color: #114488;
  margin-bottom: 0.5em;
  border-left: 5px solid #3399cc;
  padding-left: 0.5em;
}
.privacy-box h3, .privacy-box h4 {
  color: #226688;
  margin-bottom: 0.3em;
  margin-top: 1.1em;
  font-size: 1em;
}
.privacy-box ul {
  margin: 0 0 0.7em 1em;
  padding: 0 0 0 1em;
}
.privacy-box li {
  list-style: disc;
  margin-bottom: 0.3em;
}
.privacy-box address {
  font-style: normal;
  margin-top: 0.7em;
  border-top: 1px dotted #bbb;
  padding-top: 0.6em;
  font-size: 0.97em;
}
.privacy-check {
  margin-top: 1.3em;
  text-align: center;
}
.privacy-check label {
  font-weight: bold;
  color: #114488;
  font-size: 1.05em;
}
@media (max-width: 640px) {
  .privacy-agreement {
    max-width: 98vw;
    padding: 4vw 3vw 3vw 3vw;
    font-size: 4.2vw;
    margin: 5vw auto 0 auto;
  }
  .privacy-title {
    font-size: 4.7vw;
    text-align: left;
  }
  .privacy-box {
    font-size: 4vw;
    padding: 3vw 3vw 3vw 3vw;
  }
  .privacy-box h2 {
    font-size: 4.8vw;
    padding-left: 1vw;
  }
  .privacy-box h3, .privacy-box h4 {
    font-size: 4vw;
  }
  .privacy-box address {
    font-size: 3.9vw;
  }
  .privacy-check label {
    font-size: 4.3vw;
  }
}
/* アコーディオン化するための基本スタイル */
.privacy-agreement {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(18, 60, 90, 0.04), 0 1.5px 5px rgba(0, 0, 0, 0.02);
  margin: 40px auto 0 auto;
  padding: 2em 2em 1.5em 2em;
  max-width: 600px;
}
.privacy-title {
  color: #114488;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 1em;
  text-align: center;
}
/* アコーディオンボタン */
.privacy-toggle {
  background: #f5f8fa;
  color: #114488;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1em 1.6em 1em 1.2em;
  font-size: 1em;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  outline: none;
}
/*.privacy-toggle::after {
  content: '▼';
  position: absolute;
  right: 1.1em;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
  font-size: 1.1em;
}
.privacy-toggle.active::after {
  transform: translateY(-50%) rotate(180deg);
}*/
/* アコーディオン内容 */
.privacy-box {
  background: #f5f8fa;
  border-radius: 8px;
  padding: 0 1.2em;
  margin-bottom: 1.2em;
  font-size: 0.98em;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.6, 0.1, 0.3, 1), padding 0.4s;
}
.privacy-box.open {
  padding: 1.5em 1.2em;
  max-height: 1800px; /* 十分大きければOK */
  transition: max-height 0.7s cubic-bezier(0.3, 1, 0.5, 1.1), padding 0.4s;
}
.privacy-box h2 {
  font-size: 1.12em;
  margin-top: 0;
  color: #114488;
  margin-bottom: 0.5em;
  border-left: 5px solid #3399cc;
  padding-left: 0.5em;
}
.privacy-box h3, .privacy-box h4 {
  color: #226688;
  margin-bottom: 0.3em;
  margin-top: 1.1em;
  font-size: 1em;
}
.privacy-box ul {
  margin: 0 0 0.7em 1em;
  padding: 0 0 0 1em;
}
.privacy-box li {
  list-style: disc;
  margin-bottom: 0.3em;
}
.privacy-box address {
  font-style: normal;
  margin-top: 0.7em;
  border-top: 1px dotted #bbb;
  padding-top: 0.6em;
  font-size: 0.97em;
}
.privacy-check {
  margin-top: 1.3em;
  text-align: center;
}
.privacy-check label {
  font-weight: bold;
  color: #114488;
  font-size: 1.05em;
}
/* スマホ用 */
@media (max-width: 640px) {
  .privacy-agreement {
    max-width: 98vw;
    padding: 4vw 3vw 3vw 3vw;
    font-size: 4.2vw;
    margin: 5vw auto 0 auto;
  }
  .privacy-title {
    font-size: 4.7vw;
    text-align: left;
  }
  .privacy-toggle {
    font-size: 4.7vw;
    padding: 4vw 6vw 4vw 3vw;
  }
  .privacy-box {
    font-size: 4vw;
    padding: 0 3vw;
  }
  .privacy-box.open {
    padding: 3vw 3vw 3vw 3vw;
  }
  .privacy-box h2 {
    font-size: 4.8vw;
    padding-left: 1vw;
  }
  .privacy-box h3, .privacy-box h4 {
    font-size: 4vw;
  }
  .privacy-box address {
    font-size: 3.9vw;
  }
  .privacy-check label {
    font-size: 4.3vw;
    text-align: left;
  }
}
/*冒頭写真周り*/
.contact_flex {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  -webkit-box-pack: center;
  margin-bottom: 20px;
}
.contact_flex p {
  font-size: 18px;
  width: 100%;
  text-align: center;
}
/*.contact_flex p span {
  font-size: 80%;
}**/
/*.contact_flex .img_box {
  background: #fff6f8;
  border-radius: 5px;
  padding: 20px;
  width: 28%;
}*/
.contact_flex .img_box img {
  width: 100%;
}
@media (max-width: 769px) {
  .contact_flex p {
    width: 100%;
    font-size: 4.2vw;
    text-align: center;
  }
  .contact_flex .img_box {
    width: 100%;
    margin-top: 20px;
  }
}
/*電話バナー*/
.tel_pc_flex {
  display: flex;
  display: -webkit-flex; /* safari */
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  -webkit-box-pack: center;
  margin: 30px 0;
  background: #efeff1;
  padding: 20px;
  border-radius: 5px;
}
p.tel_pc_intro {
  font-size: 20px;
  width: 46%;
  line-height: 1.4;
}
p.tel_pc_intro span {
  font-size: 31px;
  color: #d34376;
  font-weight: bold;
  letter-spacing: 1px;
}
p.tel_mark {
  font-size: 31px;
  color: #d34376;
  width: 6%;
}
.cta_contact .pc_num {
  border: 2px solid #d34376;
  width: 417px;
  height: 65px;
  border-radius: 5px;
  background: #fff;
  float: left;
  padding-left: 20px;
  padding-top: 10px;
}
.cta_contact .pc_num img {
  vertical-align: middle !important;
}
.cta_contact .pc_num span {
  font-size: 40px;
  font-weight: bold;
  border-radius: 5px;
  margin-left: 20px;
  vertical-align: middle !important;
}
@media (max-width: 769px) {
  .cta_contact section.ctaplan_box {
    background: #fff;
    width: 100%;
    height: auto;
    margin: 20px auto 0px;
    padding: 0px 10px 20px 10px;
    clear: both;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .cta_contact .copy_txt {
    font-size: 5.3vw;
    text-align: center;
    font-weight: bold;
    /*font-family: "Zen Maru Gothic", serif;	*/
  }
  .cta_contact .sp_num_top {
    width: 100%;
    height: auto;
    min-height: 70px;
    border-radius: 5px;
    background: #d34376;
    color: #fff;
    float: none;
    padding: 10px;
    clear: both;
    box-shadow: 0 8px #892c4d;
    margin-bottom: 20px;
    z-index: 10;
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .cta_contact .ctaplan_box dl {
    position: relative;
  }
  .cta_contact .sp_num_top dl dt {
    float: left;
    width: 18%;
  }
  .cta_contact dl dd.tel_txt {
    font-size: 7vw;
    line-height: 35px;
    font-weight: bold;
    margin-left: 22%;
    letter-spacing: 2px;
  }
  .cta_contact dl dd.sub_txt {
    font-size: 14px;
    color: #fbd735;
    font-weight: bold;
    letter-spacing: 2px;
    margin-left: 22%;
  }
  .cta_contact dl dd.maru_icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
  }
  .cta_contact dl dd.maru_icon img {
    width: 90%;
  }
  p.tel_cap {
    font-size: 4.3vw;
    text-align: left;
  }
}
/*step1*/
.area-group {
  font-size: 18px;
  margin-bottom: 1.5em;
  display: flex;
  flex-wrap: wrap;
  gap: 2em 3em;
}
.area-block {
  min-width: 200px;
  margin-bottom: 1em;
  /* 横並びのために幅を調整します */
  flex: 1 1 0;
  max-width: 300px;
}
@media (min-width: 769px) {
  .area-group {
    margin-bottom: 0;
  }
}
.area-block-title {
  font-weight: bold;
  color: #226688;
  margin-bottom: 0.3em;
  font-size: 1em;
}
.area-block label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: normal;
  color: #223355;
  font-size: 1em;
}
/* Step1の色彩ベース（#ef859b）に統一 */
.area-block-title {
  font-weight: bold;
  color: #ef859b; /* ←ここを変更 */
  margin-bottom: 0.3em;
  font-size: 1em;
  border-left: 4px solid #ef859b;
  padding-left: 0.5em;
}
@media (max-width: 769px) {
  .area-block-title {
    font-size: 4.8vw;
  }
}
/* チェックボックス周りをピンク基調に */
.area-block label {
  display: inline-flex; /* block→inline-flexでクリック範囲を文字内だけに */
  align-items: center;
  margin-bottom: 0.5em;
  font-weight: normal;
  color: #223355;
  font-size: 1em;
  cursor: pointer;
  /* paddingやwidth不要 */
  margin-right: 10px;
}
/* チェックボックス自体のデザインをピンクに */
.area-block input[type="checkbox"] {
  accent-color: #ef859b; /* モダンブラウザならこれだけでOK */
  margin-right: 0.6em;
  box-shadow: 2px 2px 7px 1px rgba(0, 0, 0, 0.1);
  border-radius: 20%;
  border: 1px solid #bcbbbc;
  height: 18px;
  width: 18px;
  opacity: 0.8;
}
/* チェックボックスのアクセントが効かない場合のためのフォールバック */
/*.area-block input[type="checkbox"]:focus + span,
.area-block input[type="checkbox"]:checked + span {
  outline: 2px solid #ef859b;
}*/
/* チェックボックスのラベルテキストのみに色をつけたい場合 */
.area-block label span {
  color: #ef859b;
}
/* スマホ時も同じく */
@media (max-width: 769px) {
  .area-block {
    margin-bottom: 0;
  }
  .area-block-title {
    color: #ef859b;
    border-left: 4px solid #ef859b;
    padding-left: 0.5em;
  }
  .area-block label {
    font-size: 4.8vw;
  }
}
/* スマホ時は縦並びでOK */
@media (max-width: 769px) {
  .area-group {
    flex-direction: column;
    gap: 1.2em 0;
  }
  .area-block {
    min-width: 0;
    max-width: 100%;
  }
}
/* カスタムチェックボックス：ピンクチェックマーク */
.custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1em;
  margin-right: 10px;
  margin-bottom: 0.5em;
}
.custom-checkbox input[type="checkbox"] {
  display: none;
}
.custom-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid #cccccc;
  background: #fff;
  margin-right: 0.6em;
  position: relative;
  box-shadow: 2px 2px 7px 1px rgba(0, 0, 0, 0.1);
  display: inline-block;
}
.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 12px;
  border: solid #ef859b;
  border-width: 0 4px 4px 0;
  border-radius: 1px;
  transform: rotate(45deg);
}
/*step2*/
.radio-group-date {
  display: flex;
  gap: 2em;
  margin-top: 1em;
  margin-bottom: 1.5em;
}
.custom-radio {
  display: flex;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  padding-left: 2em;
  margin-right: 1.2em;
  user-select: none;
}
.custom-radio input[type="radio"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.4em;
  height: 1.4em;
  margin: 0;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.radio-mark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4em;
  height: 1.4em;
  border: 2px solid #cccccc;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s;
  z-index: 1;
}
.custom-radio input[type="radio"]:checked + .radio-mark {
  border-color: #ef859b;
  background: #fff;
}
.custom-radio input[type="radio"]:checked + .radio-mark::after {
  content: "";
  display: block;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background: #ef859b;
  position: absolute;
  top: 0.25em;
  left: 0.25em;
}
@media (min-width: 769px) {
  .radio-group-date {
    margin-bottom: 0;
  }
}
@media (max-width: 769px) {
  .radio-group-date {
    flex-direction: column;
    gap: 1em;
  }
  .custom-radio {
    font-size: 4.8vw;
    padding-left: 2.2em;
  }
  label.custom-radio {
    margin-bottom: 0;
  }
}
/* --- ステップインジケーター --- */
.form-step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 36px auto;
  padding: 0 0 16px 0;
  max-width: 420px;
  font-size: 1.1em;
  background: none;
  user-select: none;
}
.form-step-indicator__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.form-step-indicator__circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #ef859b;
  color: #ef859b;
  font-weight: bold;
  font-size: 1.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border 0.2s, color 0.2s;
  z-index: 2;
}
.form-step-indicator__item.is-active .form-step-indicator__circle {
  background: #ef859b;
  color: #fff;
  border-color: #ef859b;
  box-shadow: 0 0 0 4px #fbe5eb;
}
.form-step-indicator__item.is-complete .form-step-indicator__circle {
  background: #fff;
  color: #d34376;
  border-color: #d34376;
  border-style: solid;
  box-shadow: 0 0 0 3px #fbe5eb;
}
.form-step-indicator__label {
  margin-top: 6px;
  font-size: 0.92em;
  color: #223355;
  text-align: center;
  letter-spacing: 0.03em;
}
.form-step-indicator__item.is-active .form-step-indicator__label {
  color: #ef859b;
  font-weight: bold;
}
.form-step-indicator__item.is-complete .form-step-indicator__label {
  color: #d34376;
}
.form-step-indicator__bar {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 4px;
  background: #ef859b;
  z-index: 1;
  border-radius: 2px;
  opacity: 0.25;
  transition: background 0.2s, opacity 0.2s;
  margin-left: 0;
  transform: translateX(0);
}
.form-step-indicator__item.is-complete .form-step-indicator__bar {
  background: #d34376;
  opacity: 0.5;
}
.form-step-indicator__item:last-child .form-step-indicator__bar {
  display: none;
}
.form-step-indicator__item.is-complete {
  cursor: pointer;
  pointer-events: auto;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.form-step-indicator__item.is-complete:hover .form-step-indicator__circle, .form-step-indicator__item.is-complete:focus .form-step-indicator__circle {
  background: #fbe5eb;
}
.form-step-indicator__item:not(.is-complete) {
  cursor: default;
  pointer-events: none;
}
/* スマホ対応 */
@media (max-width: 769px) {
  .form-step-indicator {
    max-width: 98vw;
    font-size: 3.6vw;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .form-step-indicator__circle {
    width: 27px;
    height: 27px;
    font-size: 1em;
  }
  .form-step-indicator__label {
    font-size: 3vw;
    margin-top: 3px;
  }
}
/*エラーメッセージ*/
/*--- 入力欄＋エラーラッパー ---*/
.form-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 1.5em;
  position: relative;
}
/* 入力欄本体 */
.form-row input[type="text"], .form-row input[type="email"], .form-row input[type="tel"], .form-row textarea, .form-row select {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
/*--- エラーメッセージ（下に表示、吹き出し矢印なし）---*/
.form-error {
  background: #fff6f8;
  color: #d34376;
  border: 2px solid #efb6c6;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(239, 133, 155, 0.10);
  margin: 8px 0 0 0;
  font-size: 1em;
  padding: 0.5em 0em 0.5em 1.0em;
  min-width: 0;
  width: 100%;
  position: relative;
  z-index: 2;
  animation: fadeInError 0.2s;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 18px;
  font-weight: bold;
}
.form-error::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 12px solid #efb6c6; /* 枠線色 */
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  left: 16px;
  top: -8px;
}
/* アイコン */
.form-error::before {
  content: "⚠️";
  margin-right: 0.9em;
  font-size: 1.2em;
  position: static;
}
/* 吹き出し矢印は表示しない（またはここに線をつけたい場合は下記を調整） */
.form-error::after {
  display: none;
}
@media (max-width: 769px) {
  .form-error {
    font-size: 4.8vw;
  }
}
/*--- エラーアニメーション ---*/
@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--- 入力欄エラー（赤枠）---*/
input[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: #d34376;
  background: #fff6f8;
}
/*cta用*/
@media (min-width: 769px) {
  section.cta_common_box, section.cta_common_box .apply, section.cta_common_box .sp_num_top {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  #wrapper section.cta_common_box {
    margin-bottom: 60px !important;
  }
  section.cta_common_box .inner {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    justify-content: space-between;
    /* align-items: center; */
    -webkit-box-pack: center;
  }
  section.cta_common_box .inner .cap {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 769px) {
  #wrapper section.cta_common_box {
    margin-bottom: 40px !important;
  }
  section.cta_common_box .sp_num_top {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
.sp_btn .copy_txt.sp_view:first-child,section.cta_common_box .sp_apply{display: none;}
}
/*サンクス*/
@media (min-width: 769px) {
    #wrapper .thanks-message section.cta_common_box {
    width: 100%;
    margin-bottom: 40px !important;
  }
  .thanks-message section.cta_common_box .inner {
    width: 100% !important;
  }
  .thanks-message section.cta_common_box .apply, .thanks-message section.cta_common_box .sp_num_top {
    width: 415px;
  }
/*電話バナー*/
.thanks-message .tel_pc_flex {
  display: flex;
  display: -webkit-flex; /* safari */
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  -webkit-box-pack: center;
  margin: 30px 0;
  background: #efeff1;
  padding: 10px;
  border-radius: 5px;
}
.thanks-message p.tel_pc_intro {
  font-size: 16px;
  width: 48%;
  line-height: 1.4;
}
.thanks-message p.tel_pc_intro span {
  font-size: 24px;
  color: #d34376;
  font-weight: bold;
  letter-spacing: 1px;
}
.thanks-message p.tel_mark {
  font-size: 25px;
  color: #d34376;
  width: 4%;
}
  .thanks-message  .pc_num {
        border: 2px solid #d34376;
        width: 357px;
        height: 50px;
        border-radius: 5px;
        background: #fff;
        float: left;
        padding-left: 10px;
        padding-top: 10px;
}
  .thanks-message  .pc_num img {
  vertical-align: middle !important;
}
  .thanks-message  .pc_num span {
  font-size: 30px;
  font-weight: bold;
  border-radius: 5px;
  margin-left: 20px;
  vertical-align: middle !important;
}	
}
@media (max-width: 769px) {
  #wrapper .thanks-message section.cta_common_box {
    width: 100%;
    margin-bottom: 20px !important;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .thanks-message section.cta_common_box .sp_apply dl dt {
    float: left;
    width: 12%;
  }
  .thanks-message section.cta_common_box .sp_apply {
    min-height: 62px;
  }
  .thanks-message section.cta_common_box dl dd.main_txt.first, .thanks-message section.cta_common_box dl dd.sub_txt {
    font-size: 3.5vw;
  }
  .thanks-message section.cta_common_box dl dd.sub_txt.first, .thanks-message section.cta_common_box dl dd.tel_txt {
    font-size: 4vw;
  }
  .thanks-message section.cta_common_box dl dd.main_txt, .thanks-message section.cta_common_box dl dd.tel_txt {
    line-height: 32px;
  }
  .thanks-message section.cta_common_box .sp_apply, .thanks-message section.cta_common_box .sp_num_top {
    height: auto;
    min-height: 62px;
  }
  .thanks-message section.cta_common_box .sp_num_top dt.tel img {
    margin-top: 5%;
  }
  .thanks-message section.cta_common_box .sp_num_top {
    padding-bottom: 5px;
  }
  .thanks-message section.cta_common_box .sp_num_top dl dd.maru_icon {
    margin-top: -5px;
  }
}