@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.25;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.25;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* ========================
Base
======================== */
html {
  font-size: 62.5%;
}

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

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

a {
  color: #EB6133;
}

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

ul, ol {
  list-style: none;
}

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

/* ========================
Common
======================== */
/* === Button === */
.btn {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 448px;
  height: 110px;
  background: url(../images/btn_bg.webp) center/100% 100% no-repeat;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 352px;
    height: 92px;
    padding-bottom: 4px;
  }
}
.btn_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
  color: #313131;
  font-size: 26px;
  font-weight: bold;
  text-shadow: 3px 4px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .btn_inner {
    font-size: 20px;
    padding-left: 0px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);
  }
}
.btn_inner::before {
  content: "";
  position: absolute;
  top: 39px;
  right: 54px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .btn_inner::before {
    top: 29px;
    right: 26px;
    width: 27px;
    height: 27px;
  }
}
.btn_inner::after {
  content: "";
  position: absolute;
  top: 48px;
  right: 67px;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  width: 7.0710678119px;
  height: 7.0710678119px;
  border-right: 2px solid #5DBECC;
  border-bottom: 2px solid #5DBECC;
}
@media screen and (max-width: 768px) {
  .btn_inner::after {
    top: 36px;
    right: 37px;
  }
}

.btn_inner span {
  position: relative;
}
.btn_inner span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -290px;
  width: 75px;
  height: 60px;
  background: url(../images/btn-left.webp);
  z-index: 2;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .btn_inner span::before {
    left: -240px;
  }
}

.btn_innner_hero {
  font-size: 20px;
  text-shadow: none;
}

/* === Section Title === */
.sect-title {
  position: relative;
  padding-bottom: 35px;
  text-align: center;
  font-size: 3.8rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .sect-title {
    padding-bottom: 18px;
    font-size: 2.4rem;
  }
}
.sect-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
  width: 56px;
  height: 5px;
  background-color: #EB6133;
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 768px) {
  .sect-title::before {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
    width: 40px;
    height: 4px;
  }
}
.sect-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  width: 56px;
  height: 5px;
  background-color: #008FE9;
  border-radius: 0 30px 30px 0;
}
@media screen and (max-width: 768px) {
  .sect-title::after {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
    width: 40px;
    height: 4px;
  }
}

/* === Content === */
.cont {
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  .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;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.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
======================== */
/* === Header === */
.header {
  background: #fff;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  position: absolute;
  border-radius: 0 0 15px 15px;
  padding: 7px 5px 5px;
  top: 0;
}
@media screen and (max-width: 768px) {
  .header {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 315px;
  }
}
.header p {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin: 0 0 5px;
}
.header img {
  width: 300px;
}

/* === Hero === */
.hero {
  background: #eeeff0;
  position: relative;
  padding-bottom: 35px;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 363px;
  height: 381px;
  background: #fff;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%);
}
@media screen and (max-width: 768px) {
  .hero::before {
    width: 114px;
    height: 123px;
  }
}
.hero::after {
  content: "";
  background: url("../images/bg-hero-line.svg") no-repeat center/100% auto;
  width: 698px;
  height: 606px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .hero::after {
    background: url("../images/bg-hero-line-sm.svg") no-repeat center/100% auto;
    width: 209px;
    height: 260px;
    top: auto;
    bottom: 0;
    right: 0;
  }
}
.hero__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__upper {
  padding-top: 45px;
  padding-bottom: 37px;
  font-family: "Zen Kaku Gothic New";
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero__upper {
    padding-top: 27px;
    padding-bottom: 23px;
    padding-right: 20px;
    padding-left: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.hero__upper-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .hero__upper-body {
    display: block;
  }
}
.hero__head {
  font-size: 5.8rem;
  line-height: 1.2;
  color: #11124b;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .hero__head {
    font-size: 3.8rem;
  }
}
.hero__head > span {
  line-height: 1.8;
  background: #11124b;
  color: #fff;
  font-weight: 500;
  padding: 0 10px 3px;
  position: relative;
}
.hero__head > span::before {
  content: "";
  background: var(--grd, linear-gradient(90deg, #D80110 0%, #F28E03 100%));
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  -webkit-transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}
@media screen and (max-width: 768px) {
  .hero__head > span::before {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
}
.is-loaded .hero__head > span::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.hero__head > span span {
  position: relative;
}
.hero__pict {
  position: relative;
  top: 44px;
  left: -10px;
}
@media screen and (max-width: 768px) {
  .hero__pict {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
    margin-top: 13px;
  }
}
@media screen and (max-width: 768px) {
  .hero__pict-element {
    width: 119px;
  }
}
.hero__pict-badge {
  position: absolute;
  top: -40px;
  right: -130px;
  -webkit-animation: heroAnimate 2s ease-out infinite;
          animation: heroAnimate 2s ease-out infinite;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .hero__pict-badge {
    width: 123px;
    position: static;
  }
}
@-webkit-keyframes heroAnimate {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@keyframes heroAnimate {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
.hero__context {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 984px) {
  .hero__context {
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .hero__context {
    margin: 8px 0 0;
  }
}
.hero__context-head {
  background: url("../images/bg-hero-text.svg") no-repeat center top/100% auto;
  width: 351px;
  height: 52px;
  padding-top: 4px;
  margin-bottom: -20px;
}
@media screen and (max-width: 768px) {
  .hero__context-head {
    background: url("../images/bg-hero-text-sm.svg") no-repeat center bottom/100% auto;
    height: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 11px;
    margin-bottom: 0;
  }
}
.hero__context-head span {
  background: var(--grd, linear-gradient(90deg, #D80110 0%, #F28E03 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.2rem;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .hero__context-head span {
    font-size: 1.6rem;
  }
}
.hero__context-text {
  color: var(--main, #11114B);
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
}
@media screen and (max-width: 768px) {
  .hero__context-text {
    font-size: 2.1rem;
    position: relative;
  }
}
.hero__context-text img {
  width: 220px;
  margin-left: -4px;
  -webkit-transform: translate(0, 14px);
          transform: translate(0, 14px);
}
@media screen and (max-width: 768px) {
  .hero__context-text img {
    width: 159px;
    position: absolute;
    top: 12px;
  }
}
.hero__lower {
  background: #fff;
  padding: 18px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hero__lower {
    background: transparent;
    padding: 0 18px;
  }
}
.hero__lower-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .hero__lower-body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 6px;
  }
}
.hero__lower-text {
  font-family: "Noto Sans JP";
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.045px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero__lower-text {
    font-size: 1.7rem;
  }
}
.hero__lower-text::before, .hero__lower-text::after {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#D80110), to(#F28E03));
  background: -webkit-linear-gradient(left, #D80110 0%, #F28E03 100%);
  background: linear-gradient(90deg, #D80110 0%, #F28E03 100%);
  height: 2.5px;
  width: 24px;
  display: block;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 768px) {
  .hero__lower-text::before, .hero__lower-text::after {
    height: 1.5px;
    width: 18px;
  }
}
.hero__lower-text::before {
  top: -9px;
  -webkit-transform: rotate(18deg);
          transform: rotate(18deg);
}
@media screen and (max-width: 768px) {
  .hero__lower-text::before {
    left: -20px;
    top: 12px;
    -webkit-transform: rotate(68deg);
            transform: rotate(68deg);
  }
}
.hero__lower-text::after {
  bottom: -9px;
  -webkit-transform: rotate(-18deg);
          transform: rotate(-18deg);
}
@media screen and (max-width: 768px) {
  .hero__lower-text::after {
    -webkit-transform: rotate(-68deg);
            transform: rotate(-68deg);
    right: -20px;
    top: 12px;
  }
}
.hero__lower-text span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fbfe04));
  background: -webkit-linear-gradient(transparent 60%, #fbfe04 60%);
  background: linear-gradient(transparent 60%, #fbfe04 60%);
  color: #db120e;
}
.hero__lower-text em {
  background: var(--grd, linear-gradient(90deg, #e23809 0%, #F28E03 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lower-button {
  -ms-flex-item-align: start;
      align-self: start;
}
.hero__lower-button a {
  position: relative;
  border-radius: 202.7px;
  background: -webkit-gradient(linear, left top, right top, from(#2A6FD7), to(#00D0FF));
  background: -webkit-linear-gradient(left, #2A6FD7 0%, #00D0FF 100%);
  background: linear-gradient(90deg, #2A6FD7 0%, #00D0FF 100%);
  -webkit-box-shadow: 3.041px 3.041px 3.041px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 3.041px 3.041px 3.041px 0px rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 335px;
  height: 56px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .hero__lower-button a {
    font-size: 1.8rem;
  }
}
.hero__lower-button a::before {
  content: "";
  width: 8px;
  height: 13px;
  background: url("../images/icon-ar-button.svg") no-repeat center center/100% auto;
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.hero__lower-button a::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;
}

/* === Contact === */
.contact {
  padding-top: 0;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.contact .section-head {
  margin-top: -18px;
}
.contact_wrap {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .contact_wrap {
    padding: 0;
    border-radius: 50px;
    padding-bottom: 50px;
  }
}
.contact_form {
  max-width: 600px;
  padding-bottom: 30px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .contact_form {
    margin-top: 12px;
  }
}

.form .form-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 52px;
  padding: 15px 20px 10px;
  background-color: #fff;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  color: #313131;
  font-size: 1.6rem;
  line-height: 2;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form .form-text {
    height: 50px;
    padding: 9px 12px;
  }
}
.form .form-text::-webkit-input-placeholder {
  color: #7f879c;
}
.form .form-text::-moz-placeholder {
  color: #7f879c;
}
.form .form-text:-ms-input-placeholder {
  color: #7f879c;
}
.form .form-text::-ms-input-placeholder {
  color: #7f879c;
}
.form .form-text::placeholder {
  color: #7f879c;
}
.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: 160px;
  resize: vertical;
}
.form .form-select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 52px;
  padding: 15px 20px 10px;
  background-color: #fff;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  color: #313131;
  font-size: 1.6rem;
  line-height: 2;
  font-family: "Noto Sans JP", serif;
  width: 100%;
  border-radius: 4px;
  padding-top: 10px;
  background-color: #fff;
  border: 1px solid #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #1d294f;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .form .form-select {
    height: 50px;
    padding: 9px 12px;
  }
}
.form .form-select-wrap {
  position: relative;
  width: 100%;
  max-width: 271px;
}
.form .form-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 8px;
  background: url("../images/icon-select.svg") no-repeat center center/100% auto;
  width: 15px;
}
.form_item {
  display: block;
}
@media screen and (max-width: 768px) {
  .form_item {
    display: block;
    margin-left: 0;
  }
}
.form_item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .form_item:not(:first-child) {
    margin-top: 26px;
  }
}
.form_item_caption {
  display: grid;
  grid-template-columns: 1em 1fr;
  gap: 0 2px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .form_item_caption {
    font-size: 1rem;
  }
}
.form_item_caption + div {
  margin-top: 5px;
}
.form_item_caption:last-child {
  margin-bottom: -10px;
}
.form_title {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .form_title {
    font-size: 1.6rem;
    text-align: left;
    padding-top: 0;
    margin-bottom: 12px;
  }
}
.form_title_notes {
  padding-top: 10px;
  font-size: 1.4rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .form_title_notes {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.form_required {
  display: inline-block;
  background-color: #d78101;
  border-radius: 30px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: normal;
  width: 54px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 7px;
  padding: 3px;
}
@media screen and (max-width: 768px) {
  .form_required {
    font-size: 1.5rem;
  }
}
.form_submit {
  display: block;
  padding: 16px 5px;
  margin: 18px auto 0;
  border: 0;
  width: 230px;
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f18904;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.2;
  border-radius: 4px;
  font-weight: bold;
  -webkit-box-shadow: 2.459px 4.099px 0px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2.459px 4.099px 0px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form_submit {
    margin-top: 25px;
  }
}
.form_submit:hover, .form_submit:focus {
  opacity: 0.8;
}
.form_privacy-policy {
  margin-top: 30px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .form_privacy-policy {
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: 1.5;
  }
}
.form_link {
  color: currentColor;
}

.form_label_caption {
  text-align: right;
  font-size: 1.4rem;
  font-weight: 500;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .form_label_caption {
    padding-right: 0;
    font-size: 1.1rem;
  }
}
.form_label_caption span {
  color: #e8562d;
}

/* === FAQ === */
.faq {
  padding-top: 60px;
  background-color: #EEF9FF;
}
@media screen and (max-width: 768px) {
  .faq {
    padding-bottom: 40px;
  }
}

.accordion {
  margin-top: 74px;
}
@media screen and (max-width: 768px) {
  .accordion {
    margin-top: 34px;
  }
}
.accordion_item {
  background-color: #fff;
}
.accordion_item:not(:first-child) {
  margin-top: 20px;
}
.accordion_item.open .accordion_icon::before {
  top: 60%;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  width: 11px;
}
@media screen and (max-width: 768px) {
  .accordion_item.open .accordion_icon::before {
    width: 9px;
  }
}
.accordion_item.open .accordion_icon::after {
  bottom: 40%;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(-45deg) translateX(-50%);
          transform: rotate(-45deg) translateX(-50%);
  height: 11px;
}
@media screen and (max-width: 768px) {
  .accordion_item.open .accordion_icon::after {
    height: 9px;
  }
}
.accordion_item.open .accordion_answer {
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  line-height: 1.8;
  opacity: 1;
}
.accordion_item.open .accordion_a {
  top: 30px;
}
.accordion_btn {
  display: block;
  position: relative;
  width: 100%;
  min-height: 113px;
  padding: 30px 90px 30px 104px;
  border: none;
  outline: none;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: left;
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .accordion_btn {
    min-height: 75px;
    padding: 18px 70px;
    font-size: 1.6rem;
  }
}
.accordion_question {
  position: relative;
}
.accordion_q {
  position: absolute;
  top: 30px;
  left: 30px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#008FE9), to(#85C4EF));
  background-image: -webkit-linear-gradient(bottom, #008FE9, #85C4EF);
  background-image: linear-gradient(to top, #008FE9, #85C4EF);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #008FE9;
  font-size: 53px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .accordion_q {
    top: 18px;
    left: 18px;
    font-size: 39px;
  }
}
.accordion_icon {
  position: absolute;
  top: 39px;
  right: 30px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-image: -webkit-linear-gradient(135deg, #FF6937, #FF6937 50%, #EB6133 50%, #EB6133);
  background-image: linear-gradient(-45deg, #FF6937, #FF6937 50%, #EB6133 50%, #EB6133);
}
@media screen and (max-width: 768px) {
  .accordion_icon {
    top: 24px;
    right: 18px;
    width: 28px;
    height: 28px;
  }
}
.accordion_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .accordion_icon::before {
    width: 14px;
  }
}
.accordion_icon::after {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 2px;
  height: 18px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .accordion_icon::after {
    height: 14px;
  }
}
.accordion_answer {
  position: relative;
  height: 0;
  padding: 0 90px 0 104px;
  opacity: 0;
  line-height: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .accordion_answer {
    padding-left: 70px;
    padding-right: 70px;
    font-size: 1.6rem;
  }
}
.accordion_a {
  position: absolute;
  top: 0;
  left: 30px;
  color: #EB6133;
  font-size: 53px;
  line-height: 1;
  -webkit-transition: top 0.4s;
  transition: top 0.4s;
}
@media screen and (max-width: 768px) {
  .accordion_a {
    left: 18px;
    font-size: 39px;
  }
}

.footer {
  padding-top: 44px;
  padding-bottom: 38px;
  background: #fff;
  color: #11124b;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 25px;
  }
}
.footer .cont_inner {
  max-width: 1110px;
}
@media screen and (max-width: 768px) {
  .footer_inner {
    display: block;
  }
}
.footer_about {
  padding-left: 17px;
  border-left: 2px solid #11124b;
}
@media screen and (max-width: 768px) {
  .footer_about {
    padding: 0 0 0 13px;
  }
}
.footer_about-info {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 5px;
}
.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.8rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .footer_about-title {
    font-size: 1.4rem;
  }
}
.footer_about-logo {
  display: inline-block;
  width: 200px;
  margin-left: -8px;
}
@media screen and (max-width: 768px) {
  .footer_about-logo {
    width: 140px;
  }
}
.footer_about-detail {
  font-size: 1.4em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .footer_about-detail {
    font-size: 1.4rem;
  }
}
.footer_manual {
  grid-area: 2/2/3/3;
  justify-self: end;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .footer_manual {
    margin-top: 42px;
  }
}
.footer_link {
  color: #313131;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.footer_company {
  margin-top: 22px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .footer_company {
    margin-top: 20px;
    text-align: left;
  }
}
.footer_company-name {
  font-weight: bold;
}
.footer_company-phone a {
  color: #008FE9;
  text-decoration: none;
}
.footer_copyright {
  display: block;
  margin-top: 30px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    margin-top: 25px;
    font-size: 1rem;
  }
}

.thanks {
  padding-top: 19px;
  padding-bottom: 151px;
  background: url(../images/decoration_thanks1.webp) top right no-repeat, url(../images/decoration_thanks2.webp) left no-repeat;
  background-color: #F5FBFF;
}
@media screen and (max-width: 768px) {
  .thanks {
    padding-bottom: 112px;
    background: #F5FBFF;
  }
}
.thanks_header {
  position: unset;
  display: block;
  padding-top: 0;
}
.thanks_header::before {
  display: none;
}
.thanks_header_copy {
  font-size: 1.5rem;
  color: #000000;
  font-weight: bold;
  border-left: 2px solid #008FE9;
  -webkit-border-image: -webkit-gradient(linear, left bottom, left top, from(#008FE9), to(#85C4EF)) 1;
  -webkit-border-image: -webkit-linear-gradient(bottom, #008FE9, #85C4EF) 1;
       -o-border-image: linear-gradient(to top, #008FE9, #85C4EF) 1;
          border-image: -webkit-gradient(linear, left bottom, left top, from(#008FE9), to(#85C4EF)) 1;
          border-image: linear-gradient(to top, #008FE9, #85C4EF) 1;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .thanks_header_copy {
    font-size: 1.4rem;
    padding-left: 13px;
  }
}
.thanks_header_sitetitle {
  width: 444px;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .thanks_header_sitetitle {
    width: 347px;
    margin-left: -10px;
  }
}
.thanks_title-wrap {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 135px auto 0;
}
@media screen and (max-width: 768px) {
  .thanks_title-wrap {
    margin-top: 110px;
  }
}
.thanks_title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 30px;
  font-size: 2.8rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .thanks_title {
    font-size: 2.2rem;
  }
}
.thanks_message {
  margin-top: 40px;
  text-align: center;
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .thanks_message {
    font-size: 1.6rem;
  }
}
.thanks_link {
  display: block;
  margin-inline: auto;
  text-align: center;
  border-radius: 999px;
  background-color: #fff;
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #008FE9;
  text-decoration: none;
  -webkit-margin-before: 37px;
          margin-block-start: 37px;
  width: 100%;
  max-width: 277px;
  padding-block: 12px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.thanks_link::before {
  content: "";
  position: absolute;
  display: block;
  width: 9px;
  height: 13px;
  top: 50%;
  translate: 0 -50%;
  right: 12px;
  background: #0064A2;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.thanks_gage {
  -webkit-margin-before: 27px;
          margin-block-start: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.thanks_progress {
  background-color: #d9d9d9;
  display: block;
  width: 196px;
  height: 11px;
}
.thanks_progress::-webkit-progress-bar, .thanks_progress::-moz-progress-bar, .thanks_progress::-ms-fill {
  background-color: #d9d9d9;
}
.thanks_progress::-webkit-progress-value {
  background-color: #212b2b;
}
.thanks_note {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
  color: #313131;
  font-size: 1.1rem;
  line-height: 1.2;
}

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

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

.clear-fix {
  clear: both;
}

.marker {
  background-color: #FFF961;
}

.underline {
  background-image: -webkit-linear-gradient(bottom, #FFF961 6px, transparent 6px);
  background-image: linear-gradient(to top, #FFF961 6px, transparent 6px);
}

.main1 {
  color: #EB6133;
}

.yellow {
  color: #FFFCBE;
}

.home-contents {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #11114B;
  overflow: hidden;
}

.section-head {
  color: #11124b;
  font-size: 2.5rem;
  position: relative;
  line-height: 1.3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  min-width: 308px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #11124b;
  text-align: center;
  padding-top: 58px;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}
.section-head em {
  color: #ea6209;
}
@media screen and (max-width: 768px) {
  .section-head {
    padding-bottom: 13px;
    margin-bottom: 40px;
    min-width: 324px;
  }
}
.section-head::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url("../images/icon-ar.svg") no-repeat center center/100% auto;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.section-head::after {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#d8010f), to(#f28d04));
  background: -webkit-linear-gradient(left, #d8010f, #f28d04);
  background: linear-gradient(90deg, #d8010f, #f28d04);
  width: 115px;
  height: 1.5px;
  position: absolute;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1.5px;
}
.section-head--feature {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .section-head--feature {
    margin-bottom: 54px;
  }
}
.section-head--feature::before {
  top: auto;
  bottom: -58px;
}

.home-feature {
  background: #eeeff0;
  padding: 73px 20px 90px;
}
@media screen and (max-width: 768px) {
  .home-feature {
    padding: 35px 20px 75px;
  }
}
.home-feature__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.home-feature__block {
  margin-bottom: 52px;
}
.home-feature__block:last-child {
  margin-bottom: 0;
}
.home-feature__num {
  font-family: Jost;
  font-size: 6rem;
  font-style: italic;
  font-weight: 700;
  line-height: 150%;
  background: url("../images/bg-line-frd.svg") no-repeat left top/70px auto;
  padding-left: 46px;
  padding-top: 4px;
}
@media screen and (max-width: 768px) {
  .home-feature__num {
    font-size: 4.6rem;
    background-size: 54px auto;
    padding-left: 36px;
    margin-left: -20px;
  }
}
.home-feature__num span {
  background: var(--grd, linear-gradient(90deg, #D80110 0%, #F28E03 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 2px;
}
.home-feature__head {
  background: -webkit-gradient(linear, left top, right top, from(#D80110), to(#F28E03));
  background: -webkit-linear-gradient(left, #D80110 0%, #F28E03 100%);
  background: linear-gradient(90deg, #D80110 0%, #F28E03 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.4rem;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .home-feature__head {
    font-size: 3rem;
    line-height: 1.5;
    padding-left: 20px;
  }
}
.home-feature__body {
  display: grid;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .home-feature__body {
    gap: 25px;
  }
}
.home-feature__content {
  border-radius: 30px;
  background: #fff;
  padding: 40px 50px;
}
@media screen and (max-width: 768px) {
  .home-feature__content {
    padding: 20px 37px;
    position: relative;
  }
}
.home-feature__content--upper {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .home-feature__content--upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 27px 5px 0;
  }
}
@media screen and (max-width: 768px) {
  .home-feature__content--02 {
    border-radius: 0 30px 30px 0;
    padding-right: 100px;
    margin-left: -20px;
    padding-left: 37px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .home-feature__content--03 {
    border-radius: 30px 0 0 30px;
    margin-right: -20px;
    margin-left: 16px;
  }
}
.home-feature__content-head {
  width: 242px;
  border-radius: 0 50px 50px 0;
  text-align: center;
  color: #fff;
  background: #11124b;
  font-size: 2rem;
  font-weight: bold;
  padding: 11px 5px 12px;
}
.home-feature__content-head--fc {
  background: #a6a6a6;
}
@media screen and (max-width: 768px) {
  .home-feature__content-pict {
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .home-feature__content-pict.pt {
    padding-bottom: 29px;
  }
  .home-feature__content-pict--01 img {
    width: 206.5px;
  }
  .home-feature__content-pict--02 img {
    width: 279.5px;
  }
}
.home-feature__text {
  font-size: 2.1rem;
  color: #000;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .home-feature__text {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.home-feature__text span {
  color: #e65309;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fbfe04));
  background: -webkit-linear-gradient(transparent 60%, #fbfe04 60%);
  background: linear-gradient(transparent 60%, #fbfe04 60%);
}
.home-feature__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .home-feature__col {
    position: static;
  }
}
.home-feature__col-image {
  position: absolute;
  bottom: -22px;
  right: -220px;
}
@media screen and (max-width: 768px) {
  .home-feature__col-image {
    width: 121px;
    right: -27px;
    bottom: 17px;
  }
}

.home-case {
  background: #fff;
  padding-bottom: 109px;
}
@media screen and (max-width: 768px) {
  .home-case {
    padding-bottom: 65px;
  }
}
.home-case .section-head {
  top: -20px;
  position: relative;
}
.home-case__inner {
  margin: 0 auto;
}
.home-case__bg {
  background: url("../images/pict-case.webp") repeat-x left center/1158.5px;
  height: 95px;
  width: 100%;
  -webkit-animation: 16s bg-case-slider linear infinite;
          animation: 16s bg-case-slider linear infinite;
}
@-webkit-keyframes bg-case-slider {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1158.5px 0;
  }
}
@keyframes bg-case-slider {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1158.5px 0;
  }
}
@-webkit-keyframes bg-case-slider-sm {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1502px 0;
  }
}
@keyframes bg-case-slider-sm {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1502px 0;
  }
}
.home-case__body {
  max-width: 691.5px;
  margin: 0 auto;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .home-case__body {
    max-width: 340px;
  }
}

.home-voice {
  background: #fff;
  padding: 0 20px 108px;
}
@media screen and (max-width: 768px) {
  .home-voice {
    padding: 0 0 100px;
  }
}
.home-voice__body {
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .home-voice__body {
    padding: 0 40px 34px 20px;
  }
}
.home-voice__body::before {
  content: "";
  background: #eeeff0;
  width: calc(100% - 184px);
  position: absolute;
  height: 100%;
  left: -20px;
  top: 0;
  display: block;
  border-radius: 0 30px 30px 0;
  min-width: 1010px;
}
@media screen and (max-width: 768px) {
  .home-voice__body::before {
    min-width: 0;
    width: calc(100% - 19px);
    left: 0;
  }
}
.home-voice__inner {
  max-width: 1082px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home-voice__inner {
    padding-top: 113px;
  }
}
.home-voice__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .home-voice__header {
    position: relative;
    padding-bottom: 93px;
  }
}
.home-voice__head {
  color: #FFF;
  font-family: Jost;
  font-size: 4.6rem;
  font-style: italic;
  font-weight: 700;
  line-height: 150%;
  background: url("../images/bg-line-white.svg") no-repeat left top/54px auto;
  padding-left: 36px;
  padding-top: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .home-voice__head {
    left: 15px;
    margin-top: -113px;
  }
}
.home-voice__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .home-voice__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.home-voice__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 11px;
}
.home-voice__logo img {
  width: 150px;
}
.home-voice__logo span {
  color: var(--main, #11114B);
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.4px;
  margin-top: 2px;
  display: inline-block;
}
.home-voice__name {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.32px;
}
.home-voice__pict {
  width: 408px;
  margin: -46px 0 46px;
}
@media screen and (max-width: 768px) {
  .home-voice__pict {
    width: 457px;
    position: absolute;
    bottom: 15px;
    margin: 0;
    left: 95px;
  }
}
.home-voice__content-head {
  font-size: 2.7rem;
  line-height: 1.4;
  font-weight: bold;
  border-bottom: 1.5px solid #11124b;
  position: relative;
  padding-bottom: 9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .home-voice__content-head br {
    display: none;
  }
}
.home-voice__content-head::after {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#d8010f), to(#f28d04));
  background: -webkit-linear-gradient(left, #d8010f, #f28d04);
  background: linear-gradient(90deg, #d8010f, #f28d04);
  width: 115px;
  height: 1.5px;
  position: absolute;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1.5px;
}
.home-voice__content-head small {
  font-size: 2rem;
}
.home-voice__content-text {
  color: #000;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  /* 25.6px */
  letter-spacing: -0.32px;
}
.home-voice__content-text span {
  background: var(--grd, linear-gradient(90deg, #D80110 0%, #F28E03 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 500;
}

.contact {
  font-family: "Noto Sans JP";
}
.contact__head {
  background: #fff;
  border: 4px solid #e75309;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.6666666667;
  max-width: 757px;
  margin: 0 auto 60px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.25));
}
.contact__head::after {
  content: "";
  width: 70px;
  height: 31px;
  display: block;
  background: #e8562d;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  .contact__head::after {
    width: 54px;
    height: 25px;
  }
}
.contact__head_list {
  color: #313131;
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  padding: 30px 80px;
  letter-spacing: 1px;
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .contact__head_list {
    padding: 18px 25px;
    font-size: 1.6rem;
    gap: 9px;
  }
}
.contact__head_list li {
  position: relative;
  padding-left: 45px;
  background: url("../images/icon-check.svg") no-repeat left 2px/35px auto;
  padding-top: 2px;
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .contact__head_list li {
    background-size: 28px auto;
    padding-left: 40px;
  }
}
.contact__head_list li span {
  color: #eb6133;
  background: #fff961;
}
.contact__head_lower {
  background: #e75309;
  border-radius: 0 0 15px 15px;
  color: #fff;
  line-height: 1.7;
  font-size: 2rem;
  padding: 20px 35px 20px 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact__head_lower {
    font-size: 1.6rem;
    padding: 10px;
  }
  .contact__head_lower div {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding-right: 40px;
    position: relative;
  }
}
.contact__head_lower::before {
  width: 120px;
  height: 137px;
  display: block;
  content: "";
  position: absolute;
  background: url("../images/pict-download.svg") no-repeat center center/100% auto;
  right: 25px;
  bottom: -4px;
}
@media screen and (max-width: 768px) {
  .contact__head_lower::before {
    width: 90px;
    height: 104px;
    right: -24px;
    bottom: 10px;
  }
}
.contact__title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  border-bottom: 2px dashed currentColor;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 21px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 2.2rem;
    padding-bottom: 5px;
  }
}
.contact__caption {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
.contact__caption-body {
  background: #ffff2c;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 2px;
}
.contact__caption-body em, .contact__caption-body span {
  color: #e8562d;
}
.contact__caption-body em {
  font-size: 3.9rem;
  letter-spacing: -0.03em;
  font-family: "Roboto", serif;
  vertical-align: sub;
  position: relative;
  top: 2px;
  margin: 0 2px;
}
.contact__caption small {
  line-height: 2;
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .contact__caption small {
    font-size: 1.3rem;
    margin-top: 10px;
  }
}

.button {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  width: 340px;
  border-radius: 30px;
  color: #fff;
  font-size: 2.2rem;
  text-decoration: none;
  text-align: center;
  -webkit-transition: 300ms;
  transition: 300ms;
  position: relative;
  overflow: hidden;
}
.button::before {
  content: "";
  width: 7.5px;
  height: 13px;
  background: url("../images/icon-ar-button.svg") no-repeat center center/100% auto;
  display: block;
}
.button::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;
}

@-webkit-keyframes gritter {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes gritter {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/*# sourceMappingURL=style.css.map */
