@charset "UTF-8";
html {
  font-size: 18.75px; /* 750pxのとき2.5vw=18.75px */
  scroll-behavior: smooth;
}

@media screen and (max-width: 750px) {
  html {
    font-size: 2.5vw;
  }
}
body {
  font-size: 1.6rem;
  letter-spacing: 0;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  color: #333;
  margin: 0 !important;
  line-height: 150%;
}
@media screen and (max-width: 751px) {
  body {
    font-size: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
  line-height: 150%;
}

p {
  margin-top: 0;
  line-height: 2;
  margin-bottom: 1rem;
  font-weight: bold;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: unset;
  color: #182A48 !important;
}

img {
  vertical-align: bottom;
}

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

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

.w100 {
  width: 100%;
}

.display-none {
  display: none;
}

body {
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/bg-1.jpg) no-repeat center;
  background-size: cover;
  z-index: -1;
  opacity: 0.3;
}

.l-body__inner {
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
  background: #fff;
}
@media not all and (max-width: 751px) {
  .l-body__inner {
    max-width: 750px;
  }
}

.l-section__title {
  text-align: center;
  font-weight: bold;
}
.l-section__title img {
  margin-bottom: 0.5rem;
}
.l-section__title h2 {
  font-weight: bold;
  font-size: 3rem;
}

.p-front__mv {
  position: relative;
  z-index: 10;
}
.p-front__cta {
  position: relative;
}
.p-front__cta .btn-tel,
.p-front__cta .btn-line {
  width: 34rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.p-front__cta .btn-tel {
  bottom: 9.6rem;
}
.p-front__cta .btn-line {
  bottom: 1.7rem;
}
.p-front__09 {
  display: none;
}

.mv-poyopoyo {
  animation: mv-poyopoyo 2s ease-out infinite;
}

.mv-poyopoyo-center {
  animation: mv-poyopoyo-center 2s ease-out infinite;
}

@keyframes mv-poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
@keyframes mv-poyopoyo-center {
  0%, 40%, 60%, 80% {
    transform: translateX(-50%) scale(1);
  }
  50%, 70% {
    transform: translateX(-50%) scale(0.95);
  }
}
.slick-prev:before,
.slick-next:before {
  color: #3884C5;
  font-size: 4rem;
  opacity: 1;
  left: -0.5rem;
  position: absolute;
  z-index: 10;
}

.slick-prev,
.slick-next {
  top: 20rem;
  right: 1.5rem;
  border-radius: 50%;
  background: #fff !important;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  opacity: 1;
  z-index: 10;
}

.slick-prev {
  right: unset;
  left: 1.5rem;
}

.slick-dots {
  bottom: -1rem;
}
@media screen and (min-width: 751px) {
  .slick-dots {
    bottom: 0.5rem;
  }
}

.slick-dots li button:before {
  font-size: 12px;
}

.p-front__06--wrap {
  padding: 0 1.5rem;
}

.p-front__06--faq {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}
.p-front__06--faq > li {
  border: 1px solid #B9D3F2;
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
}

.p-front__06--faq--q {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
}

.p-front__06--faq--num {
  flex: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #1E5FD1;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.p-front__06--faq--title {
  flex: 1;
  font-weight: bold;
  color: #1E5FD1;
  font-size: 1.5rem;
  line-height: 1.5;
}

.p-front__06--faq--icon {
  flex: none;
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
}
.p-front__06--faq--icon::before, .p-front__06--faq--icon::after {
  content: "";
  position: absolute;
  background: #1E5FD1;
  top: 50%;
  left: 50%;
}
.p-front__06--faq--icon::before {
  width: 1.6rem;
  height: 0.2rem;
  transform: translate(-50%, -50%);
}
.p-front__06--faq--icon::after {
  width: 0.2rem;
  height: 1.6rem;
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
}
.p-front__06--faq--icon.active::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.p-front__06--faq--a img {
  display: block;
  width: 100%;
}

.p-front__01 {
  position: relative;
}

.p-front__01--btn {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40rem;
}
.p-front__01--btn img {
  display: block;
  transition: opacity 0.2s;
  width: 100%;
}
.p-front__01--btn:hover img {
  opacity: 0.85;
}

.l-footer {
  padding: 2rem 1.5rem;
  text-align: center;
}

.l-footer__logo {
  width: 8rem;
  margin: 0 auto;
}

.p-thanks {
  background: #2F72F8;
  padding: 3rem 1.5rem;
}

.p-thanks__card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 3rem 1.6rem;
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

.p-thanks__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #1E5FD1;
  margin: 0 auto 1.4rem;
  position: relative;
}
.p-thanks__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 0.6rem;
  border-left: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-thanks__title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1E5FD1;
  margin-bottom: 1.4rem;
}

.p-thanks__lead {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.p-thanks__text {
  font-size: 1.1rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
}

.p-thanks__note {
  font-size: 0.95rem;
  font-weight: normal;
  color: #666;
  background: #EEEEEE;
  border-radius: 0.6rem;
  padding: 1.2rem;
  margin: 0 auto 2rem;
  max-width: 46rem;
  text-align: left;
}

.p-thanks__btn {
  display: inline-block;
  background: #2F72F8;
  color: #fff !important;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1rem 3rem;
  border-radius: 3rem;
  transition: opacity 0.2s;
}
.p-thanks__btn:hover {
  opacity: 0.85;
}

.p-front__12 {
  background: #2F72F8;
  padding: 3rem 1.5rem;
}

.p-front__12--form {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2.4rem 1.6rem;
  max-width: 60rem;
  margin: 0 auto;
}

.p-front__12--title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #1E5FD1;
  border-bottom: 0.2rem solid #1E5FD1;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.p-front__12--field {
  margin-bottom: 1.8rem;
}

.p-front__12--label {
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.p-front__12--required {
  color: #D70000;
  font-size: 1.15rem;
  font-weight: normal;
  margin-left: 0.6rem;
}

.p-front__12--optional {
  color: #888;
  font-size: 1.15rem;
  font-weight: normal;
  margin-left: 0.6rem;
}

.p-front__12--checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.p-front__12--checkbox input {
  width: 1.8rem;
  height: 1.8rem;
  flex: none;
}

.p-front__12--input,
.p-front__12--textarea {
  width: 100%;
  border: 1px solid #B9D3F2;
  border-radius: 0.6rem;
  padding: 1rem 1.2rem;
  font-size: 1.4rem;
  font-family: inherit;
}

.p-front__12--textarea {
  min-height: 10rem;
  resize: vertical;
}

.p-front__12--policy {
  background: #EEEEEE;
  border-radius: 0.6rem;
  padding: 1.4rem;
  max-height: 16rem;
  overflow-y: auto;
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 1.8rem;
}
.p-front__12--policy h2 {
  font-size: 1.6rem;
  font-weight: bold;
}
.p-front__12--policy h3 {
  font-size: 1.4rem;
  font-weight: bold;
}
.p-front__12--policy hr {
  margin-bottom: 1rem;
}
.p-front__12--policy p {
  font-weight: normal;
}

.p-front__12--agree {
  justify-content: center;
  margin-bottom: 2rem;
}

.p-front__12--submit {
  display: block;
  width: 70%;
  max-width: 32rem;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.p-front__12--submit img {
  display: block;
  width: 100%;
  transition: opacity 0.2s;
}
.p-front__12--submit:hover img {
  opacity: 0.85;
}

.p-front__12--form .wpcf7-checkbox {
  display: block;
}
.p-front__12--form .wpcf7-list-item {
  display: block;
  list-style: none;
  margin: 0 0 0.6rem;
}
.p-front__12--form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: normal;
}
.p-front__12--form input[type=checkbox] {
  width: 1.8rem;
  height: 1.8rem;
  flex: none;
}
.p-front__12--form .wpcf7-acceptance label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 2rem;
}
.p-front__12--form .wpcf7-not-valid-tip {
  display: block;
  color: #D70000;
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 0.4rem;
}
.p-front__12--form .wpcf7-response-output {
  border-radius: 0.6rem;
  font-size: 1.3rem;
  font-weight: normal;
  margin: 1.5rem 0 0;
}

.p-front__12--submit-img {
  display: block;
  width: 70%;
  max-width: 32rem;
  aspect-ratio: 474/127;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: url(img/button2.png) no-repeat center/contain;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s;
}
.p-front__12--submit-img:hover {
  opacity: 0.85;
}

.wpcf7 {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
}/*# sourceMappingURL=style.css.map */