@charset "UTF-8";
/* =========================================================================================================
	* layout _l
========================================================================================================= */
/*--------------------------------------------------------------
* layoutフォルダの_index.scss
----------------------------------------------------------------*/
/*--------------------------------------------------------------
* globalフォルダの_index.scss
----------------------------------------------------------------*/
/*--------------------------------------------------------------
* フォントの読み込み
----------------------------------------------------------------*/
/*--------------------------------------------------------------
* 使用font の変数
----------------------------------------------------------------*/
/*--------------------------------------------------------------
* フォントサイズ の変数
----------------------------------------------------------------*/
/* pc
_______________________________________________________________________________________________________*/
/* sp
_______________________________________________________________________________________________________*/
/* =========================================================================================================
	共通定義する値
========================================================================================================= */
/* コンテンツ幅
_______________________________________________________________________________________________________*/
/* 使用色
_______________________________________________________________________________________________________*/
/* イージング
_______________________________________________________________________________________________________*/
/*
 * Easing function
 * Original：http://easings.net/
 */
.l-mv {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #f6f8f9;
  min-height: 844px;
  padding-top: 85px;
}
.l-mv::after {
  content: "";
  background-color: #ffffff;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  bottom: -1%;
  right: -30%;
  width: 154.8717948718vw;
  aspect-ratio: 1/1;
}
.l-mv__scroll-down-sect {
  position: absolute;
  right: 0;
  bottom: 0;
}
.l-mv__scroll-down-name {
  font-size: 0.625rem;
  font-weight: 400;
  font-family: "Barlow", serif;
  letter-spacing: 0.04em;
  writing-mode: vertical-lr;
  color: #838383;
}

.l-about {
  padding-bottom: 60px;
  overflow: hidden;
}

.l-feature {
  padding-top: 30px;
  padding-bottom: 60px;
  position: relative;
  z-index: 0;
  background-color: #f6f8f9;
}
.l-feature::before {
  content: "";
  display: inline-block;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  max-width: 430px;
  width: clamp(12.5rem, 48.7288135593vw + -10.8898305085rem, 26.875rem);
  aspect-ratio: 430/117;
  background-color: #ffffff;
  position: absolute;
  top: -30px;
  left: 50%;
  right: 0;
  translate: -50% 0;
}

.l-system {
  padding-top: 127px;
  padding-bottom: 60px;
  background-color: #39ac2a;
}
.l-system__inner.c-content-width01 {
  padding-right: 0;
  padding-left: 0;
}

.l-flow {
  padding-top: 52px;
  padding-bottom: 56px;
}
.l-flow__inner.c-content-width01 {
  padding-right: 0;
  padding-left: 0;
}

.l-faq {
  padding-top: 127px;
  padding-bottom: 60px;
  background-color: #e9f5c3;
}
.l-faq__inner.c-content-width01 {
  padding-right: 0px;
  padding-left: 0px;
}

.l-contact {
  padding-top: 60px;
  padding-bottom: 80px;
}

.l-info {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f6f8f9;
}

.l-thanks {
  margin-top: 80px;
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #f6f8f9;
}

/* =========================================================================================================
  * component _c
========================================================================================================= */
/*--------------------------------------------------------------
* componetフォルダの_index.scss
----------------------------------------------------------------*/
.c-btn {
  color: #39ac2a;
}
.c-btn__box {
  display: block;
  border: 1px solid #ffffff;
  color: #39ac2a;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 15px;
  padding: 11px 0;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  background-color: #ffffff;
  transition: 0.4s ease-in-out;
  font-size: 1.25rem;
}

/*!
component > Loading
------------------------------
*/
.is_loadding .c_loading {
  pointer-events: all;
  opacity: 1;
}

.c_loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #39ac2a;
  opacity: 0;
}
.c_loading__content {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
}
.c_loading__item {
  position: absolute;
  top: 4px;
  left: -7px;
  width: 12px;
  height: 12px;
  margin: 2px;
  margin-left: 15px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.c_loading__item:first-child {
  -webkit-animation: ball-zig 0.7s 0s infinite linear;
  animation: ball-zig 0.7s 0s infinite linear;
}
.c_loading__item:last-child {
  -webkit-animation: ball-zag 0.7s 0s infinite linear;
  animation: ball-zag 0.7s 0s infinite linear;
}

@-webkit-keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/*!
component > cookiewrap
------------------------------
*/
#cookiewrap {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  box-sizing: border-box;
  display: none;
  width: 100%;
  padding: 20px;
  color: #ffffff;
  background: #39ac2a;
}
#cookiewrap .inner {
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
#cookiewrap .inner .close {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.875rem;
  line-height: 1em;
  text-align: right;
}
#cookiewrap .inner .close a {
  display: block;
  padding: 8px;
  border: 1px solid #ffffff;
}
#cookiewrap .inner .txt {
  padding-bottom: 45px;
  font-size: 0.875rem;
  line-height: 1.8;
}

.c-hamburger-menu {
  display: inline-block;
  position: relative;
  z-index: 0;
  width: 24px;
  height: 23px;
  cursor: pointer;
  transition: all 0.4s;
}
.c-hamburger-menu::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  z-index: -1;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #a8d510;
}
.c-hamburger-menu span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.4s;
  border-radius: 3px;
}
.c-hamburger-menu__line01 {
  top: 0;
}
.c-hamburger-menu__line02 {
  top: 10px;
}
.c-hamburger-menu__line03 {
  bottom: 0px;
}
.is-nav-open .c-hamburger-menu__line01 {
  transform: translateY(10px) rotate(-315deg);
}
.is-nav-open .c-hamburger-menu__line02 {
  opacity: 0;
}
.is-nav-open .c-hamburger-menu__line03 {
  transform: translateY(-10px) rotate(315deg);
}

.c-content-width01 {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}

.c-content-width02 {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}

.c-page-top-btn {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s ease-in-out;
  transform: translateY(200px);
}
.top .c-page-top-btn {
  bottom: 50px;
}
.c-page-top-btn.is-show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.is-nav-open .c-page-top-btn, .is-lock .c-page-top-btn {
  visibility: hidden;
  opacity: 0;
  transform: translateY(200px);
}
.is-loadding .c-page-top-btn {
  visibility: hidden;
  opacity: 0;
  transform: translateY(200px);
}
.c-page-top-btn__body {
  position: relative;
  display: block;
  border: 1px solid #ffffff;
  width: 50px;
  height: 50px;
  background-color: #39ac2a;
  transition: 0.3s ease-in;
}
.c-page-top-btn__body::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  content: "";
  background: url("../images/common/icon_arrow-white.svg") no-repeat center;
  background-size: contain;
  transform: translate(-50%, -50%) rotate(90deg);
}

.c-slider-item__inner {
  max-width: 1560px;
  width: 100%;
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.c-slider-item__blowing {
  display: inline-block;
  max-width: 250px;
  width: 100%;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 900;
  color: #39ac2a;
  font-size: 1.125rem;
  position: relative;
  z-index: 0;
  padding-top: 6px;
  padding-bottom: 25px;
}
.c-slider-item__blowing::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/common/img_blowing01.svg") no-repeat;
  background-size: contain;
  left: 0;
  right: 0;
  top: calc(50% - 31px);
  height: 100%;
}
.c-slider-item__money {
  display: inline-block;
  font-family: "Barlow", serif;
  font-size: 90px;
  font-size: 6rem;
  font-size: clamp(5.625rem, 12.7226463104vw + 2.643129771rem, 8.75rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #39ac2a;
  line-height: 1;
  margin-left: 5px;
  margin-top: -14px;
}
.c-slider-item__money-yen {
  letter-spacing: -0.07em;
  margin-left: -13px;
  line-height: 1;
}
.c-slider-item__money-dot {
  font-size: 5rem;
  font-size: clamp(5rem, 5.8201058201vw + 3.5813492063rem, 6.375rem);
}
.c-slider-item__money-month {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.2328042328vw + 0.9682539683rem, 3rem);
  writing-mode: vertical-lr;
  letter-spacing: 0;
}
.c-slider-item__money .c-line::before {
  height: 32%;
}
.c-slider-item__tel {
  background-color: #39ac2a;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  padding: 7px 0;
  margin-top: 9px;
}
.c-slider-item__tel-title {
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}
.c-slider-item__tel-number {
  font-family: "Barlow", serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  font-size: 1.75rem;
  margin-top: 4px;
}
.c-slider-item__tel-number svg {
  position: relative;
}
.c-slider-item__tel-time {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.75rem;
}
.c-slider-item__tel-time-title {
  display: inline-block;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.01em;
  border: 1px solid #ffffff;
  border-radius: 5px;
  max-width: 55px;
  width: 100%;
}
.c-slider-item__tel-time-open {
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.c-slider-item__img {
  margin-top: 19px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  min-height: 211px;
}
.c-slider-item__img-name {
  font-weight: 500;
  font-size: 0.75rem;
  color: #657b88;
  text-align: right;
  margin-top: 4px;
  display: block;
}
.c-slider-item__copy {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 900;
  font-size: 4.375rem;
  font-size: clamp(3.125rem, 2.4038461538vw + 1.9711538462rem, 4.375rem);
  line-height: 1.4;
  background-color: #ffffff;
  border-radius: 10px;
  margin-top: 22px;
  color: #39ac2a;
}
.c-slider-item__copy01 {
  letter-spacing: -0.03em;
  font-size: 2.875rem;
  font-size: clamp(2.25rem, 50vw + -9.3125rem, 2.875rem);
  color: #39ac2a;
}
.c-slider-item__copy02 {
  color: #243a46;
  letter-spacing: -0.03em;
  font-size: 2.875rem;
  font-size: clamp(2.25rem, 50vw + -9.3125rem, 2.875rem);
}
.c-slider-item__copy03 {
  color: #243a46;
  font-size: 2rem;
  font-size: clamp(1.5625rem, 35vw + -6.53125rem, 2rem);
  line-height: 1.1;
}
.c-slider-item__copy-txt01, .c-slider-item__copy-txt02, .c-slider-item__copy-txt03 {
  font-size: 1.6875rem;
  font-size: clamp(1.25rem, 35vw + -6.84375rem, 1.6875rem);
  letter-spacing: 0;
  line-height: 1.4814814815;
}
.c-slider-item__copy-ruby {
  font-family: "Barlow", serif;
  font-weight: 500;
  position: relative;
  font-size: 3.875rem;
}
.c-slider-item__copy-ruby01 {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-align: center;
}
.c-slider-item__copy-blank02 {
  position: absolute;
  left: 5px;
  top: -80%;
}
.c-slider-item__copy ruby {
  font-family: "Barlow", serif;
  font-weight: 500;
  font-size: clamp(7.5rem, 4.3269230769vw + 5.4230769231rem, 9.75rem);
  position: relative;
  text-stroke: 3px #ffffff;
}
.c-slider-item__copy ruby rt {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 1.125rem;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-inline: auto;
  text-align: center;
  text-stroke: 1px #ffffff;
}
.c-slider-item__btn {
  color: #ffffff;
  margin-top: 20px;
}
.c-slider-item__btn .c-btn__box {
  background-color: #39ac2a;
}

.c-line {
  position: relative;
  z-index: 0;
}
.c-line::before {
  content: "";
  background-color: #fced3c;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -5px;
  right: -5px;
  height: 50%;
}

.c-text-green {
  color: #39ac2a;
}

.c-text-green02 {
  color: #a8d510;
}

.c-text12 {
  font-size: 0.625rem;
}

.c-text16 {
  font-size: 0.875rem;
}

.c-text18 {
  font-size: 0.875rem;
}

.c-text19 {
  font-size: 0.5625rem;
}

.c-text20 {
  font-size: 1rem;
}

.c-text24 {
  font-size: 1rem;
}

.c-text26 {
  font-size: 1.25rem;
}

.c-text28 {
  font-size: 1.125rem;
}

.c-text32 {
  font-size: 1.5rem;
}

.c-text40 {
  font-size: 1.625rem;
}

.c-text41 {
  font-size: 1.25rem;
}

.c-text48 {
  font-size: 1.5rem;
}

.c-text50 {
  font-size: 1.5rem;
}

.c-text54 {
  font-size: 1.5rem;
}

.c-text80 {
  font-size: 3.125rem;
}

.c-text200 {
  font-size: 7.625rem;
}

.c-sect-title01 {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.44;
  position: relative;
  z-index: 0;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 1.625rem;
  color: #39ac2a;
  text-align: center;
  max-width: 596px;
  width: 100%;
}
.c-sect-title01::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/common/img_blowing02.svg") no-repeat;
  background-position: center;
  background-size: contain;
  left: 0;
  right: 0;
  top: calc(50% - 25.3px);
  height: 100%;
}
.c-sect-title01 .c-line::before {
  height: 32%;
}

.c-feature-item {
  background-color: #ffffff;
  border-radius: 20px 20px;
}
.c-feature-item__title {
  background-color: #a8d510;
  color: #ffffff;
  border-radius: 20px 20px 0 0;
  text-align: center;
  font-weight: 500;
  padding: 10px 0;
}
.c-feature-item__body {
  padding-left: clamp(0.625rem, 4.8728813559vw + -1.7139830508rem, 2.0625rem);
  padding-right: clamp(0.625rem, 4.8728813559vw + -1.7139830508rem, 2.0625rem);
  padding-top: 14px;
  padding-bottom: 20px;
}
.c-feature-item__lead {
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.5;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.c-feature-item__img {
  margin-top: 16px;
}
.c-feature-item__txt {
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8;
  margin-top: 20px;
  min-height: 123px;
}
.c-feature-item__list {
  margin-top: 22px;
}
.c-feature-item__item + .c-feature-item__item {
  margin-top: 14px;
}
.c-feature-item__item-title {
  background-color: #39ac2a;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 2px 5px;
}
.c-feature-item__item-txt {
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin-top: 4px;
}

.c-system-item {
  background-color: #f6f8f9;
}
.c-system-item__title {
  background-color: #39ac2a;
  color: #ffffff;
  border-radius: 20px 20px 0 0;
  text-align: center;
  font-weight: 500;
  padding: 10px 0;
}
.c-system-item__body {
  padding-left: clamp(0.625rem, 4.8728813559vw + -1.7139830508rem, 2.0625rem);
  padding-right: clamp(0.625rem, 4.8728813559vw + -1.7139830508rem, 2.0625rem);
  padding-top: 17px;
  padding-bottom: 29px;
}
.c-system-item__price {
  letter-spacing: 0.01em;
  line-height: 1.5;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  gap: 19px;
}
.c-system-item__price-zero {
  font-family: "Barlow", serif;
  position: relative;
  display: inline-block;
  font-weight: 500;
  letter-spacing: -0.1em;
}
.c-system-item__price-ruby {
  font-family: "Noto Sans JP", serif;
  position: absolute;
  left: 10px;
  right: 0;
  bottom: 90%;
  display: inline-block;
  width: 100%;
  letter-spacing: 0.11em;
  font-weight: 700;
  font-size: 1.125rem;
}
.c-system-item__price-yen {
  font-weight: 700;
  position: relative;
  top: 23px;
}
.c-system-item__txt {
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8;
  margin-top: 6px;
  text-align: center;
}

.c-flow-item {
  padding-left: clamp(1.25rem, 12.7118644068vw + -4.8516949153rem, 5rem);
  padding-right: clamp(1.25rem, 12.7118644068vw + -4.8516949153rem, 5rem);
  background-color: #f6f8f9;
  letter-spacing: 0.01em;
}
.c-flow-item__no {
  font-weight: 600;
  position: relative;
  z-index: 0;
  font-family: "Barlow", serif;
  line-height: 1;
  padding-top: 20px;
  padding-left: 30px;
}
.c-flow-item__no::before {
  content: "";
  display: inline-block;
  background-color: #f6f8f9;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  width: 21px;
  aspect-ratio: 1/1;
  border: 4px solid #a8d510;
  left: 0;
  top: 24px;
}
.c-flow-item__text-sect {
  padding-left: 33px;
  padding-bottom: 25px;
  position: relative;
  padding-top: 5px;
}
.c-flow-item__text-sect::after {
  content: "";
  display: inline-block;
  position: absolute;
  border: 1px solid #a8d510;
  left: 10px;
  bottom: 0;
  top: -1px;
  height: calc(100% + 32px + 24px);
}
.c-flow-item__title {
  font-weight: 700;
  font-size: 0.9375rem;
}
.c-flow-item__txt {
  font-weight: 500;
  line-height: 1.8;
  margin-top: 7px;
}

.c-faq-item {
  letter-spacing: 0.01em;
}
.c-faq-item__title {
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.c-faq-item__title-icon {
  font-family: "Barlow", serif;
  font-weight: 700;
}
.c-faq-item__title-txt {
  font-weight: 700;
  margin-left: 10px;
}
.c-faq-item__body-icon {
  font-family: "Barlow", serif;
  font-weight: 700;
}
.c-faq-item__body {
  display: flex;
  margin-top: 5px;
}
.c-faq-item__body-txt {
  margin-left: 10px;
  padding-top: 15px;
  font-weight: 500;
}

.c-info-item {
  background-color: #ffffff;
}
.c-info-item__title {
  background-color: #39ac2a;
  color: #ffffff;
  border-radius: 15px 15px 0 0;
  text-align: center;
  font-weight: 500;
  padding: 10px 0;
}
.c-info-item__body {
  padding-left: clamp(0.625rem, 4.8728813559vw + -1.7139830508rem, 2.0625rem);
  padding-right: clamp(0.625rem, 4.8728813559vw + -1.7139830508rem, 2.0625rem);
  padding-top: 19px;
  padding-bottom: 30px;
}
.c-info-item__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  padding: 12px 0;
  margin-top: 17px;
}
.c-info-item__tel-title {
  font-weight: 700;
  letter-spacing: 0.01em;
}
.c-info-item__tel-number {
  font-family: "Barlow", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 13px;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}
.c-info-item__tel-number svg {
  position: relative;
  width: 20px;
  aspect-ratio: 1/1;
}
.c-info-item__tel-time {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 13px;
  margin-top: 20px;
  font-size: 1rem;
}
.c-info-item__tel-time-title {
  display: inline-block;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01em;
  background-color: #39ac2a;
  color: #ffffff;
  border-radius: 5px;
  max-width: 74px;
  width: 100%;
}
.c-info-item__tel-time-open {
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.c-info-item__mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  padding: 12px 0;
  margin-top: 20px;
}
.c-info-item__mail-title {
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8;
  text-align: center;
}
.c-info-item__mail-number {
  font-family: "Barlow", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 12px;
  font-size: 1.25rem;
}
.c-info-item__mail-number svg {
  position: relative;
  width: 20px;
  aspect-ratio: 29.3/22;
}
.c-info-item__mail-btn {
  margin-top: 20px;
  color: #ffffff;
  max-width: 360px;
  width: 100%;
}
.c-info-item__mail-btn .c-btn__box {
  background-color: #39ac2a;
  border: 1px solid #39ac2a;
}

.c-nav-item + .c-nav-item {
  border-left: 2px dashed #a8d510;
}
.c-nav-item__box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #a8d510;
  border-bottom: 2px solid #a8d510;
  background-color: #ffffff;
  padding: 0 3px;
  padding-top: 25px;
  padding-bottom: 25px;
  transition: 0.4s ease-in-out;
}
.c-nav-item__name {
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: 0.4s ease-in-out;
  font-size: clamp(0.875rem, 0.5vw + 0.5rem, 1rem);
}
.c-nav-item__icon {
  display: inline-block;
  width: 29px;
  width: clamp(1.5rem, 1.25vw + 0.5625rem, 1.8125rem);
  aspect-ratio: 1/1;
  background-color: #39ac2a;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
  position: relative;
  margin-left: clamp(0.3125rem, 1.25vw + -0.625rem, 0.625rem);
}
.c-nav-item__icon::before {
  content: "";
  display: inline-block;
  width: 8px;
  aspect-ratio: 1/1;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  rotate: 45deg;
  transition: 0.4s ease-in-out;
}

.c-scroll-ani {
  width: 1px;
  height: 80px;
  background: #d7dbdd;
  animation: scrollDown4 2s ease infinite;
  margin: 0 auto;
  margin-top: 10px;
}

@keyframes scrollDown4 {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  45% {
    transform-origin: top;
    transform: scaleY(1);
  }
  55% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
/* =========================================================================================================
* javascript //jsで操作される設定  _js
========================================================================================================= */
/*--------------------------------------------------------------
* javascriptフォルダの_index.scss
----------------------------------------------------------------*/
/* =========================================================================================================
	* project _p
========================================================================================================= */
/*--------------------------------------------------------------
* projectフォルダの_index.scss
----------------------------------------------------------------*/
/*--------------------------------------------------------------
* projectフォルダの_index.scss
----------------------------------------------------------------*/
.p-mv {
  position: relative;
  padding-top: 10px;
}
.p-mv__slider > .p-mv__item:not(:first-child) {
  display: none;
}
.p-mv__item .u-ie .c-slider-item__img {
  margin-top: 17px;
}
.p-mv__item .u-ie .c-slider-item__img-name {
  margin-top: 5px;
}
.p-mv__item .u-denchi .c-slider-item__copy {
  padding: 0 40px;
  margin-top: -7px;
}
.p-mv__item .u-denchi .c-slider-item__copy-txt02 {
  margin-top: -14px;
}
.p-mv__item .u-denchi .c-slider-item__btn {
  margin-top: 7px;
}
.p-mv__item .u-kuruma .c-slider-item__copy {
  margin-top: 15px;
}
.p-mv__item .u-kuruma .c-slider-item__copy-txt01,
.p-mv__item .u-kuruma .c-slider-item__copy-txt03 {
  white-space: nowrap;
}
.p-mv__item .u-kuruma .c-slider-item__btn {
  margin-top: 23px;
}
.p-mv__item .u-grahu .c-slider-item__img {
  padding: 0 48px;
  margin-top: -5px;
}
.p-mv__item .u-grahu .c-slider-item__img-name {
  margin-top: 1px;
}
.p-mv__item .u-grahu .c-slider-item__copy {
  margin-top: 34px;
  padding: 0 27px;
}
.p-mv__item .u-grahu .c-slider-item__copy-txt02 {
  white-space: nowrap;
}
.p-mv__item .u-grahu .c-slider-item__btn {
  margin-top: 43px;
}
.p-mv__item .u-denkyu .c-slider-item__copy {
  margin-top: 34px;
  padding: 0 40px;
}
.p-mv__item .u-denkyu .c-slider-item__btn {
  margin-top: 43px;
}
.p-mv__item .u-kanri .c-slider-item__copy {
  margin-top: 36px;
  padding: 0 26px;
}
.p-mv__item .u-kanri .c-slider-item__btn {
  margin-top: 43px;
}
.p-mv__slider-arrow-sect {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  right: 13px;
  left: 13px;
}
.p-mv__prev-arrow {
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  border: 1px solid #39ac2a;
  border-radius: 50%;
  background-color: #f2f9db;
  position: relative;
  z-index: 0;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.p-mv__prev-arrow::after {
  content: "";
  display: inline-block;
  width: 7px;
  aspect-ratio: 1/1;
  border-left: 2px solid #39ac2a;
  border-bottom: 2px solid #39ac2a;
  rotate: 45deg;
  position: absolute;
  top: calc(50% - 3.5px);
  right: calc(50% - 3.5px);
  transition: 0.4s ease-in-out;
}
.p-mv__next-arrow {
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  border: 1px solid #39ac2a;
  border-radius: 50%;
  background-color: #f2f9db;
  position: relative;
  z-index: 0;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.p-mv__next-arrow::after {
  content: "";
  display: inline-block;
  width: 7px;
  aspect-ratio: 1/1;
  border-right: 2px solid #39ac2a;
  border-bottom: 2px solid #39ac2a;
  rotate: -45deg;
  position: absolute;
  top: calc(50% - 3.5px);
  left: calc(50% - 3.5px);
  transition: 0.4s ease-in-out;
}

.p-about__title-sect {
  display: flex;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}
.p-about__leadtext {
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.8;
  margin-top: 20px;
}
.p-about__sect01 {
  background-color: #e9f5c3;
  border-radius: 20px;
  position: relative;
  z-index: 0;
  margin-top: 100px;
  padding-top: 70px;
  padding-bottom: 83px;
  padding-left: 20px;
  padding-right: 20px;
}
.p-about__sect01-img {
  position: absolute;
  left: -6.25vw;
  bottom: -80px;
  width: clamp(9.375rem, 12.2881355932vw + 3.4766949153rem, 13rem);
}
.p-about__blow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 90%;
  width: 100%;
}
.p-about__blow-box {
  max-width: 519px;
  width: 100%;
  text-align: center;
  border-radius: 20px;
  background-color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.6615384615;
  filter: drop-shadow(0 0 18px rgba(128, 128, 128, 0.16));
  position: relative;
  padding: 22px 10px 30px;
  margin-inline: auto;
}
.p-about__blow-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 96%;
  left: calc(50% - 22.5px);
  background-color: #ffffff;
  rotate: 180deg;
  clip-path: path("M14.791,9.117a6,6,0,0,1,10.419,0L34.87,26.023A6,6,0,0,1,29.661,35H10.339A6,6,0,0,1,5.13,26.023Z");
  width: 45px;
  aspect-ratio: 45/35;
  filter: drop-shadow(0 0 18px rgba(128, 128, 128, 0.16));
}
.p-about__sect01-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.p-about__sect01-item {
  font-weight: 800;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.p-about__sect01-item::before {
  content: "";
  display: inline-block;
  background: url("../images/common/icon_check.svg") no-repeat center;
  background-size: contain;
  width: 20px;
  aspect-ratio: 52/46;
  margin-right: 15px;
}
.p-about__sect02 {
  background-color: #e9f5c3;
  border-radius: 20px;
  position: relative;
  z-index: 0;
  margin-top: 200px;
  padding-top: 97px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
.p-about__sect02 .p-about__blow {
  bottom: 98%;
}
.p-about__sect02-img {
  position: absolute;
  right: -6.25vw;
  top: -6.8125vw;
  width: clamp(9.375rem, 21.6101694915vw + -0.9978813559rem, 15.75rem);
}
.p-about__sect02-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  grid-template-columns: 4.3103448276%;
}
.p-about__sect02-item {
  font-weight: 700;
  text-align: center;
  width: calc(50% - 40px);
}

.p-feature__title-sect {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
.p-feature__list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.p-feature__item:nth-of-type(4) .c-feature-item__img {
  margin-top: 20px;
}
.p-feature__item:nth-of-type(5) .c-feature-item__txt {
  margin-top: 0;
}

.p-system__top {
  background-color: #ffffff;
  border-radius: 20px;
  padding-top: 24px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
}
.p-system__title-sect {
  display: flex;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}
.p-system__top-txt {
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8;
  margin-top: 26px;
}
.p-system__top-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 55px;
  padding-left: 20px;
  padding-right: 20px;
}
.p-system__top-item:nth-of-type(2) .c-system-item__title {
  background-color: #a8d510;
}
.p-system__top-item:nth-of-type(2) .c-system-item__txt {
  margin-top: 23px;
}
.p-system__top-item + .p-system__top-item {
  position: relative;
}
.p-system__top-item + .p-system__top-item::before {
  content: "";
  display: inline-block;
  width: 74px;
  aspect-ratio: 1/1;
  background: url("../images/common/icon_plus.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: calc(50% - 37px);
  bottom: 98%;
}
.p-system__bottom-title {
  color: #e9f5c3;
  font-weight: 700;
  text-align: center;
  margin-top: 56px;
  line-height: 1.46;
}
.p-system__bottom {
  margin-top: 40px;
  background-color: #e9f5c3;
  border-radius: 20px;
  padding-top: 38px;
  padding-left: clamp(1.25rem, 4.8076923077vw + -1.0576923077rem, 3.75rem);
  padding-right: clamp(1.25rem, 4.8076923077vw + -1.0576923077rem, 3.75rem);
  padding-bottom: 43px;
}
.p-system__bottom-img-title {
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  margin-left: -2px;
}
.p-system__bottom-img-title::before {
  content: "";
  display: inline-block;
  width: 16px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #39ac2a;
  position: relative;
  top: 2px;
}
.p-system__bottom-note {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #657b88;
  margin-top: 8px;
}
.p-system__bottom-img-box {
  margin-top: 15px;
  overflow: auto;
  border-radius: 20px;
}
.p-system__bottom-img {
  min-width: 795px;
}
.p-system__bottom-blow-title {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: 1.625rem;
}
.p-system__bottom-blow {
  margin-top: 30px;
  padding-top: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  border-radius: 20px;
  z-index: 0;
  background-color: #ffffff;
  filter: drop-shadow(0 0 18px rgba(128, 128, 128, 0.16));
}
.p-system__bottom-blow::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: calc(100% - 46px);
  left: calc(50% - 60px);
  background-color: #ffffff;
  clip-path: path("M55.8,9.037a6,6,0,0,1,10.4,0l50.625,87.971a6,6,0,0,1-5.2,8.993H10.375a6,6,0,0,1-5.2-8.993Z");
  width: 122px;
  aspect-ratio: 122/106;
  filter: drop-shadow(0 0 18px rgba(128, 128, 128, 0.16));
}
.p-system__bottom-blow-list {
  margin-top: 8px;
}
.p-system__bottom-blow-item {
  font-size: 0.875rem;
}
.p-system__bottom-blow-item-mark01, .p-system__bottom-blow-item-mark02 {
  font-weight: 300;
  font-family: "Outfit", serif;
  margin: 0 7px;
}
.p-system__bottom-blow-item-mark02 {
  margin: 0 10px;
  position: relative;
  left: -4px;
}
.p-system__bottom-blow-item-mark03 {
  position: relative;
  left: -4px;
  width: 6px;
  aspect-ratio: 12.3/44.2;
}
.p-system__bottom-blow-item-mark04 {
  position: relative;
  left: 6px;
  width: 6px;
  aspect-ratio: 12.3/44.2;
}
.p-system__bottom-blow-item + .p-system__bottom-blow-item {
  margin-top: 3px;
}
.p-system__bottom-blow-item-left {
  font-weight: 700;
  display: flex;
  align-items: center;
}
.p-system__bottom-blow-item-right {
  font-weight: 900;
  display: flex;
  align-items: center;
  margin-top: -9px;
}
.p-system__bottom-blow-item-right .c-text41 {
  font-weight: 700;
  font-family: "Barlow", serif;
  margin-left: -11px;
}
.p-system__btn {
  margin-top: 59px;
  padding-left: 20px;
  padding-right: 20px;
}

.p-flow__title-sect {
  display: flex;
  justify-content: center;
  padding-left: 40px;
  padding-right: 40px;
}
.p-flow__list {
  margin-top: 33px;
}
.p-flow__item + .p-flow__item {
  margin-top: 30px;
}
.p-flow__item:nth-of-type(4) .c-flow-item__text-sect::after {
  border: none;
}

.p-faq {
  background-color: #ffffff;
  border-radius: 20px;
  padding-top: 30px;
  padding-bottom: 78px;
  padding-left: 40px;
  padding-right: 40px;
  filter: drop-shadow(0 6px 12px rgba(74, 74, 74, 0.16));
}
.p-faq__title-sect {
  display: flex;
  justify-content: center;
}
.p-faq__content {
  margin-top: 40px;
}
.p-faq__content .c-faq-item + .c-faq-item {
  margin-top: 30px;
}

.p-contact {
  letter-spacing: 0.01em;
}
.p-contact__title-sect {
  display: flex;
  justify-content: center;
}
.p-contact__heading {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-contact__heading-title {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 900;
  text-align: center;
  border-bottom: 1px solid #39ac2a;
  display: inline-block;
}
.p-contact__heading-txt {
  margin-top: 16px;
  font-weight: 500;
  text-align: center;
}
.p-contact__note {
  font-weight: 400;
  margin-top: 20px;
  border-bottom: 1px solid #d7dbdd;
  padding-bottom: 10px;
}
.p-contact__note-required {
  font-weight: 500;
  background-color: #e8020f;
  color: #ffffff;
  border-radius: 5px;
  padding: 2px 5px;
  margin-left: 5px;
  margin-right: 5px;
}
.p-contact__item {
  border-bottom: 1px solid #d7dbdd;
  padding-top: 20px;
  padding-bottom: 20px;
}
.p-contact__item-heading {
  font-weight: 500;
}
.p-contact__item-heading .p-contact__note-required {
  margin-left: 10px;
}
.p-contact__item-heading.u-adress {
  padding-top: 15px;
}
.p-contact__item-body {
  margin-top: 10px;
}
.p-contact__item-body textarea {
  font-size: 1rem;
  line-height: 1.8;
  width: 100% !important;
  max-width: 648px;
  background-color: #f2f2f2;
  font-weight: 500;
  padding: 11px 16px;
  min-height: 200px;
}
.p-contact__item-body textarea::placeholder {
  color: rgba(36, 58, 70, 0.35);
}
.p-contact__item-body input {
  font-size: 1rem;
  line-height: 1.8;
  width: 100%;
  max-width: 580px;
  background-color: #f2f2f2;
  font-weight: 500;
  padding: 11px 16px;
}
.p-contact__item-body input::placeholder {
  color: rgba(36, 58, 70, 0.35);
}
.p-contact__item-body-top {
  font-size: 1rem;
}
.p-contact__item-body-top input {
  margin-left: 10px;
  max-width: 203px;
}
.p-contact__item-body-under {
  margin-top: 24px;
}
.p-contact__item-btn {
  margin-top: 40px;
}
.p-contact__item-btn .c-btn__box {
  color: #ffffff;
  background-color: #39ac2a;
  border: 1px solid #39ac2a;
  border-color: #39ac2a;
  width: 100%;
}
.p-contact #mfp_phase_confirm table#mfp_confirm_table tr.mfp_colored {
  background-color: #ffffff;
}
.p-contact #mfp_phase_confirm h4 {
  font-weight: 500;
  padding: 10px 0;
  border-bottom: solid 1px #ccc;
}
.p-contact #mfp_phase_confirm table#mfp_confirm_table tr th,
.p-contact #mfp_phase_confirm table#mfp_confirm_table tr td {
  padding: 10px 0;
  font-size: 0.875rem;
  font-weight: 500;
  border-top: none;
  border-bottom: solid 1px #ccc;
}
.p-contact #mfp_phase_confirm table#mfp_confirm_table tr td {
  padding-left: 10px;
}
.p-contact #mfp_phase_confirm .mfp_buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.p-contact #mfp_phase_confirm .mfp_element_button {
  display: block;
  border: 1px solid #39ac2a;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 15px;
  padding: 11px 0;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  background-color: #39ac2a;
  transition: 0.4s ease-in-out;
  font-size: 1.25rem;
  width: 100%;
}
.p-contact #mfp_phase_confirm .mfp_element_button#mfp_button_cancel {
  color: #39ac2a;
  background-color: #ffffff;
}

.p-info {
  padding-left: clamp(1.25rem, 8.3857442348vw + -2.748951782rem, 3.75rem);
  padding-right: clamp(1.25rem, 8.3857442348vw + -2.748951782rem, 3.75rem);
}
.p-info__list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.p-info__item .c-info-item__tel-number {
  color: #39ac2a;
}
.p-info__item:nth-of-type(2) .c-info-item__title {
  background-color: #a8d510;
}
.p-info__item:nth-of-type(2) .c-info-item__mail-number {
  color: #39ac2a;
}

.p-thanks__lead-txt {
  font-weight: 500;
}
.p-thanks__txt {
  margin-top: 30px;
  font-weight: 500;
}
.p-thanks__btn {
  margin-top: 40px;
}

/* =========================================================================================================
	* utility //調整用ファイル _u
========================================================================================================= */
/*--------------------------------------------------------------
* utilityフォルダの_index.scss
----------------------------------------------------------------*/
.u-sp-only {
  display: block;
}

.u-pc-only {
  display: none;
}

.u-bg-transparent {
  background-color: transparent !important;
}

.u-text-nowrap {
  white-space: nowrap;
}

/* =========================================================================================================
	* external //外部ライブラリーの上書き _ex
========================================================================================================= */
/*--------------------------------------------------------------
* externalフォルダの_index.scss
----------------------------------------------------------------*/
form#mailformpro dl dd,
form#mailformpro dl dt {
  border-top: none;
  font-size: inherit;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.mfp_element_date,
.mfp_element_email,
.mfp_element_number,
.mfp_element_password,
.mfp_element_select-one,
.mfp_element_tel,
.mfp_element_text,
.mfp_element_textarea {
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.mfp_colored {
  background-color: transparent;
}

.mfp_element_button,
.mfp_element_reset,
.mfp_element_submit,
button.mfp_next,
button.mfp_prev {
  background: none;
  border: none;
  border-radius: 0;
  font-size: inherit;
  outline: none;
  text-shadow: none;
}

.mfp_element_submit:hover,
.mfp_element_reset:hover,
.mfp_element_button:hover,
button.mfp_next:hover,
button.mfp_prev:hover {
  background: none;
  box-shadow: none;
}

@media screen and (min-width: 768px){
  .l-mv {
    padding-top: 0;
    min-height: 100vh;
  }
  .l-mv::after {
    min-width: 1000px;
    bottom: 0;
    right: -9%;
    width: 81.4375vw;
  }
  .l-mv__scroll-down-sect {
    right: 16px;
  }
  .l-mv__scroll-down-name {
    font-size: 0.875rem;
  }
  .l-about {
    padding-top: 87px;
    padding-bottom: 120px;
  }
  .l-feature {
    padding-top: 87px;
    padding-bottom: 100px;
  }
  .l-system {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .l-system__inner.c-content-width01 {
    padding-right: 40px;
    padding-left: 40px;
  }
  .l-flow {
    padding-top: 87px;
    padding-bottom: 100px;
  }
  .l-flow__inner.c-content-width01 {
    padding-right: 40px;
    padding-left: 40px;
  }
  .l-faq {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .l-faq__inner.c-content-width01 {
    padding-right: 40px;
    padding-left: 40px;
  }
  .l-contact {
    padding-top: 88px;
    padding-bottom: 200px;
  }
  .l-info {
    padding-top: 90px;
    padding-bottom: 76px;
  }
  .l-thanks {
    margin-top: 150px;
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .c-btn__box {
    font-size: clamp(1.25rem, 1.3921113689vw + 0.9211136891rem, 2rem);
    border-radius: 20px;
    padding: 30px 0;
  }
  #cookiewrap {
    padding: 40px;
  }
  #cookiewrap .inner .close {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  #cookiewrap .inner .txt {
    padding-right: 110px;
    padding-bottom: 0;
  }
  .c-hamburger-menu {
    width: 40px;
    height: 30px;
  }
  .c-hamburger-menu__line02 {
    top: 13.5px;
  }
  .is-nav-open .c-hamburger-menu__line01 {
    transform: translateY(13.5px) rotate(-315deg);
  }
  .is-nav-open .c-hamburger-menu__line03 {
    transform: translateY(-13.5px) rotate(315deg);
  }
  .c-content-width01 {
    max-width: 1240px;
    padding-right: 40px;
    padding-left: 40px;
  }
  .c-content-width02 {
    max-width: 1088px;
    padding-right: 40px;
    padding-left: 40px;
  }
  .c-page-top-btn {
    right: 50px;
    bottom: 20px;
  }
  .top .c-page-top-btn {
    bottom: 140px;
  }
  .c-page-top-btn__body {
    width: 80px;
    height: 80px;
  }
  .c-page-top-btn__body::before {
    width: 30px;
    height: 30px;
  }
  .c-slider-item__inner {
    margin-top: 60px;
    padding: 0 40px;
  }
  .c-slider-item__top {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0;
  }
  .c-slider-item__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 160px;
    margin-left: clamp(1.25rem, 3.125vw + -0.25rem, 2.875rem);
    width: 100%;
  }
  .c-slider-item__blowing {
    max-width: 356px;
    padding-top: 0;
    padding-bottom: 40px;
    font-size: 1.625rem;
  }
  .c-slider-item__blowing::before {
    background-size: 100%;
    top: calc(50% - 50px);
  }
  .c-slider-item__money {
    margin-top: -20px;
    margin-left: 10px;
    font-size: clamp(7.5rem, 6.2256809339vw + 4.5116731518rem, 8.5rem);
  }
  .c-slider-item__money-yen {
    margin-left: -20px;
  }
  .c-slider-item__money-dot {
    font-size: 6.375rem;
  }
  .c-slider-item__money-month {
    font-size: 3rem;
  }
  .c-slider-item__tel {
    padding: 12px 0;
    margin-top: 20px;
  }
  .c-slider-item__tel-title {
    font-size: 1.125rem;
  }
  .c-slider-item__tel-number {
    letter-spacing: 0.04em;
    font-size: 2.375rem;
    margin-top: 4px;
  }
  .c-slider-item__tel-number svg {
    top: -2px;
  }
  .c-slider-item__tel-time {
    gap: 13px;
    margin-top: 18px;
    font-size: 1rem;
  }
  .c-slider-item__tel-time-title {
    max-width: 86px;
    font-weight: 500;
  }
  .c-slider-item__img {
    display: block;
    margin-top: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    right: -60px;
    width: clamp(24.375rem, 69.7115384615vw + -9.0865384615rem, 60.625rem);
  }
  .c-slider-item__img-name {
    margin-right: 30px;
    margin-top: 10px;
    font-size: clamp(0.75rem, 2.7237354086vw + -0.5573929961rem, 1.1875rem);
  }
  .c-slider-item__copy {
    padding: 0 10px 20px;
    margin-top: 40px;
    margin-left: clamp(1.25rem, 3.125vw + -0.25rem, 2.875rem);
  }
  .c-slider-item__copy01 {
    font-size: 6.5625rem;
    font-size: clamp(4.375rem, 4.2067307692vw + 2.3557692308rem, 6.5625rem);
  }
  .c-slider-item__copy02 {
    font-size: 6.5625rem;
    font-size: clamp(5rem, 3.0048076923vw + 3.5576923077rem, 6.5625rem);
  }
  .c-slider-item__copy03 {
    font-size: clamp(3.125rem, 2.6442307692vw + 1.8557692308rem, 4.5rem);
  }
  .c-slider-item__copy-txt01, .c-slider-item__copy-txt02, .c-slider-item__copy-txt03 {
    font-size: clamp(2.5rem, 3.6057692308vw + 0.7692307692rem, 4.375rem);
  }
  .c-slider-item__copy-ruby {
    font-size: clamp(3.875rem, 11.2980769231vw + -1.5480769231rem, 9.75rem);
  }
  .c-slider-item__copy-ruby01 {
    font-size: 0.875rem;
    top: 20px;
    top: clamp(-0.0625rem, 5.25vw + -4rem, 1.25rem);
  }
  .c-text12 {
    font-size: 0.75rem;
  }
  .c-text16 {
    font-size: 1rem;
  }
  .c-text18 {
    font-size: clamp(1rem, 0.2320185615vw + 0.9451856148rem, 1.125rem);
  }
  .c-text19 {
    font-size: clamp(0.5625rem, 1.1600928074vw + 0.2884280742rem, 1.1875rem);
  }
  .c-text20 {
    font-size: clamp(1rem, 0.464037123vw + 0.8903712297rem, 1.25rem);
  }
  .c-text24 {
    font-size: clamp(1rem, 0.9280742459vw + 0.7807424594rem, 1.5rem);
  }
  .c-text26 {
    font-size: clamp(1.25rem, 0.6960556845vw + 1.0855568445rem, 1.625rem);
  }
  .c-text28 {
    font-size: clamp(1.125rem, 1.1600928074vw + 0.8509280742rem, 1.75rem);
  }
  .c-text32 {
    font-size: clamp(1.5rem, 0.9280742459vw + 1.2807424594rem, 2rem);
  }
  .c-text40 {
    font-size: clamp(1.625rem, 1.6241299304vw + 1.2412993039rem, 2.5rem);
  }
  .c-text41 {
    font-size: clamp(1.25rem, 2.4361948956vw + 0.6744489559rem, 2.5625rem);
  }
  .c-text48 {
    font-size: clamp(1.5rem, 2.7842227378vw + 0.8422273782rem, 3rem);
  }
  .c-text50 {
    font-size: clamp(1.5rem, 3.0162412993vw + 0.787412993rem, 3.125rem);
  }
  .c-text54 {
    font-size: clamp(1.5rem, 3.4802784223vw + 0.6777842227rem, 3.375rem);
  }
  .c-text80 {
    font-size: clamp(3.125rem, 3.4802784223vw + 2.3027842227rem, 5rem);
  }
  .c-text200 {
    font-size: clamp(7.625rem, 9.0487238979vw + 5.4872389791rem, 12.5rem);
  }
  .c-sect-title01 {
    font-size: 3.125rem;
    padding-top: 25px;
    padding-bottom: 28px;
  }
  .c-sect-title01::before {
    top: calc(50% - 50px);
    background-size: 100%;
  }
  .c-feature-item__title {
    padding: 23px 0;
  }
  .c-feature-item__body {
    padding-top: 20px;
    padding-bottom: 23px;
  }
  .c-feature-item__lead {
    min-height: 84px;
  }
  .c-feature-item__img {
    margin-top: 20px;
  }
  .c-feature-item__item {
    display: grid;
    grid-template-columns: 109px 1fr;
    align-items: flex-start;
    gap: 10px;
  }
  .c-feature-item__item-title {
    padding: 2px 0;
    font-size: 1rem;
  }
  .c-feature-item__item-txt {
    margin-top: 0;
  }
  .c-system-item__body {
    padding-top: 54px;
    padding-bottom: 50px;
  }
  .c-system-item__price-ruby {
    font-size: clamp(1.125rem, 1.6241299304vw + 0.7412993039rem, 2rem);
  }
  .c-system-item__price-yen {
    top: 37px;
  }
  .c-system-item__txt {
    margin-top: 36px;
    font-size: 1rem;
  }
  .c-flow-item {
    display: grid;
    grid-template-columns: minmax(150px, 227px) minmax(500px, 1fr);
    border-radius: 20px;
  }
  .c-flow-item__no {
    padding-top: 56px;
    padding-left: 0;
  }
  .c-flow-item__no::before {
    width: 30px;
    border: 7px solid #a8d510;
    left: auto;
    right: -15px;
    top: 61px;
  }
  .c-flow-item__no::after {
    content: "";
    display: inline-block;
    position: absolute;
    border: 1px solid #a8d510;
    right: 0px;
    bottom: 0;
    top: 0px;
    height: calc(100% + 34px);
  }
  .c-flow-item__text-sect {
    padding-left: clamp(1.25rem, 9.5338983051vw + -3.3262711864rem, 4.0625rem);
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .c-flow-item__text-sect::after {
    border: none;
  }
  .c-flow-item__title {
    margin-top: 19px;
    font-size: clamp(0.9375rem, 1.0440835267vw + 0.6908352668rem, 1.5rem);
  }
  .c-flow-item__txt {
    line-height: 1.8;
    margin-top: 15px;
  }
  .c-faq-item__title-txt {
    margin-left: 20px;
  }
  .c-faq-item__body-txt {
    margin-left: 18px;
    padding-top: 22px;
  }
  .c-info-item__title {
    padding: 13px 0 11px;
  }
  .c-info-item__body {
    padding-top: 19px;
    padding-bottom: 40px;
  }
  .c-info-item__tel-number {
    font-size: clamp(1.5rem, 2.7842227378vw + 0.8422273782rem, 3rem);
  }
  .c-info-item__tel-number svg {
    width: 32px;
  }
  .c-info-item__tel-time {
    margin-top: 28px;
  }
  .c-info-item__mail {
    margin-top: 12px;
  }
  .c-info-item__mail-number {
    margin-top: 22px;
    font-size: clamp(1.25rem, 2.5423728814vw + 0.0296610169rem, 2rem);
  }
  .c-info-item__mail-number svg {
    width: 29.3px;
  }
  .c-info-item__mail-btn {
    margin-top: 26px;
  }
  .c-info-item__mail-btn .c-btn__box {
    font-size: clamp(1.25rem, 0.464037123vw + 1.1403712297rem, 1.5rem);
    padding: 14px 0;
  }
  .c-scroll-ani {
    height: 120px;
    margin-top: 13px;
  }
  .p-mv {
    padding-top: 80px;
  }
  .p-mv__item .u-ie .c-slider-item__img {
    margin-top: 0;
    padding: 0;
  }
  .p-mv__item .u-ie .c-slider-item__img-name {
    margin-top: 10px;
  }
  .p-mv__item .u-denchi .c-slider-item__img-name {
    margin-top: 10px;
  }
  .p-mv__item .u-denchi .c-slider-item__copy {
    padding: 0;
    padding-left: 19px;
    margin-top: -5px;
    position: relative;
    z-index: 0;
    background-color: transparent;
  }
  .p-mv__item .u-denchi .c-slider-item__copy::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: -5px;
    background-color: #ffffff;
    height: 72%;
    border-radius: 10px;
  }
  .p-mv__item .u-denchi .c-slider-item__copy {
    margin-top: 10px;
  }
  .p-mv__item .u-denchi .c-slider-item__copy-txt02 {
    display: block;
  }
  .p-mv__item .u-denchi .c-slider-item__copy-txt02 .u-sp-only {
    display: block;
  }
  .p-mv__item .u-kuruma .c-slider-item__copy {
    margin-top: 67px;
    padding-left: 18px;
  }
  .p-mv__item .u-kuruma .c-slider-item__copy-txt01 .u-sp-only,
  .p-mv__item .u-kuruma .c-slider-item__copy-txt03 .u-sp-only {
    display: block;
  }
  .p-mv__item .u-kuruma .c-slider-item__copy-txt01 .u-pc-only,
  .p-mv__item .u-kuruma .c-slider-item__copy-txt03 .u-pc-only {
    display: none;
  }
  .p-mv__item .u-grahu .c-slider-item__img {
    padding: 0;
    margin-top: -10px;
    right: -30px;
    width: clamp(19.375rem, 64.9038461538vw + -11.7788461538rem, 53.125rem);
  }
  .p-mv__item .u-grahu .c-slider-item__img-name {
    margin-top: 5px;
    margin-right: 40px;
  }
  .p-mv__item .u-grahu .c-slider-item__copy {
    margin-top: 69px;
    padding: 0 20px;
  }
  .p-mv__item .u-denkyu .c-slider-item__copy {
    margin-top: 40px;
    padding: 0 22px;
  }
  .p-mv__item .u-denkyu .c-slider-item__copy-txt01 .u-sp-only {
    display: block;
  }
  .p-mv__item .u-kanri .c-slider-item__copy {
    margin-top: 40px;
    padding: 0 20px;
  }
  .p-mv__item .u-kanri .c-slider-item__copy-txt01 .u-sp-only {
    display: block;
  }
  .p-mv__slider-arrow-sect {
    right: 20px;
    left: 20px;
  }
  .p-mv__slider-arrow-sect {
    top: calc(50% + 40px);
  }
  .p-mv__prev-arrow {
    width: 75px;
  }
  .p-mv__prev-arrow::after {
    width: 14px;
    border-left: 4px solid #39ac2a;
    border-bottom: 4px solid #39ac2a;
    top: calc(50% - 7px);
    right: calc(50% - 9px);
  }
  .p-mv__next-arrow {
    width: 75px;
  }
  .p-mv__next-arrow::after {
    width: 14px;
    border-right: 4px solid #39ac2a;
    border-bottom: 4px solid #39ac2a;
    top: calc(50% - 7px);
    left: calc(50% - 9px);
  }
  .p-about__title-sect {
    padding-left: 0;
    padding-right: 0;
  }
  .p-about__leadtext {
    text-align: center;
    margin-top: 60px;
  }
  .p-about__sect01 {
    margin-top: 140px;
    padding-top: 110px;
    padding-bottom: 83px;
    padding-left: clamp(1.875rem, 0vw + 1.875rem, 1.875rem);
    padding-right: clamp(1.875rem, 0vw + 1.875rem, 1.875rem);
  }
  .p-about__sect01-img {
    bottom: -5.4375vw;
  }
  .p-about__blow {
    bottom: 75%;
  }
  .p-about__sect01-item::before {
    width: 52px;
    aspect-ratio: 52/46;
  }
  .p-about__sect02 {
    margin-top: 174px;
    padding-top: 97px;
    padding-bottom: 58px;
    padding-left: clamp(1.25rem, 7.2115384615vw + -2.2115384615rem, 5rem);
    padding-right: clamp(1.25rem, 7.2115384615vw + -2.2115384615rem, 5rem);
  }
  .p-about__sect02 .p-about__blow {
    bottom: 88%;
  }
  .p-about__sect02-list {
    gap: clamp(1.25rem, 6.3559322034vw + -1.8008474576rem, 3.125rem);
  }
  .p-about__sect02-item {
    width: auto;
    margin-top: 4px;
  }
  .p-about__sect02-item-img {
    margin-bottom: 15px;
  }
  .p-feature__title-sect {
    padding-left: 0;
    padding-right: 0;
    margin-top: 58px;
  }
  .p-feature__list {
    margin-top: 64px;
    column-gap: 3.4482758621%;
  }
  .p-feature__item {
    width: 48.275862069%;
  }
  .p-feature__item:nth-of-type(4) .c-feature-item__img {
    margin-top: 40px;
  }
  .p-system__top {
    padding-top: 70px;
    padding-left: clamp(1.25rem, 4.8076923077vw + -1.0576923077rem, 3.75rem);
    padding-right: clamp(1.25rem, 4.8076923077vw + -1.0576923077rem, 3.75rem);
    padding-bottom: 80px;
  }
  .p-system__title-sect {
    padding-left: 0;
    padding-right: 0;
  }
  .p-system__top-txt {
    text-align: center;
    margin-top: 62px;
  }
  .p-system__top-list {
    padding-left: 0;
    padding-right: 0;
    flex-direction: row;
    column-gap: 3.8461538462%;
  }
  .p-system__top-item {
    width: 48.0769230769%;
  }
  .p-system__top-item:nth-of-type(2) .c-system-item__txt {
    margin-top: 36px;
  }
  .p-system__top-item + .p-system__top-item::before {
    width: clamp(5rem, 4.8728813559vw + 2.6610169492rem, 6.4375rem);
    left: -3.8461538462%;
    translate: -50% 0;
    bottom: 30%;
  }
  .p-system__bottom-title {
    margin-top: 74px;
    line-height: 1.44;
  }
  .p-system__bottom {
    padding-top: 62px;
    padding-bottom: 76px;
  }
  .p-system__bottom-img-title::before {
    width: 22px;
  }
  .p-system__bottom-img-box {
    margin-top: 20px;
  }
  .p-system__bottom-blow-title {
    font-size: clamp(1.5rem, 0.9280742459vw + 1.2807424594rem, 2rem);
  }
  .p-system__bottom-blow {
    margin-top: 35px;
    padding-top: 35px;
    padding-bottom: 23px;
    padding-left: 0;
    padding-right: 0;
    border-radius: 20px;
  }
  .p-system__bottom-blow::after {
    bottom: calc(100% - 60px);
    left: calc(50% - 60px);
  }
  .p-system__bottom-blow-list {
    margin-top: 0;
  }
  .p-system__bottom-blow-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.875rem, 1.6241299304vw + 0.4912993039rem, 1.75rem);
  }
  .p-system__bottom-blow-item-mark01, .p-system__bottom-blow-item-mark02 {
    margin: 0 12px;
  }
  .p-system__bottom-blow-item-mark03 {
    width: 12.3px;
  }
  .p-system__bottom-blow-item-mark04 {
    width: 12.3px;
  }
  .p-system__bottom-blow-item + .p-system__bottom-blow-item {
    margin-top: -28px;
  }
  .p-system__bottom-blow-item-right {
    margin-top: 0;
  }
  .p-system__bottom-blow-item-right .c-text41 {
    margin-left: -5px;
  }
  .p-system__btn {
    margin-top: 82px;
  }
  .p-flow__title-sect {
    padding-left: 0;
    padding-right: 0;
  }
  .p-flow__list {
    margin-top: 62px;
  }
  .p-flow__item + .p-flow__item {
    margin-top: 34px;
  }
  .p-flow__item:nth-of-type(1) .c-flow-item__no::after {
    height: calc(100% - 61px + 34px);
    top: 61px;
  }
  .p-flow__item:nth-of-type(4) .c-flow-item__no::after {
    height: 61px;
    top: 0;
  }
  .p-faq {
    padding-top: 64px;
    padding-bottom: 78px;
    padding-left: clamp(2.5rem, 11.5384615385vw + -3.0384615385rem, 8.5rem);
    padding-right: clamp(2.5rem, 11.5384615385vw + -3.0384615385rem, 8.5rem);
  }
  .p-faq__content {
    margin-top: 70px;
  }
  .p-faq__content .c-faq-item + .c-faq-item {
    margin-top: 50px;
  }
  .p-contact__heading {
    margin-top: 62px;
  }
  .p-contact__note {
    margin-top: 40px;
  }
  .p-contact__item {
    padding-top: 32px;
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: minmax(200px, 280px) minmax(300px, 1fr);
  }
  .p-contact__item-heading {
    padding-top: 11px;
  }
  .p-contact__item-body {
    margin-top: 0;
  }
  .p-contact__item-btn {
    margin-top: 80px;
  }
  .p-contact #mfp_phase_confirm h4 {
    padding: 20px 0;
  }
  .p-contact #mfp_phase_confirm table#mfp_confirm_table tr th,
  .p-contact #mfp_phase_confirm table#mfp_confirm_table tr td {
    padding: 20px 0;
    font-size: 1rem;
  }
  .p-contact #mfp_phase_confirm .mfp_buttons {
    margin-top: 70px;
    gap: 10px;
    flex-direction: row;
  }
  .p-contact #mfp_phase_confirm .mfp_element_button {
    font-size: clamp(1.25rem, 1.3921113689vw + 0.9211136891rem, 2rem);
    border-radius: 20px;
    padding: 30px 0;
  }
  .p-info__list {
    flex-direction: row;
    justify-content: center;
  }
  .p-info__item {
    max-width: 500px;
    width: 100%;
  }
  .p-thanks__txt {
    margin-top: 40px;
  }
  .p-thanks__btn {
    margin-top: 50px;
  }
  .u-sp-only {
    display: none;
  }
  .u-pc-only {
    display: block;
  }
}

@media screen and (min-width: 1025px){
  .c-slider-item__info {
    max-width: 497px;
    margin-top: 113px;
  }
  .c-slider-item__img-name {
    margin-top: -33px;
    margin-right: 60px;
    font-size: 1.1875rem;
  }
  .c-slider-item__copy-txt01, .c-slider-item__copy-txt02, .c-slider-item__copy-txt03 {
    font-size: clamp(2.5rem, 3.6057692308vw + 0.7692307692rem, 4.375rem);
  }
  .c-slider-item__copy-ruby01 {
    font-size: 1.125rem;
  }
  .p-mv__item .u-ie .c-slider-item__img-name {
    margin-top: -33px;
  }
  .p-mv__item .u-denchi .c-slider-item__img-name {
    margin-right: 16px;
    margin-top: -39px;
  }
  .p-mv__item .u-denchi .c-slider-item__copy {
    margin-top: -10px;
  }
  .p-mv__item .u-denchi .c-slider-item__copy-txt01,
  .p-mv__item .u-denchi .c-slider-item__copy-txt02 {
    font-size: clamp(1.6875rem, 5.1682692308vw + -0.7932692308rem, 4.375rem);
  }
  .p-mv__item .u-denchi .c-slider-item__copy-txt02 {
    margin-top: -34px;
  }
  .p-mv__item .u-denchi .c-slider-item__copy-txt02 .u-sp-only {
    display: none;
  }
  .p-mv__item .u-kuruma .c-slider-item__copy-txt01 .u-sp-only,
  .p-mv__item .u-kuruma .c-slider-item__copy-txt03 .u-sp-only {
    display: none;
  }
  .p-mv__item .u-kuruma .c-slider-item__copy-txt01 .u-pc-only,
  .p-mv__item .u-kuruma .c-slider-item__copy-txt03 .u-pc-only {
    display: block;
  }
  .p-mv__item .u-grahu .c-slider-item__img {
    right: 20px;
    margin-top: 0;
  }
  .p-mv__item .u-denkyu .c-slider-item__copy {
    margin-top: 120px;
  }
  .p-mv__item .u-denkyu .c-slider-item__img-name {
    margin-right: 40px;
    margin-top: -37px;
  }
  .p-mv__item .u-denkyu .c-slider-item__copy-txt01 .u-sp-only {
    display: none;
  }
  .p-mv__item .u-kanri .c-slider-item__img-name {
    margin-right: 16px;
    margin-top: -37px;
  }
  .p-mv__item .u-kanri .c-slider-item__copy {
    margin-top: 70px;
  }
  .p-mv__item .u-kanri .c-slider-item__copy-txt01 .u-sp-only {
    display: none;
  }
}

@media screen and (min-width: 1200px){
  .c-slider-item__img {
    right: 0;
  }
  .p-mv {
    padding-top: 0;
  }
  .p-mv__item .u-denchi .c-slider-item__img {
    right: 23px;
  }
  .p-mv__item .u-denchi .c-slider-item__copy {
    margin-top: -24px;
  }
  .p-mv__item .u-kanri .c-slider-item__img {
    right: 23px;
  }
}

@media (any-hover: hover){
  .c-btn__box:hover {
    opacity: 1;
    background-color: #39ac2a;
    color: #ffffff;
  }
  .c-info-item__mail-btn:hover {
    color: #39ac2a;
  }
  .c-info-item__mail-btn:hover .c-btn__box {
    background-color: #ffffff;
    opacity: 1;
    color: #39ac2a;
  }
  .c-nav-item:hover a {
    opacity: 1;
  }
  .c-nav-item:hover .c-nav-item__box {
    background-color: #39ac2a;
  }
  .c-nav-item:hover .c-nav-item__name {
    color: #ffffff;
  }
  .c-nav-item:hover .c-nav-item__icon {
    background-color: #ffffff;
  }
  .c-nav-item:hover .c-nav-item__icon::before {
    border-bottom: 2px solid #39ac2a;
    border-right: 2px solid #39ac2a;
  }
  .p-mv__prev-arrow:hover {
    background-color: #39ac2a;
  }
  .p-mv__prev-arrow:hover::after {
    border-left: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
  }
  .p-mv__next-arrow:hover {
    background-color: #39ac2a;
  }
  .p-mv__next-arrow:hover::after {
    border-right: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
  }
  .p-contact__item-btn .c-btn__box:hover {
    color: #39ac2a;
    background-color: #ffffff;
  }
  .p-contact #mfp_phase_confirm .mfp_element_button:hover {
    background-color: #ffffff;
    color: #39ac2a;
  }
  .p-contact #mfp_phase_confirm .mfp_element_button#mfp_button_cancel:hover {
    border: 1px solid #a8d510;
    background-color: #a8d510;
    color: #ffffff;
  }
}
/*# sourceMappingURL=top.css.map */
