@-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;
}

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: #c5e6fa;
  padding: 45px 0 70px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 90px;
  }
}

@media screen and (max-width: 768px) {
  .hero-block {
    padding: 0 15px;
    position: relative;
  }
}
.hero-block__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .hero-block__inner {
    display: block;
  }
}
.hero-block__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 15px;
}
@media screen and (max-width: 768px) {
  .hero-block__list {
    gap: 8px;
    margin-bottom: 10px;
  }
}
.hero-block__list li {
  color: #fff;
  background: #1c284e;
  border-radius: 14px;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.375;
  padding: 5px 5px 4px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero-block__list li {
    font-size: 1.1rem;
  }
}
.hero-block__list li::after {
  content: "";
  width: 16px;
  height: 8px;
  display: block;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: #1c284e;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 768px) {
  .hero-block__list li::after {
    width: 12px;
    height: 6px;
  }
}
.hero-block__list-caption {
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #1c284e;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .hero-block__list-caption {
    font-size: 1.5rem;
    margin-bottom: 15px;
    white-space: nowrap;
  }
}
.hero-block__list-caption span {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px dotted currentColor;
}
@media screen and (max-width: 768px) {
  .hero-block__list-caption span {
    margin-top: 5px;
    padding-bottom: 1px;
  }
}
.hero-block__ph {
  position: relative;
  margin-left: -52px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .hero-block__ph {
    position: absolute;
    margin-left: 0;
    bottom: 108px;
    left: 50%;
    margin-left: -190px;
  }
}
.hero-block__ph img {
  width: 445px;
}
@media screen and (max-width: 768px) {
  .hero-block__ph img {
    width: 160px;
  }
}
.hero-block__text {
  text-align: center;
  margin: 0 0 22px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  color: #1c284e;
}
@media screen and (max-width: 768px) {
  .hero-block__text {
    font-size: 1.3rem;
    text-align: left;
    padding-left: 152px;
    position: relative;
    left: calc(50% - 173px);
    top: -8px;
  }
}
.hero-block__button {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero-block__button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.hero-block__button span {
  font-weight: bold;
  font-size: 1.2rem;
  display: block;
  color: #1e2d58;
}
.hero-block__ttl {
  margin-bottom: 27px;
  position: relative;
  padding-top: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .hero-block__ttl {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 5px;
    text-align: center;
  }
}
.hero-block__ttl img {
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero-block__ttl img {
    width: 312px;
  }
}
.hero-block__ttl::before {
  content: "";
  border-radius: 100px 0 0 100px;
  background: #fff;
  display: block;
  position: absolute;
  height: 100%;
  width: 500%;
  top: 0;
  left: -62px;
}
@media screen and (max-width: 768px) {
  .hero-block__ttl::before {
    left: 0;
    border-radius: 50px 0 0 50px;
  }
}

.hero_contact .hero_appeal {
  position: relative;
}
.hero_contact .hero_appeal::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -8px;
  background-image: url(../images/hero-appeal-left.webp);
  width: 20px;
  height: 25px;
  background-repeat: no-repeat;
}
.hero_contact .hero_appeal::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -8px;
  background-image: url(../images/hero-appeal-right.webp);
  width: 20px;
  height: 25px;
  background-repeat: no-repeat;
}

.hero_right {
  margin-left: 160px;
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero_right {
    max-width: 100%;
    margin-left: 0px;
    margin-top: 10px;
  }
}

.hero_left {
  margin-top: 30px;
}

.hero_right_top {
  width: 420px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hero_right_top {
    max-width: 100%;
  }
}

.hero_right_top::after {
  position: absolute;
  content: "";
  top: -65px;
  left: -50px;
  z-index: -1;
  width: 520px;
  height: 520px;
  background: #fff;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .hero_right_top::after {
    display: none;
  }
}

.hero_center {
  position: absolute;
  top: 10%;
  left: -200px;
}
@media screen and (max-width: 768px) {
  .hero_center {
    display: none;
  }
}

.hero_contact {
  z-index: 2;
  padding-top: 40px;
}

.hero_request_text {
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .hero_request_text {
    text-align: left;
  }
}

.hero_request_text_small {
  font-weight: 700;
  font-size: 21px;
  line-height: 31px;
}
@media screen and (max-width: 768px) {
  .hero_request_text_small {
    padding-left: 45px;
    font-size: 16px;
    line-height: 1.6;
  }
}

.hero_request_text_small_emphasis {
  color: #EB6133;
}

@media screen and (max-width: 768px) {
  .hero_btn .btn_inner {
    font-size: 16px;
    padding-left: 35px;
  }
}

/* === About === */
.about {
  padding-top: 30px;
  padding-bottom: 70px;
  background: url(../images/decoration_about1.webp) top left no-repeat, url(../images/decoration_about2.webp) bottom 60px right no-repeat #F9F8F6;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about {
    padding-bottom: 60px;
    background: url(../images/decoration_about-sp1.webp) bottom right no-repeat #F9F8F6;
  }
}
@media screen and (max-width: 768px) {
  .about::before {
    position: absolute;
    content: "";
    background: url(../images/decoration_hero-sp4.webp);
    top: -64px;
    right: 0;
    width: 80px;
    height: 100px;
    max-width: 100%;
    background-repeat: no-repeat;
  }
}
.about_title {
  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;
  padding-bottom: 10px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .about_title {
    font-size: 1.6rem;
  }
}
.about_logo {
  width: 270px;
}
@media screen and (max-width: 768px) {
  .about_logo {
    display: inline-block;
    width: 191px;
  }
}
.about_summary {
  margin-top: 32px;
  text-align: center;
  font-size: 3.1rem;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .about_summary {
    margin-top: 27px;
    font-size: 2.4rem;
    letter-spacing: -0.02em;
  }
}
.about_comp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .about_comp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
    margin-top: 24px;
  }
}
.about_comp-item {
  position: relative;
  border: 4px solid #9E9E9E;
  border-radius: 30px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .about_comp-item {
    border-width: 3px;
  }
}
.about_comp-item--main1 {
  border-color: #EB6133;
}
.about_comp-item--main1 .about_comp-title {
  border-color: #EB6133;
}
.about_comp-title {
  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;
  height: 80px;
  border-bottom: 4px solid #9E9E9E;
  text-align: center;
  color: #737373;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .about_comp-title {
    border-width: 3px;
  }
}
.about_comp-title img {
  width: 205px;
}
.about_comp-figure {
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .about_comp-figure {
    padding: 18px;
  }
}
.about_comp-problem {
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .about_comp-problem {
    margin-bottom: 24px;
    font-size: 1.6rem;
  }
}
.about_comp-problem-em {
  background-color: #DEDEDE;
}
.about_comp-solution {
  margin-top: 30px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .about_comp-solution {
    margin-top: 14px;
    margin-bottom: 30px;
    font-size: 2.1rem;
  }
}
.about_comp-solution-em {
  color: #EB6133;
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .about_comp-solution-em {
    font-size: 2.4rem;
  }
}
.about_achieve {
  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: absolute;
  right: -20px;
  bottom: 120px;
  width: 140px;
  height: 140px;
  background-color: #4DABE5;
  -webkit-clip-path: path("M140 68.9478L125.123 78.6772L135.795 92.8961L118.48 96.9295L123.623 113.946L105.971 111.823L105.01 129.577L89.1461 121.554L82.15 137.896L70.0005 124.913L57.85 137.896L50.8539 121.554L34.9903 129.577L34.0285 111.823L16.3773 113.946L21.52 96.9295L4.20521 92.8961L14.8766 78.6772L0 68.9478L14.8766 59.2193L4.20521 45.0004L21.52 40.9671L16.3773 23.9501L34.0294 26.0725L34.9903 8.31955L50.8539 16.3422L57.85 0L70.0005 12.9836L82.15 0L89.1461 16.3422L105.01 8.31955L105.971 26.0734L123.623 23.9501L118.48 40.9671L135.795 45.0004L125.123 59.2193L140 68.9478Z");
          clip-path: path("M140 68.9478L125.123 78.6772L135.795 92.8961L118.48 96.9295L123.623 113.946L105.971 111.823L105.01 129.577L89.1461 121.554L82.15 137.896L70.0005 124.913L57.85 137.896L50.8539 121.554L34.9903 129.577L34.0285 111.823L16.3773 113.946L21.52 96.9295L4.20521 92.8961L14.8766 78.6772L0 68.9478L14.8766 59.2193L4.20521 45.0004L21.52 40.9671L16.3773 23.9501L34.0294 26.0725L34.9903 8.31955L50.8539 16.3422L57.85 0L70.0005 12.9836L82.15 0L89.1461 16.3422L105.01 8.31955L105.971 26.0734L123.623 23.9501L118.48 40.9671L135.795 45.0004L125.123 59.2193L140 68.9478Z");
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .about_achieve {
    right: -16px;
    bottom: 102px;
    width: 98px;
    height: 98px;
    -webkit-clip-path: path("M98.5928 48.5801L88.1723 55.3952L95.6472 65.3549L83.5189 68.1801L87.1211 80.0999L74.7571 78.6126L74.0834 91.0484L62.9716 85.4289L58.0712 96.8759L49.5609 87.7814L41.0499 96.8759L36.1494 85.4289L25.0377 91.0484L24.364 78.6126L12 80.0999L15.6022 68.1801L3.4739 65.3549L10.9488 55.3952L0.52832 48.5801L10.9488 41.7657L3.4739 31.8059L15.6022 28.9807L12 17.061L24.3646 18.5477L25.0377 6.11243L36.1494 11.732L41.0499 0.284912L49.5609 9.37941L58.0712 0.284912L62.9716 11.732L74.0834 6.11243L74.7571 18.5483L87.1211 17.061L83.5189 28.9807L95.6472 31.8059L88.1723 41.7657L98.5928 48.5801Z");
            clip-path: path("M98.5928 48.5801L88.1723 55.3952L95.6472 65.3549L83.5189 68.1801L87.1211 80.0999L74.7571 78.6126L74.0834 91.0484L62.9716 85.4289L58.0712 96.8759L49.5609 87.7814L41.0499 96.8759L36.1494 85.4289L25.0377 91.0484L24.364 78.6126L12 80.0999L15.6022 68.1801L3.4739 65.3549L10.9488 55.3952L0.52832 48.5801L10.9488 41.7657L3.4739 31.8059L15.6022 28.9807L12 17.061L24.3646 18.5477L25.0377 6.11243L36.1494 11.732L41.0499 0.284912L49.5609 9.37941L58.0712 0.284912L62.9716 11.732L74.0834 6.11243L74.7571 18.5483L87.1211 17.061L83.5189 28.9807L95.6472 31.8059L88.1723 41.7657L98.5928 48.5801Z");
    font-size: 11px;
  }
}
.about_achieve-em {
  font-size: 39px;
}
@media screen and (max-width: 768px) {
  .about_achieve-em {
    font-size: 27px;
  }
}

/* === Achievement === */
.achievement {
  position: relative;
  background-color: #EEF9FF;
}
@media screen and (max-width: 768px) {
  .achievement {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
.achievement::before {
  content: "";
  position: absolute;
  top: -132px;
  left: 0;
  width: 291px;
  height: 458px;
  background: url(../images/decoration_achievement1.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .achievement::before {
    content: none;
  }
}
.achievement_list {
  display: grid;
  grid-template: auto auto/1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .achievement_list {
    grid-template: repeat(4, auto)/auto;
    gap: 20px;
    margin-top: 35px;
  }
}
.achievement_list-item {
  padding: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .achievement_list-item {
    padding: 14px;
  }
}
.achievement_example {
  padding: 6px;
  margin-top: 12px;
  background-color: #008FE9;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .achievement_example {
    margin-top: 8px;
    font-size: 1.5rem;
  }
}
.achievement_fund {
  padding-bottom: 12px;
  margin-top: 12px;
  border-bottom: 2px dashed #008FE9;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .achievement_fund {
    padding-bottom: 8px;
    margin-top: 8px;
    font-size: 1.5rem;
  }
}
.achievement_value {
  margin-top: 12px;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .achievement_value {
    margin-top: 8px;
    font-size: 2rem;
  }
}
.achievement_contact {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .achievement_contact {
    margin: 70px -6px 0;
  }
}
.achievement_btn {
  width: 545px;
  height: 105px;
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .achievement_btn {
    width: 352px;
    height: 92px;
  }
}
.achievement_btn .btn_inner {
  color: #fff;
}

.achievement_contact .hero_appeal {
  position: relative;
  color: #EB6133;
}
.achievement_contact .hero_appeal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-19.6538240581deg);
          transform: rotate(-19.6538240581deg);
  height: 22.299103121px;
  border-left: 2px solid #EB6133;
}
.achievement_contact .hero_appeal::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(19.6538240581deg);
          transform: rotate(19.6538240581deg);
  height: 22.299103121px;
  border-left: 2px solid #EB6133;
}

/* === Reasons === */
.reasons {
  padding-top: 115px;
  padding-bottom: 150px;
  background: url(../images/decoration_reasons1.webp) top right no-repeat, url(../images/decoration_reasons2.webp) top 115px left no-repeat, url(../images/decoration_reasons3.webp) bottom 500px right no-repeat, url(../images/decoration_reasons4.webp) bottom 300px left no-repeat, url(../images/decoration_reasons5.webp) bottom left no-repeat, url(../images/operating-company_bg.svg) bottom/100% no-repeat;
}
@media screen and (max-width: 768px) {
  .reasons {
    padding-top: 40px;
    padding-bottom: 90px;
    background: url(../images/decoration_reasons-sp1.webp) bottom left no-repeat, url(../images/operating-company_bg.svg) bottom/100% no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .reasons_title {
    margin-left: -8px;
    margin-right: -8px;
  }
}
.reasons_flow {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .reasons_flow {
    margin-top: 26px;
  }
}
.reasons_wrap {
  background-color: #EEF9FF;
  padding-right: 80px;
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  .reasons_wrap {
    padding-right: 0;
    padding-left: 0;
  }
}
.reasons_wrap:nth-child(1) {
  padding: 16px 80px 32px;
}
@media screen and (max-width: 768px) {
  .reasons_wrap:nth-child(1) {
    padding: 20px 10px;
  }
}
.reasons_wrap:nth-child(2) {
  padding-top: 57px;
  margin-top: 27px;
}
@media screen and (max-width: 768px) {
  .reasons_wrap:nth-child(2) {
    padding-top: 16px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 20px;
  }
}
.reasons_wrap:nth-child(3) {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .reasons_wrap:nth-child(3) {
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.reasons_wrap:nth-child(4) {
  padding-top: 78px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .reasons_wrap:nth-child(4) {
    padding-top: 109px;
    padding-bottom: 54px;
  }
}
.reasons_point-btn {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 80px;
  height: 80px;
  padding: 0;
  border: 3px solid #fff;
  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);
  -webkit-box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.reasons_point-btn::before {
  content: "";
  display: block;
  width: 27px;
  height: 40px;
  background: url(../images/reasons_point-icon.webp) center/contain no-repeat;
}
.reasons_point-em {
  color: #FFFCBE;
  font-size: 15px;
}
.reasons_pr {
  text-align: center;
}
.reasons_pr-logo {
  width: 240px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .reasons_pr-logo {
    width: 185px;
  }
}
.reasons_pr-howto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 37px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .reasons_pr-howto {
    gap: 10px;
    margin-top: 6px;
  }
}
.reasons_pr-howto-item {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 300px;
  padding: 8px;
  background-color: #fff;
  border: 1px dashed #008FE9;
  font-size: 2rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .reasons_pr-howto-item {
    font-size: 1.6rem;
  }
}
@-webkit-keyframes movingArrowHead96 {
  0% {
    top: 100%;
  }
  80% {
    top: calc(100% + 96px);
  }
}
@keyframes movingArrowHead96 {
  0% {
    top: 100%;
  }
  80% {
    top: calc(100% + 96px);
  }
}
@-webkit-keyframes movingArrowHead40 {
  0% {
    top: 100%;
  }
  80% {
    top: calc(100% + 40px);
  }
}
@keyframes movingArrowHead40 {
  0% {
    top: 100%;
  }
  80% {
    top: calc(100% + 40px);
  }
}
@-webkit-keyframes movingArrowShaft96 {
  0% {
    height: 0;
  }
  80% {
    height: 96px;
  }
}
@keyframes movingArrowShaft96 {
  0% {
    height: 0;
  }
  80% {
    height: 96px;
  }
}
@-webkit-keyframes movingArrowShaft40 {
  0% {
    height: 0;
  }
  80% {
    height: 40px;
  }
}
@keyframes movingArrowShaft40 {
  0% {
    height: 0;
  }
  80% {
    height: 40px;
  }
}
.reasons_pr-howto-item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 96px;
  border-left: 3px dashed #008FE9;
  height: 96px;
  -webkit-animation: movingArrowShaft96 1s infinite;
          animation: movingArrowShaft96 1s infinite;
}
@media screen and (max-width: 768px) {
  .reasons_pr-howto-item::before {
    height: 40px;
    -webkit-animation: movingArrowShaft40 1s infinite;
            animation: movingArrowShaft40 1s infinite;
  }
}
.reasons_pr-howto-item::after {
  content: "";
  position: absolute;
  top: calc(100% + 96px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 16px;
  height: 14px;
  background-color: #008FE9;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: calc(100% + 96px);
  -webkit-animation: movingArrowHead96 1s infinite;
          animation: movingArrowHead96 1s infinite;
}
@media screen and (max-width: 768px) {
  .reasons_pr-howto-item::after {
    top: calc(100% + 40px);
    -webkit-animation: movingArrowHead40 1s infinite;
            animation: movingArrowHead40 1s infinite;
  }
}
.reasons_recognition {
  position: relative;
  border: 2px solid #008FE9;
}
@-webkit-keyframes movingArrowHead38 {
  0% {
    top: 100%;
  }
  80% {
    top: calc(100% + 38px);
  }
}
@keyframes movingArrowHead38 {
  0% {
    top: 100%;
  }
  80% {
    top: calc(100% + 38px);
  }
}
@-webkit-keyframes movingArrowHead26 {
  0% {
    top: 100%;
  }
  80% {
    top: calc(100% + 26px);
  }
}
@keyframes movingArrowHead26 {
  0% {
    top: 100%;
  }
  80% {
    top: calc(100% + 26px);
  }
}
@-webkit-keyframes movingArrowShaft38 {
  0% {
    height: 0;
  }
  80% {
    height: 38px;
  }
}
@keyframes movingArrowShaft38 {
  0% {
    height: 0;
  }
  80% {
    height: 38px;
  }
}
@-webkit-keyframes movingArrowShaft26 {
  0% {
    height: 0;
  }
  80% {
    height: 26px;
  }
}
@keyframes movingArrowShaft26 {
  0% {
    height: 0;
  }
  80% {
    height: 26px;
  }
}
.reasons_recognition::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 38px;
  border-left: 5px solid #008FE9;
  height: 38px;
  -webkit-animation: movingArrowShaft38 1s infinite;
          animation: movingArrowShaft38 1s infinite;
}
@media screen and (max-width: 768px) {
  .reasons_recognition::before {
    height: 26px;
    -webkit-animation: movingArrowShaft26 1s infinite;
            animation: movingArrowShaft26 1s infinite;
  }
}
.reasons_recognition::after {
  content: "";
  position: absolute;
  top: calc(100% + 38px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 16px;
  height: 14px;
  background-color: #008FE9;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: calc(100% + 38px);
  -webkit-animation: movingArrowHead38 1s infinite;
          animation: movingArrowHead38 1s infinite;
}
@media screen and (max-width: 768px) {
  .reasons_recognition::after {
    top: calc(100% + 26px);
    -webkit-animation: movingArrowHead26 1s infinite;
            animation: movingArrowHead26 1s infinite;
  }
}
.reasons_recognition-title {
  padding: 8px;
  background-color: #008FE9;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .reasons_recognition-title {
    padding-left: 32px;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
  }
}
.reasons_recognition-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  padding: 18px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .reasons_recognition-sns {
    gap: 20px;
  }
}
.reasons_recognition-sns-item:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reasons_recognition-point {
  position: absolute;
  top: -49px;
  left: -40px;
}
.reasons_lp {
  position: relative;
}
@keyframes movingArrowHead38 {
  0% {
    top: 100%;
  }
  80% {
    top: calc(100% + 38px);
  }
}
@-webkit-keyframes movingArrowHead78 {
  0% {
    top: 100%;
  }
  80% {
    top: calc(100% + 78px);
  }
}
@keyframes movingArrowHead78 {
  0% {
    top: 100%;
  }
  80% {
    top: calc(100% + 78px);
  }
}
@keyframes movingArrowShaft38 {
  0% {
    height: 0;
  }
  80% {
    height: 38px;
  }
}
@-webkit-keyframes movingArrowShaft78 {
  0% {
    height: 0;
  }
  80% {
    height: 78px;
  }
}
@keyframes movingArrowShaft78 {
  0% {
    height: 0;
  }
  80% {
    height: 78px;
  }
}
.reasons_lp::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 38px;
  border-left: 5px solid #EB6133;
  height: 38px;
  -webkit-animation: movingArrowShaft38 1s infinite;
          animation: movingArrowShaft38 1s infinite;
}
@media screen and (max-width: 768px) {
  .reasons_lp::before {
    height: 78px;
    -webkit-animation: movingArrowShaft78 1s infinite;
            animation: movingArrowShaft78 1s infinite;
  }
}
.reasons_lp::after {
  content: "";
  position: absolute;
  top: calc(100% + 38px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 16px;
  height: 14px;
  background-color: #EB6133;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: calc(100% + 38px);
  -webkit-animation: movingArrowHead38 1s infinite;
          animation: movingArrowHead38 1s infinite;
}
@media screen and (max-width: 768px) {
  .reasons_lp::after {
    top: calc(100% + 78px);
    -webkit-animation: movingArrowHead78 1s infinite;
            animation: movingArrowHead78 1s infinite;
  }
}
.reasons_lp-frame {
  position: relative;
  border: 2px solid #EB6133;
}
.reasons_lp-title {
  padding: 8px;
  background-color: #EB6133;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .reasons_lp-title {
    font-size: 2.2rem;
  }
}
.reasons_lp-cont {
  padding: 24px 16px 12px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .reasons_lp-cont {
    padding: 15px;
  }
}
.reasons_lp-mobile {
  width: 178px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .reasons_lp-mobile {
    width: 108px;
  }
}
.reasons_lp-point-btn-2 {
  position: absolute;
  top: 72px;
  left: 0;
}
.reasons_lp-point-btn-3 {
  position: absolute;
  bottom: 21px;
  right: 14px;
}
@media screen and (max-width: 768px) {
  .reasons_lp-point {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.reasons_lp-point-item {
  position: absolute;
  -webkit-filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.25));
          filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.25));
}
@media screen and (min-width: 769px) {
  .reasons_lp-point-item {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-item {
    position: static;
  }
}
.reasons_lp-point-item:nth-child(1) {
  top: 108px;
  right: calc(50% + 115px);
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-item:nth-child(1) {
    margin-top: 36px;
  }
}
.reasons_lp-point-item:nth-child(1) .reasons_lp-point-inner {
  width: 250px;
  border: 2px solid #008FE9;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-item:nth-child(1) .reasons_lp-point-inner {
    width: auto;
  }
}
.reasons_lp-point-item:nth-child(1) .reasons_lp-point-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 28px;
  height: 28px;
  background-color: #fff;
  border-top: 2px solid #008FE9;
  border-right: 2px solid #008FE9;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-item:nth-child(1) .reasons_lp-point-inner::after {
    top: -30px;
    right: 50%;
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transform: translateX(50%) rotate(-45deg);
            transform: translateX(50%) rotate(-45deg);
  }
}
.reasons_lp-point-item:nth-child(2) {
  top: 60px;
  left: calc(50% + 115px);
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-item:nth-child(2) {
    margin-top: 28px;
  }
}
.reasons_lp-point-item:nth-child(2) .reasons_lp-point-inner {
  width: 240px;
  border: 2px solid #008FE9;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-item:nth-child(2) .reasons_lp-point-inner {
    width: auto;
  }
}
.reasons_lp-point-item:nth-child(2) .reasons_lp-point-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 28px;
  height: 28px;
  background-color: #fff;
  border-top: 2px solid #008FE9;
  border-left: 2px solid #008FE9;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-item:nth-child(2) .reasons_lp-point-inner::after {
    top: -30px;
    left: 50%;
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
  }
}
.reasons_lp-point-item:nth-child(3) {
  top: 247px;
  left: calc(50% + 115px);
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-item:nth-child(3) {
    margin-top: 28px;
  }
}
.reasons_lp-point-item:nth-child(3) .reasons_lp-point-inner {
  width: 240px;
  border: 2px solid #008FE9;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-item:nth-child(3) .reasons_lp-point-inner {
    width: auto;
  }
}
.reasons_lp-point-item:nth-child(3) .reasons_lp-point-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 28px;
  height: 28px;
  background-color: #fff;
  border-top: 2px solid #008FE9;
  border-left: 2px solid #008FE9;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-item:nth-child(3) .reasons_lp-point-inner::after {
    top: -30px;
    left: 50%;
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
  }
}
@-webkit-keyframes popup {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes popup {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.reasons_lp-point-item.show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: popup 0.5s;
          animation: popup 0.5s;
}
.reasons_lp-point-inner {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 27px 16px;
  background-color: #fff;
}
.reasons_lp-point-title {
  text-align: center;
  color: #EB6133;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-title {
    font-size: 2.5rem;
  }
}
.reasons_lp-point-title-em {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-title-em {
    font-size: 5rem;
  }
}
.reasons_lp-point-detail {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .reasons_lp-point-detail {
    font-size: 1.8rem;
  }
}
.reasons_icon {
  width: 153px;
  height: 120px;
}
@media screen and (max-width: 768px) {
  .reasons_icon {
    position: absolute;
    top: -76px;
    right: 0;
    width: 105px;
    height: 83px;
  }
}
.reasons_summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .reasons_summary {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.reasons_summary-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 566px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 2px solid #EB6133;
  border-bottom: 2px solid #EB6133;
  color: #EB6133;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .reasons_summary-inner {
    max-width: none;
    font-size: 2.2rem;
  }
}

/* === About Operating Company === */
.operating-company {
  padding-top: 70px;
  background: url(../images/decoration_operating-company1.webp) bottom 165px right no-repeat;
  background-color: #EEF9FF;
}
@media screen and (max-width: 768px) {
  .operating-company {
    padding-top: 60px;
    padding-bottom: 40px;
    background: #EEF9FF;
  }
}
.operating-company_title {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .operating-company_title {
    font-size: 2rem;
  }
}
.operating-company_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
}
@media screen and (max-width: 768px) {
  .operating-company_logo {
    width: 175px;
  }
}
.operating-company_company-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 184px;
}
@media screen and (max-width: 768px) {
  .operating-company_company-logo {
    width: 158px;
  }
}
.operating-company_cont {
  display: grid;
  grid-template: auto auto/auto auto;
  gap: 27px 75px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .operating-company_cont {
    display: block;
    margin-top: 28px;
  }
}
.operating-company_summary {
  position: relative;
  margin-left: 10px;
  margin-right: 9px;
  color: #000;
  font-size: 2.6rem;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .operating-company_summary {
    font-size: 2.2rem;
  }
}
.operating-company_summary::before {
  content: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2228%22%20height%3D%2238%22%20viewBox%3D%220%200%2028%2038%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cmask%20id%3D%22path-1-inside-1_413_8864%22%20fill%3D%22white%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.45098%200H0V7V38H7.45098V7H28V0H7.45098Z%22%2F%3E%3C%2Fmask%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.45098%200H0V7V38H7.45098V7H28V0H7.45098Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M0%200V-1H-1V0H0ZM0%2038H-1V39H0V38ZM7.45098%2038V39H8.45098V38H7.45098ZM7.45098%207V6H6.45098V7H7.45098ZM28%207V8H29V7H28ZM28%200H29V-1H28V0ZM0%201H7.45098V-1H0V1ZM1%207V0H-1V7H1ZM1%2038V7H-1V38H1ZM7.45098%2037H0V39H7.45098V37ZM6.45098%207V38H8.45098V7H6.45098ZM28%206H7.45098V8H28V6ZM27%200V7H29V0H27ZM7.45098%201H28V-1H7.45098V1Z%22%20fill%3D%22%23008FE9%22%20mask%3D%22url(%23path-1-inside-1_413_8864)%22%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  top: -19px;
  left: -24px;
  width: 28px;
  height: 38px;
}
.operating-company_summary::after {
  content: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2228%22%20height%3D%2238%22%20viewBox%3D%220%200%2028%2038%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cmask%20id%3D%22path-1-inside-1_413_8864%22%20fill%3D%22white%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.45098%200H0V7V38H7.45098V7H28V0H7.45098Z%22%2F%3E%3C%2Fmask%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.45098%200H0V7V38H7.45098V7H28V0H7.45098Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M0%200V-1H-1V0H0ZM0%2038H-1V39H0V38ZM7.45098%2038V39H8.45098V38H7.45098ZM7.45098%207V6H6.45098V7H7.45098ZM28%207V8H29V7H28ZM28%200H29V-1H28V0ZM0%201H7.45098V-1H0V1ZM1%207V0H-1V7H1ZM1%2038V7H-1V38H1ZM7.45098%2037H0V39H7.45098V37ZM6.45098%207V38H8.45098V7H6.45098ZM28%206H7.45098V8H28V6ZM27%200V7H29V0H27ZM7.45098%201H28V-1H7.45098V1Z%22%20fill%3D%22%23008FE9%22%20mask%3D%22url(%23path-1-inside-1_413_8864)%22%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  bottom: -16px;
  right: -9px;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  width: 28px;
  height: 38px;
}
.operating-company_ceo {
  grid-area: 1/2/3/3;
}
@media screen and (max-width: 768px) {
  .operating-company_ceo {
    margin-top: 32px;
  }
}
.operating-company_bio {
  margin-top: 18px;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .operating-company_bio {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}
.operating-company_detail {
  color: #000;
  font-size: 1.6rem;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .operating-company_detail {
    margin-top: 14px;
  }
}

/* === Testimonials === */
.testimonials {
  padding-bottom: 200px;
  background: url(../images/decoration_testimonials1.webp) top 148px right no-repeat, url(../images/decoration_testimonials2.webp) top 175px left 132px no-repeat, url(../images/decoration_testimonials3.webp) top 412px left no-repeat, url(../images/decoration_testimonials4.webp) top 832px right no-repeat;
}
@media screen and (max-width: 768px) {
  .testimonials {
    padding-bottom: 122px;
    background: none;
  }
}
.testimonials_cont {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .testimonials_cont {
    position: relative;
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: 68px;
  }
}
@media screen and (min-width: 769px) {
  .testimonials_examples:not(#_) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}
.testimonials_example:not(#_) {
  position: relative;
}
@media screen and (min-width: 769px) {
  .testimonials_example:not(#_) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 16px;
  }
}
.testimonials_index {
  position: absolute;
  top: -16px;
  left: 30px;
  padding: 2px 20px;
  border-radius: 30px;
  background-image: -webkit-linear-gradient(135deg, #FF6937, #FF6937 50%, #EB6133 50%, #EB6133);
  background-image: linear-gradient(-45deg, #FF6937, #FF6937 50%, #EB6133 50%, #EB6133);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .testimonials_index {
    display: none;
  }
}
.testimonials_index::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 17px;
  height: 8px;
  background-color: #FF6937;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.testimonials_bio {
  padding: 11px 26px;
  background-color: #008FE9;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .testimonials_bio {
    font-size: 1.6rem;
  }
}
.testimonials_summary {
  position: relative;
  margin-top: 36px;
  margin-left: 42px;
  margin-right: 24px;
  color: #008FE9;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .testimonials_summary {
    margin-top: 40px;
    margin-right: 42px;
    font-size: 2.2rem;
  }
}
.testimonials_summary::before {
  content: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2228%22%20height%3D%2238%22%20viewBox%3D%220%200%2028%2038%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cmask%20id%3D%22path-1-inside-1_413_8864%22%20fill%3D%22white%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.45098%200H0V7V38H7.45098V7H28V0H7.45098Z%22%2F%3E%3C%2Fmask%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.45098%200H0V7V38H7.45098V7H28V0H7.45098Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M0%200V-1H-1V0H0ZM0%2038H-1V39H0V38ZM7.45098%2038V39H8.45098V38H7.45098ZM7.45098%207V6H6.45098V7H7.45098ZM28%207V8H29V7H28ZM28%200H29V-1H28V0ZM0%201H7.45098V-1H0V1ZM1%207V0H-1V7H1ZM1%2038V7H-1V38H1ZM7.45098%2037H0V39H7.45098V37ZM6.45098%207V38H8.45098V7H6.45098ZM28%206H7.45098V8H28V6ZM27%200V7H29V0H27ZM7.45098%201H28V-1H7.45098V1Z%22%20fill%3D%22%23008FE9%22%20mask%3D%22url(%23path-1-inside-1_413_8864)%22%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  top: -19px;
  left: -24px;
  width: 28px;
  height: 38px;
}
@media screen and (max-width: 768px) {
  .testimonials_summary::before {
    top: -13px;
  }
}
.testimonials_summary::after {
  content: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2228%22%20height%3D%2238%22%20viewBox%3D%220%200%2028%2038%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cmask%20id%3D%22path-1-inside-1_413_8864%22%20fill%3D%22white%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.45098%200H0V7V38H7.45098V7H28V0H7.45098Z%22%2F%3E%3C%2Fmask%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.45098%200H0V7V38H7.45098V7H28V0H7.45098Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M0%200V-1H-1V0H0ZM0%2038H-1V39H0V38ZM7.45098%2038V39H8.45098V38H7.45098ZM7.45098%207V6H6.45098V7H7.45098ZM28%207V8H29V7H28ZM28%200H29V-1H28V0ZM0%201H7.45098V-1H0V1ZM1%207V0H-1V7H1ZM1%2038V7H-1V38H1ZM7.45098%2037H0V39H7.45098V37ZM6.45098%207V38H8.45098V7H6.45098ZM28%206H7.45098V8H28V6ZM27%200V7H29V0H27ZM7.45098%201H28V-1H7.45098V1Z%22%20fill%3D%22%23008FE9%22%20mask%3D%22url(%23path-1-inside-1_413_8864)%22%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  bottom: -16px;
  right: -9px;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  width: 28px;
  height: 38px;
}
@media screen and (max-width: 768px) {
  .testimonials_summary::after {
    bottom: -5px;
    right: -20px;
  }
}
.testimonials_txt {
  margin-top: 32px;
  margin-left: 42px;
  margin-right: 24px;
  color: #000;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 768px) {
  .testimonials_txt {
    margin-top: 20px;
    margin-left: 36px;
    margin-right: 36px;
    font-size: 1.6rem;
  }
}

.splide__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 10;
  overflow: hidden;
  width: 24px;
  height: 160px;
  padding: 0;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #313131;
  opacity: 0.7;
  text-indent: -10000px;
  color: transparent;
  white-space: nowrap;
  cursor: pointer;
}
.splide__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
          transform: translate(-25%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.splide__arrow:disabled {
  display: none;
}
.splide__arrow--prev {
  left: 0;
  right: auto;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.splide__pagination:not(._) {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  counter-reset: pagination-num;
  gap: 15px;
}
.splide__pagination__page {
  width: 31px;
  height: 31px;
  padding: 0;
  background-color: #D9D9D9;
  border: none;
  border-radius: 50%;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.splide__pagination__page::before {
  content: counter(pagination-num);
  counter-increment: pagination-num;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  font-size: 21px;
  line-height: 31px;
}
.splide__pagination__page.is-active {
  background-color: #EB6133;
}
.splide__top-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  counter-reset: pagination-num;
  gap: 6px;
}
.splide__top-pagination li {
  width: 44.6107784431%;
}
.splide__top-pagination li.is-active {
  width: 53.5928143713%;
}
.splide__top-pagination li.is-active .splide__top-pagination__page {
  height: 40px;
  background-image: -webkit-linear-gradient(135deg, #FF6937, #FF6937 50%, #EB6133 50%, #EB6133);
  background-image: linear-gradient(-45deg, #FF6937, #FF6937 50%, #EB6133 50%, #EB6133);
}
.splide__top-pagination li.is-active .splide__top-pagination__page::before {
  font-size: 20px;
  line-height: 40px;
}
.splide__top-pagination__page {
  width: 100%;
  height: 32px;
  padding: 0;
  background-color: #D9D9D9;
  border: none;
  border-radius: 10px 10px 0 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.splide__top-pagination__page::before {
  content: "VOICE " counter(pagination-num);
  counter-increment: pagination-num;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 32px;
}

@media screen and (min-width: 769px) {
  .more.open .more_cont {
    max-height: none;
  }
}
@media screen and (min-width: 769px) {
  .more.open .more_cont::after {
    z-index: -1;
    opacity: 0;
  }
}
@media screen and (min-width: 769px) {
  .more.open .more_btn::after {
    -webkit-transform: translateY(25%) rotate(-135deg);
            transform: translateY(25%) rotate(-135deg);
  }
}
@media screen and (min-width: 769px) {
  .more_cont {
    overflow: hidden;
    position: relative;
    max-height: 90rem;
  }
  .more_cont::after {
    content: "";
    position: absolute;
    top: 70rem;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
    background-image: -webkit-linear-gradient(top, transparent, #fff);
    background-image: linear-gradient(to bottom, transparent, #fff);
  }
}
.more_btn {
  display: none;
}
@media screen and (min-width: 769px) {
  .more_btn {
    display: block;
    position: relative;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    border: none;
    outline: none;
    background-color: transparent;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    color: #008FE9;
    font-size: 1.5rem;
    cursor: pointer;
  }
}
@media screen and (min-width: 769px) {
  .more_btn::after {
    content: "";
    display: inline-block;
    position: relative;
    right: -16px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 14px;
    height: 14px;
    border-right: 2px solid #008FE9;
    border-bottom: 2px solid #008FE9;
  }
}

/* === Contact === */
.contact {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 0;
    padding-bottom: 30px;
  }
}
.contact_wrap {
  position: relative;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .contact_wrap {
    padding: 0;
    border-radius: 50px;
    padding-bottom: 50px;
  }
}
.contact_form {
  max-width: 738px;
  padding-bottom: 90px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .contact_form {
    margin-top: 12px;
    padding: 0 15px;
  }
}

.form .form-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 52px;
  padding: 15px 20px 10px;
  background-color: #f6f6f6;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  -webkit-box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
          box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
  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: #f6f6f6;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  -webkit-box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
          box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
  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: #e1f2fd;
  -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%;
}
.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: grid;
  grid-template-columns: 246px 450px;
  gap: 42px;
  margin-left: -60px;
}
@media screen and (max-width: 768px) {
  .form_item {
    display: block;
    margin-left: 0;
  }
}
.form_item:not(:first-child) {
  margin-top: 25px;
}
@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;
  font-weight: bold;
  line-height: 1.2;
  padding-top: 18px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .form_title {
    font-size: 1.6rem;
    text-align: left;
    padding-top: 0;
    margin-bottom: 5px;
  }
}
.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: #fff;
  color: #EB6133;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-left: 2px;
}
@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: #e8562d;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.2;
  border-radius: 50px;
  font-weight: bold;
  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.3rem;
    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: 50px;
  padding-bottom: 34px;
  background: #1c284e;
}
.footer .cont_inner {
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .footer_inner {
    display: block;
  }
}
.footer_about {
  background: #fff;
  border-radius: 25px;
  padding: 14px 59px 22px;
}
@media screen and (max-width: 768px) {
  .footer_about {
    padding: 16px 16px 19px;
  }
}
.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;
}
.footer_about-logo {
  display: inline-block;
  width: 200px;
  margin-left: -8px;
}
.footer_about-detail {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
}
@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;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .footer_company {
    margin-top: 15px;
    text-align: left;
  }
}
.footer_company-name {
  font-weight: bold;
}
.footer_company-phone a {
  color: #008FE9;
  text-decoration: none;
}
.footer_copyright {
  display: block;
  margin-top: 40px;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    margin-top: 25px;
  }
}

.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-section {
  color: #1c284e;
  padding: 70px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home-section {
    padding-top: 25px;
    padding-bottom: 30px;
    overflow: hidden;
  }
}
.home-section::before {
  content: "";
  width: calc(100% - 100px);
  height: 100%;
  border-radius: 0 100px 100px 0;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .home-section::before {
    width: calc(100% - 15px);
    border-radius: 0 50px 50px 0;
  }
}
.home-section:nth-child(odd) {
  background: #c5e6fa;
}
.home-section:nth-child(even) {
  background: #fff;
}
.home-section:nth-child(even)::before {
  background: #c5e6fa;
  left: auto;
  right: 0;
  border-radius: 100px 0 0 100px;
}
@media screen and (max-width: 768px) {
  .home-section:nth-child(even)::before {
    border-radius: 50px 0 0 50px;
  }
}
.home-section:last-child {
  padding-bottom: 374px;
}
.home-section:last-child::before {
  height: calc(100% - 194px);
}
.home-section__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.home-section__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .home-section__upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home-section__content {
  padding-left: 50px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 488px;
  padding-top: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home-section__content {
    padding-left: 38px;
    padding-right: 37px;
    padding-top: 18px;
  }
}
.home-section__content::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: block;
  left: 6px;
  top: 0;
  width: 121px;
  height: 99px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .home-section__content::before {
    left: 18px;
  }
}
.home-section__content[data-num="01"]::before {
  background-image: url("../images/pict-num01.svg");
  width: 121px;
  height: 99px;
}
@media screen and (max-width: 768px) {
  .home-section__content[data-num="01"]::before {
    width: 86px;
    height: 70px;
  }
}
.home-section__content[data-num="02"]::before {
  background-image: url("../images/pict-num02.svg");
  width: 138px;
}
@media screen and (max-width: 768px) {
  .home-section__content[data-num="02"]::before {
    width: 98px;
    height: 70px;
  }
}
.home-section__content[data-num="03"]::before {
  background-image: url("../images/pict-num03.svg");
  width: 138px;
}
@media screen and (max-width: 768px) {
  .home-section__content[data-num="03"]::before {
    width: 99px;
    height: 70px;
  }
}
.home-section__content[data-num="04"]::before {
  background-image: url("../images/pict-num04.svg");
  width: 138px;
}
@media screen and (max-width: 768px) {
  .home-section__content[data-num="04"]::before {
    width: 102px;
    height: 70px;
  }
}
.home-section__content[data-num="05"]::before {
  background-image: url("../images/pict-num05.svg");
  width: 138px;
}
@media screen and (max-width: 768px) {
  .home-section__content[data-num="05"]::before {
    width: 99px;
    height: 70px;
  }
}
.home-section__head {
  font-size: 2.8rem;
  line-height: 1.78;
  margin: 0 0 34px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home-section__head {
    font-size: 2.4rem;
    margin-bottom: 24px;
    line-height: 1.66;
  }
}
.home-section__head span {
  color: #e8562d;
}
.home-section__text p {
  margin: 0 0 2em;
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 500;
}
.home-section__text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .home-section:nth-child(even) .home-section__content::before {
    left: auto;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .home-section:nth-child(even) .home-section__head {
    text-align: right;
  }
}
.home-section__ph {
  width: 440px;
  text-align: center;
}
.home-section__ph img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .home-section__ph--01 img {
    width: 195px;
  }
}
@media screen and (max-width: 768px) {
  .home-section__ph--02 img {
    width: 242px;
  }
}
@media screen and (max-width: 768px) {
  .home-section__ph--03 {
    margin-top: 30px;
  }
  .home-section__ph--03 img {
    width: 210px;
  }
}
@media screen and (max-width: 768px) {
  .home-section__ph--04 {
    margin-top: 20px;
  }
  .home-section__ph--04 img {
    width: 242px;
  }
}
@media screen and (max-width: 768px) {
  .home-section__ph--05 {
    margin-top: 35px;
  }
  .home-section__ph--05 img {
    width: 242px;
  }
}
.home-section:nth-child(even) .home-section__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 768px) {
  .home-section:nth-child(even) .home-section__content {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.home-section__lower {
  margin-top: 60px;
}
.home-section__point {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .home-section__point {
    grid-template-columns: auto;
    gap: 20px;
    padding: 0 37px;
  }
}
.home-section__point-block {
  background: #f1f2f5;
  border-radius: 50px;
  padding: 30px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .home-section__point-block {
    padding: 30px 25px 25px;
    border-radius: 44px;
  }
}
.home-section__point-block p {
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 500;
  min-height: 130px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .home-section__point-block p {
    min-height: 0;
  }
}
.home-section__point-head {
  margin: 0 auto 28px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0.7em, #ffff2c), color-stop(0.7em, transparent));
  background: -webkit-linear-gradient(bottom, #ffff2c 0.7em, transparent 0.7em);
  background: linear-gradient(to top, #ffff2c 0.7em, transparent 0.7em);
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .home-section__point-head {
    margin-bottom: 20px;
  }
}
.home-section__point-head span {
  color: #0084e6;
}
.home-section__point-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .home-section__point-message {
    gap: 13px;
  }
}
@media screen and (max-width: 768px) {
  .home-section__point-message img {
    width: 64px;
  }
}
.home-section__point-message span {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
  background: #fff;
  display: block;
  padding: 16px 24px;
  border-radius: 25px;
  min-height: 110px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home-section__point-message span {
    padding: 15px;
    min-height: 0;
  }
}
.home-section__point-message span::before {
  content: "";
  width: 16px;
  height: 12px;
  display: block;
  -webkit-clip-path: polygon(0 50%, 100% 100%, 100% 0);
          clip-path: polygon(0 50%, 100% 100%, 100% 0);
  background: #fff;
  top: 34px;
  position: absolute;
  right: 100%;
}
@media screen and (max-width: 768px) {
  .home-section__point-message span::before {
    width: 10px;
    height: 10px;
    top: 30px;
  }
}
.home-section__point-message--contents {
  margin-bottom: 25px;
}
.home-section__point-message--contents span {
  min-height: 0;
}
.home-section__cta {
  background: #fae1d8;
  max-width: 800px;
  margin: 60px auto 0;
  border-radius: 70px;
  padding: 19px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .home-section__cta {
    margin-top: 20px;
    width: calc(100% - 76px);
    border-radius: 44px;
    padding: 19px 20px;
  }
}
.home-section__cta-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .home-section__cta-body {
    display: block;
  }
}
.home-section__cta-content {
  text-align: center;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .home-section__cta-content {
    padding-left: 0;
    margin-bottom: 18px;
  }
}
.home-section__cta-content span {
  border-bottom: 2px dashed #1c284e;
  line-height: 1.7;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .home-section__cta-content span {
    font-size: 1.8rem;
  }
}
.home-section__cta-button {
  text-align: center;
}
.home-section__cta-button span {
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .home-section__cta-button span {
    line-height: 1.5;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .home-section__cta-button a {
    width: 251px;
    margin-bottom: 10px;
  }
}

.home-lower {
  background: #0084e6;
}

.home-point {
  background: #1c284e;
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
  border-radius: 100px;
  padding: 50px 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  top: -305px;
  margin-bottom: -305px;
}
@media screen and (max-width: 768px) {
  .home-point {
    border-radius: 25px;
    width: calc(100% - 76px);
    padding: 35px 15px;
    top: -320px;
    margin-bottom: -320px;
  }
}
.home-point__head {
  margin-bottom: 3px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home-point__head img {
    width: 270px;
  }
}
.home-point ul {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .home-point ul {
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.home-point ul li {
  padding-top: 17px;
  padding-bottom: 17px;
  border-bottom: 2px dotted #fff;
  padding-left: 72px;
  background: url("../images/icon-check.svg") no-repeat 24px center/30px auto;
}
@media screen and (max-width: 768px) {
  .home-point ul li {
    background-size: 24px auto;
    background-position: left center;
    padding-left: 35px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .home-point ul li:last-child {
    border: 0;
    padding-bottom: 0;
  }
}
.home-point ul span {
  color: #ffff2c;
}

.home-notice {
  max-width: 800px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 50px auto 80px;
  background: #fff;
  border-radius: 25px;
  padding: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .home-notice {
    width: calc(100% - 76px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 13px;
    padding: 20px 25px;
    margin-top: 30px;
    margin-bottom: 100px;
  }
}
.home-notice::before {
  content: "";
  display: block;
  width: 58px;
  height: 50px;
  background: url("../images/icon-notice.svg") no-repeat center center/100% auto;
}
@media screen and (max-width: 768px) {
  .home-notice::before {
    width: 40px;
    height: 36px;
  }
}
.home-notice span {
  background: #ffff2c;
}
.home-notice p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  color: #1c284e;
}
@media screen and (max-width: 768px) {
  .home-notice p {
    font-size: 1.2rem;
    line-height: 2.2;
  }
}

.contact {
  color: #1c284e;
}
.contact__head {
  background: #e8562d;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.6666666667;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 25px;
  position: relative;
  padding: 38px 0 38px 240px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: -70px;
}
@media screen and (max-width: 768px) {
  .contact__head {
    width: 300px;
    font-size: 1.7rem;
    padding-left: 100px;
    padding-right: 6px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: -30px;
  }
}
.contact__head::before {
  width: 178px;
  height: 170px;
  display: block;
  content: "";
  position: absolute;
  background: url("../images/pict-download.svg") no-repeat center center/100% auto;
  left: 36px;
  bottom: 17px;
}
@media screen and (max-width: 768px) {
  .contact__head::before {
    width: 85px;
    height: 81px;
    left: 8px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.contact__head::after {
  content: "";
  width: 40px;
  height: 20px;
  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: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  .contact__head::after {
    width: 30px;
    height: 15px;
  }
}
.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::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%;
  }
}