@charset "UTF-8";
/*reset css*/
body,
h1,
h2,
h3,
h4,
p,
ul,
li,
a,
dl,
dt,
dd,
table,
tr,
th,
td,
span {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  line-height: 1;
  outline: none;
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  background-color: unset;
  border: none;
  outline: none;
  -webkit-appearance: none;
}

div,
section,
article,
figure,
picture {
  box-sizing: border-box;
  margin: 0;
  display: block;
  padding: 0;
}

/*common*/
html,
body {
  font-size: 62.5%;
  letter-spacing: 0;
  color: #313134;
  font-family: "Noto Sans JP", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

a {
  transition: all 0.2s;
}

a:hover {
  opacity: 0.7;
}

img,
iframe,
video {
  width: 100%;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0 2rem;
  }
}
main {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 1.3333333333vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1025px) {
  html, body {
    font-size: 0.9756097561vw;
  }
}
/* common text size */
/* p{
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
span{
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
h2{
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
.lead{
  font-size: 2.4rem;
  letter-spacing: 0.02em;
}
.txt{
  font-size: 1.8rem;
  letter-spacing: 0.02em;
} */
/* common animation ///////////////////////////////////////////////*/
.js-focus {
  opacity: 0;
}

.focus-in {
  animation: focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@keyframes focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.js-u-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.js-r-fade {
  transform: translateX(60px);
  opacity: 0;
  transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.js-l-fade {
  transform: translateX(-60px);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.fade-in {
  opacity: 1;
  transform: translate(0);
}

.js-spin {
  transform: rotateY(-450deg);
  transition-duration: 0.8s;
  will-change: transform;
  opacity: 0;
}

.js-spin.spin {
  transform: rotateY(0deg);
  opacity: 1;
}

@keyframes anm_coin {
  0% {
    transform: rotateY(-450deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}
/* txt overflow animation */
/* js-m-txt wrapping to maskElem */
.js-m-txt {
  overflow: auto;
}

.js-m-txt .maskElem-y {
  transform: translateY(120%);
  display: block;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.js-m-txt .maskElem-x {
  transform: translateX(-120%);
  display: block;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

@keyframes mask {
  100% {
    transform: translate(0);
  }
}
.mask.animated .maskElement-y,
.mask.animated .maskElement-x {
  animation: mask cubic-bezier(0.86, 0, 0.07, 1) forwards;
  animation-duration: 1.5s;
  overflow: hidden;
}

/* images overflow animation */
.js-m-img {
  clip-path: inset(0 100% 0 0);
  /* display: inline-block; */
  transition: 1.5s 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition-property: clip-path;
}

.js-m-img.center {
  clip-path: inset(0 100% 100% 0);
}

.js-m-img.animated {
  clip-path: inset(0);
}

/* /////////////////////////////////////////////// */
main {
  overflow: hidden;
}

.l_inner {
  max-width: 102.5rem;
  width: 100%;
  padding: 0 4.7rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .l_inner {
    padding: 0 2rem;
  }
}

.c_header {
  height: 10rem;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .c_header {
    height: 12rem;
    position: fixed;
  }
}
.c_header_inner {
  height: 100%;
  max-width: 1025px;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .c_header_inner {
    max-width: unset;
  }
}
.c_header_logo {
  width: 17.5rem;
  display: block;
  margin-left: 2%;
}
@media (max-width: 767px) {
  .c_header_logo {
    width: 23.9rem;
  }
}
.c_header_tel {
  width: 27.3rem;
  margin-right: 1.18rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .c_header_tel {
    display: none;
  }
}
.c_header_cre {
  width: 23.2rem;
  margin-right: 0;
}
@media (max-width: 767px) {
  .c_header_cre {
    width: 32.2rem;
    margin-left: auto;
  }
}

.c_fxFoot {
  display: none;
}
@media (max-width: 767px) {
  .c_fxFoot {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}

.mv {
  padding-top: 14rem;
  padding-bottom: 5.6rem;
  background: url(../images/mv_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .mv {
    background: url(../images/mv_bg_sp.jpg) no-repeat center center/cover;
    padding-top: 15.5rem;
    padding-bottom: 6.8rem;
  }
}
@media (max-width: 767px) {
  .mv .l_inner {
    padding-bottom: 0;
  }
}
.mv_main {
  width: 100%;
}
@media (max-width: 767px) {
  .mv_main {
    max-width: unset;
  }
}

.aside {
  padding: 6rem 0 1rem;
  background: url(../images/aside_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .aside {
    background: url(../images/aside_bg_sp.jpg) no-repeat center center/cover;
    padding: 2.34rem 0 0.1rem;
  }
}
.aside_img {
  padding: 0 0.5rem;
}

.cta {
  padding-top: 0.01rem;
  padding-bottom: 7.5rem;
  background: url(../images/cta_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .cta {
    padding-top: 6rem;
    padding-bottom: 0;
    background: url(../images/cta_bg_sp.jpg) no-repeat center center/cover;
  }
}
.cta_container {
  margin-top: -15.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .cta_container {
    margin-top: 0;
    width: 100%;
    margin: 0 auto;
  }
}
.cta_links {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.8rem;
  bottom: 4.4rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cta_links {
    flex-direction: column;
    gap: 18rem;
    bottom: 36.4rem;
  }
}
.cta_links > a {
  width: 40.8rem;
}
@media (max-width: 767px) {
  .cta_links > a {
    width: 60rem;
  }
}
.cta_img2 {
  position: absolute;
  bottom: -7.6rem;
  left: -7.6rem;
  width: 21.8rem;
}
@media (max-width: 767px) {
  .cta_img2 {
    display: none;
  }
}

.sec01 {
  padding: 10rem 0 14rem;
  background: url(../images/bg_01.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .sec01 {
    background: url(../images/bg_01_sp.jpg) no-repeat center center/cover;
  }
}
.sec01_sec01_img01_contents {
  position: relative;
}
.sec01_img01 {
  width: 67.1rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .sec01_img01 {
    width: 70.9rem;
  }
}
.sec01_img01_01 {
  position: absolute;
  width: 32.4rem;
  top: 21.7rem;
  right: -19.4rem;
}
@media (max-width: 767px) {
  .sec01_img01_01 {
    display: none;
  }
}
.sec01_img02 {
  width: 69.2rem;
  margin: 11.9rem auto 0;
}
@media (max-width: 767px) {
  .sec01_img02 {
    margin-top: 23.3rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.sec01_img03 {
  width: 59.9rem;
  margin: 5.9rem 0 0 13rem;
}
@media (max-width: 767px) {
  .sec01_img03 {
    width: 54.9rem;
    margin: 22.3rem auto 0;
  }
}

.sliderArea01 {
  width: 100vw;
}

.slider01 {
  width: 89.5833333333vw;
  margin: 2.4rem auto 0;
  overflow: visible;
}
@media (max-width: 767px) {
  .slider01 {
    margin-top: 1.4rem;
    width: 72rem;
  }
}
.slider01_container {
  flex-shrink: 0;
  overflow: visible;
}
.slider01_container picture {
  padding: 0 1.5rem;
}
@media (max-width: 767px) {
  .slider01_container picture {
    padding: 0 2rem;
  }
}
.slider01_container img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.sec02 {
  position: relative;
  padding: 12.6rem 0 13.4rem;
  background: url(../images/se02_03_bg_sp.jpg) repeat center center/contain;
}
@media (max-width: 767px) {
  .sec02 {
    padding-bottom: 18.3rem;
  }
}
.sec02 .l_inner {
  position: relative;
  z-index: 2;
}
.sec02::before {
  content: "";
  width: 100%;
  height: 217.2rem;
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: url(../images/sec02_bg.png) no-repeat center bottom/cover;
}
@media (max-width: 767px) {
  .sec02::before {
    background: url(../images/sec02_bg_sp.png) no-repeat center bottom/cover;
    height: 320.1rem;
  }
}
.sec02_img01 {
  width: 93.8rem;
}
@media (max-width: 767px) {
  .sec02_img01 {
    width: 71.4rem;
  }
}
.sec02_img02 {
  margin-top: 9.2rem;
  position: relative;
  z-index: 2;
  width: 93.8rem;
}
@media (max-width: 767px) {
  .sec02_img02 {
    margin-top: 6.8rem;
    width: 71.4rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.sec03 {
  padding: 10rem 0 16.8rem;
  position: relative;
  z-index: 3;
  background: url(../images/bg_01.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .sec03 {
    background: url(../images/bg_01_sp.jpg) no-repeat center center/cover;
    margin-top: 0;
    padding-bottom: 17.1rem;
  }
}
.sec03_img02 {
  margin-top: 18rem;
  width: 86.2rem;
}
@media (max-width: 767px) {
  .sec03_img02 {
    width: 100%;
    margin-top: 17.6rem;
  }
}

.sec04 {
  padding: 10rem 0 8rem;
}
@media (max-width: 767px) {
  .sec04 {
    padding-top: 10.5rem;
    padding-bottom: 14rem;
  }
}

.sec05 {
  padding: 4rem 0 6.5rem;
}
@media (max-width: 767px) {
  .sec05 {
    padding-top: 0;
    padding-bottom: 14rem;
  }
}
@media (max-width: 767px) {
  .sec05_inner {
    padding: 0 0;
  }
}
.sec05_img01 {
  width: 79.9rem;
  margin: 4rem auto 0;
}
@media (max-width: 767px) {
  .sec05_img01 {
    width: 100%;
    margin-left: 0;
    margin: 5rem 0 0;
  }
}

.slider02 {
  width: 100vw;
  margin: 4.4rem auto 0;
  overflow: visible;
}
@media (min-width: 768px) {
  .slider02 .swiper-slide {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
  }
  .slider02 .swiper-wrapper {
    transform: none !important;
  }
}
@media (max-width: 767px) {
  .slider02 {
    margin-top: 5rem;
    width: 72rem;
  }
}
.slider02_container {
  flex-shrink: 0;
  overflow: visible;
}
.slider02_container picture {
  padding: 0 2.5rem;
}
@media (max-width: 767px) {
  .slider02_container picture {
    padding: 0 2rem;
  }
}
.slider02_container img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.sec06 {
  padding-bottom: 12.6rem;
}
@media (max-width: 767px) {
  .sec06 {
    padding-bottom: 15.9rem;
  }
}
.sec06_blk {
  width: 85.2rem;
  border-radius: 1rem;
  overflow: hidden;
  margin: 4.4rem auto 0;
}
@media (max-width: 767px) {
  .sec06_blk {
    border-radius: 2rem;
    margin-top: 5.03rem;
    width: 70.1rem;
  }
}
.sec06_blk + .sec06_blk {
  margin-top: 3rem;
}
.sec06_q {
  background: #3271AE;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  gap: 0 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .sec06_q {
    padding: 2rem;
    font-size: 3rem;
    gap: 0 2.5rem;
  }
}
.sec06_q_icon {
  width: 5rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sec06_q_icon {
    width: 5rem;
  }
}
.sec06_a {
  display: flex;
  align-items: center;
  gap: 0 2rem;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  color: #313134;
  font-weight: 500;
  padding: 3.5rem 10rem 3.5rem 2rem;
  background: #EAE7E2;
  position: relative;
}
@media (max-width: 767px) {
  .sec06_a {
    gap: 0 2.5rem;
    font-size: 2.8rem;
    line-height: 1.7857142857;
    align-items: flex-start;
    padding-right: 8.5rem;
  }
}
.sec06_a_icon {
  width: 5rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sec06_a_icon {
    width: 5rem;
  }
}
.sec06_plus, .sec06_minus {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 3rem;
  width: 3rem;
  height: 3rem;
}
.sec06_plus::before, .sec06_plus::after, .sec06_minus::before, .sec06_minus::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition-duration: 0.3s;
}
.sec06_plus::before, .sec06_plus::after {
  background: #fff;
}
.sec06_plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sec06_minus::before, .sec06_minus::after {
  background: #313134;
}
.sec06_q.is_show .sec06_plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.company {
  padding: 5rem 0 10rem;
  background: url(../images/company_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .company {
    padding: 10rem 0;
    background: url(../images/company_bg_sp.jpg) no-repeat center -12rem/auto 110%;
  }
}
.company_ttl {
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  color: #1E171C;
  text-align: center;
}
@media (max-width: 767px) {
  .company_ttl {
    font-size: 6rem;
  }
}
.company_box {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .company_box {
    margin-top: 5.3rem;
  }
}
.company_box dl {
  display: flex;
  margin-top: 1rem;
  justify-content: center;
}
.company_box dt {
  width: 15rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #FA6E11;
  padding: 1.3rem 1.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .company_box dt {
    width: 22rem;
    padding: 2.5rem 1.4rem;
    font-size: 2.4rem;
    flex-shrink: 0;
  }
}
.company_box dd {
  padding: 1.3rem 1.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  background: #FFFFFF;
  width: 75rem;
}
@media (max-width: 767px) {
  .company_box dd {
    padding: 2.3rem 2rem;
    font-size: 2.4rem;
    line-height: 1.6666666667;
    width: 100%;
  }
}
.company_box .__ls-50 {
  letter-spacing: -0.05em;
}
.c_footer {
  text-align: center;
  padding: 4rem 0;
  background: #f7f7f7;
}
.c_footer_links {
  display: flex;
  justify-content: center;
  gap: 0 4.2rem;
}
.c_footer_links > li {
  position: relative;
}
.c_footer_links > li:not(:last-of-type)::after {
  content: "";
  width: 0.1rem;
  height: 1.4rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -2.1rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: #1F1F1F;
}
.c_footer_links > li a {
  font-size: 1.25rem;
  font-weight: 400;
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.2s;
}
@media (max-width: 767px) {
  .c_footer_links > li a {
    font-size: 2.4rem;
  }
}
.c_footer_copy {
  text-align: center;
  margin-top: 2.4rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #888888;
}
@media (max-width: 767px) {
  .c_footer_copy {
    font-size: 2.4rem;
    margin-top: 2.4rem;
  }
}

.form {
  background: url(../images/form_bg.jpg) no-repeat center center/cover;
  padding: 12.5rem 0;
  text-align: center;
}
@media (max-width: 767px) {
  .form {
    padding: 17.6rem 0 0;
    background: url(../images/form_bg_sp.jpg) no-repeat top center/cover;
  }
}
@media (max-width: 767px) {
  .form_inner {
    padding: 0 0;
  }
}
.form_box {
  position: relative;
  padding: 4.8rem 2rem 5rem;
}
@media (max-width: 767px) {
  .form_box {
    padding: 2.8rem 0 0;
  }
}
.form_top {
  position: relative;
  width: 93.8rem;
}
@media (max-width: 767px) {
  .form_top {
    width: 71.4rem;
  }
}
.form_top_txt {
  position: relative;
}
@media (max-width: 767px) {
  .form_top_txt {
    width: 71.4rem;
    margin: -29.2rem 0 10.2rem 2rem;
  }
}
.form_top_tel {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 40.8rem;
}
@media (max-width: 767px) {
  .form_top_tel {
    width: 60rem;
    bottom: 5.5rem;
  }
}
.form_top_img {
  width: 30.7rem;
  position: absolute;
  pointer-events: none;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.form_catch {
  padding: 5rem 6rem 2rem;
  text-align: center;
  position: relative;
  color: #FF3C00;
  display: inline-block;
}
@media (max-width: 767px) {
  .form_catch {
    padding: 0 6rem 2rem;
  }
}
.form_catch::before, .form_catch::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  width: 0.2rem;
  height: 6rem;
  background-color: #FF3C00;
}
@media (max-width: 767px) {
  .form_catch::before, .form_catch::after {
    height: 9rem;
  }
}
.form_catch::before {
  left: 3.5rem;
  transform: rotate(-20deg);
}
.form_catch::after {
  right: 3.5rem;
  transform: rotate(20deg);
}
.form_catch_title {
  font-size: 3.2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1.6rem;
  display: block;
}
@media (max-width: 767px) {
  .form_catch_title {
    font-size: 5.3rem;
    margin-bottom: 2.4rem;
  }
}
.form_catch_sub {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .form_catch_sub {
    font-size: 2.9rem;
  }
}
.form_area {
  width: 89rem;
  background: #3271AE;
  padding: 0.5rem 2rem 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .form_area {
    width: 71rem;
    margin-top: 27.5rem;
    padding: 0.5rem 2rem 4.7rem;
  }
}
.form_area_img01 {
  position: absolute;
  top: -23.6rem;
  right: -9rem;
  width: 44.8rem;
}
@media (max-width: 767px) {
  .form_area_img01 {
    width: 58.9rem;
    right: 50%;
    top: -31.3rem;
    transform: translateX(50%);
  }
}
.form_ttl {
  width: 47.4rem;
  margin: -2.4rem 0 1rem 17rem;
}
@media (max-width: 767px) {
  .form_ttl {
    width: 55.8rem;
    margin-left: 5.5rem;
    margin-top: 0;
  }
}
.form_content {
  background: #fff;
  padding: 3.2rem 2rem 4rem;
  position: relative;
}
@media (max-width: 767px) {
  .form_content {
    padding: 3.2rem 2rem 22.7rem;
  }
}
.form_icon {
  position: absolute;
  top: 3.9rem;
  right: 2.3rem;
  width: 37.1rem;
}
@media (max-width: 767px) {
  .form_icon {
    top: unset;
    bottom: 3rem;
    right: 50%;
    width: 43.1rem;
    transform: translateX(50%);
  }
}
.form_head {
  padding-left: 0.8rem;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0 1.6rem;
}
@media (max-width: 767px) {
  .form_head {
    padding-left: 1.4rem;
  }
}
.form_name {
  font-size: 1.8rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .form_name {
    font-size: 3.2rem;
  }
}
.form_label {
  background: #E20000;
  color: #fff;
  padding: 0.2rem 1rem 0.32rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .form_label {
    font-size: 3.3rem;
    padding: 0.5rem 3rem 0.8rem;
  }
}
.form_label.__optional {
  background: #707070;
}
.form_input {
  box-sizing: border-box;
  padding: 1rem 1.8rem;
  font-size: 1.5rem;
  background: #fff;
  width: 100%;
  border: 0.1rem solid #707070;
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .form_input {
    padding: 2.45rem 3.5rem;
    font-size: 2.9rem;
    margin-top: 1.2rem;
  }
}
.form_input::-moz-placeholder {
  font-size: 1.5rem;
  color: #A2A2A2;
}
.form_input::placeholder {
  font-size: 1.5rem;
  color: #A2A2A2;
}
@media (max-width: 767px) {
  .form_input::-moz-placeholder {
    font-size: 2.8rem;
    letter-spacing: -0.03em;
  }
  .form_input::placeholder {
    font-size: 2.8rem;
    letter-spacing: -0.03em;
  }
}
.form_input.__zipS {
  width: 8.6rem;
  margin-top: 0;
}
@media (max-width: 767px) {
  .form_input.__zipS {
    width: 17rem;
  }
}
.form_input.__zipM {
  width: 12.8rem;
  margin-top: 0;
}
@media (max-width: 767px) {
  .form_input.__zipM {
    width: 25.4rem;
  }
}
.form_input.__select {
  width: 35rem;
  position: relative;
}
.form_input.__select::before {
  content: "";
  width: 1.4rem;
  height: 0.9rem;
  background: url(../images/select_arrow.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.5rem;
  pointer-events: none;
}
.form_input select {
  width: 100%;
  height: 100%;
}
.form_input select, .form_input textarea {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .form_input select, .form_input textarea {
    font-size: 2.9rem;
  }
}
.form_radio + .form_head, .form_input + .form_head, .form_zipUnit + .form_head {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .form_radio + .form_head, .form_input + .form_head, .form_zipUnit + .form_head {
    margin-top: 4.8rem;
  }
}
.form_textarea {
  box-sizing: border-box;
  padding: 1rem 1.8rem;
  font-size: 1.5rem;
  background: #fff;
  width: 100%;
  border: 0.1rem solid #707070;
  margin-top: 0.8rem;
  height: 18rem;
}
@media (max-width: 767px) {
  .form_textarea {
    padding: 2.45rem 3.5rem;
    font-size: 2.9rem;
    margin-top: 1.2rem;
    height: 28rem;
  }
}
.form_radio {
  border: none;
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .form_radio {
    margin-top: 1.2rem;
  }
}
.form_radio > div {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
@media (max-width: 767px) {
  .form_radio > div {
    gap: 0 2rem;
  }
}
.form_radio > div + div {
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .form_radio > div + div {
    margin-top: 1.2rem;
  }
}
.form_radio > div input {
  margin: 0;
  padding: 0;
  width: 2.4rem;
  height: 2.4rem;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
@media (max-width: 767px) {
  .form_radio > div input {
    width: 4.6rem;
    height: 4.6rem;
  }
}
.form_radio > div label {
  font-size: 1.6rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .form_radio > div label {
    font-size: 3.2rem;
  }
}
.form_agree {
  margin-top: 4rem;
  display: flex;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  max-width: 58rem;
  margin-top: 2.8rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .form_agree {
    margin-top: 6rem;
    max-width: unset;
    position: relative;
  }
}
.form_agree span {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .form_agree span {
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.5625;
  }
}
.form_agree span a {
  text-decoration: underline;
  color: #3271AE;
}
.form_agree_check {
  margin-top: 0.6rem;
  cursor: pointer;
  width: 1.8rem;
  height: 1.8rem;
  background: #fff;
  margin-right: 0.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid #030303;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .form_agree_check {
    width: 2.8rem;
    height: 2.8rem;
    position: absolute;
    top: 0.69rem;
    left: -4rem;
  }
}
.form_agree_check::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.7969 6.35159C21.0219 6.57662 21.1483 6.88179 21.1483 7.19999C21.1483 7.51818 21.0219 7.82335 20.7969 8.04839L11.1969 17.6484C10.9719 17.8734 10.6667 17.9997 10.3485 17.9997C10.0303 17.9997 9.72517 17.8734 9.50014 17.6484L4.70014 12.8484C4.48155 12.6221 4.36059 12.3189 4.36333 12.0043C4.36606 11.6897 4.49226 11.3887 4.71475 11.1662C4.93724 10.9437 5.23822 10.8175 5.55285 10.8148C5.86749 10.812 6.17061 10.933 6.39694 11.1516L10.3485 15.1032L19.1001 6.35159C19.3252 6.12662 19.6303 6.00024 19.9485 6.00024C20.2667 6.00024 20.5719 6.12662 20.7969 6.35159Z' fill='%233B3B3B'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(0);
  transition-duration: 0.3s;
}
@media (max-width: 767px) {
  .form_agree_check::after {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.form_agree_check.is_checked:after {
  transform: scale(1);
}
.form_sendBtn {
  width: 47.5rem;
  margin: 2.64rem auto 0;
  box-sizing: border-box;
  display: block;
  transition-duration: 0.3s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .form_sendBtn {
    width: 66.5rem;
    max-width: unset;
    margin: 5rem auto 0;
  }
}
.form_sendBtn.is_disabled {
  opacity: 0.5;
  cursor: default;
}
.form_thanks_ttl {
  font-size: 3.6rem;
  line-height: 1.3888888889;
  color: #2C4D82;
  text-align: center;
  border-bottom: 0.3rem solid #002870;
  padding-bottom: 1rem;
}
.form_thanks_lead {
  text-align: center;
  margin-top: 3.8rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.2222222222;
}
.form_thanks_btn {
  display: flex;
  width: 42.2rem;
  height: 7.26rem;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #2c4d82;
  border-radius: 4rem;
  color: #fff;
  margin: 4.2rem auto 0;
  font-size: 2.1rem;
  font-weight: bold;
}
.form_thanks_btn_arrow {
  width: 2.8rem;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 4.5rem;
}
@media (max-width: 767px) {
  .form.thanks .form_box {
    padding-bottom: 4rem;
  }
}

.c_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4.8rem;
  color: #3271AE;
}
@media (max-width: 767px) {
  .c_ttl {
    font-size: 6rem;
  }
}
.c_ttl::before {
  content: "";
  display: block;
  width: 8.2rem;
  height: 3.2rem;
  margin-bottom: 2rem;
  background-image: url(../images/title_01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.js-scrollHint {
  overflow: hidden !important;
}

.scroll-hint-icon-wrap {
  z-index: 2;
}/*# sourceMappingURL=style.css.map */