@-webkit-keyframes gritter {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes gritter {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/* ========================
Base
======================== */
html {
  font-size: 62.5%;
}

body {
  color: #313131;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #2E2E2E;
}

a:hover, a:focus {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

em, address, b {
  font-style: normal;
}

/* ========================
Common
======================== */
/* === Content === */
.cont {
  padding: 80px 20px;
}
@media screen and (max-width: 980px) {
  .cont {
    padding-top: 60px;
    padding-bottom: 310px;
  }
}
.cont_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.fadeup {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.fadeup.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.dokidoki {
  -webkit-animation: dokidoki 1.5s infinite;
          animation: dokidoki 1.5s infinite;
}

@-webkit-keyframes dokidoki {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  5% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  95% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
  }
}

@keyframes dokidoki {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  5% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  95% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
  }
}
/* ========================
Blocks
======================== */
/* === Main === */
.main {
  overflow: hidden;
  background: url(../images/fv_bg.webp) center/cover;
}
@media screen and (max-width: 980px) {
  .main {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .main {
    background: url(../images/fv_bg-sp.webp) center/cover;
  }
}

/* === Header === */
.hero_inner {
  position: relative;
  left: 0;
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
  margin: 0;
}
@media screen and (max-width: 980px) {
  .hero_inner {
    -webkit-transform: none;
            transform: none;
  }
}

.header_site-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 980px) {
  .header_site-title {
    display: block;
    padding-left: 10px;
    border-left: 3px solid #fff;
  }
}
.header_copy {
  position: relative;
  padding-left: 11px;
  border-left: 5px solid #fff;
  color: #fff;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 980px) {
  .header_copy {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
    border: none;
    padding: 0;
  }
}
.header_logo {
  width: 193px;
}
@media screen and (max-width: 980px) {
  .header_logo {
    width: 114px;
    margin-left: -8px;
  }
}

/* === First View === */
.fv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 13px;
  padding-bottom: 44px;
}
@media screen and (max-width: 980px) {
  .fv {
    padding-bottom: 22px;
  }
}

/* === Appeal === */
.appeal {
  position: relative;
  z-index: 1;
  padding-top: 24px;
  padding-bottom: 8px;
}
.appeal::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#FFEF61), to(#FFF7AD));
  background-image: -webkit-linear-gradient(left, #FFEF61, #FFF7AD);
  background-image: linear-gradient(to right, #FFEF61, #FFF7AD);
  opacity: 0.85;
}
@media screen and (max-width: 980px) {
  .appeal {
    padding-top: 10px;
    padding-bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  .appeal {
    margin-bottom: 20px;
    padding-top: 14px;
  }
  .appeal::after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: -29.5px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    width: 100%;
    height: 30px;
    background-image: -webkit-gradient(linear, left top, right top, from(#FFEF61), to(#FFF7AD));
    background-image: -webkit-linear-gradient(left, #FFEF61, #FFF7AD);
    background-image: linear-gradient(to right, #FFEF61, #FFF7AD);
    opacity: 0.85;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
.appeal_inner {
  max-width: 965px;
  display: grid;
  grid-template: auto auto/1fr auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 980px) {
  .appeal_inner {
    grid-template: auto auto/auto auto;
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  .appeal_inner {
    display: block;
    width: auto;
  }
}
.appeal_mes {
  font-weight: 600;
  font-size: 2.8rem;
  color: #494949;
  line-height: 1.4;
}
@media screen and (max-width: 980px) {
  .appeal_mes {
    margin-left: 4px;
    margin-bottom: 11px;
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .appeal_mes {
    text-align: center;
    margin-left: 0;
  }
}
.appeal_mes .decoration {
  font-size: 5.2rem;
  line-height: 1.4;
  font-weight: 900;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #00609C), color-stop(35%, #0088DD), to(#004067));
  background: -webkit-linear-gradient(left, #00609C 20%, #0088DD 35%, #004067 100%);
  background: linear-gradient(90deg, #00609C 20%, #0088DD 35%, #004067 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 980px) {
  .appeal_mes .decoration {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 768px) {
  .appeal_mes .decoration {
    line-height: 1.25;
  }
}
.appeal_portrait {
  width: 300px;
  position: relative;
}
@media screen and (max-width: 980px) {
  .appeal_portrait {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .appeal_portrait {
    display: block;
    width: 310px;
    margin: 0 auto;
  }
}
.appeal_portrait:before {
  position: absolute;
  left: -180px;
  top: -50px;
  content: "";
  display: inline-block;
  width: 158px;
  height: 86px;
  background-image: url(../images/appeal_portrait-text.webp);
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 980px) {
  .appeal_portrait:before {
    left: -120px;
    top: -30px;
    width: 120px;
    height: 66px;
  }
}
@media screen and (max-width: 768px) {
  .appeal_portrait:before {
    display: none;
  }
}

/* === Contact === */
.contact {
  padding-top: 27px;
  padding-bottom: 49px;
}
@media screen and (max-width: 980px) {
  .contact {
    padding-top: 16px;
    padding-bottom: 32px;
    margin-bottom: 0;
  }
}
.contact_wrap {
  position: relative;
}
.contact_body {
  margin-right: auto;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.25);
}
.contact_info {
  padding: 13px 8px 10px;
  border-radius: 10px 10px 0 0;
  background-color: #06C755;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 980px) {
  .contact_info {
    padding: 11px 8px 9px;
  }
}
.contact_mes {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (max-width: 980px) {
  .contact_mes {
    line-height: 1.4;
  }
}
.contact_supp {
  margin-top: 4px;
  font-size: 1.1rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
}
.contact_form {
  display: grid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 600px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 14px 81px;
  max-width: 880px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 24px;
  margin: 22px auto 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 980px) {
  .contact_form {
    display: block;
    height: auto;
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 33px;
  }
}

.item1 {
  grid-column: 1/2;
  grid-row: 1;
}

.item2 {
  grid-column: 1/2;
  grid-row: 2;
}

.item3 {
  grid-column: 1/2;
  grid-row: 3;
}

.item4 {
  grid-column: 1/2;
  grid-row: 4;
}

.item5 {
  grid-column: 2;
  grid-row: 1;
}

.item6 {
  grid-column: 2;
  grid-row: 2;
}

.item7 {
  grid-column: 2;
  grid-row: 3;
}

.item8 {
  grid-column: 2;
  grid-row: 4/5;
}

.item9 {
  grid-column: 1/3;
  grid-row: 6;
}

.item10 {
  grid-column: 1/3;
  grid-row: 7;
}

.form .form-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 48px;
  padding: 12px;
  background-color: #fff;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  border: 1px solid #BEBDBD;
  color: #2E2E2E;
  font-size: 1.6rem;
  line-height: 1.2;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 980px) {
  .form .form-text {
    font-size: 1.4rem;
  }
}
.form .form-text::-webkit-input-placeholder {
  color: #A9A9A9;
}
.form .form-text::-moz-placeholder {
  color: #A9A9A9;
}
.form .form-text:-ms-input-placeholder {
  color: #A9A9A9;
}
.form .form-text::-ms-input-placeholder {
  color: #A9A9A9;
}
.form .form-text::placeholder {
  color: #A9A9A9;
}
.form .form-text:not(:-moz-placeholder-shown) {
  background-color: #fff;
  box-shadow: none;
}
.form .form-text:not(:-ms-input-placeholder) {
  background-color: #fff;
  box-shadow: none;
}
.form .form-text:not(:placeholder-shown) {
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form .form-textarea {
  height: 146px;
  resize: vertical;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 980px) {
  .form .form-textarea {
    height: 90px;
  }
}
.form .form-select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 48px;
  padding: 12px;
  background-color: #fff;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  border: 1px solid #BEBDBD;
  color: #2E2E2E;
  font-size: 1.6rem;
  line-height: 1.2;
  width: 271px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 980px) {
  .form .form-select {
    font-size: 1.4rem;
  }
}
.form .form-select:valid {
  background-color: #fff;
  color: #2E2E2E;
}
.form .form-select-wrap {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.form .form-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 9px;
  background-color: #2E2E2E;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 980px) {
  .form_item:not(:first-child) {
    margin-top: 20px;
  }
}
.form_title {
  display: block;
  width: 100%;
  color: #494949;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 980px) {
  .form_title {
    font-size: 1.4rem;
  }
}
.form_required {
  display: inline-block;
  padding: 3px 13px;
  margin-right: 7px;
  border-radius: 20px;
  background-color: #FFA03D;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 980px) {
  .form_required {
    font-size: 1.3rem;
  }
}
.form_control {
  margin-top: 7px;
}
.form_notes {
  margin-top: 16px;
  text-align: center;
  color: #E40060;
  font-size: 1.2rem;
  line-height: 1.1;
}
@media screen and (max-width: 980px) {
  .form_notes {
    margin-top: 26px;
    line-height: 1.2;
  }
}
.form_submit {
  display: block;
  padding: 4px 8px;
  margin: -7px auto 0;
  height: 51px;
  border-radius: 70px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#01CE58), to(#018E3D));
  background-image: -webkit-linear-gradient(top, #01CE58, #018E3D);
  background-image: linear-gradient(to bottom, #01CE58, #018E3D);
  outline: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
@media screen and (max-width: 980px) {
  .form_submit {
    height: 59px;
    padding: 4px 6px;
    margin: 0 auto;
  }
}
.form_submit:hover, .form_submit:focus {
  opacity: 0.8;
}
.form_submit--gritter {
  overflow: hidden;
  position: relative;
}
.form_submit--gritter::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background-image: -webkit-gradient(linear, right top, left top, from(#fff), to(transparent));
  background-image: -webkit-linear-gradient(right, #fff, transparent);
  background-image: linear-gradient(to left, #fff, transparent);
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  -webkit-animation: gritter 4s infinite;
          animation: gritter 4s infinite;
}
.form_submit-inner {
  display: block;
  padding: 12px 45px 8px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#017D36), to(#01C052));
  background-image: -webkit-linear-gradient(top, #017D36, #01C052);
  background-image: linear-gradient(to bottom, #017D36, #01C052);
  border-radius: 70px;
  background-color: #fff;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  text-indent: 1em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 980px) {
  .form_submit-inner {
    padding: 12px 38px 8px;
  }
}
.form_privacy-policy {
  margin-top: -4px;
  text-align: center;
  color: #2E2E2E;
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 980px) {
  .form_privacy-policy {
    margin-top: 15px;
  }
}

.footer {
  padding-top: 27px;
  padding-bottom: 34px;
  background: url(../images/footer_bg.webp) 30%/cover;
  color: #fff;
}
@media screen and (max-width: 980px) {
  .footer {
    padding-bottom: 29px;
  }
}
.footer_inner {
  max-width: 900px;
}
.footer_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width: 980px) {
  .footer_info {
    display: block;
  }
}
.footer_about {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 16px;
  border-left: 2px solid #fff;
}
.footer_about-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.footer_about-logo {
  display: inline-block;
  width: 158px;
  margin-left: -8px;
}
.footer_about-detail {
  font-size: 1.4rem;
  line-height: 1.8;
}
.footer_company {
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 980px) {
  .footer_company {
    margin-top: 20px;
  }
}
.footer_company-name {
  font-weight: bold;
}
.footer_company-phone a {
  color: #008FE9;
  text-decoration: none;
}
.footer_copyright {
  display: block;
  margin-top: 32px;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 980px) {
  .footer_copyright {
    margin-top: 44px;
  }
}
.footer--thanks {
  background: none;
  padding-top: 0;
}

.thanks-body {
  background: url(../images/thanks_bg.webp) center/100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 980px) {
  .thanks-body {
    background: url(../images/thanks_bg-sp.webp) center/100% 100%;
    background-repeat: no-repeat;
  }
}

.thanks {
  padding-top: 19px;
  padding-bottom: 120px;
  color: #fff;
}
@media screen and (max-width: 980px) {
  .thanks {
    padding-bottom: 80px;
  }
}
.thanks_title-wrap {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 58px auto 0;
}
.thanks_title {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 22px;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.24;
}
@media screen and (max-width: 980px) {
  .thanks_title {
    margin-top: 104px;
    font-size: 2.2rem;
    line-height: 1.7;
  }
}
.thanks_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 76px;
  height: 16px;
  background-image: -webkit-radial-gradient(#fff 30%, transparent 30%);
  background-image: radial-gradient(#fff 30%, transparent 30%);
  background-size: 20px 20px;
}
.thanks_message {
  margin-top: 16px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.7;
}
@media screen and (max-width: 980px) {
  .thanks_message {
    font-size: 1.5rem;
  }
}
.thanks_service-link {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 65px 12px 47px;
  margin: 37px auto 0;
  background-color: #fff;
  border-radius: 50px;
  text-decoration: none;
  color: #0075BE;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.6;
}
.thanks_service-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 13px;
  background-color: #00609C;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.thanks #time-bar {
  width: 196px;
  height: 11px;
  margin: 27px auto 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #212b2b), color-stop(50%, #d9d9d9)) 100% center/200% 100%;
  background: -webkit-linear-gradient(left, #212b2b 50%, #d9d9d9 50%) 100% center/200% 100%;
  background: linear-gradient(to right, #212b2b 50%, #d9d9d9 50%) 100% center/200% 100%;
  -webkit-transition: background-position-x 5s 0.5s linear;
  transition: background-position-x 5s 0.5s linear;
}
.thanks #time-bar.finished {
  background-position-x: 0%;
}
.thanks_supp {
  margin-top: 10px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

/* ========================
Helper
======================== */
@media screen and (max-width: 980px) {
  .pc-only {
    display: none;
  }
}

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

@media screen and (min-width: 769px) {
  .min-only {
    display: none;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.clear-fix {
  clear: both;
}

.marker {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #FFF961), color-stop(50%, transparent));
  background-image: -webkit-linear-gradient(bottom, #FFF961 50%, transparent 50%);
  background-image: linear-gradient(to top, #FFF961 50%, transparent 50%);
}

.main1 {
  color: #EB6133;
}

.yellow {
  color: #FFF961;
}

.pink {
  color: #E40060;
}