@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/****************************************************************
  *** variables - 変数の定義
  ****************************************************************/
/*** Color ***/
/****************************************************************
  *** mixin - 使い回し可能なスタイルを定義
  ****************************************************************/
/*** Media Query ***/
/*** Contents ***/
/****************************************************************
  *** base - Webサイト全体のベース・リセットしたスタイルの調整
  ****************************************************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-margin-top: 150px;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #191919;
  scroll-margin-top: -150px;
}
body.is-fixed {
  overflow-y: hidden;
}
@media screen and (max-width: 526px) {
  body {
    font-size: 1.4rem;
  }
}

p {
  line-height: 1.75;
}
@media screen and (max-width: 526px) {
  p {
    line-height: 1.6;
  }
}

.en {
  font-family: "Viga", serif;
}

.other {
  font-family: "Poppins", serif;
}

a {
  color: #fff;
  text-decoration: unset;
}

ul,
li {
  list-style-type: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-size: cover;
  vertical-align: bottom;
  object-fit: cover;
}

.wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .wrapper {
    max-width: unset;
    width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: unset;
    width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 526px) {
  .wrapper {
    max-width: unset;
    width: 100%;
    padding: 0 5%;
  }
}

.child_wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 526px) {
  .child_wrapper {
    width: 89.3%;
  }
}

.small_inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 526px) {
  .small_inner {
    width: 89.3%;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 526px) {
  .flex {
    flex-direction: column;
  }
}

a:hover {
  color: #f78a42;
}

.contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}

.sub_current {
  font-weight: 700;
  position: relative;
}
.sub_current::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #E60012;
  position: absolute;
  top: 50%;
  left: 60%;
}

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

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

.c-button {
  width: 174px;
  height: auto;
  box-shadow: 0 6px 9px 0px rgba(0, 0, 0, 0.251);
  border-radius: 50px;
  border: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.c-button:hover, .c-button:focus {
  box-shadow: 0 6px 14px 0px rgba(0, 0, 0, 0.451);
}
@media screen and (max-width: 526px) {
  .c-button {
    width: 100%;
  }
}
.c-button a {
  display: block;
  text-align: center;
  padding-block: 17px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}
.c-button a._txt-green {
  color: #00331D;
}
@media screen and (max-width: 526px) {
  .c-button a._txt-green {
    color: #fff;
  }
}

.c-primaryBtn:before, .c-primaryBtn:focus {
  box-shadow: 0 6px 14px 16px rgba(0, 0, 0, 0.251);
  opacity: 0.7;
}
@media screen and (max-width: 1080px) {
  .c-primaryBtn {
    width: 100%;
  }
}

.c-price-btn {
  width: 156px;
  margin-top: 32px;
  margin-inline: auto;
  background-color: #FF8A00;
  border-radius: 5px;
  box-shadow: unset;
}
.c-price-btn:hover, .c-price-btn:focus {
  box-shadow: 0 6px 8px 0px rgba(0, 0, 0, 0.251);
}
.c-price-btn a {
  padding-block: 15px;
}

.c-form-btn {
  margin-top: 25px;
  width: 100%;
  box-shadow: unset;
  background-color: #ccc;
  border-radius: 5px;
  text-align: center;
  padding-block: 10px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  letter-spacing: 0.2em;
}
.c-form-btn:hover, .c-form-btn:focus {
  box-shadow: 0 6px 8px 0px rgba(0, 0, 0, 0.251);
}

.c-contact-btn {
  margin-top: 64px;
  width: 100%;
  max-width: 500px;
  box-shadow: unset;
  background-color: #ccc;
  border-radius: 20px;
  text-align: center;
  padding-block: 25px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  margin-inline: auto;
  display: block;
  letter-spacing: 0.2em;
}
.c-contact-btn:hover, .c-contact-btn:focus {
  box-shadow: 0 6px 8px 0px rgba(0, 0, 0, 0.251);
}

.c-required {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  padding: 3px 7px;
  background-color: #FF8A00;
  margin-right: 3px;
}

.c-popup-btn {
  max-width: 266px;
  width: 100%;
  margin-inline: auto;
  margin-top: 23px;
  border: 2px solid #333;
  display: block;
}
.c-popup-btn a {
  padding-block: 11px;
  color: #333;
  display: block;
}

.c-mobile-btn {
  width: 132px;
}
.c-mobile-btn:first-of-type a {
  color: #00331D;
}
.c-mobile-btn a {
  font-size: 1.4rem;
  padding-block: 16px;
}

#header {
  transition: all 1s ease-out;
}
#header.header_active {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 299;
  width: 100vw;
  height: auto;
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.251);
}
#header.header_active .p-header__link {
  color: #333;
}
#header.header_active .p-header__logo {
  position: relative;
}
#header.header_active .p-header__logo::after {
  content: "";
  width: 181px;
  height: 100px;
  background-image: url("../images/logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 111;
}
#header.header_active .p-header__logo img {
  opacity: 0;
}
#header.header_active .p-header__bar {
  border-color: #333;
}
#header.header_active .p-header__name {
  color: #333;
}
#header.header_active .p-header__list-item::before {
  background-color: #333;
}

.p-header__logo {
  width: 181px;
  height: auto;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.p-header__logo:hover, .p-header__logo:focus {
  opacity: 0.7;
}
@media screen and (max-width: 526px) {
  .p-header__logo {
    width: 120px;
  }
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1080px) {
  .p-header__navi {
    display: none;
  }
}
.p-header__list {
  display: flex;
  gap: 36px;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 526px) {
  .p-header__list {
    gap: 20px;
  }
}
.p-header__list-item {
  color: inherit;
  font-size: 1.6rem;
  line-height: 32px;
  font-weight: 700;
  position: relative;
  transition: all 0.3s ease;
}
.p-header__list-item:hover a, .p-header__list-item:focus a {
  color: #fff;
}
.p-header__list-item:hover::before, .p-header__list-item:focus::before {
  transform: translateX(-50%) scale(1, 1);
}
.p-header__list-item::before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 8px;
  background-color: #fff;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scale(0, 1);
  transition: all 0.3s ease;
}
@media screen and (max-width: 526px) {
  .p-header__list-item {
    font-size: 1.4rem;
  }
}
.p-header button {
  width: auto;
  height: auto;
}
.p-header__hamburger {
  width: 50px;
  height: 60px;
  cursor: pointer;
  position: absolute;
  top: 3px;
  right: 16px;
  z-index: 333;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  display: none;
  background-color: transparent;
  border-color: transparent;
  padding: 0;
  padding-bottom: 8px;
}
@media screen and (max-width: 1080px) {
  .p-header__hamburger {
    display: flex;
  }
}
.p-header__hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-header__hamburger.active span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-header__hamburger.active .p-header__name {
  display: none;
}
.p-header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  border-top: 2px solid #fff;
  transition: transform 0.3s ease-out;
}
.p-header__hamburger span:first-child {
  transform: translate(-50%, -50%);
  top: 30%;
}
.p-header__hamburger span:nth-child(2) {
  transform: translate(-50%, -50%);
}
.p-header__name {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  transition: transform 0.3s ease-out;
}
.p-header__mobile {
  width: 300px;
  height: 529px;
  background-image: linear-gradient(to bottom, #00BA6B, #075735);
  padding: 23px 13px 53px;
  color: #fff;
  position: fixed;
  top: 74px;
  right: 0;
  z-index: 111;
  transform: translateX(110vw);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.p-header__mobile.is_active {
  transform: translate(0);
  opacity: 1;
}
.p-header__mobile-txt {
  line-height: 1.8;
}
.p-header__mobile-nav {
  margin-top: 36px;
  margin-bottom: 39px;
}
.p-header__mobile-item {
  padding-block: 18px;
  border-bottom: 1px solid #fff;
}
.p-header__mobile-item:first-child {
  border-top: 1px solid #fff;
}
.p-header__mobile-item a {
  line-height: 1;
  font-size: 1.4rem;
  margin-left: 1em;
}

/**********************
*下層ヘッダー
**********************/
.p-child__visual {
  width: 100vw;
  height: 290px;
  background-image: linear-gradient(to right, #00BA6B, #075735);
  text-align: center;
  padding-inline: 20px;
}
@media screen and (max-width: 526px) {
  .p-child__visual {
    height: auto;
    padding-block: 40px;
  }
}
.p-child__title span {
  font-size: 4rem;
  display: inline-block;
  font-weight: 700;
  color: #075735;
  line-height: 1;
  padding: 10px 15px;
  background-color: #fff;
  margin-top: -23px;
}
@media screen and (max-width: 526px) {
  .p-child__title span {
    font-size: 3.2rem;
  }
}
.p-child__text {
  color: #fff;
  line-height: 1.5;
  max-width: 695px;
}
@media screen and (max-width: 526px) {
  .p-child__text {
    font-size: 1.4rem;
  }
}

/**********************
*メインビジュアル
**********************/
.p-main {
  margin-top: 74px;
}
@media screen and (max-width: 768px) {
  .p-main {
    padding-bottom: 50px;
  }
}
.p-main__bg {
  width: 66vw;
  height: 797px;
  background-image: linear-gradient(to bottom, #00BA6B, #075735);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  clip-path: polygon(0 100%, 39% 100%, 100% 0%, 0 0);
}
@media screen and (max-width: 1080px) {
  .p-main__bg {
    width: 100vw;
    height: 1131px;
    clip-path: polygon(0 100%, 30% 100%, 100% 60%, 100% 0%, 0 0);
  }
}
@media screen and (max-width: 526px) {
  .p-main__bg {
    height: 997px;
  }
}
.p-main__image {
  width: 699px;
  height: 402px;
}
@media screen and (max-width: 1080px) {
  .p-main__image {
    width: 100%;
    height: auto;
    max-width: 540px;
    position: absolute;
    top: 432px;
  }
}
@media screen and (max-width: 526px) {
  .p-main__image {
    width: 100%;
    height: auto;
    max-width: 300px;
    position: absolute;
    top: 285px;
  }
}
.p-main__textbox {
  display: flex;
  flex-direction: column;
  height: 403px;
}
@media screen and (max-width: 1080px) {
  .p-main__textbox {
    height: 360px;
  }
}
@media screen and (max-width: 526px) {
  .p-main__textbox {
    height: auto;
    width: 100%;
  }
}
.p-main__headinglv2 {
  font-size: 4rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 33px;
  white-space: nowrap;
}
@media screen and (max-width: 526px) {
  .p-main__headinglv2 {
    font-size: 2.4rem;
    margin-top: 25px;
  }
}
.p-main__copy {
  color: #075735;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  display: inline-block;
  width: fit-content;
  padding: 18px 37px;
  border-radius: 25px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 526px) {
  .p-main__copy {
    font-size: 1.4rem;
    padding: 12px 13px;
  }
}
.p-main__copy::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0 0%, 100% 0%, 50% 100%);
}
.p-main__text {
  color: #fff;
  line-height: 1.5;
  margin-top: 17px;
}
@media screen and (max-width: 526px) {
  .p-main__text {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
  }
}
.p-main__bottom {
  height: 185px;
  margin-top: 41px;
}
.p-main__slide {
  width: 324px;
  flex: 1 1 auto;
  height: auto;
  aspect-ratio: 1.75/1;
  border-radius: 25px;
  flex-shrink: 0;
  overflow: hidden;
}

.p-main__bottom-desc + .p-main__bottom-desc {
  margin-top: 26px;
}

.p-section__catch {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24rem;
  line-height: 1;
  color: rgba(103, 103, 103, 0.302);
  white-space: nowrap;
  font-family: "reross-quadratic", sans-serif;
}
@media screen and (max-width: 992px) {
  .p-section__catch {
    font-size: 20rem;
  }
}
@media screen and (max-width: 526px) {
  .p-section__catch {
    font-size: 11rem;
  }
}
.p-section__title {
  font-size: 3.6rem;
  line-height: 1.4;
  text-align: center;
  position: relative;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 526px) {
  .p-section__title {
    font-size: 3rem;
  }
}
.p-section__title::before {
  content: "";
  width: 70px;
  height: 2px;
  background-color: #00331D;
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
}
.p-section__title span {
  display: block;
  font-size: 1.5rem;
  color: #00331D;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: "Roboto Condensed", sans-serif;
  white-space: no-wrap;
}
@media screen and (max-width: 526px) {
  .p-section__title span {
    font-size: 1.4rem;
  }
}

/**********************
*質問
**********************/
.p-questionier {
  padding-block: 11px 80px;
  background-color: #F7FFFC;
  position: relative;
}
.p-questionier::before {
  content: "";
  width: 208px;
  height: 81px;
  background-color: #F2FFFA;
  position: absolute;
  bottom: -61px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  clip-path: polygon(0 0%, 100% 0%, 50% 100%);
}
@media screen and (max-width: 526px) {
  .p-questionier::before {
    bottom: -40px;
    width: 126px;
    height: 56px;
  }
}
.p-questionier__card {
  width: 100%;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .p-questionier__card {
    max-width: 360px;
  }
}
.p-questionier__copy {
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: inline-block;
  padding: 9px 7px;
  background-color: #333333;
  text-align: center;
}
@media screen and (max-width: 526px) {
  .p-questionier__copy {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.p-questionier__image {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  margin-top: 7px;
}
@media screen and (max-width: 526px) {
  .p-questionier__image {
    flex-shrink: 1;
  }
}
.p-questionier__image img {
  background-size: contain;
}
@media screen and (max-width: 1080px) {
  .p-questionier__text {
    width: 100%;
  }
}
.p-questionier__text-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 19px;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 526px) {
  .p-questionier__text-title {
    font-size: 1.8rem;
  }
}
.p-questionier__text-desc {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 11px;
}

/**********************
*CTA
**********************/
.p-cta {
  width: 100vw;
  height: auto;
  background-image: linear-gradient(to right, #00BA6B, #075735);
  padding-block: 86px 24px;
  text-align: center;
}
@media screen and (max-width: 526px) {
  .p-cta {
    padding-block: 56px 24px;
  }
}
.p-cta__title span {
  font-weight: 700;
  font-size: 3.2rem;
  color: #075735;
  line-height: 1;
  display: inline-block;
  padding: 10px 15px;
  background-color: #fff;
}
@media screen and (max-width: 526px) {
  .p-cta__title span {
    font-size: 2.4rem;
  }
}
.p-cta__title span + span {
  margin-left: -21px;
}
@media screen and (max-width: 992px) {
  .p-cta__title span + span {
    margin-top: 15px;
  }
}
@media screen and (max-width: 526px) {
  .p-cta__title span + span {
    margin-left: 0;
  }
}
.p-cta__title + .p-cta__title {
  margin-top: 13px;
}
.p-cta__text {
  line-height: 1.5;
  color: #fff;
  margin-top: 15px;
}
@media screen and (max-width: 526px) {
  .p-cta__text {
    font-size: 1.4rem;
  }
}

/**********************
*メニュー
**********************/
.p-feature {
  padding-block: 22px 111px;
  background-color: #F7FFFC;
  position: relative;
}
@media screen and (max-width: 526px) {
  .p-feature {
    padding-block: 24px;
  }
}
.p-feature__image {
  width: 544px;
  height: 306px;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .p-feature__image {
    width: 100%;
  }
}
.p-feature__image img {
  object-fit: contain;
}
.p-feature__bg {
  font-size: 9.6rem;
  font-weight: 700;
  line-height: 1;
  color: #CBF7E6;
  position: absolute;
  left: 0;
  top: 45px;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 992px) {
  .p-feature__bg {
    left: 20px;
    top: -58px;
  }
}
.p-feature__text {
  width: calc(100% - 544px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 21px;
  height: 329px;
  position: relative;
  gap: 30px;
  padding-inline: 30px 30px;
}
@media screen and (max-width: 992px) {
  .p-feature__text {
    width: 100%;
    max-width: 600px;
    height: unset;
    padding-inline: 0px;
  }
}
.p-feature__text-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .p-feature__text-title {
    white-space: normal;
  }
}
.p-feature__text-desc {
  max-width: 372px;
  line-height: 1.5;
}

/**********************
*ボイス
**********************/
.p-voice {
  padding-block: 22px 175px;
  background-color: #E6F8F1;
  position: relative;
}
@media screen and (max-width: 526px) {
  .p-voice {
    padding-block: 64px;
  }
}
.p-voice__slide {
  margin-top: 137px;
}
@media screen and (max-width: 1080px) {
  .p-voice__slide {
    margin-inline: 40px;
    margin-right: 80px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 526px) {
  .p-voice__slide {
    max-width: 320px;
    margin-top: 44px;
  }
}
.p-voice__slide-block {
  width: 95%;
  max-width: 915px;
  height: 100%;
  position: relative;
  margin-inline: auto;
}
.p-voice__card {
  width: 262px;
  height: auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 30px 30px;
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (max-width: 526px) {
  .p-voice__card {
    max-width: 320px;
  }
}
.p-voice__card-top {
  display: flex;
  gap: 19px;
}
.p-voice__card-txt {
  line-height: 1.2;
  font-weight: 700;
}
.p-voice__card-image {
  width: 41px;
  height: 41px;
  position: relative;
  z-index: 2;
}
.p-voice__card-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.p-voice__card-image::before {
  content: "";
  width: 57px;
  height: 57px;
  background-color: #F5F0C5;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.p-voice__card-image img {
  object-fit: contain;
}
.p-voice__title {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  padding: 3px 5px;
  background-color: #FF8A00;
  margin-top: 22px;
  margin-left: -1em;
}
.p-voice__text {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 17px;
  margin-left: -1em;
}
.p-voice__image {
  flex-shrink: 0;
  width: 100%;
  max-width: 700px;
  height: auto;
  aspect-ratio: 7/5;
}
@media screen and (max-width: 526px) {
  .p-voice__image {
    flex-shrink: 1;
  }
}
@media screen and (max-width: 1080px) {
  .p-voice__desc {
    max-width: 700px;
    margin-inline: auto;
  }
}

/**********************
*フロー
**********************/
.p-flow {
  padding-block: 30px 90px;
  position: relative;
}
@media screen and (max-width: 526px) {
  .p-flow {
    padding-block: 64px;
  }
}
.p-flow__info {
  width: 246px;
  height: 214px;
  padding: 28px 16px 29px 29px;
  background-color: #DAFFF1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-flow__info {
    display: flex;
    width: 100%;
    height: auto;
    gap: 23px;
    padding-right: 20px;
  }
}
.p-flow__info::before {
  content: "";
  height: 100%;
  width: 19px;
  background-color: #DAFFF1;
  position: absolute;
  right: -19px;
  top: 0;
  z-index: 3;
  clip-path: polygon(0 0%, 100% 50%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .p-flow__info::before {
    transform: rotate(90deg);
    bottom: -40px;
    height: 62px;
    width: 19px;
    top: unset;
    right: unset;
    left: 42px;
  }
}
.p-flow__info:nth-child(2) {
  background-color: #A4FAD8;
}
.p-flow__info:nth-child(2)::before {
  background-color: #A4FAD8;
}
.p-flow__info:nth-child(3) {
  background-color: #76F6C5;
}
.p-flow__info:nth-child(3)::before {
  background-color: #76F6C5;
}
.p-flow__info:nth-child(4) {
  background-color: #3AEFA2;
}
.p-flow__info:nth-child(4)::before {
  content: none;
}
@media screen and (max-width: 992px) {
  .p-flow__info:nth-child(4)::before {
    background-color: #3AEFA2;
    content: "";
  }
}
@media screen and (max-width: 768px) {
  .p-flow__info:nth-child(4)::before {
    content: none;
  }
}
.p-flow__info-flex {
  display: flex;
  margin-top: 93px;
}
@media screen and (max-width: 992px) {
  .p-flow__info-flex {
    flex-wrap: wrap;
    width: fit-content;
    margin-inline: auto;
    justify-content: center;
  }
}
.p-flow__info-copy {
  font-size: 2rem;
  line-height: 1;
  color: #BBBBBB;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-flow__info-copy {
    white-space: nowrap;
  }
}
.p-flow__info-title {
  font-size: 2rem;
  line-height: 1;
  color: #00331D;
  font-weight: 700;
  margin-top: 33px;
}
@media screen and (max-width: 768px) {
  .p-flow__info-title {
    margin-top: 0;
  }
}
.p-flow__info-text {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #333333;
  margin-top: 20px;
}
.p-flow__text {
  margin-top: 50px;
  line-height: 1.5;
  text-align: center;
}

/**********************
*プライス
**********************/
.p-price {
  padding-block: 30px 66px;
  position: relative;
}
@media screen and (max-width: 526px) {
  .p-price {
    padding-block: 64px;
  }
}
.p-price__title {
  margin-top: 47px;
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 526px) {
  .p-price__title {
    font-size: 1.6rem;
  }
}
.p-price__card {
  max-width: 309px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  background-color: #F1F1F1;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .p-price__card {
    max-width: 500px;
  }
}
.p-price__card:nth-child(2) .p-price__top {
  background-color: #00BA6B;
}
.p-price__catch {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  padding-block: 6px;
  text-align: center;
  background-color: #FF8A00;
  transform: rotate(45deg);
  position: absolute;
  right: -60px;
  top: 28px;
  width: 200px;
}
.p-price__top {
  width: 100%;
  height: auto;
  padding-block: 42px 32px;
  text-align: center;
  color: #fff;
  background-color: #075735;
  position: relative;
}
.p-price__top-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
}
.p-price__top-text {
  margin-top: 17px;
  font-weight: 700;
  line-height: 1;
}
.p-price__content {
  padding-block: 35px 47px;
  text-align: center;
  padding-inline: 43px;
}
.p-price__en {
  font-weight: 700;
  font-size: 6rem;
  line-height: 0.7;
  position: relative;
  display: inline-block;
  margin-left: 17px;
}
.p-price__en span {
  font-size: 2rem;
  position: absolute;
  top: 0px;
  left: -17px;
}
.p-price__desc {
  line-height: 1;
  position: relative;
  margin-top: 27px;
}
.p-price__list {
  margin-top: 61px;
}
.p-price__list-txt {
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
  padding-bottom: 18px;
  width: 100%;
  text-align: center;
  border-bottom: 1px dashed #333;
  margin-top: 18px;
  white-space: nowrap;
}
.p-price__list-txt:last-child {
  border: none;
}
.p-price__subtext {
  margin-top: 45px;
}
@media screen and (max-width: 992px) {
  .p-price__subtext {
    width: fit-content;
    margin-inline: auto;
  }
}
.p-price__subtext li {
  font-size: 1.4rem;
  line-height: 1.5;
  list-style: disc inside;
}
.p-price__text {
  margin-top: 64px;
  line-height: 1.5;
  text-align: center;
}

/**********************
*FAQ
**********************/
.p-faq {
  padding-block: 26px 7px;
  position: relative;
  background-color: #E6F8F1;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding-block: 26px 26px;
  }
}
.p-faq__tab-button {
  width: 290px;
  box-shadow: unset;
}
.p-faq__tab-button.active {
  background-color: #FF8A00;
  border-color: #FF8A00;
  color: #fff;
}
.p-faq__tab-button.active a {
  color: inherit;
}
.p-faq__tab-button a {
  padding-block: 7px;
  font-size: 2rem;
}
.p-faq__content {
  position: relative;
}
.p-faq__content-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  visibility: hidden;
  z-index: -1;
}
.p-faq__content-1.is_active {
  visibility: visible;
  animation: tabAnimation 0.5s ease-in-out forwards;
  z-index: 3;
}
.p-faq__content-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.p-faq__content-2.is_active {
  visibility: visible;
  animation: tabAnimation 0.5s ease-in-out forwards;
  z-index: 1;
}
@keyframes tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-faq__qa {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border: 2px solid #FF8A00;
}
.p-faq__q {
  height: 60px;
  width: 100%;
  background-color: #FF8A00;
  color: #fff;
  padding-inline: 50px 48px;
  padding-block: 12px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .p-faq__q {
    padding-inline: 30px 45px;
    gap: 15px;
    height: auto;
  }
}
@media screen and (max-width: 526px) {
  .p-faq__q {
    padding-inline: 10px 39px;
  }
}
.p-faq__q-title {
  font-size: 2rem;
  font-weight: 700;
  color: #FF8A00;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
}
.p-faq__q-txt {
  font-weight: 700;
  line-height: 1.5;
}
.p-faq__q-icon {
  width: 30px;
  height: 30px;
  border: 3px solid #fff;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 27px;
  color: transparent;
  font-weight: 700;
  line-height: 1;
  font-size: 4rem;
}
.p-faq__q-icon.active span:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.p-faq__q-icon span {
  display: block;
  width: 80%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 22;
  transition: all 0.3s ease;
}
.p-faq__q-icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (max-width: 992px) {
  .p-faq__q-icon {
    right: 12px;
  }
}
@media screen and (max-width: 526px) {
  .p-faq__q-icon {
    right: 6px;
    width: 25px;
    height: 25px;
  }
}
.p-faq__a {
  height: auto;
  width: 100%;
  background-color: #fff;
  color: #333;
  padding-inline: 50px 48px;
  padding-block: 18px;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 992px) {
  .p-faq__a {
    padding-inline: 30px 25px;
    gap: 15px;
  }
}
@media screen and (max-width: 526px) {
  .p-faq__a {
    padding-inline: 10px 15px;
  }
}
.p-faq__a-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 50%;
  background-color: #FF8A00;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
}
.p-faq__a-txt {
  line-height: 1.5;
  color: #333;
}
.p-faq__a-icon {
  display: none;
}
.p-faq__text {
  margin-top: 64px;
  line-height: 1.5;
  text-align: center;
}

/**********************
*バナー
**********************/
.p-banner {
  padding-block: 35px;
  position: relative;
  width: 100vw;
  height: 592px;
  background-image: linear-gradient(to right, #00BA6B, #075735);
  padding-inline: 20px;
}
@media screen and (max-width: 992px) {
  .p-banner {
    height: auto;
    padding-block: 40px;
  }
}
@media screen and (max-width: 526px) {
  .p-banner {
    padding-block: 64px;
  }
}
.p-banner__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 21px;
}
@media screen and (max-width: 992px) {
  .p-banner__flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-banner__image {
  width: 477px;
  height: 374px;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .p-banner__image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    max-width: 400px;
  }
}
.p-banner__image img {
  object-fit: contain;
}
.p-banner__block {
  display: flex;
  flex-direction: column;
  margin-top: -19px;
}
@media screen and (max-width: 992px) {
  .p-banner__block {
    align-items: center;
    max-width: 570px;
    width: 100%;
  }
}
.p-banner__title span {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
  position: relative;
  display: inline-block;
  z-index: 2;
  line-height: 1;
  width: fit-content;
}
@media screen and (max-width: 526px) {
  .p-banner__title span {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
.p-banner__title span::before {
  content: "";
  width: 100%;
  height: 8px;
  background-color: #00BA6B;
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: -1;
}
.p-banner__txt {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 34px;
}
.p-banner__txt.p-banner__txt {
  margin-top: 28px;
}
.p-banner__txt:last-of-type {
  margin-bottom: 65px;
}

/**********************
*フッター
**********************/
.p-footer__link {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  max-width: 500px;
}
@media screen and (max-width: 992px) {
  .p-footer__link {
    justify-content: center;
  }
}
@media screen and (max-width: 526px) {
  .p-footer__link {
    flex-direction: column;
    align-items: center;
  }
}
.p-footer__link-item {
  position: relative;
  transition: all 0.3s ease;
}
.p-footer__link-item:hover a, .p-footer__link-item:focus a {
  color: #333;
}
.p-footer__link-item:hover::before, .p-footer__link-item:focus::before {
  transform: translateX(-50%) scale(1, 1);
}
.p-footer__link-item::before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 8px;
  background-color: #333;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scale(0, 1);
  transition: all 0.3s ease;
}
.p-footer__link-item a {
  font-weight: 700;
  line-height: 1;
  color: #333;
}
@media screen and (max-width: 992px) {
  .p-footer__link-item a {
    font-size: 1.6rem;
  }
}
.p-footer__link-item a:hover::before, .p-footer__link-item a:focus::before {
  transform: translateX(-50%) scale(1, 1);
}
@media screen and (max-width: 526px) {
  .p-footer__btn {
    width: 100%;
  }
}
.p-footer__logo {
  width: 181px;
  transition: opacity 0.3s ease;
}
.p-footer__logo:hover, .p-footer__logo:focus {
  opacity: 0.7;
}
.p-footer__copyright {
  margin-top: 26px;
}
@media screen and (max-width: 992px) {
  .p-footer__copyright {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}
.p-footer__copyright small {
  font-size: 1.2rem;
}

/**********************
*モーダル
**********************/
.p-popup {
  width: 315px;
  height: auto;
  border: 4px solid #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.251);
  background-image: linear-gradient(to right, #00BA6B, #075735);
  padding-bottom: 16px;
  position: fixed;
  bottom: 100px;
  left: 40px;
  z-index: 111;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s ease;
}
.p-popup.active {
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (max-width: 526px) {
  .p-popup.active {
    transform: translateY(0px) scale(0.7);
    left: -44px;
    bottom: 0px;
  }
}
.p-popup__close {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 2px solid #333;
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 112;
  cursor: pointer;
}
.p-popup__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 11px;
  background-color: #333;
}
.p-popup__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-popup__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-popup__top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-popup__image {
  width: 113px;
  height: 64px;
}
.p-popup__text {
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

.p-pagetop {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #FF8A00;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 111;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.p-pagetop:hover, .p-pagetop:focus {
  box-shadow: 0 6px 8px 0px rgba(0, 0, 0, 0.251);
}
@media screen and (max-width: 526px) {
  .p-pagetop {
    width: 60px;
    height: 60px;
    right: 9px;
    bottom: 50px;
  }
}
.p-pagetop span {
  width: 22px;
  height: 22px;
  border-top: 8px solid #fff;
  border-right: 8px solid #fff;
  transform: rotate(-45deg);
}
@media screen and (max-width: 526px) {
  .p-pagetop span {
    border-width: 6px;
  }
}

/**********************
*　ホワイトペッパー
**********************/
.p-white-paper {
  padding-block: 76px 127px;
  position: relative;
  background-color: #F7FFFC;
}
@media screen and (max-width: 526px) {
  .p-white-paper {
    padding-block: 64px;
  }
}
.p-white-paper__txt {
  line-height: 1.5;
}
.p-white-paper__image {
  margin-top: 31px;
  position: relative;
  margin-bottom: 113px;
}
@media screen and (max-width: 526px) {
  .p-white-paper__image {
    margin-bottom: 29px;
  }
}
.p-white-paper__image-item {
  width: 268px;
  height: 151px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 526px) {
  .p-white-paper__image-item {
    width: 100%;
    height: auto;
  }
}
.p-white-paper__image-item:last-child {
  position: absolute;
  top: 47px;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 526px) {
  .p-white-paper__image-item:last-child {
    position: static;
  }
}
.p-white-paper__text {
  line-height: 1.5;
  text-align: left;
}
.p-white-paper__text:last-of-type {
  font-size: 1.4rem;
}
.p-white-paper__text.p-white-paper__text {
  margin-top: 27px;
  text-align: left;
}
.p-white-paper__num {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #075735;
  margin-top: 15px;
}
.p-white-paper__form-txt {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 28px;
  letter-spacing: 0.15em;
}
.p-white-paper__form-text {
  font-size: 1.2rem;
  line-height: 1;
}
.p-white-paper__form-text a {
  color: #075735;
  text-decoration: underline;
}
.p-white-paper__form-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-white-paper__form-text2 {
  margin-top: 26px;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.p-white-paper__input {
  margin-bottom: 10px;
}
.p-white-paper__input:last-of-type {
  margin-bottom: 24px;
}
.p-white-paper__link {
  font-size: 1.4rem;
  text-decoration: underline;
  line-height: 1;
  color: #023E78;
  white-space: nowrap;
}
.p-white-paper input[type=text],
.p-white-paper input[type=email],
.p-white-paper input[type=tel],
.p-white-paper select {
  width: 100%;
  height: 44px;
  padding: 10px 13px;
  border: 1px solid #BCBCBC;
  border-radius: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
.p-white-paper select {
  color: #999;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.p-white-paper select:focus {
  border: 1px solid #075735;
}
.p-white-paper select option {
  color: #999;
}
.p-white-paper .select-input {
  position: relative;
}
.p-white-paper .select-input::before {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  right: 14px;
  top: 38%;
}
.p-white-paper ::placeholder {
  color: #999;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.p-white-paper__info {
  width: 246px;
  height: 214px;
  padding: 20px 1px 29px 20px;
  background-color: #DAFFF1;
  position: relative;
}
.p-white-paper__info::before {
  content: "";
  height: 100%;
  width: 19px;
  background-color: #DAFFF1;
  position: absolute;
  right: -19px;
  top: 0;
  z-index: 3;
  clip-path: polygon(0 0%, 100% 50%, 0% 100%);
}
.p-white-paper__info:nth-child(2) {
  background-color: #A4FAD8;
}
.p-white-paper__info:nth-child(2)::before {
  background-color: #A4FAD8;
}
.p-white-paper__info:nth-child(3) {
  background-color: #76F6C5;
}
.p-white-paper__info:nth-child(3)::before {
  background-color: #76F6C5;
}
.p-white-paper__info:nth-child(4) {
  background-color: #3AEFA2;
}
.p-white-paper__info:nth-child(4)::before {
  content: none;
}
.p-white-paper__info-flex {
  display: flex;
  margin-top: 86px;
}
.p-white-paper__info-copy {
  font-size: 2rem;
  line-height: 1;
  color: #BBBBBB;
  font-weight: 700;
}
.p-white-paper__info-title {
  font-size: 2rem;
  line-height: 1;
  color: #00331D;
  font-weight: 700;
  margin-top: 35px;
}
.p-white-paper__info-text {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #333333;
  margin-top: 20px;
}
.p-white-paper__text {
  margin-top: 64px;
  line-height: 1.5;
  text-align: center;
}

/**********************
*　利用規約
**********************/
.p-terms {
  padding-block: 90px 97px;
  position: relative;
  background-color: #F7FFFC;
}
@media screen and (max-width: 526px) {
  .p-terms {
    padding-block: 64px;
  }
}
.p-terms__block {
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 38px;
  margin-left: 0;
  width: 100%;
}
.p-terms__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 526px) {
  .p-terms__title {
    font-size: 2rem;
  }
}
.p-terms__text {
  line-height: 1.5;
}
@media screen and (max-width: 526px) {
  .p-terms__text {
    font-size: 1.4rem;
  }
}
.p-terms__item {
  list-style: decimal;
  line-height: 1.5;
  margin-left: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 526px) {
  .p-terms__item {
    font-size: 1.4rem;
  }
}

/**********************
*　ポリシー
**********************/
.p-policy {
  padding-block: 90px 97px;
  position: relative;
  background-color: #F7FFFC;
}
@media screen and (max-width: 526px) {
  .p-policy {
    padding-block: 64px;
  }
}
.p-policy__block {
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 38px;
  margin-left: 0;
  width: 100%;
}
.p-policy__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 526px) {
  .p-policy__title {
    font-size: 2rem;
  }
}
.p-policy__text {
  line-height: 1.5;
}
@media screen and (max-width: 526px) {
  .p-policy__text {
    font-size: 1.4rem;
  }
}
.p-policy__item {
  list-style: decimal;
  line-height: 1.5;
  margin-left: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 526px) {
  .p-policy__item {
    font-size: 1.4rem;
  }
}

/**********************
*　コンタクト
**********************/
.p-contact {
  padding-block: 0px 64px;
  position: relative;
  background-color: #F7FFFC;
  /* 子のinput:checked を持つ親 .item に色をつける */
}
@media screen and (max-width: 526px) {
  .p-contact {
    padding-block: 64px;
  }
}
.p-contact__top {
  padding: 27px 13px 0px;
  width: 100%;
  background-color: #F7FFFC;
}
@media screen and (max-width: 992px) {
  .p-contact__top {
    padding-bottom: 30px;
  }
}
.p-contact__txt {
  line-height: 1.5;
}
.p-contact__text {
  line-height: 1.5;
  text-align: left;
}
.p-contact .p-thanks__text {
  line-height: 1.5;
}
.p-contact__form-txt {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 37px;
}
.p-contact__form-text {
  font-size: 1.2rem;
  line-height: 1;
}
.p-contact__form-text a {
  color: #075735;
  text-decoration: underline;
}
.p-contact__form-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-contact__form-text2 {
  margin-top: 26px;
  font-size: 1.4rem;
  line-height: 1;
}
.p-contact__input {
  margin-bottom: 16px;
  padding-block: 0px 0px;
}
.p-contact__input:last-of-type {
  margin-bottom: 0px;
}
.p-contact__name {
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
.p-contact__link {
  font-size: 1.4rem;
  text-decoration: underline;
  line-height: 1;
  color: #023E78;
}
.p-contact input[type=text],
.p-contact input[type=email],
.p-contact input[type=tel],
.p-contact input[type=url],
.p-contact select {
  width: 100%;
  height: 48px;
  padding: 12px 13px;
  border: 1px solid #BCBCBC;
  border-radius: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
.p-contact input[type=text]._half,
.p-contact input[type=email]._half,
.p-contact input[type=tel]._half,
.p-contact input[type=url]._half,
.p-contact select._half {
  width: 53%;
}
.p-contact input[type=radio],
.p-contact input[type=checkbox] {
  width: 1px;
  height: 1px;
  opacity: 0;
}
.p-contact .p-contact__radio-label:has(input[type=radio]:focus)::before,
.p-contact .p-contact__radio-label1:has(input[type=radio]:focus)::before,
.p-contact .p-contact__checkbox-label:has(input[type=checkbox]:focus)::before {
  border: 2px solid #c521af;
  background-color: transparent;
  opacity: 1;
}
.p-contact ::placeholder {
  color: #999;
  line-height: 1.5;
}
.p-contact__sub-text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-left: 2.6em;
}
.p-contact__radio-block {
  margin-top: 12px;
}
.p-contact__radio-label1, .p-contact__radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -1px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-contact__radio-label1, .p-contact__radio-label {
    margin-bottom: 6px;
  }
}
.p-contact__radio-label1::before, .p-contact__radio-label::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50px;
  background-color: #fff;
  border: 1px solid #BCBCBC;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-contact__radio-label1::after, .p-contact__radio-label::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: #FF8A00;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-contact__radio-label1.active::after, .p-contact__radio-label.active::after {
  opacity: 1;
}
.p-contact__radio-name {
  line-height: 1.5;
  margin-left: 10px;
}
.p-contact__checkbox-block {
  margin-top: 17px;
}
.p-contact__checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -1px;
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .p-contact__checkbox-label {
    margin-bottom: 6px;
  }
}
.p-contact__checkbox-label::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 1px solid #BCBCBC;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-contact__checkbox-label::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #FF8A00;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-contact__checkbox-label.active::after {
  opacity: 1;
}
.p-contact__checkbox-name {
  line-height: 1.5;
}
.p-contact__info {
  width: 246px;
  height: 214px;
  padding: 20px 1px 29px 20px;
  background-color: #DAFFF1;
  position: relative;
}
.p-contact__info::before {
  content: "";
  height: 100%;
  width: 19px;
  background-color: #DAFFF1;
  position: absolute;
  right: -19px;
  top: 0;
  z-index: 3;
  clip-path: polygon(0 0%, 100% 50%, 0% 100%);
}
.p-contact__info:nth-child(2) {
  background-color: #A4FAD8;
}
.p-contact__info:nth-child(2)::before {
  background-color: #A4FAD8;
}
.p-contact__info:nth-child(3) {
  background-color: #76F6C5;
}
.p-contact__info:nth-child(3)::before {
  background-color: #76F6C5;
}
.p-contact__info:nth-child(4) {
  background-color: #3AEFA2;
}
.p-contact__info:nth-child(4)::before {
  content: none;
}
.p-contact__info-flex {
  display: flex;
  margin-top: 86px;
}
.p-contact__info-copy {
  font-size: 2rem;
  line-height: 1;
  color: #BBBBBB;
  font-weight: 700;
}
.p-contact__info-title {
  font-size: 2rem;
  line-height: 1;
  color: #00331D;
  font-weight: 700;
  margin-top: 35px;
}
.p-contact__info-text {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #333333;
  margin-top: 20px;
}
.p-contact__text {
  margin-top: 64px;
  line-height: 1.5;
  text-align: center;
}

.swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #00331D;
  top: 64%;
  left: 0px;
}
@media screen and (max-width: 992px) {
  .swiper-button-prev {
    left: 1px;
  }
}
@media screen and (max-width: 526px) {
  .swiper-button-prev {
    top: 53%;
  }
}
.swiper-button-prev::after {
  content: "";
  width: 25px;
  height: 11px;
  background-color: #E6F8F1;
  transform: translateX(-7px);
}
.swiper-button-prev::before {
  content: "";
  width: 25px;
  height: 20px;
  background-color: #E6F8F1;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  transform: rotate(-90deg) translateY(5px);
}

.swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #00331D;
  top: 64%;
  right: 0%;
}
@media screen and (max-width: 992px) {
  .swiper-button-next {
    right: -3%;
  }
}
@media screen and (max-width: 526px) {
  .swiper-button-next {
    top: 53%;
  }
}
.swiper-button-next::after {
  content: "";
  width: 25px;
  height: 11px;
  background-color: #E6F8F1;
  transform: translateX(-13px);
}
.swiper-button-next::before {
  content: "";
  width: 25px;
  height: 20px;
  background-color: #E6F8F1;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  transform: rotate(90deg) translateY(-19px);
}

.swiper {
  width: 100%;
  max-width: 915px;
  padding-inline: 42px;
  height: auto;
}

.swiper-pagination.swiper-pagination-horizontal {
  bottom: -14%;
}
@media screen and (max-width: 526px) {
  .swiper-pagination.swiper-pagination-horizontal {
    bottom: -10%;
  }
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.p-scale-bg {
  width: 80px;
  height: 80px;
  background-color: rgb(236, 229, 180);
  border-radius: 50%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-out;
}
.p-scale-bg.active {
  transform: translate(-50%, -50%) scale(40, 40);
  z-index: 221;
  opacity: 1;
  visibility: visible;
}

.l-header {
  padding-block: 24px 24px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.l-header.l-child__header {
  position: static;
}
.l-header.l-child__header .p-header__link {
  color: #333;
}
.l-header.l-child__header .p-header__bar {
  border-color: #333;
}
.l-header.l-child__header .p-header__name {
  color: #333;
}
.l-header.l-child__header .p-header__list-item::before {
  background-color: #333;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1206px;
  width: 100%;
  padding-inline: 20px;
}
.l-header__left {
  display: flex;
  align-items: center;
  gap: 46px;
}
@media screen and (max-width: 1080px) {
  .l-header__right {
    display: none;
  }
}

.l-button__flex {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 526px) {
  .l-button__flex {
    width: 100%;
  }
}

/**********************
*下層ヘッダー
**********************/
.l-child__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 29px;
  width: 100%;
  height: 100%;
}

/**********************
*メインビジュアル
**********************/
.l-main__inner {
  width: 100%;
  max-width: 1606px;
  padding-top: 64px;
  padding-inline: 0px;
  margin-inline: auto;
}
@media screen and (max-width: 526px) {
  .l-main__inner {
    padding-top: 10px;
    padding-inline: 0px;
  }
}
.l-main__top {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
  padding-inline: 57px;
  gap: 26px;
}
@media screen and (max-width: 1080px) {
  .l-main__top {
    flex-direction: column-reverse;
    gap: 45px;
  }
}
@media screen and (max-width: 526px) {
  .l-main__top {
    padding-inline: 20px;
    align-items: flex-start;
  }
}
.l-main__bottom {
  padding-block: 120px 110px;
  position: relative;
  height: 185px;
  margin-top: 42px;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}
@media screen and (max-width: 1080px) {
  .l-main__bottom {
    margin-top: 414px;
  }
}
@media screen and (max-width: 526px) {
  .l-main__bottom {
    margin-top: 32px;
  }
}
.l-main__bottom-flex {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 44px;
  animation: slider-animation 20s linear infinite;
  overflow-x: hidden;
}
@media screen and (max-width: 526px) {
  .l-main__bottom-flex {
    animation: slider-animation2 10s linear infinite;
  }
}
.l-main__bottom-flex2 {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 44px;
  animation: slider-animation2 20s linear infinite;
  overflow-x: hidden;
}
@media screen and (max-width: 526px) {
  .l-main__bottom-flex2 {
    animation: slider-animation2 10s linear infinite;
  }
}
@media screen and (max-width: 526px) {
  .l-main__bottom {
    padding-block: 48px 83px;
  }
}

@keyframes slider-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slider-animation2 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
/**********************
*質問
**********************/
.l-questionier__inner {
  max-width: 1029px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 32px;
}
@media screen and (max-width: 526px) {
  .l-questionier__inner {
    padding-inline: 20px;
  }
}
.l-questionier__flex {
  display: flex;
  justify-content: space-between;
  margin-top: 76px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .l-questionier__flex {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
}

/**********************
*メニュー
**********************/
.l-feature__inner {
  max-width: 1024px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 32px;
}
@media screen and (max-width: 992px) {
  .l-feature__inner {
    padding-inline: 32px;
  }
}
@media screen and (max-width: 526px) {
  .l-feature__inner {
    padding-inline: 24px;
  }
}
.l-feature__flex {
  display: flex;
  margin-top: 87px;
  height: fit-content;
}
@media screen and (max-width: 992px) {
  .l-feature__flex {
    margin-top: 45px;
  }
}
.l-feature__flex:first-of-type {
  margin-top: 91px;
}
@media screen and (max-width: 992px) {
  .l-feature__flex:first-of-type {
    margin-top: 30px;
  }
}
.l-feature__flex:nth-child(odd) {
  flex-direction: row-reverse;
  margin-top: 92px;
}
@media screen and (max-width: 1080px) {
  .l-feature__flex:nth-child(odd) {
    flex-direction: column;
    align-items: center;
  }
}
.l-feature__flex:nth-of-type(4) {
  margin-top: 97px;
}
.l-feature__flex:nth-of-type(5) {
  margin-top: 103px;
}
@media screen and (max-width: 1080px) {
  .l-feature__flex {
    flex-direction: column;
    align-items: center;
    gap: 68px;
  }
}

/**********************
*ホイス
**********************/
.l-voice__inner {
  max-width: 1024px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 32px;
}
@media screen and (max-width: 526px) {
  .l-voice__inner {
    padding-inline: 10px;
  }
}

/**********************
*フロー
**********************/
.l-flow__inner {
  max-width: 1048px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 32px;
}

/**********************
*プライス
**********************/
.l-price__inner {
  max-width: 1048px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 32px;
}
.l-price__flex {
  display: flex;
  margin-top: 67px;
  gap: 26px;
}
@media screen and (max-width: 1080px) {
  .l-price__flex {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 56px;
  }
}
@media screen and (max-width: 526px) {
  .l-price__flex {
    margin-top: 34px;
  }
}

/**********************
*FAQ
**********************/
.l-faq__inner {
  max-width: 1024px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}
.l-faq__tab {
  display: flex;
  gap: 24px;
  margin-top: 54px;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 992px) {
  .l-faq__tab {
    flex-direction: column;
    align-items: center;
  }
}
.l-faq__content {
  margin-top: 49px;
  width: 100%;
  height: auto;
  position: relative;
  height: 450px;
}

/**********************
*コンタクト
**********************/
.l-banner__inner {
  max-width: 984px;
  width: 100%;
  margin-inline: auto;
  background-color: #fff;
  padding-block: 74px;
  border-radius: 20px;
  padding-right: 58px;
}
@media screen and (max-width: 992px) {
  .l-banner__inner {
    padding-inline: 20px;
    padding-block: 34px;
  }
}

/**********************
*フッター
**********************/
.l-footer {
  padding-block: 68px 77px;
  background-color: #F1F1F1;
}
@media screen and (max-width: 992px) {
  .l-footer {
    padding-block: 48px 20px;
  }
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1120px;
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 992px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.l-footer__block {
  display: flex;
  gap: 65px;
}
@media screen and (max-width: 992px) {
  .l-footer__block {
    flex-direction: column;
    align-items: center;
  }
}

/**********************
*モーダル
**********************/
.l-contact__modal-inner {
  padding-block: 32px;
  padding-inline: 62px;
  height: 100%;
  max-height: 920px;
  position: relative;
  overflow-y: scroll;
}

/**********************
*　ホワイトペッパー
**********************/
.l-white-paper__inner {
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}
.l-white-paper__flex {
  display: flex;
  gap: 31px;
}
.l-white-paper__flex._complete {
  gap: 19px;
  width: 100%;
  max-width: 994px;
  margin-inline: auto;
}
@media screen and (max-width: 992px) {
  .l-white-paper__flex {
    flex-direction: column;
    align-items: center;
  }
}
.l-white-paper__top {
  max-width: 512px;
  flex-grow: 0;
  padding-top: 19px;
}
.l-white-paper__form {
  max-width: 440px;
  height: fit-content;
  padding: 30px 30px 52px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.251);
}
.l-white-paper__form._complete {
  padding: 30px 103px 52px 29px;
  height: 527px;
}
@media screen and (max-width: 992px) {
  .l-white-paper__form._complete {
    max-width: 530px;
  }
}
@media screen and (max-width: 992px) {
  .l-white-paper__form {
    max-width: unset;
    width: 100%;
  }
}

/**********************
*　コンタクト
**********************/
.l-contact__inner {
  max-width: 1024px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}
.l-contact__block {
  max-width: 800px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.251);
  padding: 60px 50px 52px;
  background-color: #fff;
  margin-top: -50px;
}
@media screen and (max-width: 526px) {
  .l-contact__block {
    margin-top: -90px;
    padding: 45px 20px;
  }
}

/**********************
*　利用規約
**********************/
.l-terms__inner {
  max-width: 1024px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

/**********************
*　ポリシー
**********************/
.l-policy__inner {
  max-width: 1024px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

.l-section {
  scroll-margin-top: 100px;
}

.mt51 {
  margin-top: 51px;
}

.mt46 {
  margin-top: 46px;
}
@media screen and (max-width: 526px) {
  .mt46 {
    margin-top: 34px;
  }
}

.mt35 {
  margin-top: 35px;
}
@media screen and (max-width: 526px) {
  .mt35 {
    margin-top: 28px;
  }
}

.mt48 {
  margin-top: 48px;
}

.mt40 {
  margin-top: 40px;
}
@media screen and (max-width: 526px) {
  .mt40 {
    margin-top: 3px;
  }
}

.mt41 {
  margin-top: 40px;
}
@media screen and (max-width: 526px) {
  .mt41 {
    margin-top: 40px;
  }
}

._mt-auto {
  margin-top: auto;
}
@media screen and (max-width: 1080px) {
  ._mt-auto {
    flex-direction: column;
    align-items: center;
    margin-top: 344px;
    gap: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 526px) {
  ._mt-auto {
    flex-direction: column;
    align-items: center;
    margin-top: 236px;
    gap: 20px;
    width: 100%;
  }
}

._btn-green {
  background-image: linear-gradient(to left, #075735, #00BA6B);
}

@media screen and (max-width: 1080px) {
  ._btn-green-s {
    background-image: linear-gradient(to left, #075735, #00BA6B);
  }
}
._btn-green-s a {
  color: #00331D;
}
@media screen and (max-width: 1080px) {
  ._btn-green-s a {
    color: #fff;
  }
}

._btn-orange {
  background-image: linear-gradient(to right, #FF8A00, #E9A012);
}

._txt-green {
  color: #00331D;
}
@media screen and (max-width: 1080px) {
  ._txt-green {
    color: #fff;
  }
}

._orange {
  background-color: #FF8A00;
}

._gray {
  background-color: #F1F1F1;
  border: 2px solid #999;
  color: #999;
}
._gray a {
  color: inherit;
}

@media screen and (max-width: 526px) {
  .s-flex {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 526px) {
  .sp-inline {
    display: inline-block;
  }
}

.heading_green {
  color: #159741;
}

._bg-green {
  background-color: #159741;
  white-space: nowrap;
}

.s-flex__column {
  flex-direction: column;
  gap: 13px;
}
@media screen and (max-width: 992px) {
  .s-flex__column {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 526px) {
  .s-flex__column {
    flex-direction: column;
    align-items: center;
  }
}
.s-flex__column .p-about__bg {
  left: 0;
  right: unset;
}

._green {
  color: #159741;
}

.privacy {
  text-decoration: underline;
  transition: opacity 0.3s ease;
  cursor: pointer;
  font-size: 1.8rem;
}
.privacy:hover, .privacy:focus {
  opacity: 0.7;
}

._fs14 {
  font-size: 1.4rem;
}/*# sourceMappingURL=style.css.map */