@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover, button:hover {
    opacity: 0.75;
  }
}

a, button {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  color: currentColor;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.4rem; /* =14px */
  color: #383838;
  font-family: "Noto Sans JP", sans-serif !important;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
img {
  width: 100%;
  height: auto;
}

.indent {
  display: inline-block;
}

.inner {
  max-width: 1320px !important;
  padding: 0 20px !important;
  margin: 0 auto !important;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 100% !important;
    padding: 0 17px !important;
  }
}

.fixed-bnr {
  position: fixed;
  right: 0;
  bottom: 90px;
  z-index: 50;
  width: 50px;
}
@media screen and (max-width: 768px) {
  .fixed-bnr {
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 2.6666666667vw;
    background-color: #fff;
    display: flex;
    gap: 2.6666666667vw;
    align-items: center;
    box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.25);
  }
}
.fixed-bnr__text {
  display: block;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.08));
  background-color: #fff;
  border-radius: 8px 0 0 8px;
}
@media (any-hover: hover) {
  .fixed-bnr__text:hover {
    opacity: 1;
  }
  .fixed-bnr__text:hover img {
    opacity: 0.75;
  }
}
.fixed-bnr__text img {
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .fixed-bnr__tel {
    width: calc(50% - 1.3333333333vw);
  }
}
@media screen and (max-width: 768px) {
  .fixed-bnr__btn {
    width: calc(50% - 1.3333333333vw);
    padding: 3.2vw 6.1333333333vw 3.2vw 3.2vw;
    background-color: #FF871E;
    color: #fff;
    font-size: 3.7333333333vw;
    font-weight: bold;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .fixed-bnr__btn::after {
    content: "";
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid #fff;
    position: absolute;
    top: 50%;
    right: 11px;
    transform: translateY(-50%);
  }
}

.header {
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translateX(-50%);
  width: 96.5277777778%;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .header {
    position: static;
    transform: inherit;
    width: 100%;
  }
}
.header__inner {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 17px 16px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner {
    border-radius: 0;
    padding: 12px;
    justify-content: center;
  }
}
.header__logo {
  width: 197px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 149px;
  }
}
.header__box {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header__tel {
  width: 256px;
}
.header__contact {
  padding: 12px 29px 12px 19px;
  background-color: #FF871E;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
}
.header__contact::after {
  content: "";
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid #fff;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
}

.footer {
  background-color: #F5F5F5;
  padding-top: 50px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 17.0666666667vw;
    margin-top: 60px;
  }
}
.footer__logo {
  width: 197px;
  margin: 0 auto;
}
.footer__privacypolicy {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #676767;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .footer__privacypolicy {
    margin-top: 15px;
  }
}
.footer__privacypolicy img {
  width: 14px;
}
.footer__copyright {
  margin-top: 50px;
  padding: 10px;
  background-color: #183B6F;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 30px;
  }
}

.section-title {
  font-size: 4rem;
  color: #183B6F;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.c-mv {
  padding: 173px 20px 72px;
  background-image: url("../images/mv-bg.webp");
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .c-mv {
    padding: 58px 32px;
  }
}
.c-mv__copy {
  max-width: 100%;
  width: 1085px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-mv__copy {
    width: 100%;
    max-width: 450px;
  }
}

.c-mv-bottom {
  padding: 40px 0 60px;
}
@media screen and (max-width: 768px) {
  .c-mv-bottom {
    padding: 30px 0 40px;
  }
}
.c-mv-bottom__title {
  text-align: center;
}
.c-mv-bottom__title + p {
  margin-top: 30px;
  font-size: 2.6rem;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-mv-bottom__title + p {
    font-size: 1.8rem;
    text-align: left;
  }
}

.c-cta {
  background-color: #183B6F;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .c-cta {
    padding: 30px 0;
  }
}
.c-cta__title {
  color: #fff;
  text-align: center;
}
.c-cta__body {
  max-width: 1080px;
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-cta__body {
    margin-top: 20px;
    gap: 11px;
    flex-direction: column;
  }
}
.c-cta__btn {
  display: block;
  width: calc(50% - 20px);
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.55));
}
@media screen and (max-width: 768px) {
  .c-cta__btn {
    width: 100%;
  }
}

.c-area01 {
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  .c-area01 {
    padding: 40px 0 0;
  }
}
.c-area01__title {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-area01__title {
    margin-bottom: 20px;
  }
}
.c-area01__bnr {
  display: block;
  max-width: 1080px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .c-area01__bnr {
    max-width: 100%;
    margin-top: 20px;
  }
}

.c-message {
  padding: 60px 0 60px 0;
}
@media screen and (max-width: 768px) {
  .c-message {
    padding-top: 40px;
  }
}
.c-message .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .c-message .inner {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.c-message .inner > img {
  width: min(39.3055555556vw, 566px);
}
@media screen and (max-width: 768px) {
  .c-message .inner > img {
    width: 100%;
  }
}
.c-message__body h2 {
  font-size: 4rem;
  color: #183B6F;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-message__body h2 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
}
.c-message__body h2 .--top {
  display: block;
  font-size: 3.2rem;
  color: #000;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c-message__body h2 .--top {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
}
.c-message__body h2 + p {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-message__body h2 + p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.c-message__body h2 + p .--large {
  font-size: 2.6rem;
  font-weight: bold;
  color: #183B6F;
}
@media screen and (max-width: 768px) {
  .c-message__body h2 + p .--large {
    font-size: 2rem;
  }
}

.c-features {
  padding: 80px 0 60px;
  background-image: url("../images/bg-features.webp");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .c-features {
    padding: 60px 0 60px;
    background-image: url("../images/bg-features-sp.webp");
  }
}
.c-features__title {
  text-align: center;
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-features__title {
    font-size: 2.6rem;
  }
}
.c-features__title .--top {
  display: block;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .c-features__title .--top {
    font-size: 2rem;
    margin-bottom: 4px;
  }
}
.c-features__list {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1440px) {
  .c-features__list {
    gap: 2.7777777778vw;
  }
}
@media screen and (max-width: 768px) {
  .c-features__list {
    flex-direction: column;
    gap: 20px;
  }
}
.c-features__list li {
  width: calc(33.3333333333% - 26.6666666667px);
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .c-features__list li {
    width: calc(33.3333333333% - 1.8518518519vw);
  }
}
@media screen and (max-width: 768px) {
  .c-features__list li {
    width: 100%;
  }
}
.c-features__list li a, .c-features__list li > div {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .c-features__list li a, .c-features__list li > div {
    padding: 20px;
  }
}
.c-features__list li h3 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .c-features__list li h3 {
    font-size: 2.2rem;
    margin-top: 8px;
  }
}
.c-features__list li h3 + p {
  margin-top: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-features__list li h3 + p {
    margin-top: 14px;
  }
}
.c-features__img {
  overflow: hidden;
}
.c-features__img img {
  transition: transform 0.5s;
}
.c-features__num {
  margin-top: 20px;
  padding-left: 38px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2rem;
  font-weight: bold;
  color: #183B6F;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-features__num {
    margin-top: 20px;
    font-size: 2.2rem;
    padding-left: 38px;
  }
}
.c-features__num::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #183B6F;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-features__num::after {
    width: 30px;
  }
}
.c-features__link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  color: #183B6F;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-features__link {
    gap: 10px;
  }
}
.c-features__link img {
  width: 20px;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .c-features__link img {
    width: 20px;
  }
}
.c-features__banner {
  display: block;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .c-features__banner {
    margin-top: 40px;
  }
}

.c-area-form__top {
  margin-bottom: 5.4861111111%;
  position: relative;
}
.c-area-form__top::before {
  content: "";
  width: 100%;
  aspect-ratio: 1440/79;
  background-image: url("../images/bg-triangle.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-area-form__top::before {
    background-image: url("../images/bg-triangle-sp.svg");
    aspect-ratio: 375/20;
    top: 100%;
  }
}
.c-area-form__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #fff;
  font-size: 5.6rem;
  font-weight: bold;
  line-height: 1.3;
  background-color: #FF871E;
  position: relative;
  z-index: 1;
  padding: 50px 0 23px;
}
@media screen and (max-width: 768px) {
  .c-area-form__title {
    padding: 13px 10px 8px;
    font-size: 2.1rem;
    gap: 12px;
  }
}
.c-area-form__title img {
  width: 76px;
}
@media screen and (max-width: 768px) {
  .c-area-form__title img {
    width: 28px;
  }
}
.c-area-form__desc {
  padding: 59px 20px 0;
  margin-bottom: 59px;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-area-form__desc {
    padding: 30px 17px 0;
    margin-bottom: 40px;
    font-size: 2rem;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .c-area-form__desc .indent {
    display: inline;
  }
}
.c-area-form__desc a {
  text-decoration: underline;
}

.c-bnr-area {
  margin: 100px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .c-bnr-area {
    margin-top: 60px;
  }
}
.c-bnr-area__line-bnr {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.page_thanks .contents-wrap.--thanks {
  padding: 200px 20px 0;
  min-height: calc(100vh - 340px);
}
@media screen and (max-width: 768px) {
  .page_thanks .contents-wrap.--thanks {
    padding: 60px 20px 50px;
    min-height: calc(100vh - 310px);
    min-height: calc(100dvh - 310px);
  }
}
.page_thanks .contents-wrap.--thanks .ttl-thanks {
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_thanks .contents-wrap.--thanks .ttl-thanks {
    font-size: 2rem;
  }
}
.page_thanks .contents-wrap.--thanks .indent {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .page_thanks .footer {
    padding-bottom: 0 !important;
  }
}

.page_top .contents-wrap {
  border: none;
}
.page_top .contents-wrap .inner {
  max-width: 1080px;
}
@media screen and (max-width: 768px) {
  .page_top .wpcf7-form .mail-form tr:first-child th {
    border-top: 1px solid #183B6F !important;
  }
}
.page_top .mail-form th {
  background-color: #EAF7FD;
  border: none;
  border-top: 1px solid #183B6F;
  border-bottom: 1px solid #183B6F;
  padding: 20px 10px;
  color: #183B6F;
  width: 24.0740740741%;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .page_top .mail-form th {
    width: 100%;
    padding: 20px;
  }
}
.page_top .mail-form th p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page_top .mail-form td {
  border: none;
  border-top: 1px solid #F2F2F2;
  border-bottom: 1px solid #F2F2F2;
  background-color: transparent;
  padding: 20px;
  font-weight: 500;
  color: #000;
  width: 75.9259259259%;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page_top .mail-form td {
    width: 100%;
  }
}
.page_top .wpcf7-form-control.wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 16px;
}
.page_top .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 9px;
}
.page_top .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  font-weight: 500;
  display: block;
}
.page_top input[type=checkbox] {
  width: 25px;
  height: 25px;
  border-radius: 4px;
}
.page_top .wpcf7-form-control.wpcf7-number.wpcf7-validates-as-required.wpcf7-validates-as-number {
  background-color: #F7F7F7;
  border: 2px solid #DEDEDE;
  border-radius: 6px;
  width: 200px;
  margin-right: 10px;
  padding: 7px;
}
.page_top .--example {
  display: block;
  margin-top: 10px;
}
.page_top .required {
  display: block;
  margin-top: 10px;
  color: #EA5020;
}
.page_top .alignright {
  display: block;
  margin-top: 0;
  font-size: 1.2rem;
  color: #fff;
  background-color: #183B6F;
  line-height: 1;
  padding: 3px 8px;
  flex: 0 0 auto;
}
.page_top select {
  display: inline-block;
  background-color: #F7F7F7;
  border: 2px solid #DEDEDE;
  font-size: 1em;
  border-radius: 6px;
  padding: 9px 16px;
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_top select {
    max-width: 100%;
  }
}
.page_top .wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
.page_top .wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 9px;
}
.page_top .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-text {
  display: inline-block;
  background-color: #F7F7F7;
  border: 2px solid #DEDEDE;
  font-size: 1em;
  border-radius: 6px;
  padding: 9px 16px;
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_top .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-text {
    max-width: 100%;
  }
}
.page_top .wpcf7-form-control.wpcf7-textarea {
  display: inline-block;
  background-color: #F7F7F7;
  border: 2px solid #DEDEDE;
  font-size: 1em;
  border-radius: 6px;
  padding: 9px 16px;
  max-width: 714px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_top .wpcf7-form-control.wpcf7-textarea {
    max-width: 100%;
  }
}
.page_top .g-recaptcha.area-btn__btn.--gold {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 5px;
  font-size: 1.4rem;
  font-weight: 500;
  width: 350px !important;
  min-height: 60px;
  border: 1px solid #383838 !important;
}
@media screen and (max-width: 768px) {
  .page_top .g-recaptcha.area-btn__btn.--gold {
    max-width: calc(100% - 40px) !important;
  }
}/*# sourceMappingURL=base.css.map */