@charset "UTF-8";

html,
body,
h1,
h2,
h3,
p,
a,
span,
ul,
li {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}

html {
  font-size: 62.5%;
}

address {
  font-style: normal;
  /* イタリック体を解除 */
  margin: 0;
  /* デフォルトの余白をリセット */
  padding: 0;
  /* デフォルトのパディングをリセット */
  text-decoration: none;
  /* 下線などのテキスト装飾を解除 */
  line-height: normal;
  /* 通常の行間に戻す */
}

.pc-only {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/* ----------------------------------------------------------- */


/* 共通スタイル */

.body_wrapper {
  width: 100%;
}

.container-base {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.container-small {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.btn_wrap {
  border-radius: 12px;
  background: rgba(238, 132, 5, 1);
  position: relative;
  width: 300px;
  height: auto;
  padding: 21px 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 0px rgba(215, 119, 5, 1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn_wrap:hover {
  box-shadow: 0px 0px 0px rgba(238, 132, 5, 0);
  transform: translateY(5px);
}

.btn_wrap_text {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
}

@media screen and (max-width: 920px) {
  .btn_wrap {
    border-radius: 12px;
    width: 320px;
    padding: 21px 5px;
    height: 70px;
  }
}


.asterisk1 {
  position: relative;
  font-size: 14px;
  padding-left: 15px;
}

.asterisk1::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 3px;
  color: inherit;
  font-size: 14px;
  line-height: 1;
}

@media screen and (max-width: 600px) {
  .asterisk1 {
    font-size: 11px;
  }

  .asterisk1::before {
    font-size: 12px;
  }
}

.asterisk2 {
  position: relative;
  font-size: 14px;
  padding-left: 15px;
}

.asterisk2::before {
  content: "＊";
  position: absolute;
  left: 0;
  top: 3px;
  color: inherit;
  font-size: 14px;
  line-height: 1;
}

.br768 {
  display: none;
}

@media screen and (max-width: 768px) {
  .br768 {
    display: block;
  }
}

.br600 {
  display: none;
}

@media screen and (max-width: 600px) {
  .br600 {
    display: block;
  }
}

.br500 {
  display: none;
}

@media screen and (max-width: 500px) {
  .br500 {
    display: block;
  }
}

.container-small {
  max-width: 974px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.form_title {
  font-size: 34px;
  font-weight: 700;
  color: rgba(62, 62, 62, 1);
  text-align: center;
  margin-bottom: 76px;
}


.submit_button {
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #C7C8C8;
  border: none;
  border-radius: 30px;
  cursor: not-allowed;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  transition: background-color 0.3s;
  width: 348px;
}

.submit_button.enabled {
  background-color: #007bff;
  cursor: pointer;
}

.consent_label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.consent_label input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #C7C8C8;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.consent_label input[type="checkbox"]:checked {
  border-color: #FF9D00;
  background-color: #FF9D00;
}

.consent_label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 7px;
  width: 7px;
  height: 12px;
  border-width: 0 3px 3px 0;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}



table {
  width: 100%;
  border-collapse: collapse;
}

td {
  padding: 28px 0;
  vertical-align: middle;
  border-bottom: 1px solid #C7C8C8;
}


.padding-top_none {
  padding-top: 0;
}

.padding-bottom_none {
  padding-bottom: 0;
}


tr td:first-child {
  width: 32.35%;
}

tr td:last-child {
  padding-left: 18px;
}

label {
  font-size: 16px;
  color: #636363;
}

.label-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label-flex_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
}

.label-flex_bottom a {
  text-decoration: underline;
  font-size: 16px;
  color: #636363;
}

.required-label {
  padding: 2px 6px;
  background-color: #FF9D00;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 600;
  flex-shrink: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: #aaa;
}

input::placeholder,
textarea::placeholder {
  font-size: 16px;
  color: #B8B8B8;
}

textarea {
  height: 100px;
}

td input[type="text"] {
  width: 48%;
}

td input[type="text"]:last-child {
  margin-right: 0;
}

td .hyphen {
  margin: 0 8px;
}

td input[type="tel"],
td input[type="text"] {
  width: 25%;
}

.preferred_date_group {
  display: flex;
  flex-direction: column;
}

.preferred_date_item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.preferred_date_item:last-child {
  margin-bottom: 0;
}

.preferred_label {
  white-space: nowrap;
  width: 16%;
  font-size: 16px;
}

.preferred_date_item_flex {
  display: flex;
  gap: 10px;
}

.date-input,
.time_select {
  width: 209px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

select {
  appearance: none;
  padding-right: 40px;
  background-image: url('../../assets/img/home/form_arrow.svg');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.border_none {
  border-bottom: none;
}

.hyphen {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.preferred_date_item_flex {
  gap: 5px;
  width: 100%;
}

#last_name {
  width: 36.1%;
  margin-right: 13px;
}

#first_name {
  width: 36.1%;
}

#furigana_last {
  width: 36.1%;
  margin-right: 13px;
}

#furigana_first {
  width: 36.1%;
}

#email {
  width: 84.7%;
}

#email_confirm {
  width: 84.7%;
}

#prefecture {
  width: 48.41%;
}

#postal_code1 {
  width: 21.1%;
}

#postal_code2 {
  width: 21.1%;
}

#station {
  width: 84.7%;
}

#phone1 {
  width: 20.99%;
}

#phone2 {
  width: 20.99%;
}

#phone3 {
  width: 20.99%;
}

#contact_time {
  width: 48.36%;
}

#request {
  width: 84.78%;
}

#preferred_date1,
#preferred_date2,
#preferred_date3 {
  margin-right: 10px;
  width: 50%;
}

@media (max-width: 920px) {

  #preferred_date1,
  #preferred_date2,
  #preferred_date3 {
    padding-right: 30px !important;
    box-sizing: border-box;
    width: 100%;
  }
}

.vertical-align-top {
  vertical-align: top;
}

.additional_text {
  font-size: 14px;
  color: #636363;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .contact_form {
    padding: 22px 0 0 0;
    margin-bottom: 0;
  }

  tr {
    display: block;
  }

  tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  tr td:last-child {
    padding-left: 0;
    padding-right: 0;
  }

  td {
    border-bottom: none;
    padding: 0;
    padding-bottom: 11px;
  }

  td:last-child {
    padding-bottom: 24px;
  }

  .label-flex {
    justify-content: left;
    gap: 8px;
  }

  tr td:first-child {
    width: 100%;
  }

  .submit_button {
    width: 208px;
    margin-top: 22px;
  }

  .label-flex_bottom {
    gap: 18px;
  }

  select {
    appearance: none;
    padding-right: 40px;
    background-image: url('../../assets/img/home/form_arrow_sp.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
}

.submit_button {
  padding: 21px 30px 19px 30px;
  font-size: 16px;
  color: #fff;
  background-color: #C7C8C8;
  border: none;
  border-radius: 30px;
  cursor: not-allowed;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  transition: background-color 0.3s;
}

.thanks_page .form_body {
  background-color: #FFEFE0;
  padding-block: 77px;
}

@media (max-width: 768px) {
  .thanks_page .form_body {
    padding-block: 45px;
  }
}

@media (max-width: 768px) {
  .form_body {
    padding-top: 21px;
  }

  .form_title {
    font-size: 18px;
  }

  .contact_form {
    margin-top: 22px;
  }
}

@media (max-width: 600px) {
  label {
    font-size: 15px;
  }

  .header_wrapper {
    justify-content: center;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
  }

  .preferred_label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .preferred_date_item {
    flex-direction: column;
    gap: 5px;
    align-items: start;
    margin-bottom: 17px;
  }

  .date-input,
  .time_select {
    width: 49%;
  }

  #last_name {
    width: 49%;
  }

  #first_name {
    width: 49%;
  }

  #furigana_last {
    width: 49%;
  }

  #furigana_first {
    width: 49%;
  }

  #email {
    width: 100%;
  }

  #email_confirm {
    width: 100%;
  }

  #prefecture {
    width: 100%;
  }

  #postal_code1 {
    width: 29%;
  }

  #postal_code2 {
    width: 29%;
  }

  #station {
    width: 100%;
  }

  #phone1 {
    width: 28%;
  }

  #phone2 {
    width: 28%;
  }

  #phone3 {
    width: 28%;
  }

  #contact_time {
    width: 76%;
  }

  #request {
    width: 100%;
    height: 136px;
  }

}


@media (max-width: 600px) {
  .form_body {
    background-color: #FFFBE9;
    padding: 21px 0 23px 0;
  }

  tr td {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }



  .border_none {
    display: flex;
    flex-direction: column;
  }

  .required-label {
    padding: 1px 6px;
    background-color: #FF9D00;
    color: #fff;
    font-size: 10px;
    border-radius: 4px;
    font-weight: 600;
    flex-shrink: 0;
  }

  .additional_text {
    font-size: 14px;
    color: #636363;
    margin-top: 7px;
    margin-bottom: 12px;
  }

  .form_header {
    padding: 19px 36px 14px 36px;
  }

  .submit_button {
    margin-top: 22px;
  }

  .label-flex_bottom a {
    font-size: 14px;
  }

  .preferred_date_item_flex {}

  td:last-child {
    padding-bottom: 24px;
  }

  .padding-bottom_none {
    padding-bottom: 0 !important;
  }
}

.caution {
  display: block;
  font-weight: 400;
}

/* ---------------------------------------------------------------------- */
/* 無料初診相談予約サービス */

.counseling_section {
  padding-top: 79px;
}

@media (max-width: 600px) {
  .counseling_section {
    padding-top: 59px;
  }
}

.counseling_section_logo {
  display: flex;
  justify-content: center;
  margin-bottom: 49px;

}

.counseling_section_logo img {
  width: 245px;
}

@media (max-width: 920px) {
  .counseling_section_logo {
    margin-bottom: 15px;
  }

  .counseling_section_logo img {
    width: 118px;
  }
}

.counseling_section_top {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .counseling_section_top {
    margin-bottom: 26px;
  }
}

.counseling_section_bottom {
  text-align: center;
  margin-bottom: 85px;
}

@media (max-width: 600px) {
  .counseling_section_bottom {
    margin-bottom: 43px;
  }
}

.counseling_section_top_text {
  font-size: 28px;
  font-weight: 600;
  color: rgba(62, 62, 62, 1);
}

@media (max-width: 920px) {
  .counseling_section_top_text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .counseling_section_top_text {
    font-size: 14px;
  }
}

.green {
  font-size: 34px;
  color: rgba(87, 174, 29, 1);
}

@media (max-width: 920px) {
  .green {
    font-size: 26px;
    line-height: 2;
  }
}

@media (max-width: 768px) {
  .green {
    font-size: 20px;
  }
}

.large {
  font-size: 34px;
}

@media (max-width: 920px) {
  .large {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .large {
    font-size: 20px;
  }
}

.counseling_section_top {
  text-align: center;
}

.counseling_section_bottom_text {
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
}

@media (max-width: 920px) {
  .counseling_section_bottom_text {
    font-size: 16px;
    white-space: nowrap;
  }
}

















.counseling_section_free {
  text-align: center;
  background-color: rgba(239, 247, 233, 1);
  border-radius: 10px;
  width: 50.07%;
  margin: 0 auto;
  padding: 14px;
  margin-bottom: 110px;
}

@media screen and (max-width: 920px) {
  .counseling_section_free {
    width: 100%;
    margin-bottom: 74px;
  }
}

.counseling_section_free_text {
  font-size: 18px;
  font-weight: 700;
  color: rgba(62, 62, 62, 1);
}

@media screen and (max-width: 920px) {
  .counseling_section_free_text {
    font-size: 16px;
  }
}

.pink {
  font-size: 22px;
  color: rgba(255, 104, 107, 1);
}

@media screen and (max-width: 920px) {
  .pink {
    font-size: 20px;
    margin: 0 0 0 5px;
  }
}

.counseling_section_peace {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFEBED;
  border-radius: 120px;
  margin: 0 auto;
  width: 80.96%;
  padding: 20px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .counseling_section_peace {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 120px;
    width: 80.96%;
    padding: 47px 20px 34px 20px;
    margin-bottom: 40px;
    position: relative;
  }
}

@media screen and (max-width: 1320px) {
  .counseling_section_peace {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 120px;
    width: 82%;
    padding: 47px 20px 34px 20px;
    margin-bottom: 40px;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .counseling_section_peace {
    width: 100%;
  }
}

.counseling_section_peace_img {
  margin-right: 60px;
}

@media screen and (max-width: 1320px) {
  .counseling_section_peace_img {
    margin-right: 0;
    position: absolute;
    top: -75px;
  }
}

@media screen and (max-width: 768px) {
  .counseling_section_peace_img {
    margin-right: 0;
    position: absolute;
    top: -35px;
  }
}

.counseling_section_peace_title {
  font-size: 34px;
  font-weight: 700;
  color: rgba(255, 104, 107, 1);
  margin-right: 58px;
}

@media screen and (max-width: 1320px) {
  .counseling_section_peace_title {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 104, 107, 1);
    margin-right: 0;
    margin-bottom: 6px;
  }
}

@media (max-width: 768px) and (max-width: 1024px) {
  .counseling_section_peace_title {
    font-size: 20px;
  }
}

.counseling_section_peace_text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(62, 62, 62, 1);
}

@media screen and (max-width: 768px) {
  .counseling_section_peace_text {
    font-size: 14px;
    text-align: center;
  }
}

.counseling_section .btn_wrap,
.counseling_flow_section .btn_wrap,
.faq_section .btn_wrap {
  width: 380px;
  height: auto;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 80px;
}

@media screen and (max-width: 600px) {

  .counseling_section .btn_wrap,
  .counseling_flow_section .btn_wrap,
  .faq_section .btn_wrap {
    width: 320px;
    padding: 22px;
    margin-bottom: 40px;
  }
}

/* ------------------------------------------------------------------------------- */
/* difference_section */

.difference_section {
  background-color: rgba(239, 247, 233, 1);
  padding: 80px 0;
}

@media screen and (max-width: 920px) {
  .difference_section {
    padding: 40px 0;
  }
}

.difference_wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 920px) {
  .difference_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.difference_img img {
  border-radius: 34px;
  width: 100%;
  height: auto;
}

.difference_img_wrap {
  width: 50%;
}

@media screen and (max-width: 1300px) {
  .difference_img_wrap {
    width: 40%;
  }
}

@media (max-width: 920px) and (max-width: 600px) {
  .difference_img_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 33px;
  }
}

@media screen and (max-width: 920px) {
  .difference_img_wrap {
    width: 82%;
    display: flex;
    justify-content: center;
    margin-bottom: 33px;
  }
}

@media screen and (max-width: 600px) {
  .difference_img_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 33px;
  }
}

.difference_text_wrap {
  width: 43.82%;
}

@media screen and (max-width: 1300px) {
  .difference_text_wrap {
    width: 53.82%;
  }
}

@media screen and (max-width: 920px) {
  .difference_text_wrap {
    width: 82%;
  }
}

@media screen and (max-width: 768px) {
  .difference_text_wrap {
    width: 100%;
  }
}

.difference_title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 21px;
  letter-spacing: 2px;
}

@media screen and (max-width: 920px) {
  .difference_title {
    text-align: center;
  }
}

@media screen and (max-width: 920px) {
  .difference_title {
    font-size: 20px;
    margin-bottom: 24px;
    text-align: center;
  }
}

.difference_title .green {
  color: rgba(87, 174, 29, 1);
}

.difference_text {
  font-size: 16px;
  color: rgba(62, 62, 62, 1);
  margin-bottom: 33px;
  line-height: 1.8;
}

@media screen and (max-width: 600px) {
  .difference_text {
    text-align: center;
  }
}


.difference_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}

@media screen and (max-width: 600px) {
  .difference_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.difference_container_item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  padding: 10px 20px;
}

.difference_container_item_circle {
  background-color: rgba(238, 132, 5, 1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  flex-shrink: 0;
}

.difference_container_item_circle img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .difference_container_item_circle {
    margin-right: 18px;
  }
}

.difference_point {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
}

.difference_container_item_text {
  font-size: 16px;
  font-weight: 600;
  color: rgba(62, 62, 62, 1);
}

.difference_container_item_img {
  margin-left: auto;
}

/* ---------------------------------------------------------------------------------- */

/* 無料初診相談の流れ */

.counseling_flow_section {
  padding-top: 107px;
}

@media screen and (max-width: 920px) {
  .counseling_flow_section {
    padding-top: 53px;
    padding-bottom: 10px;
  }
}


.counseling_flow_text {
  font-size: 18px;
  text-align: center;
  color: rgba(62, 62, 62, 1);
  margin-bottom: 105px;
}

@media screen and (max-width: 920px) {
  .counseling_flow_text {
    margin-bottom: 40px;
    padding: 0 20px;
    font-size: 16px;
  }
}

.counseling_flow_container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  max-width: 1648px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  margin-bottom: 80px;
}

@media screen and (max-width: 1200px) {
  .counseling_flow_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    row-gap: 55px;
  }
}

@media (max-width: 920px) {
  .counseling_flow_container {
    display: none;
  }

  .counseling_flow_swiper {
    display: block;
  }
}

.counseling_flow_container_item {
  background-color: rgba(255, 235, 181, 1);
  border-radius: 20px;
  width: calc(25% - 30px);
  position: relative;
}

@media screen and (max-width: 1200px) {
  .counseling_flow_container_item {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 920px) {
  .counseling_flow_container_item {
    margin-bottom: 0px;
    height: max-content;
  }
}

.counseling_flow_container_item .btn_wrap {
  font-size: 18px;
  padding: 22px;
  width: 100%;
  margin: 12px 0 0 0;
}

@media screen and (max-width: 920px) {
  .counseling_flow_container_item .btn_wrap {
    margin: 20px 0 0 0;
  }
}


.counseling_flow_container_item_num {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -38px;
}

.counseling_flow_container_item_top {
  font-size: 24px;
  font-weight: 700;
  color: rgba(62, 62, 62, 1);
  padding: 52px 0 27px 0;
  text-align: center;
  justify-content: center;
}

@media screen and (max-width: 1550px) {
  .counseling_flow_container_item_top {
    font-size: 20px;
  }
}

@media (min-width: 1200px) and (max-width: 1550px) {
  .counseling_flow_container_item_top {
    font-size: 18px;
  }
}

@media screen and (max-width: 1200px) {
  .counseling_flow_container_item_top {
    font-size: 24px;
  }
}

@media screen and (max-width: 600px) {
  .counseling_flow_container_item_top {
    font-size: 22px;
    white-space: nowrap;
  }
}

.counseling_flow_container_item_img {
  width: 100%;
  min-height: 120px;
}

.counseling_flow_container_item_img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1200px) {
  .counseling_flow_container_item_img img {
    width: 100%;
    height: auto;
  }
}

.counseling_flow_container_item_bottom {
  font-size: 16px;
  color: rgba(62, 62, 62, 1);
  padding: 30px 20px;
  line-height: 1.8;
}

.counseling_flow_container_item_bottom .green_txt {
  color: #45B035;
}

@media screen and (max-width: 920px) {
  .counseling_flow_container_item_bottom {
    /* height: 23vw; */
    height: auto;
  }
}

@media screen and (max-width: 850px) {
  .counseling_flow_container_item_bottom {
    /* height: 27vw; */
    height: auto;
  }
}

@media screen and (max-width: 800px) {
  .counseling_flow_container_item_bottom {
    /* height: 30vw; */
    height: auto;
  }
}

@media screen and (max-width: 750px) {
  .counseling_flow_container_item_bottom {
    /* height: 34vw; */
    height: auto;
  }
}

@media screen and (max-width: 700px) {
  .counseling_flow_container_item_bottom {
    /* height: 38vw; */
    height: auto;
  }
}

@media screen and (max-width: 630px) {
  .counseling_flow_container_item_bottom {
    /* height: 43vw; */
    height: auto;
  }
}

@media screen and (max-width: 560px) {
  .counseling_flow_container_item_bottom {
    /* height: 48vw; */
    height: auto;
  }
}

@media screen and (max-width: 510px) {
  .counseling_flow_container_item_bottom {
    /* height: 53vw; */
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .counseling_flow_container_item_bottom {
    /* height: 60vw; */
    height: auto;
  }
}

@media screen and (max-width: 450px) {
  .counseling_flow_container_item_bottom {
    /* height: 72vw; */
    height: auto;
  }
}

@media screen and (max-width: 430px) {
  .counseling_flow_container_item_bottom {
    /* height: max-content; */
    height: auto;
  }
}



.swiper {
  width: 100%;
  height: auto;
}

/* .swiper-slide {
  display: flex;
  justify-content: center;
  margin-right: 20px !important;
} */

.swiper-container {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.swiper-slide {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.counseling_flow_swiper {
  display: none !important;
}

@media screen and (max-width: 920px) {
  .counseling_flow_swiper {
    display: block !important;
    padding: 0 20px !important;
    box-sizing: border-box;
  }

  .swiper-pagination {
    margin: 0 0 40px 0;
    position: static !important;
  }

  .counseling_flow_container {
    display: none;
  }

  .swiper-pagination-total {
    font-size: 18px !important;
  }

  .swiper-pagination-current {
    font-size: 18px !important;
  }

  .swiper-pagination-fraction {
    font-size: 18px !important;
  }

  .swiper-pagination-current,
  .swiper-pagination-total {
    font-size: inherit;
  }
}



.swiper-button-prev::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background-image: url('../../assets/img/home/prev.svg');
  background-size: cover;
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

.swiper-button-next::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background-image: url('../../assets/img/home/next.svg');
  background-size: cover;
  position: absolute;
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
}

/* ----------------------------------------------------------------------- */
/* faq_section */

.faq-container {
  max-width: 934px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.faq_section_body {
  padding-bottom: 15px;
}

@media screen and (max-width: 600px) {
  .faq_section_body {
    padding-bottom: 21px;
  }
}

.faq_section_body_text {
  font-size: 38px;
  font-weight: 900;
  color: #0B94E0;
  text-align: center;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .faq_section_body_text {
    font-size: 32px;
  }
}

@media screen and (max-width: 600px) {
  .faq_section_body_text {
    font-size: 20px;
  }
}

.faq_section_body_text_blue {
  font-size: 70px;
  font-family: "Secular One", sans-serif;
}

@media screen and (max-width: 768px) {
  .faq_section_body_text_blue {
    font-size: 62px;
  }
}

@media screen and (max-width: 600px) {
  .faq_section_body_text_blue {
    font-size: 39px;
  }
}

.faq_section_body_text_gray {
  font-size: 47px;
  color: #636363;
  font-family: "Secular One", sans-serif;
}

@media screen and (max-width: 768px) {
  .faq_section_body_text_gray {
    font-size: 38px;
  }
}

@media screen and (max-width: 600px) {
  .faq_section_body_text_gray {
    font-size: 26px;
  }
}

.faq_section_body_text_orange {
  font-size: 70px;
  color: #FF9D00;
  font-family: "Secular One", sans-serif;
}

@media screen and (max-width: 768px) {
  .faq_section_body_text_orange {
    font-size: 62px;
  }
}

@media screen and (max-width: 600px) {
  .faq_section_body_text_orange {
    font-size: 39px;
  }
}

.accordion {
  width: 100%;
  margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
  .accordion {
    margin-bottom: 40px;
  }
}


.accordion-item {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .accordion-item {
    margin-bottom: 20px;
  }
}

.accordion-item:last-child {
  margin-bottom: 0px;
}

.faq_arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  margin-left: auto;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 600px) {
  .faq_arrow {
    right: 20px;
  }
}

.accordion-item.active .faq_arrow {
  transform: translateY(-50%) rotate(0deg);
}

@media screen and (max-width: 600px) {
  .faq_arrow {
    right: 20px;
  }
}

/*
.accordion-item.active .faq_arrow {
  transform: translateY(-50%) rotate(180deg);
} */

.accordion-header {
  width: 100%;
  padding: 10px 65px 10px 10px;
  background-color: rgba(87, 174, 29, 1);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 600px) {
  .accordion-header {
    padding: 14px 14px 12px 12px;
    border-radius: 8px;
  }
}

.accordion-header_text {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

@media screen and (max-width: 920px) {
  .accordion-header_text {
    font-size: 16px;
  }
}

.accordion-header_circle {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}

@media screen and (max-width: 820px) {
  .accordion-header_circle {
    width: 36px;
    height: 36px;
  }
}

@media screen and (max-width: 600px) {
  .accordion-header_circle {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
}

.orange_circle {
  background-color: #FF9D00;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff;
}

.accordion-content_line img {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0 46px 0 40px;
}

@media screen and (max-width: 600px) {
  .accordion-content_line img {
    padding: 0 14px 0 12px;
  }
}

.accordion-content_inr {
  display: flex;
  align-items: flex-start;
  padding: 35px 40px 35px 40px;
  background-color: rgba(239, 247, 233, 1);
}

@media screen and (max-width: 600px) {
  .accordion-content_inr {
    padding: 14px 14px 14px 12px;
  }

}

.accordion-content_inr_text {
  font-size: 18px;
  color: #3E3E3E;
}

@media screen and (max-width: 820px) {
  .accordion-content_inr_text {
    font-size: 16px;
  }
}


.accordion-item.active .accordion-header {
  border-radius: 8px 8px 0 0;
}

@media screen and (max-width: 820px) {
  .accordion-item.active .accordion-header {
    border-radius: 8px 8px 0 0;
  }
}

/* ---------------------------------------------------------------------------- */
/* フッター */

.copyright {
  text-align: center;
  font-size: 14px;
  color: rgba(62, 62, 62, 1);
  padding-top: 29px;
  padding-bottom: 29px;
  border-top: 4px solid rgba(239, 247, 233, 1);
}

@media screen and (max-width: 820px) {
  .copyright {
    font-size: 12px;
  }
}












/* ヘッダー */
.header {
  padding-top: 34px;
  padding-bottom: 40px;
  z-index: 999;
  position: relative;
}

@media (max-width: 768px) {
  .header {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}


.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header_body {
  display: flex;
  align-items: center;
  gap: 35px;
}

@media (max-width: 768px) {
  .header_body {
    display: flex;
    align-items: center;
    gap: 35px;
  }
}

.header_body .btn_wrap {
  display: block;
}

@media (max-width: 768px) {
  .header_body .btn_wrap {
    display: none;
  }
}

.site_header_logo {
  width: 240px;
}

.site_header_logo a img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .site_header_logo {
    width: 110px;
  }
}

.header_btn_wrap>* {
  position: relative;
  z-index: 2;
}

.header_btn_wrap_free {
  position: absolute;
  left: -39px;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  z-index: 3;
}

@media screen and (max-width: 920px) {
  .flow03 {
    margin-right: 20px;
  }
}

/* ------------------------------------------------------------------------------------ */
/* フォーム */
.form_section {
  background-color: rgba(255, 239, 224, 1);
}

.container-small {
  max-width: 974px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.form_title {
  font-size: 34px;
  font-weight: 700;
  color: rgba(62, 62, 62, 1);
  text-align: center;
  margin-bottom: 76px;
}

.form_heading {
  font-size: 20px;
  font-weight: 400;
  color: #636363;
  text-align: center;
  margin-top: 20px;
}

.contact_form {
  padding-top: 40px;
  border-top: 4px solid rgba(255, 255, 255, 1);
  width: 100%;
  margin-top: 60px;
}

.contact_error {
  display: none;
  font-size: 16px;
  text-align: center;
  color: #FF686B;
  margin-top: 10px;
}

.contact_error.is-show {
  display: block;
}

.thanks_message {
  font-size: 18px;
  text-align: center;
}

.thanks_message a.btn_wrap {
  margin: 40px auto 0;
  background: #00a0e8;
  height: 80px;
  box-shadow: 0px 5px 0px rgba(0, 119, 175, 1);
}

.thanks_message a.btn_wrap:hover {
  box-shadow: 0px 0px 0px;
}

.terms_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
  padding: 0 15px;
}

.terms_content.open {
  padding-top: 15px;
  padding-bottom: 15px;
}

.terms_header {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
}

.terms_paragraph {
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.6;
}

.terms_list_item {
  font-weight: 400;
  margin-bottom: 10px;
}

.terms_toggle {
  cursor: pointer;
  text-decoration: underline;
}

@media screen and (max-width: 920px) {
  .contact_form {
    padding-top: 30px;
  }

  .thanks_message {
    font-size: 16px;
    text-align: left;
  }
}

.submit_button {
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #C7C8C8;
  border: none;
  border-radius: 30px;
  cursor: not-allowed;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  transition: background-color 0.3s;
  width: 348px;
}

.consent_label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.consent_label input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #C7C8C8;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.consent_label input[type="checkbox"]:checked {
  border-color: #FF9D00;
  background-color: #FF9D00;
}

.consent_label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 7px;
  width: 7px;
  height: 12px;
  border-width: 0 3px 3px 0;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.divider {
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #000;
  vertical-align: middle;
  vertical-align: middle;
  /* margin: 0 10px; */
}

@media screen and (max-width: 920px) {
  .divider {
    width: 10px;
    height: 2px;
    margin: 0 0;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
}

td {
  padding: 28px 0;
  vertical-align: middle;
  border-bottom: 1px solid #C7C8C8;
}


.contact_form table tr:first-child td {
  padding-top: 0;
}

.padding-bottom_none {
  padding-bottom: 0;
}


tr td:first-child {
  width: 32.35%;
}

tr td:last-child {
  padding-left: 18px;
}

label,
td {
  font-size: 16px;
  color: #3e3e3e;
}

.label-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label-flex_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
}

.label-flex_bottom a {
  text-decoration: underline;
  font-size: 16px;
  color: #636363;
}

.required-label {
  padding: 2px 6px;
  background-color: #FF9D00;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 600;
  flex-shrink: 0;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: #aaa;
}

input::placeholder,
textarea::placeholder {
  font-size: 16px;
  color: #B8B8B8;
}

textarea {
  height: 100px;
}

td input[type="text"]:last-child {
  margin-right: 0;
}

td .hyphen {
  margin: 0 8px;
}

.preferred_date_group {
  display: flex;
  flex-direction: column;
}

.preferred_date_item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.preferred_date_item:last-child {
  margin-bottom: 0;
}

.preferred_label {
  white-space: nowrap;
  width: 16%;
  font-size: 16px;
}

.preferred_date_item_flex {
  display: flex;
  gap: 10px;
}

.date-input,
.time_select {
  width: 209px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

select {
  appearance: none;
  padding-right: 40px;
  background-image: url('../../assets/img/home/form_arrow.svg');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.border_none {
  border-bottom: none;
}

.hyphen {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.preferred_date_item_flex {
  gap: 5px;
  width: 100%;
}

#last_name {
  width: 36.1%;
  margin-right: 13px;
}

#first_name {
  width: 36.1%;
}

#furigana_last {
  width: 36.1%;
  margin-right: 13px;
}

#furigana_first {
  width: 36.1%;
}

#email {
  width: 84.7%;
}

#email_confirm {
  width: 84.7%;
}

#prefecture {
  width: 48.41%;
}

#postal_code1 {
  width: 21.1%;
}

#postal_code2 {
  width: 21.1%;
}

#station {
  width: 84.7%;
}

#phone1 {
  width: 20.99%;
}

#phone2 {
  width: 20.99%;
}

#phone3 {
  width: 20.99%;
}

#contact_time {
  width: 48.36%;
}

#request {
  width: 84.78%;
}

.vertical-align-top {
  vertical-align: top;
}

@media (max-width: 900px) {
  .submit_button {
    width: 208px;
    margin-top: 22px;
  }

  select {
    appearance: none;
    padding-right: 40px;
    background-image: url('../../assets/img/home/form_arrow_sp.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
}

.submit_button {
  padding: 21px 30px 19px 30px;
  font-size: 16px;
  color: #fff;
  background-color: #C7C8C8;
  border: none;
  border-radius: 30px;
  cursor: not-allowed;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  transition: background-color 0.3s;
}

@media (max-width: 768px) {
  .form_body {
    padding-top: 21px;
  }

  .form_title {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .form_heading {
    font-size: 14px;
  }

  .contact_form {
    margin-top: 22px;
  }

  .contact_error {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  label {
    font-size: 15px;
  }

  .header_wrapper {
    justify-content: center;
  }

  .preferred_label {
    font-size: 14px;
  }

  .preferred_date_item {
    flex-direction: column;
    gap: 5px;
    align-items: start;
    margin-bottom: 17px;
  }

  .date-input,
  .time_select {
    width: 49%;
  }

  #last_name {
    width: 49%;
  }

  #first_name {
    width: 49%;
  }

  #furigana_last {
    width: 49%;
  }

  #furigana_first {
    width: 49%;
  }

  #email {
    width: 100%;
  }

  #email_confirm {
    width: 100%;
  }

  #prefecture {
    width: 100%;
  }

  #postal_code1 {
    width: 29%;
  }

  #postal_code2 {
    width: 29%;
  }

  #station {
    width: 100%;
  }

  #phone1 {
    width: 28%;
  }

  #phone2 {
    width: 28%;
  }

  #phone3 {
    width: 28%;
  }

  #contact_time {
    width: 76%;
  }

  #request {
    width: 100%;
    height: 136px;
  }
}

@media (max-width: 600px) {
  .form_body {
    background-color: #FFFBE9;
    padding: 21px 0 23px 0;
  }

  .border_none {
    display: flex;
    flex-direction: column;
  }

  .required-label {
    padding: 1px 6px;
    background-color: #FF9D00;
    color: #fff;
    font-size: 10px;
    border-radius: 4px;
    font-weight: 600;
    flex-shrink: 0;
  }

  .form_header {
    padding: 19px 36px 14px 36px;
  }

  .submit_button {
    margin-top: 22px;
  }

  td:last-child {
    padding-bottom: 24px;
  }

  .padding-bottom_none {
    padding-bottom: 0 !important;
  }
}

/* ---------------------------------------------------------------------- */
/* 無料初診相談予約サービス */




.counseling_section_top {
  text-align: center;
  margin-bottom: 40px;
}


.counseling_section_top {
  text-align: center;
}


.point_container {
  display: flex;
  margin-bottom: 60px;
}

.point_container {
  display: flex;
  margin-bottom: 60px;
}

@media screen and (max-width: 920px) {
  .point_container {
    display: flex;
    flex-direction: column;
    margin-bottom: 41px;
  }
}

.point_container_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(62, 62, 62, 1);
}


.point_container_item:first-child {
  padding-left: 0;
}

.point_container_item:last-child {
  border-right: none;
}

@media screen and (max-width: 920px) {
  .point_container_item {
    border-right: transparent;
    border-bottom: 1px solid #3E3E3E;
    padding: 30px 0 30px 0;
    display: block;
  }

  .point_container_item:first-child {
    border-top: 1px solid #3E3E3E;
  }
}

.point_container_item__inner {
  display: block;
}

@media screen and (max-width: 920px) {
  .point_container_item__inner {
    display: flex;
    gap: 38px;
  }

  .point_container_item__inner__right {
    width: calc(100% - 126px);
  }
}

.point_container_item_num {
  margin-bottom: 36px;
  width: 87px;
}

.point_container_item_num__pc {
  display: block;
}

.point_container_item_num__sp {
  display: none;
}

@media screen and (max-width: 920px) {
  .point_container_item_num {
    width: 67px;
    margin-bottom: 10px;
  }

  .point_container_item_num__pc {
    display: none;
  }

  .point_container_item_num__sp {
    display: block;
  }
}

.num {
  font-size: 34px;
}

@media screen and (max-width: 600px) {
  .num {
    font-size: 20px;
  }
}

.point_container_item_img {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 920px) {
  .point_container_item_img {
    width: 88px;
    margin-bottom: 24px;
    display: block;
  }

  .point_container_item_img:first-child img {
    width: 88px;
    margin: 45px 0 0 0;
  }

  .point_container_item_img:nth-child(2) img {
    width: 89px;
    margin: 30px 0 0 0;
  }

  .point_container_item_img:nth-child(3) img {
    width: 88px;
    margin: 35px 0 0 0;
  }

  .point_container_item_img:nth-child(4) img {
    width: 85px;
    margin: 35px 0 0 0;
  }
}



.point_container_item_type {
  text-align: center;
  margin-bottom: 17px;
}

@media screen and (max-width: 920px) {
  .point_container_item_type {
    text-align: left;
    margin-bottom: 10px;
  }
}

.point_container_item_type_inr {
  font-size: 18px;
  font-weight: 700;
  color: rgba(62, 62, 62, 1);
}

@media screen and (max-width: 600px) {
  .point_container_item_type_inr {
    font-size: 16px;
  }
}

.point_container_item_text {
  font-size: 16px;
  color: rgba(62, 62, 62, 1);
  text-align: left;
  line-height: 1.75;
}

@media screen and (max-width: 920px) {
  .point_container_item_text {
    font-size: 14px;
    text-align: left;
  }
}

.point_container_item:first-child {
  padding-left: 0;
}

.point_container_item:last-child {
  border-right: none;
  padding-right: 0;
}

.num {
  font-size: 34px;
}

.pink {
  font-size: 22px;
  color: rgba(255, 104, 107, 1);
}

.header {
  padding-top: 34px;
  padding-bottom: 40px;
  z-index: 999;
  position: relative;
}

@media (max-width: 768px) {
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 920px) {
  .header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}

.header_body {
  display: flex;
  align-items: center;
  gap: 35px;
}

@media (max-width: 768px) {
  .header_body {
    display: flex;
    align-items: center;
    gap: 35px;
  }
}

.header_body .btn_wrap {
  display: block;
}

@media (max-width: 920px) {
  .header_body .btn_wrap {
    display: none;
  }
}

.header_body_left {
  display: flex;
  align-items: center;
}

.header_body_left img {
  width: 446px;
  height: auto;
}

@media (max-width: 768px) {
  .header_body_left img {
    width: 229px;
  }
}

.main_visual {
  position: relative;
  margin-bottom: 118px;
}

@media (max-width: 920px) {
  .main_visual {
    margin-bottom: 65px;
  }
}

.main_visual_img {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 0;
  position: relative;
}

@media (max-width: 920px) {
  .main_visual_img {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}

.main_visual_img img.mv {
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 920px) {
  .main_visual_img img.mv {
    border-radius: 30px;
    width: 100%;
    height: 100%;
  }
}

.main_visual_img img.mv_info_parts {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 234px;
}

@media (max-width: 920px) {
  .main_visual_img img.mv_info_parts {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: auto;
    width: 120px;
  }
}

.main_visual_text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 81px;
  left: 0;
}

.main_visual_text__sp {
  display: none;
}

@media (max-width: 920px) {
  .main_visual_text__pc {
    display: none;
  }

  .main_visual_text__sp {
    display: flex;
    gap: 4px;
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.main_visual_text_item {
  font-size: 38px;
  font-weight: 800;
  color: #57AE1D;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 8px;
  padding: 7px 16px;
  line-height: 1.5;
  white-space: nowrap;
  width: fit-content;
}

@media (max-width: 920px) {
  .main_visual_text_item {
    font-size: 22px;
    font-weight: 700;
    padding: 2px 8px;
    line-height: 1.5;
  }
}

.maz {
  font-size: 38px;
  font-weight: 800;
  color: #57AE1D;
}

@media (max-width: 920px) {
  .maz {
    font-size: 22px;
    font-weight: 700;
  }
}

.maz_pc {
  display: inline;
}

@media (max-width: 920px) {
  .maz_pc {
    display: none;
  }
}

.maz_sp {
  display: none;
}

@media (max-width: 920px) {
  .maz_sp {
    display: inline;
  }
}

.main_visual_background {
  display: block;
  position: absolute;
  left: -50px;
  top: -47px;
  z-index: -1;
}

@media (max-width: 920px) {
  .main_visual_background {
    display: none;
  }
}

.main_visual_background img {
  width: 100%;
  height: 100%;
}

.main_visual_question {
  width: fit-content;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 71px;
  margin: 0;
  max-width: 100%;
}

@media (max-width: 920px) {
  .main_visual_question {
    width: 100%;
    position: relative;
    left: 0;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 400px;
  }
}

.main_visual_question img {
  width: 287px;
  height: 351px;
}

@media (max-width: 920px) {
  .main_visual_question img {
    width: 100%;
    height: 100%;
  }
}

.main_visual_nav {
  display: none;
}

@media (max-width: 920px) {
  .main_visual_nav {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px auto 30px;
  }

  .main_visual_nav .number {
    width: 295px;
  }
}

.section_title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: rgba(62, 62, 62, 1);
  position: relative;
  margin-bottom: 120px;
  letter-spacing: 0.1em;
}

@media (max-width: 920px) {
  .section_title {
    font-size: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    letter-spacing: 0;
    white-space: nowrap;
  }
}

.section_title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -36px;
  width: 240px;
  height: 4px;
  background-color: rgba(87, 174, 29, 1);
  border-radius: 40px;
}

@media (max-width: 920px) {
  .section_title::after {
    bottom: 0px;
    width: 160px;
    height: 2px;
  }
}

.section_title__pc {
  display: block;
}

.section_title__sp {
  display: none;
}

@media (max-width: 920px) {
  .section_title__pc {
    display: none;
  }

  .section_title__sp {
    display: block;
  }
}

/*お申し込みの流れ*/
.flow_section {
  padding: 0 0 80px 0;
}

.flow_container {
  margin-bottom: 82px;
  padding-left: 0;
}

@media (max-width: 920px) {
  .flow_section {
    padding: 0 0 40px 0;
  }

  .flow_container {
    margin-bottom: 40px;
    padding-left: 20px;
  }
}

.flow_container_item {
  border: 4px solid rgba(255, 235, 181, 1);
  border-radius: 8px;
  padding: 65px 10px 35px 10px;
  width: calc((100% - 80px) / 3);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (max-width: 1024px) {
  .flow_container_item {
    border: 2px solid rgba(255, 235, 181, 1);
    min-width: 280px;
    height: 213px;
    padding: 35px 20px 20px 20px;
    gap: 16px;
    position: relative;
  }
}

.flow_container_item_img {
  height: 121px;
}

.flow_container_item:first-child .flow_container_item_img img {
  width: 92px;
  height: auto;
}

.flow_container_item:nth-child(2) .flow_container_item_img img {
  width: 67px;
  height: auto;
}

.flow_container_item:nth-child(3) .flow_container_item_img img {
  width: 68px;
  height: auto;
  margin: 10px 0 0 0;
}

.flow_container_item_img img {
  width: 100%;
  display: block;
}

@media (max-width: 920px) {
  .flow_container_item_img {
    height: 110px;
  }

  .flow_container_item:first-child .flow_container_item_img img {
    width: 82px;
  }

  .flow_container_item:nth-child(2) .flow_container_item_img img {
    width: 57px;
  }

  .flow_container_item:nth-child(3) .flow_container_item_img img {
    width: 58px;
    margin: 10px 0 0 0;
  }
}

.flow_map {
  width: 100%;
  height: auto;
}

.flow_map__inner {
  display: flex;
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 920px) {
  .flow_section .container-base {
    padding: 0 20px 0 20px;
  }

  .flow_map {
    overflow-x: scroll;
    padding: 25px 0 30px 0;
  }

  .flow_map__inner {
    padding: 0 20px 0 0;
  }

}

@media (min-width: 920px) {
  .swiper {
    display: none !important;
  }
}

.swiper-wrapper {
  padding-bottom: 40px;
}

.swiper-slide {
  padding-top: 40px;
}

.flow_container_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  width: 20px;
  height: 24px;
  background-image: url('../img/home/flow_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 920px) {
  .swiper-slide {
    overflow: visible;
  }
}

.flow_container_item_num {
  background-color: rgba(255, 235, 181, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.56vw;
  height: 5.56vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -3.13vw;
}

@media (max-width: 768px) {
  .flow_container_item_num {
    width: 40px;
    height: 40px;
    top: -20px;
  }
}

@media (min-width: 1440px) {
  .flow_container_item_num {
    width: 80px;
    height: 80px;
    top: -45px;
  }
}

.flow_container_item_num_inr {
  font-size: 2.36vw;
  font-weight: 700;
  color: rgba(62, 62, 62, 1);
}

@media (max-width: 768px) {
  .flow_container_item_num_inr {
    font-size: 16px;
  }
}

@media (min-width: 1440px) {
  .flow_container_item_num_inr {
    font-size: 34px;
  }
}

.flow_container_item_text_inr {
  font-size: 18px;
  font-weight: 700;
  color: rgba(62, 62, 62, 1);
  text-align: center;
  display: block;
}

@media (max-width: 1024px) {
  .flow_container_item_text_inr {
    font-size: 16px;
  }
}


.consent_section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #ffffff;
}

@media (min-width: 920px) {
  .consent_section {
    margin-top: 53px;
    padding-top: 53px;
    border-top: 4px solid #ffffff;
  }
}

.txt_height_hight {
  line-height: 2;
}

.btn_wrap_lg {
  height: 90px;
}

.btn_wrap_lg .btn_wrap_text {
  font-size: 20px;
}

@media (max-width: 920px) {
  .btn_wrap_lg {
    height: 70px !important;
  }

  .btn_wrap_lg .btn_wrap_text {
    font-size: 18px;
  }

  .btn_wrap {
    height: 70px !important;
  }

  .btn_wrap btn_wrap_text {
    font-size: 18px;
  }
}

.sp_br {
  display: inline;
}

.pc_br {
  display: block;
}

@media (max-width: 920px) {
  .sp_br {
    display: block;
  }

  .pc_br {
    display: inline;
  }
}