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

ul, ol {
  list-style: none;
}

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

.wrapper {
  max-width: 600px;
  margin: 0 auto;
}

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

.page-wrapper {
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .page-wrapper {
    background: #fff;
    max-width: 375px;
    -webkit-box-shadow: 0 4px 20px 0 #d4cb87;
            box-shadow: 0 4px 20px 0 #d4cb87;
  }
}

.page-top {
  background: #fff;
}
@media screen and (min-width: 769px) {
  .page-top {
    padding: 40px 0;
    background: #fffdd9;
  }
}

.page-top-main {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #044;
}

/* === Section Title === */
.sect-title {
  position: relative;
  text-align: center;
  line-height: 1.6;
  padding-bottom: 18px;
  font-size: 2.2rem;
  background-size: auto 10px;
  background: no-repeat;
  background-position: center bottom;
}
.sect-title--01 {
  background-image: url(../images/bg-ttl01.svg);
  margin-bottom: 13px;
}
.sect-title--02 {
  background-image: url(../images/bg-ttl02.svg);
  margin-bottom: 9px;
}
.sect-title--03 {
  background-image: url(../images/bg-ttl03.svg);
  font-size: 1.8rem;
  line-height: 1.5;
  color: #00b2b2;
  margin-bottom: 27px;
}
.sect-title--03 em {
  color: #ff479f;
  font-size: 2.4rem;
}
.sect-title--04 {
  background-image: url(../images/bg-ttl04.svg);
  margin-bottom: 25px;
}

.btn-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-hero a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 334px;
  height: 61px;
  background: -webkit-linear-gradient(182.1deg, #FF479F 4.3%, #EB2353 97.77%);
  background: linear-gradient(267.9deg, #FF479F 4.3%, #EB2353 97.77%);
  border: 1px solid #EB2454;
  -webkit-box-shadow: 0px 2.20462px 0px #C0002E;
          box-shadow: 0px 2.20462px 0px #C0002E;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 1.75rem;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn-inner {
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  padding-top: 10px;
  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;
}
.btn-inner:after {
  content: "";
  display: block;
  height: 95%;
  width: 10%;
  position: absolute;
  top: -50%;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: reflection 3s ease-in-out infinite;
          animation: reflection 3s ease-in-out infinite;
  border-radius: 35px;
}
.btn-caption {
  border: 1px #044 solid;
  border-radius: 18px;
  background: #fff;
  position: absolute;
  color: #044;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 8px 12px 6px;
  display: block;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}
.btn-caption em {
  font-size: 1.9rem;
  color: #00d3d3;
}
.btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: url(../images/icon-mail.svg) no-repeat left 52%/18px auto;
  padding-left: 26px;
  padding-bottom: 3px;
}
.btn-text::after {
  content: "";
  display: inline-block;
  height: 11px;
  width: 7.5px;
  background: #fff849;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  margin-left: 8px;
  margin-top: -3px;
  vertical-align: middle;
}
.btn-text em {
  color: #fff849;
}

@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;
  }
}
/* === Content === */
.cont {
  padding: 80px 20px;
}
.cont_inner {
  max-width: 600px;
  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_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;
}

.cont_header {
  display: grid;
  position: relative;
  z-index: 1;
}

/* === Hero === */
.hero {
  position: relative;
  z-index: 1;
  background: #fffdd9 url(../images/bg-hero.svg) no-repeat center bottom/100% auto;
  padding-bottom: 55px;
}
.hero::before {
  content: "";
  display: block;
  background: url(../images/bg-hero-upper.svg) no-repeat left bottom/100% auto;
  position: absolute;
  top: 0;
  width: calc(100% - 20px);
  height: 203px;
  left: 0;
  z-index: 1;
}
.hero::after {
  z-index: 0;
  width: 100%;
  background: #fff849;
  content: "";
  display: block;
  height: 300px;
  position: absolute;
  top: 0;
}
.hero_logo {
  width: 222px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 14px;
}
.hero_logo a {
  display: block;
}
.hero_frame {
  position: relative;
}
.hero_inner {
  position: relative;
  z-index: 2;
}
.hero_pict {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 30px;
}
.hero_pict img {
  max-width: none;
  width: 410px;
}
.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;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  color: #EB6133;
}
@media screen and (max-width: 768px) {
  .hero_appeal {
    font-size: 1.6rem;
  }
}
.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;
}
.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;
}

/* === About === */
.about {
  position: relative;
  padding: 0;
}
.about_inner {
  background: #fffdd9;
  padding-top: 9px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 190px;
}
.about::after {
  content: "";
  background: url(../images/bg-about-lower.svg) no-repeat left bottom;
  background-size: 100% auto;
  display: block;
  width: 100%;
  aspect-ratio: 375/169;
  margin-top: -1px;
}
.about * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.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_lead {
  max-width: 335px;
  margin: 0 auto 13px;
}
.about_lead_element {
  width: 303px;
  height: 83px;
  font-size: 1.5rem;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
  background-repeat: no-repeat;
  background-size: 100% auto;
  text-align: center;
}
.about_lead_element--01 {
  background: url(../images/bg-baloon01.svg);
  margin-bottom: 7px;
  padding: 17px 18px 10px;
}
.about_lead_element--02 {
  background: url(../images/bg-baloon02.svg);
  width: 297px;
  margin-left: auto;
  padding: 16px 25px 10px;
}
.about_text {
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0 0 62px;
}
.about_text span {
  color: #FF479F;
}
.about_pict {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
}
.about_pict img {
  width: 301px;
}

/* === Member === */
.member {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -95px;
}
.member_pict {
  text-align: center;
}
.member_pict img {
  width: 335px;
}

/* === information === */
.information {
  padding: 0;
  margin-top: -70px;
}
.information::before {
  content: "";
  background: url(../images/bg-yellow-upper.svg) no-repeat right top;
  background-size: 100% auto;
  display: block;
  width: 100%;
  aspect-ratio: 375/169;
  margin-top: -1px;
  position: relative;
  top: 75px;
}
.information::after {
  content: "";
  background: url(../images/bg-yellow-lower.svg) no-repeat left bottom;
  background-size: 100% auto;
  display: block;
  width: 100%;
  aspect-ratio: 375/169;
  position: relative;
  top: -50px;
}
.information_caption {
  background: #00b2b2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
  font-weight: 500;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  padding: 7px 24px 5px;
  border-radius: 90px;
  line-height: 1.3;
}
.information_inner {
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.information_inner::before {
  content: "";
  width: 100%;
  position: absolute;
  background: #fff849;
  height: calc(100% - 124px);
  left: 0;
  top: 75px;
}
.information_block {
  position: relative;
}
.information_block--01 {
  margin-bottom: 55px;
}
.information_block_title {
  margin: 0 auto 17px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  font-weight: bold;
  background-size: auto 31px;
  background-repeat: no-repeat;
  height: 31px;
  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;
}
.information_block_title--01 {
  background-image: url(../images/bg-ribbon01.svg);
  width: 116px;
}
.information_block_title--02 {
  background-image: url(../images/bg-ribbon02.svg);
  width: 139px;
}
.information_block_ph {
  text-align: center;
}
.information_block_ph--01 img {
  width: 320px;
}
.information_block_ph--02 img {
  width: 325px;
}

/* === Cta === */
.cta {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 66px;
  margin-top: -45px;
}
.cta_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 20px;
}
.cta_title img {
  width: 222px;
}
.cta_title span {
  font-weight: bold;
  font-size: 1.8rem;
  padding-top: 17px;
  margin-left: -4px;
}
.cta_pict {
  text-align: center;
  margin: -12px -20px 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta_pict img {
  width: 428px;
  max-width: none;
  margin-left: -15px;
}
.cta_text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 6px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
}
.cta_text span {
  font-size: 2rem;
  color: #FF479F;
}
.cta_tel {
  background: #f3f2d6;
  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;
  gap: 8px;
  padding: 6px;
}
.cta_tel img {
  width: 36px;
}
.cta_tel span {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
}

/* === Voice === */
.voice {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: -30px;
}
.voice_block {
  position: relative;
}
.voice_block--01 {
  margin-bottom: 40px;
}
.voice_block_title {
  margin: 0 auto 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  background-size: auto 31px;
  background-repeat: no-repeat;
  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;
  text-align: center;
  position: relative;
}
.voice_block_title::before, .voice_block_title::after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
}
.voice_block_title::before {
  border-top: 4px solid #00d3d3;
  border-right: 4px solid #00d3d3;
  right: -20px;
  top: -4px;
}
.voice_block_title::after {
  border-bottom: 4px solid #00d3d3;
  border-left: 4px solid #00d3d3;
  left: -25px;
  bottom: -4px;
}
.voice_block_ph {
  text-align: center;
}
.voice_block_ph img {
  width: 160px;
}

/* === Reasons === */
.reasons {
  background-color: #FFF;
  padding-top: 115px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .reasons {
    padding-top: 40px;
    padding-bottom: 10px;
  }
}
@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: 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: 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));
  position: static;
}
.reasons_lp-point-item:nth-child(1) {
  top: 108px;
  right: calc(50% + 115px);
  margin-top: 36px;
}
.reasons_lp-point-item:nth-child(1) .reasons_lp-point-inner {
  border: 2px solid #008FE9;
  border-radius: 10px;
  width: auto;
}
.reasons_lp-point-item:nth-child(1) .reasons_lp-point-inner::after {
  content: "";
  position: absolute;
  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%);
  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);
  margin-top: 28px;
}
.reasons_lp-point-item:nth-child(2) .reasons_lp-point-inner {
  border: 2px solid #008FE9;
  border-radius: 10px;
  width: auto;
}
.reasons_lp-point-item:nth-child(2) .reasons_lp-point-inner::after {
  content: "";
  position: absolute;
  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%);
  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);
  margin-top: 28px;
}
.reasons_lp-point-item:nth-child(3) .reasons_lp-point-inner {
  border: 2px solid #008FE9;
  border-radius: 10px;
  width: auto;
}
.reasons_lp-point-item:nth-child(3) .reasons_lp-point-inner::after {
  content: "";
  position: absolute;
  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%);
  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;
  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;
  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;
  }
}
.reasons_contact {
  margin-top: 0px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .reasons_contact {
    margin: 40px auto 0;
    padding: 20px 0;
  }
}
.reasons_btn {
  width: 545px;
  height: 105px;
  margin: 10px auto 0;
}
@media screen and (max-width: 768px) {
  .reasons_btn {
    width: 352px;
    height: 92px;
  }
}

/* === Testimonials === */
.testimonials {
  padding-bottom: 200px;
  background: url(../images/decoration_testimonials1.webp) no-repeat top 148px right, url(../images/decoration_testimonials2.webp) no-repeat top 175px left 132px, url(../images/decoration_testimonials3.webp) no-repeat top 412px left, url(../images/decoration_testimonials4.webp) no-repeat #FFF top 832px right;
}
@media screen and (max-width: 768px) {
  .testimonials {
    padding-bottom: 122px;
    background: none;
    background: url(../images/decoration_reasons-sp1.webp) top 30px left no-repeat #FFF;
  }
}
.testimonials_cont {
  margin-top: 50px;
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
  padding-bottom: 68px;
}
.testimonials_example:not(#_) {
  position: relative;
}
@media screen and (min-width: 769px) {
  .testimonials_example:not(#_) {
    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_ceo {
  text-align: center;
}
.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: 55rem;
  }
  .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: 0;
}
.contact::before {
  content: "";
  background: url(../images/bg-form-upper.svg) no-repeat right top;
  background-size: 100% auto;
  display: block;
  width: 100%;
  aspect-ratio: 375/169;
  margin-bottom: -1px;
}
.contact_inner {
  background: #fffdd9;
  padding: 0 20px 64px;
}
.contact_wrap {
  position: relative;
  padding: 0;
}
.contact_title {
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 -16px;
  position: relative;
  top: -36px;
}
.contact_title::after {
  content: "";
  display: block;
  margin: 13px auto 0;
  background: url(../images/icon-ar-down.svg) no-repeat center center;
  background-size: 100% auto;
  width: 19px;
  height: 32px;
}
.contact_title_caption {
  background: url(../images/bg-ribbon-y.svg) no-repeat center center;
  background-size: 100% auto;
  margin: 0 auto;
  width: 126px;
  font-size: 1.6rem;
  height: 36px;
  padding-top: 2px;
  margin-bottom: 14px;
}
.contact_title_caption em {
  font-size: 2.4rem;
}
.contact_title_element {
  font-size: 2.4rem;
}
.contact_title_element span {
  color: #ff479f;
}
.contact_caption {
  font-size: 1.2rem;
  text-align: right;
}
.contact_caption span {
  color: #ff479f;
}
.contact_solution {
  position: relative;
  border-radius: 0 0 20px 20px;
  background-color: #4DABE5;
  color: #fff;
  font-weight: bold;
  line-height: 1.8;
  padding: 18px 24px 20px 83px;
  text-align: center;
  font-size: 1.6rem;
}
.contact_solution::before {
  content: "";
  position: absolute;
  bottom: -6px;
  background: url(../images/contact_icon.webp) bottom/contain no-repeat;
  left: -14px;
  width: 91px;
  height: 89px;
}
.contact_form {
  padding-bottom: 24px;
  margin: 10px auto 0;
  font-family: "Noto Sans JP", sans-serif;
}

.form .form-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 56px;
  padding: 17px;
  background-color: #fff;
  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: #000;
  font-size: 1.6rem;
  line-height: 1.2;
  width: 100%;
}
.form .form-text::-webkit-input-placeholder {
  color: #c0c0c0;
}
.form .form-text::-moz-placeholder {
  color: #c0c0c0;
}
.form .form-text:-ms-input-placeholder {
  color: #c0c0c0;
}
.form .form-text::-ms-input-placeholder {
  color: #c0c0c0;
}
.form .form-text::placeholder {
  color: #c0c0c0;
}
.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: 185px;
  resize: vertical;
  line-height: 1.5;
}
.form .form-select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 56px;
  padding: 17px;
  background-color: #fff;
  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: #000;
  font-size: 1.6rem;
  line-height: 1.2;
  width: auto;
  border-radius: 4px;
  background-color: #fafafa;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 2px solid #00a3b9;
  padding-right: 32px;
  width: 100%;
}
.form .form-select:valid {
  background-color: #fff;
  color: #000;
}
.form .form-select-wrap {
  position: relative;
}
.form .form-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 9px;
  background-color: #00a3b9;
  -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: 20px;
}
.form_title {
  display: block;
  width: 100%;
  color: #1e4060;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}
.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;
  margin-left: 3px;
  color: #ff479f;
  line-height: 1.2;
}
.form_control {
  margin-top: 12px;
}
.form_submit {
  display: block;
  margin: 30px auto 0;
  border: 0;
  background: #00a3b9 url(../images/icon-submit.svg) no-repeat;
  background-size: 9px auto;
  background-position: right 20px center;
  text-indent: -8px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.2;
  width: 222px;
  height: 48px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
}
.form_privacy-policy {
  margin-top: 5px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #202020;
}
.form_link {
  color: #00a3b9;
}

/* === 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;
  background: #00a3b9;
  color: #fff;
}
.footer_about-franchise-salon {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 858px;
  padding: 14px 22px;
  margin: 0 auto;
  background-color: #fff;
  color: #313131;
}
@media screen and (max-width: 768px) {
  .footer_about-franchise-salon {
    padding: 20px;
  }
}
.footer_about-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1.8rem;
  font-weight: bold;
}
.footer_about-logo {
  display: inline-block;
  width: 180px;
}
.footer_about-desc {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.6;
}
.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: currentColor;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.footer_company {
  color: currentColor;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.footer_company-name {
  font-weight: bold;
}
.footer_company-phone a {
  color: currentColor;
  text-decoration: none;
}
.footer_copyright {
  text-align: center;
  display: block;
  margin-top: 50px;
  color: currentColor;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.footer_links {
  margin-top: 30px;
}
.footer_links a {
  display: inline-block;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.7;
  padding: 10px 36px 10px 18px;
  border: 1px solid #fff;
  border-radius: 60px;
  position: relative;
}
.footer_links a::after {
  content: "";
  background: #fff;
  width: 8px;
  height: 12px;
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.thanks {
  padding: 112px 17px 90px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .thanks {
    padding-top: 80px;
    position: relative;
    padding-bottom: 48px;
  }
}
.thanks_inner {
  position: relative;
  max-width: 828px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .thanks_inner {
    position: static;
  }
}
.thanks_header {
  position: absolute;
  top: -112px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 10px 0 0;
}
@media screen and (max-width: 768px) {
  .thanks_header {
    top: 0;
    right: 0;
  }
}
.thanks_cont {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 90px 30px;
  background-color: #f5f5f5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks_cont {
    padding: 20px 8px;
  }
}
.thanks_title {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  color: #03bded;
  font-size: 2.4rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .thanks_title {
    font-size: 2.2rem;
    line-height: 1.0833333333;
  }
}
.thanks_mes {
  margin-top: 8px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .thanks_mes {
    margin-top: 16px;
    font-size: 1.5rem;
  }
}
.thanks_detail {
  margin-top: 4px;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .thanks_detail {
    letter-spacing: -0.05em;
  }
}

.register-line {
  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;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .register-line {
    display: block;
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .register-line_desc {
    max-width: 334px;
    margin-left: auto;
    margin-right: auto;
  }
}
.register-line_title {
  width: 302px;
}
@media screen and (max-width: 768px) {
  .register-line_title {
    width: 296px;
    margin-left: auto;
    margin-right: auto;
  }
}
.register-line_logo {
  width: 295px;
  margin-left: -20px;
}
@media screen and (max-width: 768px) {
  .register-line_logo {
    margin-left: 0;
  }
}
.register-line_appeal {
  margin-top: 10px;
  color: #212b2b;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .register-line_appeal {
    margin-top: 10px;
    color: #000000;
    font-size: 1.7rem;
    padding: 10px 32px;
    text-align: center;
  }
}
.register-line_howto {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 362px;
  margin-top: 16px;
}
.register-line_howto-title {
  padding-left: 12px;
  border-left: 6px solid #06c755;
  color: #06c755;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.5;
}
.register-line_list {
  margin-top: 8px;
}
.register-line_type:not(:first-child) {
  margin-top: 20px;
}
.register-line_howto-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #06c755;
  border-radius: 5px;
  background-color: #06c755;
}
.register-line_index {
  padding: 8px;
  color: #fff975;
  font-size: 1.9rem;
  font-weight: bold;
  letter-spacing: -0.03em;
}
.register-line_num {
  font-size: 2.6rem;
}
.register-line_val {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8px 12px;
  border-radius: 0 5px 5px 0;
  background-color: #fffedd;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
}
.register-line_detail {
  margin-top: 8px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.03em;
}
.register-line_figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 230px;
  height: 405px;
  padding: 10px;
  margin-left: 16px;
  border: 7px solid #06c755;
  border-radius: 27px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .register-line_figure {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    height: auto;
    padding: 10px 30px 23px;
    margin: 10px -20px 0;
    border-radius: 10px;
    background-color: #ffff43;
    border: none;
  }
}
.register-line_mobile-screen {
  position: relative;
  width: 100%;
  padding-top: 48px;
  padding-bottom: 36px;
  background-color: #06c755;
  border-radius: 8px;
}
.register-line_mobile-screen::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 62px;
  height: 7px;
  background-color: #06c755;
  border-radius: 5px;
}
.register-line_mobile-screen::after {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 4px solid #06c755;
}
.register-line_qr {
  width: 122px;
  margin: 0 auto;
}
.register-line_id {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 158px;
  margin: 25px auto 0;
  background-color: #00c6d3;
  border: 3px solid #00c6d3;
}
.register-line_id-key {
  padding: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -0.03em;
}
.register-line_id-val {
  padding: 8px;
  margin: 0;
  background-color: #fff;
  color: #00c6d3;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -0.03em;
}
.register-line_catch {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  padding-left: 22px;
  padding-right: 22px;
  margin: 0 auto;
  color: #cd281d;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  line-height: 1.5;
}
.register-line_catch::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 24px;
  background-color: #cd281d;
  -webkit-clip-path: polygon(0 0, 58% 0, 100% 100%);
          clip-path: polygon(0 0, 58% 0, 100% 100%);
}
.register-line_catch::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 24px;
  background-color: #cd281d;
  -webkit-clip-path: polygon(42% 0, 100% 0, 0 100%);
          clip-path: polygon(42% 0, 100% 0, 0 100%);
}
.register-line_btn {
  display: inline-block;
  position: relative;
  padding: 16px 43px 16px 87px;
  margin-top: 8px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #06d65b), color-stop(50%, #06c755));
  background-image: -webkit-linear-gradient(bottom, #06d65b 50%, #06c755 50%);
  background-image: linear-gradient(to top, #06d65b 50%, #06c755 50%);
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 0 #047526;
          box-shadow: 5px 5px 0 #047526;
  text-decoration: none;
  color: #fff;
  font-size: 2.9rem;
  font-weight: bold;
  letter-spacing: -0.03em;
}
.register-line_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 46px;
  height: 45px;
  background: url(../../assets/images/line-icon.webp) center/cover;
}

.page-thanks .footer .cont_inner {
  max-width: 1000px;
}
.page-thanks .footer_about-franchise-salon {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .page-thanks .footer_lower {
    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;
    gap: 0 20px;
  }
  .page-thanks .footer_lower .footer_links {
    margin-top: 0;
  }
}

.prevent_dialog_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.prevent_dialog_wrapper {
  display: none;
  position: fixed !important;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.prevent_dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 94%;
  max-width: 600px;
}

.prevent_dialog img {
  width: 100%;
}

.back_button {
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
}

@media (min-width: 768px) {
  .prevent_dialog {
    width: 375px;
  }
}
/* ========================
Helper
======================== */
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

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

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