@charset "UTF-8";
/* 1280px以下 */
a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lp-template a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sp-hidden {
  display: block;
}
@media screen and (max-width: 540px) {
  .sp-hidden {
    display: none;
  }
}

.tab-hidden {
  display: none;
}
@media screen and (max-width: 540px) {
  .tab-hidden {
    display: block;
  }
}

.spc-hidden {
  display: none;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .spc-hidden {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .spc-hidden {
    display: block;
  }
}

.pc-hidden {
  display: none;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .pc-hidden {
    display: block;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .pc-hidden {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .pc-hidden {
    display: block;
  }
}

.pc-spc-appear {
  display: block;
}
@media screen and (max-width: 840px) {
  .pc-spc-appear {
    display: none;
  }
}

/* ----- variable -----*/
/* ----- color -----*/
.color-black {
  color: #000;
}

.color-white {
  color: #fff;
}

.color-pink {
  color: #D8355B;
}

.color-green {
  color: #35CCC6;
}

.color-gold {
  color: #AA7C00;
}

/* ----- common -----*/
.l-inner {
  margin: 0 auto;
  padding: 0 19.7917%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.l-inner.w1160 {
  max-width: 1160px;
}
.l-inner.w960 {
  max-width: 960px;
}
.l-inner.w879 {
  max-width: 879px;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-inner {
    padding: 0 9.7222%;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-inner {
    padding: 0 4.2496%;
  }
}
@media screen and (max-width: 540px) {
  .l-inner {
    padding: 0 6.6667%;
  }
}

/*
各クラス内に記述
.under-yellow {黄色い下線}

.emphasis {強調する文字}

.reduction {縮小する文字}
*/
html {
  scroll-behavior: smooth;
}

/* ----- body -----*/
body {
  overflow-x: hidden;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 36px;
}

/* ----- header -----*/
.header {
  padding: 16px 24px 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .header {
    padding: 25px 24px 25px 24px;
  }
}
@media screen and (max-width: 540px) {
  .header {
    padding: 14px 20px 14px 20px;
  }
}

.c-head01 {
  max-width: 215px;
  width: 100%;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .c-head01 {
    max-width: 200px;
  }
}
@media screen and (max-width: 540px) {
  .c-head01 {
    max-width: 140px;
  }
}
.c-head01 a img {
  width: 100%;
  height: auto;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 49.6px;
}
@media screen and (max-width: 840px) {
  .nav {
    display: none;
  }
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 51.65px;
  list-style: none;
}

.nav-item {
  color: #000;
  font-family: "Inter", "Noto Sans JP";
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
}

.contact-btn {
  position: relative;
  background-color: #D8355B;
  border-radius: 64px;
  color: #fff;
  font-family: "Inter", "Noto Sans JP";
  font-weight: 600;
  white-space: nowrap;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.contact-btn::before, .contact-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transition: right 0.5s ease;
  transition: right 0.5s ease;
}
.contact-btn::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 3px;
  background-color: #fff;
}
.contact-btn::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.contact-btn.nav-contact {
  padding: 18px 68px;
  font-size: 16px;
  line-height: 22.4px;
}
.contact-btn.nav-contact::before, .contact-btn.nav-contact::after {
  right: 25px;
}
.contact-btn.nav-contact:hover::before, .contact-btn.nav-contact:hover::after {
  right: 15px;
}
.contact-btn.c-foot-btn {
  padding: 21.5px 70px;
  font-size: 18px;
  line-height: 25.2px;
}
.contact-btn.c-foot-btn::before, .contact-btn.c-foot-btn::after {
  right: 35px;
}
.contact-btn.c-foot-btn:hover::before, .contact-btn.c-foot-btn:hover::after {
  right: 25px;
}
@media screen and (max-width: 540px) {
  .contact-btn.c-foot-btn {
    padding: 22px 60px;
    font-size: 16px;
    line-height: 22.4px;
  }
}

/* ----- mv -----*/
.p-mv {
  margin-top: 90.5px;
  background: #F6F6F6;
}
@media screen and (max-width: 540px) {
  .p-mv {
    margin-top: 16px;
  }
}

.l-mv-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 840px) {
  .l-mv-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}

.l-mv-text-container {
  padding-top: 48px;
  padding-bottom: 32px;
  min-width: 464px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-mv-text-container {
    min-width: 328px;
  }
}
@media screen and (max-width: 540px) {
  .l-mv-text-container {
    padding-bottom: 18px;
    min-width: 288px;
  }
}

.p-mv-text1 {
  position: relative;
  padding: 14px 20px 10px 20px;
  background-color: #35CCC6;
  border-radius: 12px;
  z-index: 1;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  line-height: 44.8px;
}
.p-mv-text1 .under-yellow {
  position: relative;
  z-index: 1;
}
.p-mv-text1 .under-yellow::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #FFFC00;
  z-index: -1;
}
.p-mv-text1 .reduction {
  font-size: 24px;
  line-height: 24px;
}
.p-mv-text1 .emphasis {
  font-family: "Inter", "Noto Sans JP";
  font-size: 36px;
  line-height: 50.4px;
}
.p-mv-text1::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 12px 0 12px;
  border-color: #35CCC6 transparent transparent transparent;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv-text1 {
    padding: 15px 37px 13px 37px;
    font-size: 28px;
    line-height: 39.2px;
  }
  .p-mv-text1 .reduction {
    font-size: 22px;
    line-height: 22px;
  }
  .p-mv-text1 .emphasis {
    font-size: 32px;
    line-height: 44.8px;
  }
}
@media screen and (max-width: 540px) {
  .p-mv-text1 {
    padding: 12px 18px 8px 18px;
    font-size: 24px;
    line-height: 33.6px;
  }
  .p-mv-text1 .reduction {
    font-size: 16px;
    line-height: 16px;
  }
  .p-mv-text1 .emphasis {
    font-size: 28px;
    line-height: 39.2px;
  }
}

.p-mv-text2 {
  margin-top: 32px;
  font-family: "Noto Sans JP";
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  text-align: center;
  white-space: nowrap;
}
.p-mv-text2 .reduction {
  font-size: 54px;
  line-height: 54px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv-text2 {
    font-size: 42px;
    line-height: 42px;
  }
  .p-mv-text2 .reduction {
    font-size: 32px;
    line-height: 32px;
  }
}
@media screen and (max-width: 540px) {
  .p-mv-text2 {
    margin-top: 22px;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -1px;
  }
  .p-mv-text2 .reduction {
    font-size: 28px;
    line-height: 28px;
  }
}

.p-mv-text3 {
  margin-top: 16px;
  text-align: center;
  font-family: "Inter", "Noto Sans JP";
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv-text3 {
    font-size: 42px;
    line-height: 42px;
  }
}
@media screen and (max-width: 540px) {
  .p-mv-text3 {
    font-size: 36px;
    line-height: 36px;
  }
}

.p-mv-text4 {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-mv-text4 {
    margin-top: 13px;
    line-height: 25px;
  }
}
@media screen and (max-width: 540px) {
  .p-mv-text4 {
    margin-top: 18px;
    font-size: 15px;
    line-height: 18px;
  }
}

.l-awards {
  margin-top: 23px;
  position: relative;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-awards {
    margin-top: 17px;
  }
}
@media screen and (max-width: 540px) {
  .l-awards {
    margin-top: 15px;
  }
}

.l-award-above {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-award {
  position: relative;
  width: 210px;
}
.l-award.under {
  width: 165px;
}
.l-award.tik2 {
  width: 136px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-award {
    width: 180px;
  }
  .l-award.under {
    width: 140px;
  }
  .l-award.tik2 {
    width: 120px;
  }
}
@media screen and (max-width: 540px) {
  .l-award {
    width: 175px;
  }
  .l-award.under {
    width: 140px;
  }
  .l-award.tik2 {
    width: 105px;
  }
}
.l-award img {
  width: 100%;
  height: auto;
  display: block;
}

.l-mv-award-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.p-mv-award-text {
  color: #AA7C00;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
}
.p-mv-award-text .emphasis {
  font-family: "Inter", "Noto Sans JP";
  font-size: 20px;
  font-weight: 800;
  line-height: 26px;
}
@media screen and (max-width: 840px) {
  .p-mv-award-text {
    font-size: 14px;
    line-height: 18.2px;
  }
  .p-mv-award-text .emphasis {
    font-size: 18px;
    line-height: 23.4px;
  }
}

.l-award-under {
  margin-top: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
@media screen and (max-width: 540px) {
  .l-award-under {
    margin-top: 53px;
  }
}

.l-mv-img {
  padding-top: 73px;
  width: 56.03%;
}
.l-mv-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 840px) {
  .l-mv-img {
    padding-top: 0;
    width: 100%;
  }
}

.l-mv-img-lp02 {
  padding-top: 15px;
  width: 56.03%;
}
.l-mv-img-lp02 img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 840px) {
  .l-mv-img-lp02 {
    padding-top: 0;
    width: 100%;
  }
}

/* ----- sponsor -----*/
.splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.splide__slide {
  /* 親要素のslide自体の幅もautoに固定 */
  width: auto !important;
}
.splide__slide img {
  display: block;
  width: auto !important;
  /* 自動計算を強制 */
  max-width: none !important;
  /* ★SWELLのmax-width:100%を解除 */
  height: 120px !important;
  /* 高さを固定 */
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .splide__slide img {
    height: 62.5px !important;
  }
}
@media screen and (max-width: 540px) {
  .splide__slide img {
    height: 62.5px !important;
  }
}

/* ----- worries -----*/
.p-worries {
  padding-top: 104px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-worries {
    padding-top: 80px;
  }
}
@media screen and (max-width: 540px) {
  .p-worries {
    padding-top: 40px;
  }
}

.l-worries-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1160px;
}

.p-h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media screen and (max-width: 540px) {
  .p-h2 {
    gap: 18px;
  }
}

.p-h2-en {
  font-family: "Inter", "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-h2-en {
    font-size: 16px;
    line-height: 22.4px;
  }
}
@media screen and (max-width: 540px) {
  .p-h2-en {
    font-size: 12px;
    line-height: 16.8px;
  }
}

.p-h2-jp {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
}
@media screen and (max-width: 840px) {
  .p-h2-jp {
    font-size: 24px;
    line-height: 24px;
  }
}

.l-worries-text-container {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 840px) {
  .l-worries-text-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-worries-text {
  position: relative;
  padding: 20px 0;
  border-radius: 24px;
  border: 1px dashed #000;
  background: #F6F6F6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 360px;
  width: 100%;
}
.p-worries-text:nth-child(odd) {
  margin-top: 20px;
}
.p-worries-text::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 16px;
  background-color: #000;
}
@media screen and (max-width: 840px) {
  .p-worries-text:nth-child(odd) {
    margin-top: 0;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-worries-text {
    font-size: 18px;
    line-height: 25.2px;
    min-width: 300px;
  }
}
@media screen and (max-width: 540px) {
  .p-worries-text {
    font-size: 16px;
    line-height: 22.4px;
    min-width: 280px;
  }
}

.l-worries-img {
  margin-top: 56px;
  margin-right: auto;
  margin-left: auto;
  width: auto;
  height: auto;
}
.l-worries-img img {
  width: 100%;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-worries-img {
    width: 105.105%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 540px) {
  .l-worries-img {
    margin-top: 32px;
    width: 121.646%;
    margin-right: 0;
    margin-left: 0;
  }
}

/* ----- solution -----*/
.p-solution {
  padding-top: 104px;
  padding-bottom: 104px;
  background-color: #35CCC6;
}

.p-solution-text1 {
  margin-top: 32px;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
}
@media screen and (max-width: 540px) {
  .p-solution-text1 {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
}

.p-solution-text1-detail {
  padding: 8px;
  background-color: #fff;
  font-size: 54px;
  font-weight: 700;
  line-height: 54px;
}
.p-solution-text1-detail:nth-child(2) {
  margin-left: -1px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-solution-text1-detail {
    font-size: 40px;
    line-height: 40px;
  }
}
@media screen and (max-width: 540px) {
  .p-solution-text1-detail {
    font-size: 32px;
    line-height: 32px;
  }
}

.p-solution-text2 {
  margin-top: 29px;
  text-align: center;
  font-size: 18px;
  font-weight: 350;
  line-height: 32.4px;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 840px) {
  .p-solution-text2 {
    font-size: 16px;
    line-height: 28.8px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-solution-text2 {
    margin-top: 28px;
  }
}
@media screen and (max-width: 540px) {
  .p-solution-text2 {
    margin-top: 24px;
  }
}

.l-solution-cards {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  border-radius: 24px;
  max-width: 1160px;
}
@media screen and (max-width: 840px) {
  .l-solution-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #fff;
    gap: 48px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-solution-cards {
    padding: 32px;
  }
}
@media screen and (max-width: 540px) {
  .l-solution-cards {
    padding: 16px;
  }
}

.l-solution-card {
  padding: 59px 24px 78px 24px;
  background-color: #fff;
  border-radius: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) {
  .l-solution-card {
    padding: 0;
    width: 100%;
  }
}

.l-card-head-container {
  margin-top: -91px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 840px) {
  .l-card-head-container {
    margin-top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}

.l-point-box {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #D8355B;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-point-box {
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 540px) {
  .l-point-box {
    width: 50px;
    height: 50px;
  }
}

.p-point {
  font-family: "Inter", "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-point {
    font-weight: 600;
  }
}
@media screen and (max-width: 540px) {
  .p-point {
    font-size: 10px;
    font-weight: 600;
    line-height: 10px;
  }
}

.p-point-num {
  font-family: "Inter", "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (max-width: 840px) {
  .p-point-num {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
  }
}

.p-card-head {
  font-size: 26px;
  font-weight: 700;
  line-height: 36.4px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-card-head {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (max-width: 540px) {
  .p-card-head {
    font-size: 20px;
    line-height: 28px;
  }
}

.l-card-img {
  margin-top: 20px;
}
.l-card-img img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-card-img {
    width: 540px;
  }
}
@media screen and (max-width: 540px) {
  .l-card-img {
    width: 200px;
  }
}

.p-card-text {
  margin-top: 36px;
}
@media screen and (max-width: 840px) {
  .p-card-text {
    font-size: 16px;
    line-height: 28.8px;
  }
}

/* ----- reason -----*/
.p-reason {
  padding-top: 104px;
  padding-bottom: 104px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-reason {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 540px) {
  .p-reason {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.l-reason-cards {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-reason-cards {
    margin-top: 38px;
  }
}
@media screen and (max-width: 540px) {
  .l-reason-cards {
    margin-top: 40px;
  }
}

.l-reason-card {
  padding: 25px;
  border-radius: 24px;
  border: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
}
@media screen and (max-width: 840px) {
  .l-reason-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}

.l-reason-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 46.255%;
  max-width: 420px;
}
.l-reason-img img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-reason-img {
    width: 62.791%;
    max-width: 400px;
  }
}
@media screen and (max-width: 540px) {
  .l-reason-img {
    width: 94.23%;
    max-width: 245px;
  }
}

.l-reason-text-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-reason-num {
  font-family: "Inter", "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-reason-num {
    font-size: 20px;
    line-height: 20px;
  }
}
@media screen and (max-width: 540px) {
  .p-reason-num {
    font-size: 14px;
    line-height: 14px;
  }
}

.p-reason-text-head {
  margin-top: 14px;
  font-size: 28px;
  font-weight: 700;
  line-height: 39.2px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-reason-text-head {
    font-size: 24px;
    line-height: 33.6px;
  }
}
@media screen and (max-width: 540px) {
  .p-reason-text-head {
    margin-top: 6px;
    font-size: 20px;
    line-height: 28px;
  }
}

.p-reason-text {
  margin-top: 32px;
  font-size: 18px;
  line-height: 32.4px;
}
@media screen and (max-width: 840px) {
  .p-reason-text {
    font-size: 16px;
    line-height: 28.8px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-reason-text {
    margin-top: 30.6px;
  }
}
@media screen and (max-width: 540px) {
  .p-reason-text {
    margin-top: 22px;
  }
}

/* ----- achievements -----*/
.p-achievements {
  padding-top: 104px;
  padding-bottom: 104px;
  background-color: #35CCC6;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-achievements {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 540px) {
  .p-achievements {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.l-achievements-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.p-achievements-item {
  position: relative;
  padding: 25px 84px;
  border-radius: 24px;
  background-color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 33.6px;
}
.p-achievements-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 40px;
  width: 14px;
  height: 24px;
  border-right: 2.5px solid #D8355B;
  border-bottom: 2.5px solid #D8355B;
  -webkit-transform: translateY(-60%) rotate(45deg);
          transform: translateY(-60%) rotate(45deg);
  display: block;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-achievements-item {
    padding: 30px 64px;
    font-size: 18px;
    line-height: 25.2px;
  }
  .p-achievements-item::before {
    left: 24px;
    width: 10px;
    height: 20px;
  }
}
@media screen and (max-width: 540px) {
  .p-achievements-item {
    padding: 30px 24px 30px 45px;
    font-size: 16px;
    line-height: 22.4px;
  }
  .p-achievements-item::before {
    left: 24px;
    width: 7px;
    height: 15px;
  }
}

.p-achievements-caution {
  margin-top: 24px;
  font-size: 16px;
  line-height: 28.8px;
  text-align: center;
}
@media screen and (max-width: 840px) {
  .p-achievements-caution {
    font-size: 16px;
    line-height: 28.8px;
  }
}

/* ----- question -----*/
.p-question {
  padding-top: 104px;
  padding-bottom: 104px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-question {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 540px) {
  .p-question {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.accordion-container {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.accordion-item {
  padding-top: 12px;
  border-top: 1px solid #000;
  overflow: hidden;
}
.accordion-item summary {
  list-style: none;
}
.accordion-item summary::marker, .accordion-item summary::-webkit-details-marker {
  display: none;
}
.accordion-item .accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  cursor: pointer;
  position: relative;
}
.accordion-item .accordion-header .label-q {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 26px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Inter", "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}
.accordion-item .accordion-header .question-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 6px;
  padding-right: 56px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
@media screen and (max-width: 840px) {
  .accordion-item .accordion-header .question-text {
    font-size: 16px;
    line-height: 22.4px;
  }
}
.accordion-item .arrow-icon {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  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;
}
.accordion-item .arrow-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -5px;
  -webkit-transition: border-color 0.5s ease, -webkit-transform 0.5s ease;
  transition: border-color 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, border-color 0.5s ease;
  transition: transform 0.5s ease, border-color 0.5s ease, -webkit-transform 0.5s ease;
}
.accordion-item .accordion-content {
  overflow: hidden;
}
.accordion-item .accordion-content .answer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: none;
}
.accordion-item .accordion-content .answer-text {
  padding: 36px 60px;
  background-color: #F6F6F6;
  border-radius: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
@media screen and (max-width: 840px) {
  .accordion-item .accordion-content .answer-text {
    font-size: 16px;
    line-height: 28.8px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .accordion-item .accordion-content .answer-text {
    padding: 24px 48px;
  }
}
@media screen and (max-width: 540px) {
  .accordion-item .accordion-content .answer-text {
    padding: 24px;
  }
}
.accordion-item[open] .accordion-header {
  border-radius: 8px 8px 0 0;
  border-bottom: none;
  background-color: #fff;
}
.accordion-item[open] .accordion-header::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}
.accordion-item[open] .arrow-icon::before {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  margin-top: 5px;
}
.accordion-item[open] .accordion-content > * {
  border-top: none;
  padding-top: 0;
  padding-bottom: 0;
}

/* ----- flow -----*/
.p-flow {
  padding-top: 104px;
  padding-bottom: 104px;
  background-color: #F6F6F6;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-flow {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 540px) {
  .p-flow {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.l-flow-steps {
  position: relative;
  margin-top: 82px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 63px;
}
.l-flow-steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 116px;
  width: 928px;
  height: 2px;
  background-color: #35CCC6;
  z-index: 1;
}
@media screen and (min-width: 841px) and (max-width: 1500px) {
  .l-flow-steps::before {
    left: 10.105%;
    width: 80.84%;
  }
}
@media screen and (max-width: 840px) {
  .l-flow-steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-flow-steps::before {
    width: 2px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-flow-steps {
    margin-top: 69px;
    gap: 56px;
  }
  .l-flow-steps::before {
    left: 34px;
    height: 92.665%;
  }
}
@media screen and (max-width: 540px) {
  .l-flow-steps {
    margin-top: 15px;
    gap: 20px;
  }
  .l-flow-steps::before {
    left: 29px;
    height: 85%;
  }
}

.l-flow-step {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  z-index: 2;
}
@media screen and (max-width: 840px) {
  .l-flow-step {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
}

.l-flow-step-serial-num {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  background-color: #35CCC6;
}
@media screen and (max-width: 540px) {
  .l-flow-step-serial-num {
    width: 60px;
    height: 60px;
    border-radius: 30px;
  }
}

.p-flow-step {
  font-family: "Inter", "Noto Sans JP";
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
}

.p-flow-step-num {
  font-family: "Inter", "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (max-width: 540px) {
  .p-flow-step-num {
    font-size: 20px;
    line-height: 20px;
  }
}

.l-flow-step-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
@media screen and (max-width: 840px) {
  .l-flow-step-text-container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .l-flow-step-text-container {
    margin-top: 11px;
    gap: 16px;
  }
}
@media screen and (max-width: 540px) {
  .l-flow-step-text-container {
    margin-top: 9px;
    gap: 12px;
  }
}

.p-flow-step-head {
  font-weight: 700;
  line-height: 20px;
}
@media screen and (max-width: 540px) {
  .p-flow-step-head {
    font-size: 16px;
    line-height: 16px;
  }
}

.p-flow-step-text {
  font-size: 16px;
  line-height: 28.8px;
}

/* ----- contact -----*/
.p-contact {
  padding-top: 104px;
  padding-bottom: 104px;
  background-color: #35CCC6;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 540px) {
  .p-contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.p-bg-contact {
  padding-top: 66px;
  padding-bottom: 64px;
  background-color: #fff;
  border-radius: 24px;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .p-bg-contact {
    padding-top: 33px;
    padding-bottom: 33px;
  }
}
@media screen and (max-width: 540px) {
  .p-bg-contact {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.p-contact-text {
  margin-top: 24px;
  font-size: 16px;
  line-height: 28.8px;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .p-contact-text {
    margin-top: 28px;
  }
}

.contact-form-container {
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  max-width: 800px;
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
}
@media screen and (max-width: 540px) {
  .contact-form-container {
    margin-top: 45px;
  }
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}

.form-label-wrapper {
  margin-bottom: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-label-wrapper label {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
}
@media screen and (max-width: 540px) {
  .form-label-wrapper label {
    font-size: 14px;
    line-height: 14px;
  }
}

.input-field-wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

.required-badge {
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea,
input[list] {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

textarea {
  resize: vertical;
}

.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  max-width: 260px;
}
.checkbox-group input[type=checkbox] {
  display: none;
}
.checkbox-group label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 16px;
  background-color: #F6F6F6;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
}
.checkbox-group label::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checkbox-group label::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 23px;
  width: 10px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.checkbox-group label:hover {
  background-color: #fff0f5;
  border-color: #D8355B;
  color: #D8355B;
}
.checkbox-group input[type=checkbox]:checked + label::before {
  background-color: #D8355B;
  border-color: #D8355B;
}
.checkbox-group input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.form-group-privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form-group-privacy .custom-checkbox {
  display: none;
}
.form-group-privacy label[for=privacy] {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 0.9rem;
}
.form-group-privacy label[for=privacy]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  background-color: white;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.1s ease;
  transition: border-color 0.1s ease;
}
.form-group-privacy label[for=privacy]::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 6px;
  -webkit-transform: translateY(-60%) rotate(45deg);
          transform: translateY(-60%) rotate(45deg);
  width: 6px;
  height: 12px;
  border-bottom: 3px solid #007bff;
  border-right: 3px solid #007bff;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}
.form-group-privacy input[id=privacy].custom-checkbox:checked + label[for=privacy]::after {
  opacity: 1;
}
.form-group-privacy input[id=privacy].custom-checkbox:checked + label[for=privacy]::before {
  border-color: #007bff;
}
.form-group-privacy .required-badge {
  margin-left: 5px;
  margin-right: 0;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.error-message {
  color: #dc3545;
  background-color: rgb(250.1265822785, 226.8734177215, 229.1012658228);
  border: 1px solid #dc3545;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
  display: none;
  font-weight: bold;
}

.is-error {
  border-color: #dc3545 !important;
  -webkit-box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
}

.p-contact-btn {
  display: none;
}
@media screen and (max-width: 840px) {
  .p-contact-btn {
    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: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    padding: 16px;
    background-color: #000;
    z-index: 9999;
  }
}
@media screen and (max-width: 540px) {
  .p-contact-btn {
    height: 112px;
  }
}

/* ----- footer -----*/
.footer {
  margin-top: 38px;
}

.l-footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-footer-text {
  margin-top: 16px;
  font-family: "Inter", "Noto Sans JP";
  font-size: 12px;
  font-weight: 300;
  line-height: 12px;
}

.l-footer-img {
  margin-top: 10px;
}