@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;
  color: #313134;
  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 screen and (max-width: 767px) {
  html,
  body {
    font-size: 1.3333333333vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* @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: calc(10 * (100vw / 750));}
  .pc{display: none;}
  .sp{display: block;}
}
@media screen and (min-width: 768px) and (max-width: 1240px){
  html,body{font-size: calc(10 * (100vw / 1240));}
} */
/* 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;
  padding: 0 5.2rem;
  margin: 0 auto;
}
@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;
  }
}
.c_header_inner {
  height: 100%;
  max-width: 1025px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c_header_inner {
    max-width: unset;
  }
}
.c_header_logo {
  width: 43.6rem;
  display: block;
  margin-left: 0.7rem;
}
@media (max-width: 767px) {
  .c_header_logo {
    width: 57.8rem;
    margin-left: 7.1rem;
  }
}
.c_header_btn {
  width: 35rem;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .c_header_btn {
    display: none;
  }
}

.mv {
  position: relative;
  padding: 14.4rem 0 8.18rem;
  background: url(../images/mv_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .mv {
    padding: 16rem 0 4.2rem;
    background: url(../images/mv_bg_sp.jpg) no-repeat center center/cover;
  }
}
.mv_main {
  max-width: 79rem;
  margin-left: 3rem;
}
@media (max-width: 767px) {
  .mv_main {
    max-width: 74rem;
    margin-left: 1rem;
    margin-right: 0;
  }
}

.ctaS {
  background: url(../images/cta_s_bg.jpg) no-repeat center center/cover;
  padding: 1.5rem 0;
}
@media (max-width: 767px) {
  .ctaS {
    background: url(../images/cta_s_bg_sp.png) no-repeat center center/cover;
    padding: 2.3rem 0 2.2rem;
  }
}
.ctaS_btn {
  max-width: 67.8rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .ctaS_btn {
    max-width: unset;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.ctaS_obj {
  width: 8.4rem;
  position: absolute;
  top: 50%;
  right: -9.6rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 767px) {
  .ctaS_obj {
    display: none;
  }
}

.section_01 {
  padding: 4.8rem 0 3rem;
  background: url(../images/section_01_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .section_01 {
    padding: 7.3rem 0 9rem;
    background: url(../images/section_01_bg_sp.jpg) no-repeat center center/cover;
  }
}
.section_01_ttl {
  max-width: 71rem;
  margin-left: 12.8%;
}
@media (max-width: 767px) {
  .section_01_ttl {
    max-width: unset;
    width: 71.8rem;
    margin-left: -0.8rem;
  }
}
.section_01_img {
  max-width: 79.8rem;
  margin: -0.8rem auto 0;
}
@media (max-width: 767px) {
  .section_01_img {
    max-width: unset;
    margin-top: 0;
    width: 78.8rem;
    margin-left: -3.8rem;
  }
}

.cta {
  padding: 7.2rem 0 7rem;
  background: url(../images/cta_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .cta {
    background: url(../images/cta_bg_sp.jpg) no-repeat center center/cover;
    padding: 1rem 0 10rem;
  }
}
.cta_main {
  max-width: 64.2rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .cta_main {
    max-width: unset;
    width: 71.3rem;
  }
}
.cta_main_obj {
  width: 10.5rem;
  position: absolute;
  top: 12.2rem;
  right: -8.19rem;
}
@media (max-width: 767px) {
  .cta_main_obj {
    display: none;
  }
}
.cta_txt {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #002B85;
  margin-top: 0.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cta_txt {
    font-size: 4rem;
    line-height: 1.6;
  }
}
.cta_btn {
  display: block;
  max-width: 67.8rem;
  margin: -0.4rem auto 0;
}
@media (max-width: 767px) {
  .cta_btn {
    max-width: unset;
    width: 100vw;
    margin: 0.4rem calc(50% - 50vw) 0;
  }
}
.cta_note {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: -1.4rem;
  font-weight: 500;
}
.cta_note {
  text-align: center;
  font-size: 3rem;
  margin-top: -0.8rem;
}

.section_02 {
  background: url(../images/section_02_bg.jpg) no-repeat center center/cover;
  padding: 5.2rem 0 10.5rem;
}
@media (max-width: 767px) {
  .section_02 {
    background: url(../images/section_02_bg_sp.jpg) no-repeat center center/cover;
    padding: 4rem 0 0;
  }
}
.section_02_ttl {
  max-width: 78rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section_02_ttl {
    max-width: unset;
    width: 79.3rem;
    margin-left: -4rem;
  }
}
.section_02_img_01 {
  max-width: 88rem;
  margin: -2rem auto 0;
}
@media (max-width: 767px) {
  .section_02_img_01 {
    max-width: unset;
    width: 74rem;
    margin-left: -1.5rem;
  }
}
.section_02_img_02 {
  max-width: 85rem;
  margin: 2rem auto 0;
}
@media (max-width: 767px) {
  .section_02_img_02 {
    width: 100vw;
    margin: 6.5rem calc(50% - 50vw) 0;
  }
}

.section_03 {
  background: url(../images/section_03_bg.jpg) no-repeat center center/cover;
  padding: 10rem 0 11.5rem;
}
@media (max-width: 767px) {
  .section_03 {
    background: url(../images/section_03_bg_sp.jpg) no-repeat center center/cover;
    padding: 10rem 0 13.6rem;
  }
}
.section_03_img_01 {
  max-width: 85rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section_03_img_01 {
    width: 74rem;
    margin-left: -1.5rem;
  }
}
.section_03_img_02 {
  max-width: 85rem;
  margin: 8.5rem auto 0;
}
@media (max-width: 767px) {
  .section_03_img_02 {
    margin: 8rem calc(50% - 50vw) 0;
    width: 100vw;
  }
}

.section_04 {
  background: url(../images/section_04_bg.jpg) no-repeat center center/cover;
  padding: 0.01rem 0 11.1rem;
}
@media (max-width: 767px) {
  .section_04 {
    background: url(../images/section_04_bg_sp.jpg) no-repeat center center/cover;
    padding: 0.01rem 0 0;
  }
}
.section_04_ttl {
  max-width: 59.8rem;
  margin-left: 13.4%;
  margin-top: -4.6rem;
}
@media (max-width: 767px) {
  .section_04_ttl {
    max-width: unset;
    margin-left: 0;
    width: 68.2rem;
    margin-left: -2rem;
  }
}
.section_04_lead {
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.5;
  margin-top: 0.2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section_04_lead {
    font-size: 3.2rem;
    line-height: 1.875;
    margin-top: 9.72rem;
  }
}
.section_04_img_01 {
  max-width: 88rem;
  margin: 4rem auto 0;
}
@media (max-width: 767px) {
  .section_04_img_01 {
    width: 74rem;
    margin-left: -1.5rem;
  }
}
.section_04_img_02 {
  max-width: 85rem;
  margin: 2rem auto 0;
}
@media (max-width: 767px) {
  .section_04_img_02 {
    margin-top: 10.8rem;
    width: 100vw;
    margin-left: -2rem;
    margin-right: -2rem;
  }
}

.form {
  padding: 10rem 0 0;
}
@media (max-width: 767px) {
  .form {
    padding: 0 0 0;
  }
}
@media (max-width: 767px) {
  .form .l_inner {
    padding: 0;
  }
}
.form_box {
  max-width: 85rem;
  margin: 0 auto;
  padding: 4rem 1.8rem 4.4rem;
  background: url(../images/form_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .form_box {
    background: url(../images/form_bg_sp.jpg) no-repeat top center/cover;
    max-width: unset;
    padding: 2.4rem 2rem 5.65rem;
  }
}
.form_ttl {
  max-width: 64.3rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .form_ttl {
    max-height: unset;
    width: 69rem;
    margin-left: 0;
  }
}
.form_lead {
  margin-top: -1.8rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  color: #002B85;
}
@media (max-width: 767px) {
  .form_lead {
    font-size: 4rem;
    line-height: 1.6;
  }
}
.form_wrapper {
  box-sizing: border-box;
  margin-top: 3.8rem;
  background: #fff;
  padding: 3.1rem 2.4rem 4.4rem;
}
@media (max-width: 767px) {
  .form_wrapper {
    margin-top: 4rem;
    padding: 3rem 1.5rem 8rem;
  }
}
.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_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: 3.2rem;
    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: 3rem;
  }
  .form_input::placeholder {
    font-size: 3rem;
  }
}
.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 + .form_head, .form_zipUnit + .form_head {
  margin-top: 3.2rem;
}
@media (max-width: 767px) {
  .form_input + .form_head, .form_zipUnit + .form_head {
    margin-top: 4.8rem;
  }
}
.form_zipUnit {
  display: flex;
  gap: 0 0.5rem;
  align-items: center;
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .form_zipUnit {
    margin-top: 1.2rem;
  }
}
.form_dash {
  font-weight: bold;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .form_dash {
    font-size: 2.8rem;
  }
}
.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: 4.4rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .form_agree {
    margin-top: 6rem;
    max-width: 62rem;
    position: relative;
  }
}
.form_agree span {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.5555555556;
}
@media (max-width: 767px) {
  .form_agree span {
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.5625;
  }
}
.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: -2rem;
  }
}
.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 {
  max-width: 64.8rem;
  margin: 2.64rem auto 0;
  box-sizing: border-box;
  display: block;
  transition-duration: 0.3s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .form_sendBtn {
    width: calc(100vw + 1rem);
    max-width: unset;
    margin: 0 calc(50% - 50vw);
  }
}
.form_sendBtn.is_disabled {
  opacity: 0.5;
  cursor: default;
}
.form_note {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  margin-top: -1.4rem;
}
@media (max-width: 767px) {
  .form_note {
    font-size: 2.4rem;
    line-height: 1.6666666667;
    margin-top: -1.2rem;
  }
}
.form #js_submit:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.company {
  padding-top: 11rem;
}
@media (max-width: 767px) {
  .company {
    padding-top: 15.5rem;
  }
}
.company_ttl {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .company_ttl {
    font-size: 4rem;
  }
}
.company_img {
  width: 43.6rem;
  margin: 1.2rem auto 0;
}
@media (max-width: 767px) {
  .company_img {
    width: 73rem;
    margin-top: 2.4rem;
  }
}
.company_blk {
  margin: 1rem auto 0;
  max-width: 56rem;
}
@media (max-width: 767px) {
  .company_blk {
    margin-top: 2.5rem;
    max-width: unset;
    width: 100%;
  }
}
.company_unit {
  display: flex;
  gap: 0 2.4rem;
  padding: 1.9rem 0;
  border-top: 0.2rem solid #707070;
}
@media (max-width: 767px) {
  .company_unit {
    gap: 0 6rem;
    padding: 3.6rem 0;
  }
}
.company_unit:last-of-type {
  border-bottom: 0.2rem solid #707070;
}
.company_unit dt {
  font-feature-settings: "palt";
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  flex: 0 0 9.8rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: #002B85;
}
@media (max-width: 767px) {
  .company_unit dt {
    flex: 0 0 16.5rem;
    font-size: 2.8rem;
    line-height: 1.4642857143;
  }
}
.company_unit dd {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .company_unit dd {
    font-size: 2.8rem;
    line-height: 1.4642857143;
  }
}

.c_footer {
  text-align: center;
  margin-top: 6rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .c_footer {
    margin-top: 13rem;
    padding-bottom: 4rem;
  }
}
.c_footer_links {
  display: flex;
  justify-content: center;
  gap: 0 4.2rem;
}
@media (max-width: 767px) {
  .c_footer_links {
    gap: 0 7.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;
}
@media (max-width: 767px) {
  .c_footer_links > li:not(:last-of-type)::after {
    height: 2.4rem;
    width: 0.2rem;
    right: -3.6rem;
  }
}
.c_footer_links > li a {
  font-size: 1.4rem;
  font-weight: 600;
  color: inherit;
}
@media (max-width: 767px) {
  .c_footer_links > li a {
    font-size: 2.4rem;
  }
}
.c_footer_copy {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #888888;
}
@media (max-width: 767px) {
  .c_footer_copy {
    font-size: 2.4rem;
    margin-top: 2.4rem;
  }
}

.c_thanks .c_header_inner {
  justify-content: center;
  height: 100%;
}
@media (max-width: 767px) {
  .c_thanks .c_header_logo {
    margin-left: 0;
  }
}
.c_thanks .sp {
  display: none;
}
@media (max-width: 767px) {
  .c_thanks .sp {
    display: block;
  }
}

.c_thanksWrap {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}
.c_thanksWrap main {
  flex: 1;
  padding-top: 10rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  background: url(../images/thanks_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .c_thanksWrap main {
    background: url(../images/thanks_bg_sp.jpg) no-repeat bottom center/contain;
    justify-content: flex-start;
    padding-top: 15rem;
  }
}
@media (max-width: 767px) {
  .c_thanks_txtArea {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 100%;
  }
}

h1 {
  font-size: 3.8rem;
  text-align: center;
}
@media (max-width: 767px) {
  h1 {
    font-size: 5.6rem;
  }
}

.c_thanks_txt {
  margin-top: 5.2rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2;
}
@media (max-width: 767px) {
  .c_thanks_txt {
    font-size: 3.6rem;
    margin-top: 6.4rem;
  }
}

.c_thanks_box {
  max-width: 70rem;
  border-radius: 2rem;
  background: linear-gradient(rgba(161, 247, 255, 0.9) 0%, rgba(193, 250, 255, 0.9) 70.94%, rgba(226, 253, 255, 0.9) 100%);
  border: 0.5rem solid #fff;
  filter: drop-shadow(0px 0.5rem 2rem rgba(0, 0, 0, 0.16));
  padding: 4rem 4rem 3.6rem;
}
@media (max-width: 767px) {
  .c_thanks_box {
    padding: 4rem 2.4rem 3.6rem;
  }
}

.c_thanks_box_ttl {
  max-width: 42rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c_thanks_box_ttl {
    max-width: 54.1rem;
    margin-left: 5.5rem;
  }
}

.c_thanks_box_lead {
  text-align: center;
  line-height: 2;
  font-size: 1.6rem;
  font-weight: bold;
  color: #002b85;
  margin-top: 2.2rem;
}
@media (max-width: 767px) {
  .c_thanks_box_lead {
    font-size: 3.2rem;
    margin-top: 2.2rem;
  }
}

.c_thanks_box_tel {
  max-width: 54rem;
  display: block;
  margin: 1.6rem auto 0;
}
@media (max-width: 767px) {
  .c_thanks_box_tel {
    max-width: 65rem;
    margin-top: 2.2rem;
  }
}

.c_thanks_box_tel + .c_thanks_box_lead {
  text-align: center;
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .c_thanks_box_tel + .c_thanks_box_lead {
    margin-top: 1.8rem;
  }
}

.c_thanks_info {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .c_thanks_info {
    margin-top: 4rem;
  }
}

.c_thanks_copy {
  padding: 4rem 0 2.8rem;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .c_thanks_copy {
    font-size: 2.4rem;
    padding: 0 0 3rem;
  }
}/*# sourceMappingURL=style.css.map */