@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --font-family--gothic: "Noto Sans JP", sans-serif;
  --font-family--arial: Arial, sans-serif;
  --font-family--montserrat: "Montserrat", serif;
  --color-main: #1F4B80;
  --color-sub: #5197D3;
  --color-black: #121122;
}

html, body {
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-family--gothic);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
  background: #fffefa;
}
@media only screen and (max-width: 991px) {
  body {
    font-size: 1.35rem;
  }
}
a {
  color: #212121;
  text-decoration: none;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

p {
  line-height: 2;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimizequality;
  max-width: 100%;
  height: auto;
}

@media only screen and (min-width: 991px) {
  .sp {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .pc-s {
    display: none !important;
  }
}

@media only screen and (min-width: 991px) {
  .pc {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .pc {
    display: none !important;
  }
}

.tablet {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .tablet {
    display: block !important;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-inline: auto;
}
@media only screen and (max-width: 991px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.c-section-title {
  font-size: 32px;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 2em;
}
@media only screen and (max-width: 991px) {
  .c-section-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}

.c-cta-block {
  background: url("../images/common/bg_cta.jpg") center center no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
  padding-top: 78px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .c-cta-block {
    padding-top: 22px;
    padding-bottom: 10px;
  }
}
.c-cta-block-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 64px;
}
@media only screen and (max-width: 991px) {
  .c-cta-block-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
}
.c-cta-block-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-bottom: 42px;
}
@media only screen and (max-width: 991px) {
  .c-cta-block-buttons {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 8px;
  }
}
.c-cta-block-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 402px;
  height: 74px;
  background: var(--color-sub);
  font-size: 26px;
  font-weight: bold;
  color: white;
  line-height: 1;
  position: relative;
  padding-right: 22px;
  padding-left: 22px;
}
@media only screen and (max-width: 991px) {
  .c-cta-block-button {
    width: 214px;
    height: 37px;
    font-size: 14px;
    padding-right: 10px;
    padding-left: 10px;
  }
}
.c-cta-block-button::after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: url("../images/icons/button-arrow_wht.svg") center center no-repeat;
  background-size: contain;
  position: relative;
  top: 1ox;
}
@media only screen and (max-width: 991px) {
  .c-cta-block-button::after {
    width: 13px;
    height: 13px;
  }
}
.c-cta-block-button__wht {
  background: white;
  color: var(--color-main);
}
.c-cta-block-button__wht::after {
  background: url("../images/icons/button-arrow_navy.svg") center center no-repeat;
  background-size: contain;
}
.c-cta-block-button__wht:hover {
  background: var(--color-main);
  color: white;
}
.c-cta-block-button__wht:hover::after {
  background: url("../images/icons/button-arrow_wht.svg") center center no-repeat;
  background-size: contain;
}
.c-cta-block-button:hover {
  background: var(--color-main);
}
.c-cta-block-button-wrap {
  background: rgba(255, 255, 255, 0.3);
  padding: 24px;
}
@media only screen and (max-width: 991px) {
  .c-cta-block-button-wrap {
    padding: 12px 24px;
  }
}
.c-cta-block-tel {
  line-height: 1;
}
.c-cta-block-tel-title {
  font-size: 20px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .c-cta-block-tel-title {
    font-size: 12px;
  }
}
.c-cta-block-tel-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family--arial);
  font-size: 42px;
  font-weight: bold;
  color: white;
}
@media only screen and (max-width: 991px) {
  .c-cta-block-tel-number {
    font-size: 26px;
  }
}
.c-cta-block-tel-number .icon {
  width: 40px;
}
@media only screen and (max-width: 991px) {
  .c-cta-block-tel-number .icon {
    width: 25px;
  }
}
.c-cta-block-tel-time {
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  .c-cta-block-tel-time {
    font-size: 12px;
  }
}
.c-cta-block a.tel {
  color: white;
}

.c-arrow-down {
  display: block;
  width: 66px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 991px) {
  .c-arrow-down {
    width: 51px;
  }
}

.c-note-card {
  padding: 48px 50px;
  margin-inline: auto;
  background: white;
  position: relative;
  box-shadow: 4px 4px 4px 0 #084A83;
}
@media only screen and (max-width: 991px) {
  .c-note-card {
    padding: 68px 17px 52px;
    max-width: 720px;
  }
}
.c-note-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent var(--color-main) transparent;
  border-width: 0 0 93px 108px;
}
@media only screen and (max-width: 991px) {
  .c-note-card::after {
    border-width: 0 0 51px 51px;
  }
}
.c-note-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 28px;
  font-weight: bold;
  color: var(--color-main);
  position: relative;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .c-note-card-title {
    font-size: 18px;
    gap: 5px;
  }
}
.c-note-card-title::before, .c-note-card-title::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--color-main);
}
@media only screen and (max-width: 991px) {
  .c-note-card-title::before, .c-note-card-title::after {
    width: 14px;
    height: 1px;
  }
}
.c-note-card p {
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .c-note-card p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .c-note-card p {
    text-align: left;
  }
}
.c-note-card p .color {
  font-weight: bold;
  color: var(--color-main);
}
.c-note-card-logo {
  position: absolute;
  top: 10px;
  left: 15px;
  width: 131px;
}
@media only screen and (max-width: 991px) {
  .c-note-card-logo {
    top: 13px;
    width: 78px;
  }
}

.wpcf7-form label {
  font-size: 15px;
  font-weight: bold;
}
.wpcf7-form label .any, .wpcf7-form label .required {
  display: inline-block;
  background: #6C7575;
  font-size: 12px;
  font-weight: bold;
  color: white;
  line-height: 1;
  padding: 6px 10px;
  margin-right: 10px;
  border-radius: 3px;
}
@media only screen and (max-width: 991px) {
  .wpcf7-form label .any, .wpcf7-form label .required {
    font-size: 12px;
    padding: 4px 6px;
    margin-right: 6px;
  }
}
.wpcf7-form label .required {
  background: #5197D3;
}
.wpcf7-form input[type=date],
.wpcf7-form input[type=email],
.wpcf7-form input[type=number],
.wpcf7-form input[type=password],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=text],
.wpcf7-form input[type=url],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 500px;
  max-width: 100%;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  margin-top: 4px;
  padding: 5px 12px;
  font-size: 16px;
}
.wpcf7-form input[type=date].wpcf7-not-valid,
.wpcf7-form input[type=email].wpcf7-not-valid,
.wpcf7-form input[type=number].wpcf7-not-valid,
.wpcf7-form input[type=password].wpcf7-not-valid,
.wpcf7-form input[type=tel].wpcf7-not-valid,
.wpcf7-form input[type=text].wpcf7-not-valid,
.wpcf7-form input[type=url].wpcf7-not-valid,
.wpcf7-form select.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
  border-color: #dc3232;
  background: rgba(255, 0, 0, 0.03);
}
.wpcf7-form textarea {
  width: 100%;
}
.wpcf7-form p {
  margin-bottom: 1em;
}
.wpcf7-form .wpcf7-submit {
  display: grid;
  place-content: center;
  width: 280px;
  height: 48px;
  background: #5197D3;
  border: none;
  font-size: 20px;
  color: white;
  margin: auto;
  cursor: pointer;
}
.wpcf7-form .wpcf7-submit:hover {
  background: var(--color-main);
}
.wpcf7-form .wpcf7-response-output {
  margin-top: 0;
  margin-bottom: 0;
}

.wpcf7 form .wpcf7-response-output {
  margin-top: 0;
}

.l-header {
  width: 100%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}
.l-header-inner {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
  margin: auto;
  max-width: 1370px;
}
@media only screen and (max-width: 991px) {
  .l-header-inner {
    height: 50px;
  }
}
.l-header-site-name {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 22px;
  font-weight: bold;
}
@media only screen and (max-width: 1180px) {
  .l-header-site-name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .l-header-site-name {
    font-size: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .l-header-logo {
    width: 81px;
  }
}
.l-header-info {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 991px) {
  .l-header-info {
    display: none;
  }
}
.l-header-tel-number {
  font-family: var(--font-family--arial);
  font-size: 27px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 3px;
}
@media only screen and (max-width: 1180px) {
  .l-header-tel-number {
    font-size: 22px;
  }
}
.l-header-tel-title {
  display: grid;
  place-content: center;
  width: 50px;
  height: 27px;
  background: var(--color-main);
  font-size: 15px;
  color: white;
}
@media only screen and (max-width: 1180px) {
  .l-header-tel-title {
    width: 38px;
    height: 23px;
    font-size: 13px;
  }
}
.l-header-tel-time {
  font-size: 12px;
  text-align: center;
}
.l-header-inquiry-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-sub);
  white-space: nowrap;
}
.l-header-inquiry-header::before, .l-header-inquiry-header::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-sub);
  display: block;
}
.l-header-inquiry-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.l-header-inquiry-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 218px;
  height: 40px;
  background: var(--color-sub);
  border: 1px solid var(--color-sub);
  font-size: 18px;
  font-weight: bold;
  color: white;
  padding-left: 26px;
  padding-right: 6px;
}
@media only screen and (max-width: 1180px) {
  .l-header-inquiry-button {
    font-size: 14px;
    width: 164px;
    padding-left: 18px;
  }
}
.l-header-inquiry-button::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../images/icons/button-arrow_wht.svg") center center no-repeat;
  background-size: contain;
}
.l-header-inquiry-button__wht {
  background: white;
  color: var(--color-sub);
  padding-left: 16px;
}
@media only screen and (max-width: 1180px) {
  .l-header-inquiry-button__wht {
    padding-left: 8px;
  }
}
.l-header-inquiry-button__wht::after {
  background: url("../images/icons/button-arrow_s.svg") center center no-repeat;
  background-size: contain;
}
.l-header-inquiry-button:hover {
  background: var(--color-main);
  color: white;
}
.l-header-menu {
  display: none;
  position: fixed;
  right: 10px;
  width: 46px;
  height: 46px;
  background: none;
  border: none;
}
@media only screen and (max-width: 991px) {
  .l-header-menu {
    display: block;
  }
}
.l-header-menu .bar {
  display: block;
  width: 30px;
  height: 2px;
  background: #0068B6;
  position: absolute;
  left: 8px;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.l-header-menu .bar:nth-child(1) {
  top: 13px;
}
.l-header-menu .bar:nth-child(2) {
  top: 22px;
}
.l-header-menu .bar:nth-child(3) {
  top: 31px;
}
.l-header-menu.active .bar:nth-child(1) {
  top: 26px;
  transform: rotate(45deg);
}
.l-header-menu.active .bar:nth-child(2) {
  opacity: 0;
}
.l-header-menu.active .bar:nth-child(3) {
  top: 26px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}
@media only screen and (max-width: 991px) {
  .mobile-menu {
    display: block;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 50px);
    background: var(--color-main);
    z-index: 10000;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
}
.mobile-menu.active {
  height: auto;
  visibility: visible;
  opacity: 1;
}
.mobile-menu-container {
  padding: 48px 24px;
}
.mobile-menu-navigation {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  color: white;
  display: grid;
  gap: 12px;
}
.mobile-menu-navigation li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.mobile-menu-navigation li a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/icons/button-arrow_wht.svg") center center no-repeat;
  background-size: contain;
}

.admin-bar .mobile-menu {
  top: 96px;
}
.admin-bar .l-header {
  top: 32px;
}
@media only screen and (max-width: 991px) {
  .admin-bar .l-header {
    top: 46px;
  }
}

.c-footer-copyright {
  background: #01162F;
  font-size: 12px;
  color: white;
  text-align: center;
  padding: 14px 10px;
}
@media only screen and (max-width: 991px) {
  .c-footer-copyright {
    font-size: 12px;
    padding: 8px 10px;
  }
}

.p-home-mv {
  padding-top: 54px;
  margin-top: 80px;
}
@media only screen and (max-width: 991px) {
  .p-home-mv {
    padding-top: 24px;
    margin-top: 50px;
  }
}
.p-home-mv-container {
  max-width: 1256px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 52px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
@media only screen and (max-width: 991px) {
  .p-home-mv-container {
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 24px;
  }
}
.p-home-mv-main {
  flex: 1;
}
.p-home-mv-image {
  position: relative;
}
.p-home-mv-image .swiper-pagination.swiper-pagination-bullets {
  bottom: -30px;
}
.p-home-mv-image .swiper-pagination-bullet-active {
  background: var(--color-main);
}
.p-home-mv-image-slide {
  width: 560px;
  max-width: 100%;
  aspect-ratio: 560/465;
  border-radius: 6px;
  overflow: hidden;
}
@media only screen and (max-width: 1180px) {
  .p-home-mv-image-slide {
    width: 480px;
  }
}
@media only screen and (max-width: 991px) {
  .p-home-mv-image-slide {
    width: calc(100vw - 20px);
  }
}
.p-home-mv-image-slide img {
  width: 100%;
  height: 100%;
}
.p-home-mv-title {
  margin-bottom: 56px;
}
@media only screen and (max-width: 991px) {
  .p-home-mv-title {
    text-align: center;
    margin-bottom: 32px;
  }
}
.p-home-mv-title__main {
  font-size: 48px;
  color: var(--color-main);
}
@media only screen and (max-width: 991px) {
  .p-home-mv-title__main {
    font-size: 32px;
  }
}
.p-home-mv-title__sub {
  display: inline-block;
  background: var(--color-main);
  font-size: 26px;
  color: white;
  line-height: 1;
  padding: 8px 32px;
  border-radius: 60px;
}
@media only screen and (max-width: 991px) {
  .p-home-mv-title__sub {
    font-size: 18px;
  }
}
.p-home-mv-title__sub .lg {
  font-size: 34px;
}
@media only screen and (max-width: 991px) {
  .p-home-mv-title__sub .lg {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .p-home-mv-voice {
    display: grid;
    place-items: center;
  }
}
.p-home-mv-voice-title {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 405px;
  height: 46px;
  background: #F6F6F6;
  background: linear-gradient(90deg, rgb(246, 246, 246) 0%, rgba(246, 246, 246, 0) 100%);
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.25);
  font-size: 24px;
  font-weight: bold;
  color: var(--color-main);
  padding-right: 22px;
  position: relative;
  left: 16px;
}
@media only screen and (max-width: 991px) {
  .p-home-mv-voice-title {
    font-size: 18px;
    width: 305px;
    height: 32px;
    place-self: flex-start;
  }
}
.p-home-mv-voice-title .icon {
  display: block;
  width: 64px;
  position: absolute;
  left: -16px;
}
@media only screen and (max-width: 991px) {
  .p-home-mv-voice-title .icon {
    width: 44px;
  }
}
.p-home-mv-voice-list {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 991px) {
  .p-home-mv-voice-list {
    font-size: 14px;
  }
}
.p-home-mv-voice-list li {
  position: relative;
  padding-left: 26px;
  margin-top: 8px;
}
@media only screen and (max-width: 991px) {
  .p-home-mv-voice-list li {
    padding-left: 20px;
    padding-top: 4px;
  }
}
.p-home-mv-voice-list li .lg {
  font-size: 24px;
  color: var(--color-main);
}
@media only screen and (max-width: 991px) {
  .p-home-mv-voice-list li .lg {
    font-size: 16px;
  }
}
.p-home-mv-voice-list li .md {
  font-size: 22px;
  color: var(--color-main);
}
@media only screen and (max-width: 991px) {
  .p-home-mv-voice-list li .md {
    font-size: 16px;
  }
}
.p-home-mv-voice-list li::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url("../images/icons/check_list.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 10px;
}
@media only screen and (max-width: 991px) {
  .p-home-mv-voice-list li::before {
    width: 15px;
    height: 15px;
    top: 6px;
  }
}

.p-home-company-list {
  margin-bottom: 54px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .p-home-company-list {
    margin-bottom: 24px;
  }
}
.p-home-company-list-title {
  font-size: 30px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  .p-home-company-list-title {
    font-size: 22px;
    gap: 10px;
  }
}
.p-home-company-list-title::before, .p-home-company-list-title::after {
  content: "";
  width: 23px;
  height: 73px;
}
@media only screen and (max-width: 991px) {
  .p-home-company-list-title::before, .p-home-company-list-title::after {
    width: 16px;
    height: 51px;
  }
}
.p-home-company-list-title::before {
  background: url("../images/icons/leaf1.svg") center center no-repeat;
  background-size: contain;
}
.p-home-company-list-title::after {
  background: url("../images/icons/leaf2.svg") center center no-repeat;
  background-size: contain;
}
.p-home-company-list-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.p-home-company-list-slider .swiper-slide {
  width: 1419px;
}
@media only screen and (max-width: 991px) {
  .p-home-company-list-slider .swiper-slide {
    width: 470px;
  }
}

.p-home-problem {
  background: url("../images/common/bg_stone.jpg");
  background-size: cover;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media only screen and (max-width: 991px) {
  .p-home-problem {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-home-problem-header {
  display: grid;
  place-content: center;
  place-items: center;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1180px) {
  .p-home-problem-header {
    margin-bottom: 24px;
  }
}
.p-home-problem-header img {
  width: 188px;
}
@media only screen and (max-width: 991px) {
  .p-home-problem-header img {
    width: 137px;
  }
}
.p-home-problem-title {
  font-size: 26px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .p-home-problem-title {
    font-size: 16px;
  }
}
.p-home-problem-title .lg {
  font-size: 38px;
  color: var(--color-main);
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-home-problem-title .lg {
    font-size: 24px;
  }
}
.p-home-problem-title .lg::before {
  content: "・・・";
  position: absolute;
  top: -13px;
  left: 10px;
  font-size: 22px;
  letter-spacing: 1.3em;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .p-home-problem-title .lg::before {
    top: -13px;
    left: 6px;
    font-size: 20px;
    letter-spacing: 0.7em;
  }
}
.p-home-problem-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .p-home-problem-list {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 10px;
  }
}
.p-home-problem-item {
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .p-home-problem-item {
    max-width: 720px;
  }
}
.p-home-problem-item-title {
  font-size: 32px;
  color: var(--color-main);
  line-height: 1.3;
  display: flex;
  justify-content: center;
  height: 60px;
  white-space: nowrap;
}
@media only screen and (max-width: 1180px) {
  .p-home-problem-item-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1180px) {
  .p-home-problem-item-title {
    font-size: 24px;
    margin-bottom: -18px;
  }
}
.p-home-problem-item-title span {
  font-size: 24px;
  line-height: 2.4;
}
@media only screen and (max-width: 1180px) {
  .p-home-problem-item-title span {
    font-size: 18px;
  }
}
.p-home-problem-item-icon {
  width: 80px;
  margin: auto;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 1180px) {
  .p-home-problem-item-icon {
    width: 76px;
  }
}
.p-home-problem-item-card {
  background: white;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
  top: -20px;
  min-height: 231px;
}
@media only screen and (max-width: 991px) {
  .p-home-problem-item-card {
    min-height: auto;
  }
}
.p-home-problem-item-card ul {
  margin: 0;
  padding: 0;
  text-align: left;
  list-style: none;
  font-size: 18px;
  font-weight: bold;
}
.p-home-problem-item-card ul li {
  position: relative;
  padding-left: 23px;
  line-height: 1.5;
}
.p-home-problem-item-card ul li:nth-child(n+2) {
  margin-top: 8px;
}
.p-home-problem-item-card ul li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/icons/icon_check.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 3px;
}

.p-home-point {
  padding-top: 48px;
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .p-home-point {
    padding-top: 20px;
    margin-bottom: 48px;
  }
}
.p-home-point-title {
  display: block;
  font-family: var(--font-family--montserrat);
  font-size: 100px;
  color: #C2C2C2;
  line-height: 1;
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .p-home-point-title {
    font-size: 48px;
    margin-bottom: 24px;
  }
}
.p-home-point-title__sub {
  display: inline-block;
  width: 426px;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 213px);
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .p-home-point-title__sub {
    width: 280px;
    left: calc(50% - 140px);
    bottom: -20px;
  }
}
.p-home-point-contents {
  display: grid;
  gap: 56px;
}
@media only screen and (max-width: 991px) {
  .p-home-point-contents {
    padding-left: 24px;
    padding-right: 24px;
    gap: 32px;
  }
}
.p-home-point-content {
  display: flex;
  gap: 56px;
}
@media only screen and (max-width: 991px) {
  .p-home-point-content {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
.p-home-point-content-main {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .p-home-point-content-main {
    flex-direction: column;
    align-items: center;
  }
}
.p-home-point-content-header {
  width: 114px;
  flex-shrink: 0;
  padding-right: 24px;
  border-right: 2px solid var(--color-main);
  font-family: var(--font-family--arial);
  color: var(--color-main);
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .p-home-point-content-header {
    width: 50px;
    text-align: center;
    display: grid;
    place-items: center;
    border-right: none;
    border-bottom: 2px solid var(--color-main);
    padding-right: 0;
    margin-bottom: 16px;
  }
}
.p-home-point-content-header .point {
  font-size: 30px;
}
@media only screen and (max-width: 991px) {
  .p-home-point-content-header .point {
    font-size: 16px;
  }
}
.p-home-point-content-header .number {
  font-size: 78px;
  position: relative;
  top: -2px;
  left: -4px;
}
@media only screen and (max-width: 991px) {
  .p-home-point-content-header .number {
    font-size: 43px;
    top: 0;
    left: 0;
  }
}
.p-home-point-content-body {
  padding-left: 24px;
}
@media only screen and (max-width: 991px) {
  .p-home-point-content-body {
    padding-left: 0;
  }
}
.p-home-point-content-body p {
  font-size: 18px;
  line-height: 1.8;
}
@media only screen and (max-width: 991px) {
  .p-home-point-content-body p {
    font-size: 12px;
    line-height: 1.5;
  }
}
.p-home-point-content-title {
  color: var(--color-main);
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}
.p-home-point-content-title__main {
  display: block;
  font-size: 26px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .p-home-point-content-title__main {
    font-size: 20px;
    text-align: center;
  }
}
.p-home-point-content-title__sub {
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 991px) {
  .p-home-point-content-title__sub {
    font-size: 18px;
    justify-content: center;
  }
}
.p-home-point-content-title__sub::before, .p-home-point-content-title__sub::after {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--color-main);
  position: relative;
  top: 3px;
}
.p-home-point-content-image {
  width: 435px;
  flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
  .p-home-point-content-image {
    width: auto;
  }
}

.p-home-loans {
  background: #F9F9F9;
  padding-top: 120px;
  padding-bottom: 120px;
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .p-home-loans {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 48px;
  }
}
.p-home-loans-title {
  margin-bottom: 32px;
}
.p-home-loans-title-mark {
  width: 234px;
  display: block;
  margin: auto;
}
@media only screen and (max-width: 991px) {
  .p-home-loans-title-mark {
    width: 168px;
  }
}
.p-home-loans .c-arrow-down {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .p-home-loans .c-arrow-down {
    margin-bottom: 32px;
  }
}

.p-home-target {
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .p-home-target {
    margin-bottom: 48px;
  }
}
.p-home-target-title {
  margin-bottom: 32px;
}
@media only screen and (max-width: 991px) {
  .p-home-target-title {
    margin-bottom: 16px;
  }
}
.p-home-target-desc {
  font-size: 18px;
  text-align: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .p-home-target-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.p-home-target-card {
  width: 100%;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
  padding-bottom: 24px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .p-home-target-card {
    max-width: 720px;
    padding-bottom: 19px;
  }
}
.p-home-target-card-title {
  display: grid;
  place-content: center;
  width: 100%;
  height: 60px;
  font-size: 30px;
  color: white;
  background: var(--color-main);
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .p-home-target-card-title {
    font-size: 20px;
    height: 40px;
  }
}
.p-home-target-card-fig {
  width: 100%;
  height: 128px;
  display: grid;
  place-content: center;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .p-home-target-card-fig {
    margin-bottom: 6px;
    height: 86px;
  }
}
@media only screen and (max-width: 991px) {
  .p-home-target-card-fig img {
    height: 86px;
  }
}
.p-home-target-card p {
  font-size: 18px;
  text-align: center;
  padding: 0 24px;
}
@media only screen and (max-width: 991px) {
  .p-home-target-card p {
    font-size: 14px;
  }
}
.p-home-target-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 88px;
}
@media only screen and (max-width: 991px) {
  .p-home-target-card-list {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 24px;
  }
}

.p-home-difference {
  background: url("../images/home/bg_difference.jpg") center bottom no-repeat;
  background-size: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .p-home-difference {
    padding-top: 0;
    padding-bottom: 48px;
  }
}
.p-home-difference-table {
  width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 991px) {
  .p-home-difference-table {
    width: 760px;
  }
}
.p-home-difference-table-block {
  overflow: auto;
}
.p-home-difference-table-header {
  display: grid;
  grid-template-columns: 11fr 11fr 9fr 9fr;
  place-items: flex-end;
}
.p-home-difference-table-header-item {
  background: #999;
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-align: center;
  display: grid;
  place-items: center;
  width: 100%;
  height: 112px;
}
@media only screen and (max-width: 991px) {
  .p-home-difference-table-header-item {
    height: 66px;
    font-size: 14px;
  }
}
.p-home-difference-table-header-item:nth-child(1) {
  background: transparent;
}
.p-home-difference-table-header-item:nth-child(2) {
  background: var(--color-main);
  height: 130px;
}
@media only screen and (max-width: 991px) {
  .p-home-difference-table-header-item:nth-child(2) {
    height: 75px;
  }
}
.p-home-difference-table-header-item:nth-child(4) {
  border-left: 1px solid #DFDFDF;
}
.p-home-difference-table-row {
  display: grid;
  grid-template-columns: 11fr 11fr 9fr 9fr;
}
.p-home-difference-table-row-title {
  font-size: 22px;
}
@media only screen and (max-width: 991px) {
  .p-home-difference-table-row-title {
    font-size: 14px;
  }
}
.p-home-difference-table-row-title__sub {
  font-size: 16px;
  color: #333;
  line-height: 1.3;
}
@media only screen and (max-width: 991px) {
  .p-home-difference-table-row-title__sub {
    font-size: 12px;
  }
}
.p-home-difference-table-cell {
  width: 100%;
  height: 140px;
  background: white;
  border-left: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-main);
  text-align: center;
  padding: 0 8px;
}
@media only screen and (max-width: 991px) {
  .p-home-difference-table-cell {
    font-size: 12px;
    height: 94px;
  }
}
.p-home-difference-table-cell:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-left: 12px;
}
@media only screen and (max-width: 991px) {
  .p-home-difference-table-cell:nth-child(1) {
    padding-left: 16px;
  }
}
.p-home-difference-table-cell:nth-child(2) {
  border-left: 6px solid var(--color-main);
  border-right: 6px solid var(--color-main);
}
@media only screen and (max-width: 991px) {
  .p-home-difference-table-cell:nth-child(2) {
    border-left: 3px solid var(--color-main);
    border-right: 3px solid var(--color-main);
  }
}
.p-home-difference-table-cell-status {
  width: 44px;
  height: 44px;
  margin: 16px auto 6px;
}
@media only screen and (max-width: 991px) {
  .p-home-difference-table-cell-status {
    width: 26px;
    height: 26px;
    margin: 8px auto 3px;
  }
}
.p-home-difference-table-cell img {
  display: block;
}
.p-home-difference-table-row:last-of-type .p-home-difference-table-cell:nth-child(2) {
  height: 160px;
  border-bottom: 6px solid var(--color-main);
}
@media only screen and (max-width: 991px) {
  .p-home-difference-table-row:last-of-type .p-home-difference-table-cell:nth-child(2) {
    border-bottom: 3px solid var(--color-main);
    height: 105px;
  }
}
.p-home-difference-table-row:last-of-type .p-home-difference-table-cell:nth-child(4) {
  font-size: 15px;
}
@media only screen and (max-width: 991px) {
  .p-home-difference-table-row:last-of-type .p-home-difference-table-cell:nth-child(4) {
    font-size: 12px;
  }
}

.p-home-voice {
  background: #F9F9F9;
  padding: 120px 0;
}
@media only screen and (max-width: 991px) {
  .p-home-voice {
    padding: 48px 0;
  }
}
.p-home-voice-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .p-home-voice-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.p-home-voice-item-movie {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .p-home-voice-item-movie {
    margin-bottom: 8px;
  }
}
.p-home-voice-item-movie iframe {
  width: 100%;
  height: 100%;
}
.p-home-voice-item-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .p-home-voice-item-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.p-home-voice-item-desc {
  font-size: 20px;
  line-height: 1.8;
}
@media only screen and (max-width: 991px) {
  .p-home-voice-item-desc {
    font-size: 14px;
  }
}

.p-home-about {
  padding-top: 120px;
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .p-home-about {
    padding-top: 24px;
    margin-bottom: 48px;
  }
}
.p-home-about-container {
  display: flex;
  gap: 56px;
}
@media only screen and (max-width: 991px) {
  .p-home-about-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
.p-home-about-content-title {
  font-size: 24px;
  color: var(--color-main);
  margin-bottom: 32px;
}
@media only screen and (max-width: 991px) {
  .p-home-about-content-title {
    margin-bottom: 24px;
  }
}
.p-home-about-content p {
  font-size: 18px;
  line-height: 1.7;
}
@media only screen and (max-width: 991px) {
  .p-home-about-content p {
    font-size: 16px;
  }
}
.p-home-about-image {
  width: 520px;
  flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
  .p-home-about-image {
    width: auto;
  }
}

.p-home-group {
  padding-top: 100px;
}
.p-home-group-container {
  background: #F7F7F7;
  border: 1px solid var(--color-main);
  position: relative;
  padding: 64px 20px;
}
@media only screen and (max-width: 991px) {
  .p-home-group-container {
    padding: 52px 10px;
  }
}
.p-home-group-title {
  display: grid;
  place-content: center;
  width: 394px;
  height: 63px;
  font-size: 32px;
  color: white;
  background: var(--color-main);
  position: absolute;
  left: calc(50% - 197px);
  top: -32px;
  z-index: 5;
}
@media only screen and (max-width: 991px) {
  .p-home-group-title {
    width: 212px;
    height: 40px;
    font-size: 22px;
    left: calc(50% - 106px);
    top: -20px;
  }
}
.p-home-group-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin-bottom: 31px;
}
@media only screen and (max-width: 991px) {
  .p-home-group-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .p-home-group-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-home-group .c-arrow-down {
  margin-bottom: 32px;
}
.p-home-group .c-note-card {
  width: calc(100% - 120px);
}
@media only screen and (max-width: 991px) {
  .p-home-group .c-note-card {
    width: 100%;
  }
}
.p-home-group .c-note-card-title {
  color: #333;
}
.p-home-group-card {
  flex: 1;
  background: white;
  border: 1px solid var(--color-main);
  font-size: 12px;
  font-weight: bold;
  padding: 26px 5px 12px;
}
@media only screen and (max-width: 991px) {
  .p-home-group-card {
    padding-top: 16px;
  }
}
.p-home-group-card-logo {
  padding-right: 20px;
  height: 40px;
}
@media only screen and (max-width: 991px) {
  .p-home-group-card-logo {
    height: 30px;
  }
}
.p-home-group-card-logo img {
  max-height: 34px;
}
@media only screen and (max-width: 991px) {
  .p-home-group-card-logo img {
    max-height: 30px;
  }
}
.p-home-group-card-name {
  margin-bottom: 8px;
}
.p-home-group-card-business {
  margin-bottom: 4px;
}
.p-home-group-card-addr {
  display: inline-block;
}
.p-home-group-card-time {
  display: inline-block;
  margin-left: 16px;
}
.p-home-group-card-business span, .p-home-group-card-addr span, .p-home-group-card-time span {
  display: inline-block;
  background: var(--color-main);
  font-size: 10px;
  font-weight: 500;
  color: white;
  padding: 2px 10px;
}

.p-home-diagnosis {
  padding: 120px 0;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .p-home-diagnosis {
    padding: 48px 0;
  }
}
.p-home-diagnosis-title {
  margin-bottom: 32px;
}
@media only screen and (max-width: 991px) {
  .p-home-diagnosis-title {
    margin-bottom: 16px;
  }
}
.p-home-diagnosis-desc {
  font-size: 18p;
  text-align: center;
  margin-bottom: 56px;
}
@media only screen and (max-width: 991px) {
  .p-home-diagnosis-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.p-home-diagnosis-slide-item {
  width: 160px;
  height: 114px;
}
.p-home-diagnosis-slide .swiper-wrapper {
  transition-timing-function: linear;
}
.p-home-diagnosis-slide .swiper-slide {
  width: 420px;
}
@media only screen and (max-width: 991px) {
  .p-home-diagnosis-slide .swiper-slide {
    width: 100%;
  }
}
.p-home-diagnosis-slide .swiper-slide img {
  height: auto;
  width: 100%;
}

.p-home-faq {
  background: #F8FAFF;
  padding: 120px 0;
}
@media only screen and (max-width: 991px) {
  .p-home-faq {
    padding: 48px 0;
  }
}
.p-home-faq-container {
  display: flex;
  gap: 55px;
}
@media only screen and (max-width: 991px) {
  .p-home-faq-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.p-home-faq-header {
  white-space: nowrap;
}
.p-home-faq-header .c-section-title {
  margin-bottom: 0;
}
.p-home-faq-main {
  flex-grow: 1;
  display: grid;
  gap: 16px;
}

.c-faq-block {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
}

.c-faq-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: bold;
}
.c-faq-row .icon {
  flex-shrink: 0;
  display: grid;
  place-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: var(--font-family--arial);
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.c-faq-row__q {
  background: white;
  color: var(--color-main);
  position: relative;
  padding: 16px 40px 16px 16px;
  cursor: pointer;
}
.c-faq-row__q .icon {
  background: var(--color-main);
  color: white;
}
.c-faq-row__q::after {
  content: "+";
  width: 16px;
  height: 16px;
  display: grid;
  place-content: center;
  position: absolute;
  top: calc(50% - 10px);
  right: 16px;
  font-size: 32px;
  line-height: 1;
  color: var(--color-main);
}
.c-faq-row__q.active, .c-faq-row__q:hover {
  background: var(--color-main);
  color: white;
}
.c-faq-row__q.active .icon, .c-faq-row__q:hover .icon {
  background: white;
  color: var(--color-main);
}
.c-faq-row__q.active::after, .c-faq-row__q:hover::after {
  content: "-";
  color: white;
}
.c-faq-row__a {
  background: white;
  color: var(--color-main);
  padding: 0 16px;
  overflow: hidden;
  transition: height 0.5s ease, opacity 0.5s ease;
  height: 0;
  opacity: 0;
}
.c-faq-row__a .icon {
  background: var(--color-main);
  color: white;
}
.c-faq-row__a.active {
  height: auto;
  opacity: 1;
  padding: 16px;
}

.p-home-case {
  padding: 120px 0;
}
@media only screen and (max-width: 991px) {
  .p-home-case {
    padding: 48px 0;
  }
}
.p-home-case-container {
  max-width: 1240px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 48px;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-home-case-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.p-home-case-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 991px) {
  .p-home-case-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-home-case-content-main {
  padding-left: 48px;
}
@media only screen and (max-width: 991px) {
  .p-home-case-content-main {
    padding-left: 0;
  }
}
.p-home-case-content-logo {
  margin-bottom: 8px;
}
.p-home-case-content-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 1em;
}
@media only screen and (max-width: 991px) {
  .p-home-case-content-title {
    font-size: 20px;
  }
}
.p-home-case-content-image img {
  display: block;
  margin: auto;
}
.p-home-case-content-company {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .p-home-case-content-company {
    margin-bottom: 24px;
  }
}
.p-home-case-content-company-row {
  display: flex;
  gap: 8px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-main);
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .p-home-case-content-company-row {
    font-size: 16px;
  }
}
.p-home-case-content-company-row-title {
  display: grid;
  place-content: center;
  font-size: 14px;
  color: white;
  line-height: 1;
  width: 74px;
  height: 26px;
  border-radius: 3px;
  background: var(--color-main);
}
@media only screen and (max-width: 991px) {
  .p-home-case-content-company-row-title {
    font-size: 12px;
    width: 66px;
    height: 23px;
  }
}
.p-home-case-content-company-row a {
  color: var(--color-main);
}
.p-home-case-content-desc {
  line-height: 1.8;
  font-size: 16px;
}
.p-home-case .swiper-button-next, .p-home-case .swiper-button-prev {
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 991px) {
  .p-home-case .swiper-button-next, .p-home-case .swiper-button-prev {
    width: 22px;
    height: 22px;
  }
}
.p-home-case .swiper-button-next::after, .p-home-case .swiper-button-prev::after {
  width: 100%;
  height: 100%;
  content: "";
}
.p-home-case .swiper-button-next {
  right: 10px;
}
@media only screen and (max-width: 991px) {
  .p-home-case .swiper-button-next {
    right: 5px;
  }
}
.p-home-case .swiper-button-next::after {
  background: url("../images/icons/arrow_slide-next.png") center center no-repeat;
  background-size: contain;
}
.p-home-case .swiper-button-prev {
  left: 10px;
}
@media only screen and (max-width: 991px) {
  .p-home-case .swiper-button-prev {
    left: 5px;
  }
}
.p-home-case .swiper-button-prev::after {
  background: url("../images/icons/arrow_slide-prev.png") center center no-repeat;
  background-size: contain;
}
.p-home-case .swiper-pagination-bullet-active {
  background: var(--color-main);
}

.p-home-flow {
  background: #F8FAFF;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .p-home-flow {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p-home-flow-container {
  display: flex;
  gap: 55px;
}
@media only screen and (max-width: 991px) {
  .p-home-flow-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.p-home-flow-header {
  white-space: nowrap;
}
.p-home-flow-header .c-section-title {
  margin-bottom: 0;
}
.p-home-flow-main {
  flex-grow: 1;
}
.p-home-flow-desc {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 80px;
}
@media only screen and (max-width: 991px) {
  .p-home-flow-desc {
    font-size: 18px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0;
  }
}
.p-home-flow-desc .c-arrow-down {
  margin-top: 16px;
}
.p-home-flow-list {
  display: grid;
  gap: 16px;
}
.p-home-flow-list-item {
  display: flex;
  gap: 34px;
}
.p-home-flow-list-item-step {
  display: grid;
  place-content: center;
  width: 80px;
  height: 80px;
  background: var(--color-main);
  border-radius: 50%;
  position: relative;
  top: 12px;
  font-family: var(--font-family--arial);
  font-weight: bold;
  font-size: 42px;
  color: white;
  line-height: 1;
  text-align: center;
}
.p-home-flow-list-item-step span {
  font-size: 16px;
}
@media only screen and (max-width: 991px) {
  .p-home-flow-list-item-step {
    display: none;
  }
}
.p-home-flow-list-item:not(:last-child) .p-home-flow-list-item-step::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  left: calc(50% - 1px);
  top: 100%;
  background: var(--color-main);
}
.p-home-flow-list-item-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  background: white;
  border: 2px solid var(--color-main);
  border-radius: 8px;
  padding: 12px 24px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .p-home-flow-list-item-content {
    border-radius: 4px;
    padding: 8px 10px;
  }
}
.p-home-flow-list-item-content::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: white;
  border-left: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  border-radius: 8px;
  position: absolute;
  left: -25px;
  top: calc(50% - 6px);
  transform: rotate(45deg) translateY(-50%);
}
@media only screen and (max-width: 991px) {
  .p-home-flow-list-item-content::before {
    display: none;
  }
}
.p-home-flow-list-item-content::after {
  content: "";
  width: 50px;
  height: 70px;
  background: white;
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .p-home-flow-list-item-content::after {
    display: none;
  }
}
.p-home-flow-list-item-content-icon {
  width: 68px;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .p-home-flow-list-item-content-icon {
    display: none;
  }
}
.p-home-flow-list-item-content-main {
  position: relative;
  z-index: 2;
}
.p-home-flow-list-item p {
  line-height: 1.3;
}
@media only screen and (max-width: 991px) {
  .p-home-flow-list-item p {
    font-size: 12px;
  }
}
.p-home-flow-list-item-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-main);
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .p-home-flow-list-item-title {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
  }
}
.p-home-flow-list-item-title .mobile-step-icon {
  display: none;
}
@media only screen and (max-width: 991px) {
  .p-home-flow-list-item-title .mobile-step-icon {
    display: block;
  }
}
.p-home-flow-list-item-title .mobile-step-icon img {
  height: 36px;
}

.p-home-merit {
  margin-bottom: 120px;
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .p-home-merit {
    margin-bottom: 34px;
    padding-top: 48px;
  }
}
.p-home-merit .c-section-title {
  margin-bottom: 32px;
}
.p-home-merit .c-arrow-down {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .p-home-merit .c-arrow-down {
    margin-bottom: 32px;
  }
}
.p-home-merit .c-note-card {
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .p-home-merit .c-note-card {
    margin-bottom: 32px;
  }
}
.p-home-merit-table {
  width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 991px) {
  .p-home-merit-table {
    width: 760px;
  }
}
.p-home-merit-table-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 32px;
}
@media only screen and (max-width: 991px) {
  .p-home-merit-table-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
.p-home-merit-table-block {
  overflow: auto;
}
.p-home-merit-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  place-items: flex-end;
}
.p-home-merit-table-header-cell {
  background: #8D8D8D;
  font-size: 24px;
  font-weight: bold;
  color: white;
  display: grid;
  place-items: center;
  width: 100%;
  height: 112px;
}
@media only screen and (max-width: 991px) {
  .p-home-merit-table-header-cell {
    height: 66px;
    font-size: 14px;
  }
}
.p-home-merit-table-header-cell:nth-child(1) {
  background: transparent;
}
.p-home-merit-table-header-cell:nth-child(2) {
  background: var(--color-main);
  height: 130px;
}
@media only screen and (max-width: 991px) {
  .p-home-merit-table-header-cell:nth-child(2) {
    height: 75px;
  }
}
.p-home-merit-table-header-cell:nth-child(4) {
  border-left: 1px solid #DFDFDF;
}
.p-home-merit-table-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.p-home-merit-table-row-title {
  font-size: 22px;
}
@media only screen and (max-width: 991px) {
  .p-home-merit-table-row-title {
    font-size: 14px;
  }
}
.p-home-merit-table-row-title__sub {
  font-size: 16px;
  color: #333;
  line-height: 1.3;
}
@media only screen and (max-width: 991px) {
  .p-home-merit-table-row-title__sub {
    font-size: 12px;
  }
}
.p-home-merit-table-cell {
  display: grid;
  place-content: center;
  width: 100%;
  height: 70px;
  background: #fafafa;
  border-bottom: 1px solid #DFDFDF;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-main);
  text-align: center;
  padding: 0 8px;
}
@media only screen and (max-width: 991px) {
  .p-home-merit-table-cell {
    font-size: 12px;
    height: 42px;
  }
}
.p-home-merit-table-cell:nth-child(1) {
  border-left: 1px solid #DFDFDF;
}
.p-home-merit-table-cell:nth-child(2) {
  border-left: 6px solid var(--color-main);
  border-right: 6px solid var(--color-main);
}
@media only screen and (max-width: 991px) {
  .p-home-merit-table-cell:nth-child(2) {
    border-left: 3px solid var(--color-main);
    border-right: 3px solid var(--color-main);
  }
}
.p-home-merit-table-cell:nth-child(4) {
  border-left: 1px solid #DFDFDF;
  border-right: 1px solid #DFDFDF;
}
.p-home-merit-table-cell__black {
  background: #2D2D2D;
  color: white;
  height: 40px;
}
.p-home-merit-table-row:last-of-type .p-home-merit-table-cell:nth-child(2) {
  height: 85px;
  border-bottom: 6px solid var(--color-main);
}
@media only screen and (max-width: 991px) {
  .p-home-merit-table-row:last-of-type .p-home-merit-table-cell:nth-child(2) {
    border-bottom: 3px solid var(--color-main);
    height: 48px;
  }
}

.p-home-form {
  background: url("../images/common/bg_stripe1.jpg");
  padding-top: 116px;
  padding-bottom: 60px;
  margin-bottom: 160px;
}
@media only screen and (max-width: 991px) {
  .p-home-form {
    padding-top: 48px;
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
}
.p-home-form-container {
  background: white;
  padding: 32px;
  width: 800px;
  max-width: 100%;
  border-radius: 10px;
  margin: auto;
}
@media only screen and (max-width: 991px) {
  .p-home-form-container {
    padding: 32px 24px;
  }
}
.p-home-form .wpcf7-form .privacy p {
  text-align: center;
  font-weight: 500;
  padding-right: 2em;
}
@media only screen and (max-width: 991px) {
  .p-home-form .wpcf7-form .privacy p {
    font-size: 12px;
  }
}
.p-home-form .wpcf7-form-control.wpcf7-checkbox {
  display: grid;
}
.p-home-form .wpcf7-form-control.wpcf7-checkbox label {
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .p-home-form .wpcf7-form-control.wpcf7-checkbox label {
    font-size: 13px;
  }
}

.p-home-company {
  margin-bottom: 160px;
}
@media only screen and (max-width: 991px) {
  .p-home-company {
    margin-bottom: 48px;
  }
}
.p-home-company-table {
  margin-inline: 40px;
}
@media only screen and (max-width: 991px) {
  .p-home-company-table {
    margin-inline: 10px;
  }
}
.p-home-company-table table {
  width: 100%;
  border-spacing: 0;
  vertical-align: middle;
  border-top: 1px solid #AFAFAF;
  color: var(--color-black);
}
.p-home-company-table table th, .p-home-company-table table td {
  padding: 24px;
  border-bottom: 1px solid #AFAFAF;
}
@media only screen and (max-width: 991px) {
  .p-home-company-table table th, .p-home-company-table table td {
    display: block;
    padding: 16px 8px;
  }
}
.p-home-company-table table th {
  width: 240px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .p-home-company-table table th {
    font-size: 16px;
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 991px) {
  .p-home-company-table table td {
    font-size: 14px;
    padding-top: 8px;
  }
}

main.p-page-main {
  padding-top: 54px;
  margin-top: 80px;
  min-height: calc(100dvh - 200px);
}
@media only screen and (max-width: 991px) {
  main.p-page-main {
    padding-top: 24px;
    margin-top: 50px;
    min-height: calc(100dvh - 150px);
  }
}
main .p-page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
}
@media only screen and (max-width: 991px) {
  main .p-page-header {
    height: 80px;
  }
}
@media only screen and (max-width: 991px) {
  main .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-thanks .container {
  display: grid;
  place-content: center;
}

/*# sourceMappingURL=style.css.map */
