@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --black-color02: #4b4b4b;
  --white-color: #fff;
  --gray-color: #aaa;
  --gray-color02: #fafafa;
  --primary-color01: #feecf8;
  --primary-color01: #ffd1dc;
  --accent-color: #0fa3b1;

  /* background: linear-gradient(rgba(254, 236, 248, 1), rgba(255, 209, 220, 1)), */
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 760px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

html {
  scroll-behavior: smooth;
}

body {
  color: var(--black-color02);
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_sp-br {
    display: none;
  }
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 120px 0;
}

.l_header {
  height: 100px;
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-default); */
  background: linear-gradient(
    rgba(254, 236, 248, 0.9),
    rgba(255, 209, 220, 0.9)
  );
}

@media screen and (min-width: 1080px) {
  .l_header {
    padding: 0 48px;
  }
}

.l_header-logo {
  font-size: 20px;
  font-weight: bold;
  color: var(--white-color);
}

.l_header-logo_img {
  width: auto;
  height: 70px;
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    display: block;
    opacity: 1;
    pointer-events: inherit;
  }
}

.l_header-nav_list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    display: flex;
    gap: 0 40px;
    position: static;
    transform: none;
  }
}

.l_header-nav_link {
  font-weight: bold;
}

.l_header-nav_link:hover {
  opacity: 0.7;
}

.l_header-nav_item {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    font-weight: normal;
  }
}

.l_header-nav_item:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item:not(:first-child) {
    margin-top: 0;
  }
}

.l_hearer-icon_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.l_header-icon_item:hover {
  opacity: 0.7;
}

.l_header-icon_item_img {
  height: 40px;
  width: auto;
}

.l_header-icon_item_txt {
  text-align: center;
}

.l_header-icon_wrap.l_footer_icon {
  margin-top: 40px;
}

.l_hearer-icon_box.l_footer-icon_box {
  gap: 40px;
}

.l_footer {
  padding: 56px 0;
}

@media screen and (min-width: 768px) {
  .l_footer {
    padding: 72px 0 40px;
    position: relative;
  }
}

@media screen and (min-width: 1080px) {
  .l_footer_contents {
    display: flex;
    justify-content: space-between;
    padding: 0 56px;
  }
}

.l_footer_kana {
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
}

@media screen and (min-width: 1080px) {
  .l_footer_kana {
    text-align-last: left;
  }
}

.l_footer_ttl {
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
}

@media screen and (min-width: 1080px) {
  .l_footer_ttl {
    font-size: 14px;
    text-align: left;
  }
}

.l_footer_address {
  font-size: 16px;
  margin-top: 24px;
  text-align: center;
  line-height: 1.4;
}

@media screen and (min-width: 1080px) {
  .l_footer_address {
    font-size: 14px;
    text-align: left;
  }
}

.l_footer-logo {
  font-size: 18px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1080px) {
  .l_footer-logo {
    text-align: left;
  }
}

.l_footer-nav {
  margin-top: 80px;
}

@media screen and (min-width: 1080px) {
  .l_footer-nav {
    margin-top: 0;
  }
}

.l_footer-nav_list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 56px;
}

@media screen and (min-width: 1080px) {
  .l_footer-nav_list {
    width: 100%;
    flex-direction: row;
  }
}

.l_footer-nav_item {
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .l_footer-nav_item {
    font-size: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .l_footer_icon {
    position: absolute;
    content: "";
    bottom: 100px;
    right: 56px;
  }
}

.l_footer-copyright {
  text-align: center;
  margin-top: 80px;
}

@media screen and (min-width: 1080px) {
  .l_footer-copyright {
    text-align: center;
    margin-top: 48px;
  }
}

.l_footer-copyright_txt {
  font-size: 14px;
}

/* ---------- module ---------- */
.m_opening {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-modal);
  background: #111;
  display: flex;
}

.m_opening_txt {
  text-align: center;
  margin: auto;
}

.m_opening_heading {
  color: var(--white-color);
  font-size: 40px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .m_opening_heading {
    font-size: 56px;
  }
}

.m_opening_desc {
  color: var(--white-color);
  font-weight: bold;
  font-size: 16px;
  margin-top: 16px;
}

.m_btn {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  color: var(--white-color);
  font-weight: bold;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.m_btn:hover {
  opacity: 0.9;
}

.m_btn_input {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
}

.m_btn__mail {
  background-color: var(--accent-color);
}

.m_btn__mail::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/btn_email.svg) center / contain no-repeat;
  margin-left: 8px;
}

.m_btn__right-arrow {
  background: var(--accent-color);
  position: relative;
}

.m_btn__right-arrow::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--white-color);
}

.m_section-title {
  position: relative;
}

.m_section-title::before,
.m_section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 24px;
  background: var(--primary-color);
}

.m_section-title::before {
  left: 0;
}

.m_section-title::after {
  right: 0;
}

@media screen and (min-width: 1080px) {
  .m_section-title::before,
  .m_section-title::after {
    width: 280px;
  }
}

.m_section-title_main {
  font-size: 24px;
  font-weight: bold;
  margin-top: 8px;
  text-align: center;
}

.m_section-title_sub {
  color: var(--accent-color);
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: bold;
  font-size: 36px;
}

.m_cta {
  padding: 96px 16px;
  background: linear-gradient(rgba(254, 236, 248, 1), rgba(255, 209, 220, 1));
  /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(../img/bg_cta.jpg) center / cover; */
  position: relative;
}

@media screen and (min-width: 768px) {
  .m_cta_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .m_cta_wrap {
    gap: 80px;
  }
}

.m_cta_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .m_cta_left {
    align-items: start;
  }
}

.m_cta_tel {
  margin-top: 40px;
  font-size: 32px;
  font-weight: bold;
}

.m_cta_ttl,
.m_cta_tel_ttl {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .m_cta_ttl {
    font-size: 32px;
  }
}

.m_cta_box {
  position: relative;
  text-align: center;
}

.m_cta_txt {
  color: var(--black-color02);
}

/* @media screen and (min-width: 1080px) {
  .m_cta_txt {
    font-size: 32px;
  }
} */

.m_cta_btn-wrapper {
  width: 264px;
  height: 68px;
  margin: 32px auto 0;
}

.m_hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  z-index: var(--z-index-menu);
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  background: var(--black-color);
  left: 50%;
  transition: 0.3s;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.m_kv {
  padding-top: 80px;
}

.m_kv-title_wrap {
  text-align: center;
  position: relative;
}

.m_kv-title_wrap::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background: var(--black-color02);
}

.m_kv-title_wrap::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background: var(--black-color02);
}

.m_kv-title {
  font-size: 24px;
  font-weight: bold;
}

.m_kv-title_sub {
  font-weight: bold;
}

.m_kv-desc {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .m_kv-desc {
    margin-top: 24px;
    text-align: center;
  }
}

.m_page_section_ttl {
  background: var(--accent-color);
  color: var(--white-color);
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  padding: 8px;
}
/* ---------- .top_kv ---------- */

.top_kv {
  width: 100%;
  height: 80vh;
  /* background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(51, 51, 51, 0.4)), */
  /* url(../img/bg_kv.jpg) center top / cover; */
  background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(51, 51, 51, 0.4));
  position: relative;
}

.top_kv-inner {
  position: relative;
  width: 100%;
  height: 80vh;
}

.top_kv_box {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
}

.top_kv_copy {
  font-size: 14px;
  font-weight: bold;
  color: var(--white-color);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .top_kv_copy {
    font-size: 28px;
  }
}

.top_kv_sub-copy {
  margin-top: 16px;
  font-weight: bold;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .top_kv_sub-copy {
    font-size: 18px;
    margin-top: 40px;
  }
}

.top_kv_btn-wrapper {
  width: 264px;
  height: 60px;
  margin: 40px auto 0;
}

@media screen and (min-width: 1200px) {
  .top_kv_btn-wrapper {
    margin: 64px 0 0;
  }
}

.top_kv-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-index-back);
  width: 100%;
  height: 80vh; /* 高さを指定 */
}

.top_kv-slideshow li img {
  object-fit: cover;
  height: 80vh;
}

/* ---------- .top_kv-scroll ---------- */

.top_kv-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.top_kv-scroll_txt {
  font-size: 12px;
  font-weight: bold;
  color: var(--white-color);
  text-align: center;
}

.top_kv-scroll_arrow {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 8px auto 0;
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

/* ---------- .top_problem ---------- */

.top_problem_posts {
  margin-top: 48px;
}

@media screen and (min-width: 768px) {
  .top_problem_posts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
}

/* ---------- .top_problem-post ---------- */

@media screen and (min-width: 768px) {
  .top_problem-post {
    width: 48%;
  }
}

.top_problem-post:not(:first-child) {
  margin-top: 48px;
}

@media screen and (min-width: 768px) {
  .top_problem-post:not(:first-child) {
    margin-top: 0;
  }
}

.top_problem-post_img {
  border-radius: 8%;
}

.top_problem-post_title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 24px;
}

.top_problem-post_txt {
  margin-top: 24px;
}

/* ---------- .top_forte ---------- */
.top_forte {
  background: linear-gradient(
    rgba(254, 236, 248, 0.9),
    rgba(255, 209, 220, 0.9)
  );
}
.top_forte_wrap {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .top_forte_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

.top_forte_list {
  border-bottom: dotted 3px var(--white-color);
  padding-bottom: 8px;
}

.top_forte_list:not(:first-child) {
  margin-top: 16px;
}

.top_forte_list span {
  color: var(--white-color);
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.2em;
  text-shadow: 2px 2px 2px var(--gray-color);
}

@media screen and (min-width: 1080px) {
  .top_forte_list {
    font-size: 20px;
    margin-top: 24px;
  }
}

.top_forte_right {
  margin-top: 56px;
  position: relative;
}

.top_forte_right::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10px;
  left: -10px;
  border: solid 3px var(--white-color);
  border-radius: 8%;
}

@media screen and (min-width: 768px) {
  .top_forte_right {
    width: 40%;
    margin-top: 0;
  }
}

.top_forte_img {
  border-radius: 8%;
  position: relative;
  z-index: var(--z-index-default);
}

/* ---------- .top_safety ----------  */
.top_safety_wrap {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .top_safety_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

.top_safety_left {
  /* position: relative; */
  border: solid 3px var(--primary-color01);
  border-radius: 8%;
}

.top_safety_img {
  border-radius: 8%;
}

/* .top_safety_left::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10px;
  right: -10px;
  border: solid 3px var(--primary-color01);
  border-radius: 8%;
} */

.top_safety_right {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .top_safety_right {
    margin-top: 0;
  }
}

.top_safety_person_b {
  color: var(--accent-color);
  font-size: 32px;
  font-weight: bold;
}

.top_safety_person {
  font-size: 24px;
  font-weight: bold;
}

.top_safety_txt {
  margin-top: 8px;
}

@media screen and (min-width: 1080px) {
  .top_safety_txt {
    margin-top: 16px;
  }
}

/* ---------- .top_suggestion ---------- */

/* .top_suggestion {
  padding: 140px 0 110px;
  background: var(--primary-color);
  position: relative;
}

@media screen and (min-width: 1080px) {
  .top_suggestion {
    padding: 100px 0;
  }
}

.top_suggestion::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 30px 32.5px;
  border-style: solid;
  border-color: var(--primary-color) transparent transparent transparent;
}

.top_suggestion_txt {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: var(--white-color);
  padding: 0 16px;
}

@media screen and (min-width: 1080px) {
  .top_suggestion_txt {
    font-size: 32px;
  }
}

/* ---------- .top_service ---------- */

.top_service_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 80px;
  gap: 48px 24px;
}

@media screen and (min-width: 1080px) {
  .top_service_list {
    gap: 80px 16px;
  }
}

.top_service_item {
  text-align: center;
  width: calc((100% - 24px) / 2);
}

@media screen and (min-width: 768px) {
  .top_service_item {
    width: calc((100% - 24px * 3) / 3);
  }
}

@media screen and (min-width: 1080px) {
  .top_service_item {
    width: calc((100% - 16px * 3) / 4);
  }
}
*/ .top_service_img-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.top_service_txt {
  margin-top: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1080px) {
  .top_service_txt {
    font-size: 20px;
  }
}

.top_service_btn-wrapper {
  margin: 80px auto 0;
  max-width: 344px;
  height: 56px;
}

/* ---------- .top_success ---------- */

.top_success {
  background: var(--gray-color02);
  overflow: hidden;
}

.top_success_list-wrapper {
  position: relative;
  /* height: 480px; */
  max-width: var(--content-width-lg);
}

@media screen and (min-width: 1088px) {
  .top_success_list-wrapper {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    height: auto;
  }
}

.top_success_list {
  width: 100%;
  margin-top: 80px;
}

.top_success_item {
  padding: 48px 16px;
  height: 100%;
  background: var(--white-color);
}

@media screen and (min-width: 1200px) {
  .top_success_item {
    width: 352px;
  }
}

.top_success-inner {
  margin: 0 auto;
  max-width: var(--content-width-sm);
}

.top_success_img-wrapper {
  margin-top: 32px;
}

.top_success_desc {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 32px;
}

.top_success-num {
  font-size: 14px;
  color: var(--primary-color);
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-bottom: 8px;
  position: relative;
  border-bottom: 2px solid var(--primary-color);
  line-height: 1;
  display: flex;
  align-items: center;
}

.top_success-num_icon {
  display: block;
  background: var(--primary-color);
  width: 8px;
  height: 8px;
  margin-right: 8px;
}

.top_success_nav {
  width: 53px;
  height: 53px;
  background: #fff;
  border-radius: 100vh;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  position: absolute;
  bottom: -109px;
  top: auto;
}

.top_success_nav__prev {
  left: auto;
  right: calc(50% + 96px);
}

.top_success_nav__next {
  left: calc(50% + 96px);
  right: auto;
}

.top_success_nav__prev:after,
.top_success_nav__next:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  top: 50%;
  left: 50%;
}

.top_success_nav__prev:after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.top_success_nav__next:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.top_success_dots {
  position: absolute;
  left: 50% !important;
  bottom: -90px !important;
  transform: translateX(-50%);
  width: 96px !important;
  height: 16px;
  display: flex;
  justify-content: space-between;
}

.top_success_dots .swiper-pagination-bullet {
  background: var(--gray-color);
  width: 16px;
  height: 16px;
  border-radius: 100vh;
  color: transparent;
  border: 2px solid var(--white-color);
}

.top_success_dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.top_success_btn-wrapper {
  margin: 165px auto 0;
  padding-right: 16px;
  padding-left: 16px;
  max-width: calc(344px + 32px);
  height: 56px;
}

@media screen and (min-width: 1080px) {
  .top_success_btn-wrapper {
    margin-top: 80px;
  }
}

/* ---------- .top_info ---------- */

@media screen and (min-width: 1080px) {
  .top_info-inner {
    position: relative;
    height: 440px;
    display: flex;
    align-items: center;
  }
}

.top_info:nth-child(2n) {
  background: var(--gray-color02);
}

@media screen and (min-width: 1080px) {
  .top_info_img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(
      100vw - (344px + 116px) - (100vw - var(--content-width-lg)) / 2
    );
    height: 100%;
  }
}

@media screen and (min-width: 1080px) {
  .top_info:nth-child(2n) .top_info_img-wrapper {
    left: 0;
  }
}

.top_info_img {
  height: 350px;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .top_info_img {
    height: 100%;
  }
}

@media screen and (min-width: 1080px) {
  .top_info_content {
    width: 344px;
  }
}

@media screen and (min-width: 1080px) {
  .top_info:nth-child(2n) .top_info_content {
    margin-left: auto;
  }
}

.top_info_block {
  position: relative;
  margin-top: 24px;
}

@media screen and (min-width: 1080px) {
  .top_info_block {
    margin-top: 0;
  }
}

.top_info_block::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: calc(100% - 140px);
  background: var(--primary-color);
}

.top_info_title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.top_info_title-sub {
  color: var(--accent-color);
  letter-spacing: 0.3em;
}

.top_info_txt {
  margin-top: 64px;
}

.top_info_btn-wrapper {
  margin: 64px auto 0;
  max-width: 344px;
  height: 56px;
}

/* ---------- .service_menu ---------- */
.service_01 {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .service_01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .service_01.service_02 {
    flex-direction: row-reverse;
  }

  .service_img_wrap {
    width: 40%;
  }
}

.service_txt_wrap {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .service_txt_wrap {
    margin-top: 0;
    width: 55%;
  }
}

.service_ttl_wrap {
  position: relative;
}

.service_ttl_wrap::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background: var(--black-color02);
}

.service_ttl_sub {
  font-size: 18px;
  font-weight: bold;
}

.service_ttl_main {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.service_txt {
  margin-top: 8px;
}

.service_menu_message {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .service_menu_message {
    font-size: 24px;
  }
}

.service_menu_message__emphasis {
  font-size: 24px;
  background: linear-gradient(
    transparent 0%,
    transparent 75%,
    var(--accent-color) 75%,
    var(--accent-color) 100%
  );
}

@media screen and (min-width: 1080px) {
  .service_menu_message__emphasis {
    font-size: 32px;
  }
}

.service_menu_desc {
  font-size: 12px;
  margin-top: 64px;
  text-align: center;
}

.service_menu_txt {
  font-size: 12px;
  margin-top: 16px;
  text-align: center;
}

.service_menu_wrapper {
  margin-top: 40px;
  width: 100%;
  overflow-x: scroll;
}

@media screen and (min-width: 1080px) {
  .service_menu_wrapper {
    overflow: inherit;
    width: var(--content-width);
    margin-top: 16px;
  }
}

.service_menu_list {
  width: calc(344px * 4 + 32px * 3);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}

@media screen and (min-width: 1080px) {
  .service_menu_list {
    width: 100%;
    gap: 18px 32px;
  }
}

.service_menu_item {
  width: 344px;
  height: 64px;
}

@media screen and (min-width: 1080px) {
  .service_menu_item {
    width: 216px;
    height: 54px;
    font-size: 14px;
  }
}

.service_money {
  padding-bottom: 120px;
}

.company_section_th.service_th {
  width: 150px;
}

/* ---------- .company_section ---------- */

.company_section:nth-of-type(2n) {
  background: var(--gray-color02);
}

.company_section_title {
  font-size: 20px;
  font-weight: bold;
  padding-left: calc(12px + 8px);
  position: relative;
}

@media screen and (min-width: 768px) {
  .company_section_title {
    font-size: 28px;
  }
}

.company_section_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 30px;
  background: var(--primary-color);
}

.company_section_img-wrapper {
  margin-top: 24px;
}

.company_section_txt {
  margin-top: 32px;
}

.company_section_table {
  margin-top: 24px;
}

.company_section_tr:nth-child(2n) {
  background: var(--gray-color02);
}

.company_section_th {
  font-weight: bold;
  width: 124px;
  padding: 16px 0 16px 8px;
  position: relative;
}

.company_section_th::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 40px;
  background: var(--primary-color);
}

.company_section_td {
  font-size: 15px;
  padding: 16px 8px 16px 32px;
}

/* ---------- contact ---------- */
.contact_form_heading {
  font-weight: bold;
  position: relative;
}

.contact_form_heading:not(:first-child) {
  margin-top: 32px;
}

.contact_form_example {
  color: var(--gray-color);
  font-size: 12px;
  font-weight: normal;
  margin-left: 16px;
}

.contact_form_detail {
  margin-top: 16px;
}

.contact_form_input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--gray-color);
  border-radius: 4px;
  padding: 0 8px;
}

.contact_form_required {
  font-size: 12px;
  font-weight: bold;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  color: var(--white-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 1080px) {
  .contact_form_radio-list {
    display: flex;
  }
}

.contact_form_radio-item {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

@media screen and (min-width: 1080px) {
  .contact_form_radio-item {
    margin-right: 32px;
  }
}

.contact_form_radio {
  appearance: radio;
}

.contact_form_label {
  font-size: 12px;
  font-weight: bold;
  padding-left: 10px;
}

.contact_form_textarea {
  width: 100%;
  height: 250px;
  border: 1px solid var(--gray-color);
  border-radius: 4px;
  padding: 8px 16px;
  resize: none;
}

.contact_form_btn-wrapper {
  max-width: 344px;
  height: 64px;
  margin: 80px auto 0;
}

.wpcf7-spinner {
  display: none !important;
}

/* -----------privacy-------------- */
.privacy_link {
  border-bottom: 1px solid var(--gray-color);
  text-align: center;
}

.privacy_link:hover {
  opacity: 0.7;
}

/* ---------- js ---------- */
.js_body.is-active {
  overflow: hidden;
}

.js_opening.is-active {
  opacity: 0;
  visibility: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media screen and (min-width: 1080px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

.js_faq_mark.is-open::before {
  opacity: 0;
}

.js_faq-a {
  height: 0;
  opacity: 0;
}

.js_h-slide_trigger {
  overflow: hidden;
}
