@-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: "Poppins", "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: 20px;
  font-weight: bold;
}
.btn_inner::before {
  content: "";
  position: absolute;
  top: 35px;
  right: 36px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .btn_inner::before {
    top: 28px;
    right: 28px;
    width: 27px;
    height: 27px;
  }
}
.btn_inner::after {
  content: "";
  position: absolute;
  top: 45px;
  right: 47px;
  -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: 38px;
  }
}

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

/* === 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;
}
.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_copy {
  padding-left: 9px;
  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;
  color: #313131;
  font-size: 1.5rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .cont_header {
    display: grid;
    position: relative;
    z-index: 1;
  }
}

/* === Hero === */
.hero {
  padding-top: 18px;
  background: url(../images/decoration_hero1.webp) top right no-repeat, url(../images/decoration_hero2.webp) left no-repeat #F3F0EB;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero {
    background: url(../images/decoration_hero-sp5.webp) left no-repeat #F3F0EB;
  }
}
@media screen and (max-width: 768px) {
  .hero::after {
    position: absolute;
    content: "";
    background: url(../images/hero-sp.webp);
    top: 0;
    right: 0;
    width: 376px;
    height: 712px;
    max-width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.hero_inner {
  max-width: 1072px;
}
.hero_frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero_howto {
  margin-top: 40px;
  color: #EB6133;
  font-size: 38px;
  font-weight: bold;
  letter-spacing: 0.03em;
  width: 420px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .hero_howto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 8px;
    margin-top: 0;
    font-size: 20px;
    width: 280px;
    margin-left: 45px;
  }
}
.hero_howto_new-way {
  max-width: 430px;
}
.hero_style {
  display: block;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .hero_style {
    margin: 0;
  }
}
.hero_note-2 {
  position: absolute;
  top: 0;
  left: 100%;
  color: #EB6133;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .hero_note-2 {
    top: auto;
    left: auto;
    bottom: calc(100% - 0.5em);
    right: 0;
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    font-size: 1rem;
  }
}
.hero_sns {
  display: block;
  position: relative;
  padding-bottom: 16px;
  border-bottom: 3px solid #EB6133;
}
@media screen and (max-width: 768px) {
  .hero_sns {
    padding-bottom: 0px;
    border-width: 2px;
  }
}
.hero_sns::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 28px;
  height: 8px;
  background-color: #F9F8F6;
}
@media screen and (max-width: 768px) {
  .hero_sns::before {
    width: 13px;
  }
}
.hero_sns::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translate(-17px, 2px) rotate(-45deg);
          transform: translate(-17px, 2px) rotate(-45deg);
  width: 10px;
  height: 16px;
  border-left: 3px solid #EB6133;
  border-bottom: 3px solid #EB6133;
}
@media screen and (max-width: 768px) {
  .hero_sns::after {
    -webkit-transform: translate(-8px, 2px) rotate(-45deg);
            transform: translate(-8px, 2px) rotate(-45deg);
    width: 5px;
    height: 8.8459030065px;
    border-width: 2px;
  }
}
.hero_sns-inner {
  display: inline-block;
  position: relative;
  padding-left: 86px;
  padding-right: 86px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .hero_sns-inner {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.hero_sns-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70px;
  height: 30px;
  background: url(../images/facebook.webp) left/contain no-repeat, url(../images/instagram.webp) right/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .hero_sns-inner::before {
    width: 36px;
    height: 15px;
  }
}
.hero_sns-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70px;
  height: 30px;
  background: url(../images/line.webp) left/contain no-repeat, url(../images/twitter.webp) right/31px 25px no-repeat;
}
@media screen and (max-width: 768px) {
  .hero_sns-inner::after {
    width: 36px;
    height: 15px;
    background: url(../images/line.webp) left/contain no-repeat, url(../images/twitter.webp) right/16px 13px no-repeat;
  }
}
.hero_output {
  position: relative;
  width: 420px;
  padding: 15px 0px;
  margin-top: 0px;
  font-size: 59px;
  font-weight: 900;
  line-height: 1;
  /*
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 44px;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2225%22%20height%3D%2244%22%20viewBox%3D%220%200%2025%2044%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M23.7329%202.77759V1.84567H22.801H2H1.06808V2.77759V41.6265V42.5584H2H10.7487H11.6806V41.6265V11.6628H22.801H23.7329V10.7309V2.77759Z%22%20fill%3D%22white%22%20stroke%3D%22%23313131%22%20stroke-width%3D%221.86384%22%2F%3E%3C%2Fsvg%3E') center / contain no-repeat;
    @include sp {
      width: 12px;
      height: 21px;
    }
  }
  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    transform: scale(-1, -1);
    width: 25px;
    height: 44px;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2225%22%20height%3D%2244%22%20viewBox%3D%220%200%2025%2044%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M23.7329%202.77759V1.84567H22.801H2H1.06808V2.77759V41.6265V42.5584H2H10.7487H11.6806V41.6265V11.6628H22.801H23.7329V10.7309V2.77759Z%22%20fill%3D%22white%22%20stroke%3D%22%23313131%22%20stroke-width%3D%221.86384%22%2F%3E%3C%2Fsvg%3E') center / contain no-repeat;
    @include sp {
      width: 12px;
      height: 21px;
    }
  }
  */
}
@media screen and (max-width: 768px) {
  .hero_output {
    padding: 10px 0px;
    margin-left: 44px;
    font-size: 37px;
    width: 260px;
    max-width: 100%;
    text-align: center;
  }
}
.hero_dots {
  background: -webkit-radial-gradient(#EB6133 6px, transparent 6px) right top calc((-1em + 12px) / 2)/1em 1em repeat-x;
  background: radial-gradient(#EB6133 6px, transparent 6px) right top calc((-1em + 12px) / 2)/1em 1em repeat-x;
}
@media screen and (max-width: 768px) {
  .hero_dots {
    background: -webkit-radial-gradient(#EB6133 3px, transparent 3px) right top calc((-1em + 6px) / 2)/1em 1em repeat-x;
    background: radial-gradient(#EB6133 3px, transparent 3px) right top calc((-1em + 6px) / 2)/1em 1em repeat-x;
  }
}
.hero_request {
  margin-top: 10px auto 0px;
  font-size: 35px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .hero_request {
    -ms-flex-item-align: start;
        align-self: start;
    position: relative;
    padding-left: 45px;
    font-size: 30px;
  }
}
.hero_request-inner {
  display: block;
  gap: 10px;
  line-height: 1.3;
  width: 420px;
}
@media screen and (max-width: 768px) {
  .hero_request-inner {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.hero_request-hot {
  display: block;
  width: 420px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .hero_request-hot {
    width: 260px;
  }
}
.hero_request-action {
  display: block;
}
@media screen and (max-width: 768px) {
  .hero_request-action {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.hero_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;
  width: 180px;
  height: 180px;
  margin-left: 10px;
  background-image: -webkit-linear-gradient(135deg, #FF6937, #FF6937 50%, #EB6133 50%, #EB6133);
  background-image: linear-gradient(-45deg, #FF6937, #FF6937 50%, #EB6133 50%, #EB6133);
  border: 4px solid #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
  text-align: center;
  font-size: 27px;
}
@media screen and (max-width: 768px) {
  .hero_achieve {
    position: relative;
    z-index: 1;
    width: 128px;
    height: 128px;
    margin-top: 30px;
    margin-left: auto;
    font-size: 20px;
  }
}
.hero_achieve--gritter {
  overflow: hidden;
  position: relative;
}
.hero_achieve--gritter::before {
  content: "";
  display: block;
  height: 100%;
  width: 10%;
  position: absolute;
  top: -50%;
  left: -78px;
  background-color: #fff;
  opacity: 0;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: reflection 3s ease-in-out infinite;
          animation: reflection 3s ease-in-out infinite;
}
.hero_achieve-title {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .hero_achieve-title {
    font-size: 18px;
  }
}
.hero_achieve-title::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: -23px;
  width: 36px;
  height: 40px;
  background: url(../images/hero_achieve-icon.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .hero_achieve-title::after {
    right: -18px;
    width: 29px;
    height: 32px;
  }
}
.hero_achieve-val {
  margin-top: 8px;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .hero_achieve-val {
    margin-top: 2px;
  }
}
.hero_achieve-em {
  font-size: 49px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hero_achieve-em {
    font-size: 35px;
  }
}
.hero_achieve-txt {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 10px auto 0;
  color: #fff;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .hero_achieve-txt {
    font-size: 16px;
  }
}
.hero_note-1 {
  position: absolute;
  top: -4px;
  left: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hero_note-1 {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}
.hero_supp {
  display: block;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  margin-top: 6px;
  margin-left: 362px;
  font-size: 1rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .hero_supp {
    position: absolute;
    left: 0;
    top: 100%;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    margin-left: 0;
    white-space: nowrap;
  }
}
.hero_illust {
  margin-right: -55px;
}
@media screen and (max-width: 768px) {
  .hero_illust {
    display: none;
  }
}
.hero_contact {
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  .hero_contact {
    margin-top: 140px;
    margin-left: -6px;
    margin-right: -6px;
    position: absolute;
    z-index: 2;
    width: 600px;
    max-width: 100%;
  }
}
.hero_appeal {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-left: 19px;
  padding-right: 19px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #EB6133;
  font-size: 2rem;
  font-weight: 700;
  color: #313131;
}
@media screen and (max-width: 768px) {
  .hero_appeal {
    font-size: 1.6rem;
  }
}
.hero_btn {
  margin: 8px auto 0;
}

.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: 80px;
  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: 10px;
  }
}

/* === 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;
  background: url(../images/decoration_contact1.webp) top 360px right no-repeat, url(../images/decoration_contact2.webp) bottom 100px left no-repeat;
  background-color: #EEF9FF;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 0;
    padding-bottom: 30px;
    background: #008FE9;
  }
}
.contact_wrap {
  position: relative;
  padding: 227px 20px 64px;
  background-color: #008FE9;
}
@media screen and (max-width: 768px) {
  .contact_wrap {
    padding: 0;
    padding-top: 414px;
  }
}
.contact_head {
  position: absolute;
  top: -182px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 757px;
  margin: 0 auto;
  -webkit-filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.25));
          filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  .contact_head {
    top: -56px;
    width: 335px;
  }
}
.contact_head-inner {
  position: relative;
  border: 4px solid #008FE9;
  border-radius: 20px;
}
.contact_head-inner::after {
  content: "";
  position: absolute;
  bottom: -49px;
  left: 50%;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  width: 45px;
  height: 45px;
  border-left: 4px solid #008FE9;
  border-bottom: 4px solid #008FE9;
  background-color: #4DABE5;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.contact_problems {
  padding: 30px 72px 30px 91px;
  border-radius: 20px 20px 0 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .contact_problems {
    padding: 36px 20px;
  }
}
.contact_problem {
  position: relative;
  padding-left: 45px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .contact_problem {
    padding-left: 36px;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
}
.contact_problem.active::before {
  background-image: -webkit-linear-gradient(135deg, #FF6937, #FF6937 50%, #EB6133 50%, #EB6133);
  background-image: linear-gradient(-45deg, #FF6937, #FF6937 50%, #EB6133 50%, #EB6133);
}
.contact_problem:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .contact_problem:not(:first-child) {
    margin-top: 13px;
  }
}
.contact_problem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #D9D9D9;
}
@media screen and (max-width: 768px) {
  .contact_problem::before {
    width: 29px;
    height: 29px;
  }
}
.contact_problem::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 17px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  width: 12px;
  height: 6px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
}
@media screen and (max-width: 768px) {
  .contact_problem::after {
    top: 14px;
    left: 14px;
    width: 8px;
    height: 4px;
  }
}
.contact_solution {
  position: relative;
  padding: 30px 30px 30px 118px;
  border-radius: 0 0 20px 20px;
  background-color: #4DABE5;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .contact_solution {
    padding: 18px 24px 20px 83px;
    text-align: center;
    font-size: 1.6rem;
  }
}
.contact_solution::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 11px;
  width: 112px;
  height: 110px;
  background: url(../images/contact_icon.webp) bottom/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .contact_solution::before {
    left: -14px;
    width: 91px;
    height: 89px;
  }
}
.contact_title {
  color: #fff;
  font-size: 2.4rem;
}
.contact_title::after {
  background-color: #fff;
}
.contact_form {
  max-width: 600px;
  padding-bottom: 24px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .contact_form {
    margin-top: 52px;
  }
}

.form .form-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 56px;
  padding: 17px;
  background-color: #32A9F3;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  -webkit-box-shadow: inset 3px 3px 0 #0075BE;
          box-shadow: inset 3px 3px 0 #0075BE;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.2;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form .form-text {
    font-size: 1.4rem;
  }
}
.form .form-text::-webkit-input-placeholder {
  color: #8FD4FE;
}
.form .form-text::-moz-placeholder {
  color: #8FD4FE;
}
.form .form-text:-ms-input-placeholder {
  color: #8FD4FE;
}
.form .form-text::-ms-input-placeholder {
  color: #8FD4FE;
}
.form .form-text::placeholder {
  color: #8FD4FE;
}
.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: 110px;
  resize: vertical;
}
.form .form-select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 56px;
  padding: 17px;
  background-color: #32A9F3;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  -webkit-box-shadow: inset 3px 3px 0 #0075BE;
          box-shadow: inset 3px 3px 0 #0075BE;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.2;
  width: 354px;
  border-radius: 4px;
  background-color: #D8F0FF;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #008FE9;
}
@media screen and (max-width: 768px) {
  .form .form-select {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .form .form-select {
    width: 302px;
  }
}
.form .form-select:valid {
  background-color: #fff;
  color: #000;
}
.form .form-select-wrap {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.form .form-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 9px;
  background-color: #008FE9;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.form_item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .form_item:not(:first-child) {
    margin-top: 26px;
  }
}
.form_title {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .form_title {
    font-size: 1.6rem;
  }
}
.form_title_notes {
  padding-top: 10px;
  color: #D8F0FF;
  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;
  padding: 3px 13px;
  margin-right: 7px;
  border-radius: 20px;
  background-color: #fff;
  color: #EB6133;
  font-size: 1.6rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .form_required {
    font-size: 1.5rem;
  }
}
.form_control {
  margin-top: 12px;
}
.form_submit {
  display: block;
  padding: 16px 100px;
  margin: 74px auto 0;
  border: 3px solid #FFE1D7;
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  -webkit-box-shadow: 3px 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 3px 5px 0 rgba(0, 0, 0, 0.25);
  color: #008FE9;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 1em;
  text-indent: 1em;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form_submit {
    margin-top: 53px;
  }
}
.form_submit:hover, .form_submit:focus {
  opacity: 0.8;
}
.form_privacy-policy {
  margin-top: 40px;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .form_privacy-policy {
    margin-top: 30px;
    font-size: 1.3rem;
  }
}
.form_link {
  color: #fff;
}

/* === 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: 40px;
  padding-bottom: 34px;
}
.footer_inner {
  display: grid;
  grid-template: repeat(3, auto)/auto auto;
}
@media screen and (max-width: 768px) {
  .footer_inner {
    display: block;
  }
}
.footer_about {
  grid-area: 1/1/2/3;
  padding-left: 16px;
  border-left: 2px solid #313131;
}
.footer_about-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.footer_about-logo {
  display: inline-block;
  width: 158px;
}
.footer_about-detail {
  font-size: 1.4rem;
  line-height: 1.8;
}
.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: 75px;
  color: #008FE9;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .footer_company {
    margin-top: 50px;
  }
}
.footer_company-name {
  font-weight: bold;
}
.footer_company-phone a {
  color: #008FE9;
  text-decoration: none;
}
.footer_copyright {
  display: inline-block;
  grid-area: 3/1/4/3;
  margin-top: 24px;
  color: #008FE9;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    margin-top: 50px;
  }
}

.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: #F9F8F6;
}
@media screen and (max-width: 768px) {
  .thanks {
    padding-bottom: 112px;
    background: #F9F8F6;
  }
}
.thanks_title-wrap {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 175px auto 0;
}
.thanks_title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 80px;
  height: 124px;
  background: url(../images/thanks_illust.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .thanks_title-wrap::after {
    bottom: 100%;
    left: auto;
    right: 0;
  }
}
.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 {
    margin-top: 147px;
    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;
  }
}

/* ========================
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;
}