@charset "UTF-8";
/* container
====================================================================================================================================== */
html {
  scroll-padding-top: 80px;
}

#container {
  overflow: hidden;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .wrapper {
    padding: 0 22px;
  }
}
/* 予約フォーム用スタイル
====================================================================================================================================== */
/* フォーム用ヘッダー */
.form_header {
  position: relative;
  z-index: 100;
  background: #1A3A6F;
  padding: 1rem 2rem;
}
.form_header .header_inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form_header .header_logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form_header .header_logo a.logo {
  display: block;
  text-decoration: none;
  width: 100px;
  max-width: 15vw;
}
.form_header .header_logo img {
  max-width: 100%;
}
.form_header .header_logo .header_title {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1.5;
}
.form_header .header_logo .header_title .header_title_sub {
  display: block;
  font-size: 0.7rem;
  margin-bottom: 0;
}
.form_header .header_nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.form_header .header_nav .nav_link {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
}
.form_header .header_nav .nav_link:hover {
  text-decoration: underline;
}
.form_header .header_nav .nav_link.nav_link_back {
  font-size: 0.8rem;
  font-weight: normal;
  text-decoration: underline;
  line-height: 1.5;
}
.form_header .header_nav .btn {
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  background: #FFFFFF;
  min-width: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .form_header {
    padding: 0.5rem 1rem;
  }
  .form_header .header_logo {
    gap: 0.6rem;
  }
  .form_header .header_logo a {
    width: 60px;
  }
  .form_header .header_logo .header_title {
    font-size: 0.9rem;
  }
  .form_header .header_logo .header_title .header_title_sub {
    display: none;
  }
  .form_header .header_nav {
    gap: 0.8rem;
  }
  .form_header .header_nav .nav_link {
    font-size: 0.75rem;
  }
  .form_header .header_nav .nav_link.nav_link_back {
    font-size: 0.7rem;
  }
  .form_header .header_nav .btn {
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
  }
}

/* ステップバー */
.states_bar {
  background: #F2F5F5;
  padding: 1.5rem 2rem;
}
.states_bar .states_bar_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.states_bar .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}
.states_bar .step:before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: #C0C0C0;
  border: 0.45rem solid #F2F5F5;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
  box-sizing: content-box;
}
.states_bar .step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: calc(50% + 0.75rem);
  width: calc(100% - 1.5rem);
  height: 2px;
  background: #C0C0C0;
  z-index: 0;
}
.states_bar .step .step_label {
  font-size: 0.8rem;
  color: #757575;
  line-height: 1.4;
  padding: 0 0.5em;
}
.states_bar .step:not(.active) .step_num {
  background: #F2F5F5;
  color: #757575;
  font-weight: normal;
}
.states_bar .step.done:before {
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/icon/i_check.svg) no-repeat center center;
  background-size: contain;
  border: none;
}
.states_bar .step.done .step_label {
  color: #757575;
}
.states_bar .step.done:after {
  background: #1A3A6F;
}
.states_bar .step.active:before {
  background: #1A3A6F;
  border-color: #D5DFED;
}
.states_bar .step.active .step_label {
  color: #1A3A6F;
  font-weight: bold;
}
@media (max-width: 768px) {
  .states_bar {
    padding: 1.5rem 1rem;
  }
  .states_bar .step .step_label {
    font-size: 0.7rem;
  }
}

/* メインエリア */
#main {
  margin-bottom: 3rem;
}

/* ページタイトル */
.page_title_area {
  text-align: center;
  padding: 0 0 1rem;
  border-bottom: 3px solid #1A3A6F;
  margin-bottom: 2.5rem;
}
.page_title_area h1 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1A3A6F;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .page_title_area h1 {
    font-size: 1.7rem;
  }
}

.step_tag,
.step_num {
  display: inline-block;
  background: #D5DFED;
  color: #1A3A6F;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.15em 0.8em;
  border-radius: 50px;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .step_num {
    font-size: 0.7rem;
    padding: 0.2em 0.8em;
  }
}
/* コンテンツエリア */
.contents_area {
  padding: 2.5rem 0;
}
.contents_area > section,
.contents_area .section_area,
.contents_area form > section {
  margin-bottom: 4rem;
}
.contents_area > section:last-child,
.contents_area .section_area:last-child,
.contents_area form > section:last-child {
  margin-bottom: 0;
}

/* フッター */
.form_footer {
  background: #1A3A6F;
  color: #FFFFFF;
}
.form_footer a {
  color: #FFFFFF;
}
.form_footer .footer_contact {
  background: #F2F5F5;
  padding: 2rem;
  text-align: center;
}
.form_footer .footer_contact .contact_inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .form_footer .footer_contact .contact_inner {
    gap: 1.5rem;
  }
}
.form_footer .footer_contact .contact_text {
  color: #1A3A6F;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0;
  padding-right: 3rem;
  border-right: 1px solid #C0C0C0;
  min-width: 9rem;
}
@media (max-width: 768px) {
  .form_footer .footer_contact .contact_text {
    font-size: 0.9rem;
    padding-right: 1.5rem;
  }
}
.form_footer .footer_contact .contact_tel {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  line-height: 1.4;
}
.form_footer .footer_contact .contact_tel .tel_icon {
  width: 1.7rem;
  height: 1.7rem;
}
@media (max-width: 768px) {
  .form_footer .footer_contact .contact_tel .tel_icon {
    width: 1.3rem;
    height: 1.3rem;
  }
}
.form_footer .footer_contact .contact_tel .tel_number {
  color: #1A3A6F;
  font-size: 1.7rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .form_footer .footer_contact .contact_tel .tel_number {
    font-size: 1.2rem;
  }
}
.form_footer .footer_contact .contact_tel .tel_note {
  color: #1A3A6F;
  font-size: 0.9rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .form_footer .footer_contact .contact_tel .tel_note {
    font-size: 0.8rem;
  }
}
.form_footer .footer_main {
  padding: 4rem 1rem 3rem;
}
.form_footer .footer_main .footer_inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
@media (max-width: 768px) {
  .form_footer .footer_main .footer_inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.form_footer .footer_main .footer_info {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .form_footer .footer_main .footer_info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.7rem;
  }
}
.form_footer .footer_main .footer_info .footer_logo {
  width: 7rem;
}
.form_footer .footer_main .footer_info .footer_address .site_title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.15rem;
}
.form_footer .footer_main .footer_info .footer_address p {
  font-size: 0.9rem;
  margin-bottom: 0;
}
.form_footer .footer_main .footer_nav {
  display: flex;
  gap: 3rem;
  font-size: 0.9rem;
}
.form_footer .footer_main .footer_nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0 !important;
}
.form_footer .footer_main .footer_nav ul li {
  padding: 0 !important;
}
.form_footer .footer_main .footer_nav ul li:before {
  display: none !important;
}
.form_footer .footer_main .footer_nav ul li a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}
.form_footer .footer_main .footer_nav ul li a:before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background: url(../images/icon/link_arrow_w.svg) no-repeat center center;
  background-size: contain;
}
.form_footer .footer_main .footer_nav ul li a:hover {
  text-decoration: underline;
}
.form_footer .footer_copyright {
  text-align: center;
  padding: 0 2rem 2rem;
}
.form_footer .footer_copyright .copyright {
  font-size: 0.7rem;
  opacity: 0.8;
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */