@charset "UTF-8";
/*
 * foundation
 */
/*
リセットcssを記述
*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/* メディアクエリ */
/* //メディアクエリ */
/* position 中央寄せ */
/* //position 中央寄せ */
/* 基本フォントサイズ設定 */
html {
  font-size: 100%; /* ブラウザのデフォルトのフォントサイズ。大抵は16px */
}

/* //基本フォントサイズ設定 */
body {
  font-family: "Noto Sans JP", sans-serif, YuGothic, "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, MS PGothic, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  overflow-x: hidden;
  position: relative;
  color: #333333;
  -webkit-font-smoothing: antialiased; /* macで文字が太くなる現象を解消 */
  font-size: pxtorem(16);
}

p {
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

/*
 * foundation
 */
/* 下から上にフェードイン */
.u-fade-in-from-bottom-elm {
  opacity: 0;
  transform: translateY(20px);
}

.u-fade-in-from-bottom-elm.js-scrolled {
  animation: fade-in-from-bottom 0.7s linear forwards;
}

@keyframes fade-in-from-bottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-from-bottom-x-center {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* //下から上にフェードイン */
/* 左から右にフェードイン */
.u-fade-in-from-left-elm {
  opacity: 0;
  transform: translateX(-20px);
}

.u-fade-in-from-left-elm.js-scrolled {
  animation: fade-in-from-left 1s linear forwards;
}

@keyframes fade-in-from-left {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* //左から右にフェードイン */
/* 右から左にフェードイン */
.fade-in-from-right-elm {
  opacity: 0;
  transform: translateX(20px);
}

.fade-in-from-right-elm.scrolled {
  animation: fade-in-from-right 1s linear forwards;
}

@keyframes fade-in-from-right {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* //右から左にフェードイン */
/*
 * layout
 */
/*
 * foundation
 */
.l-container-1140 {
  max-width: 1220px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .l-container-1140 {
    padding: 0 5.3333333333vw;
  }
}

/*
 * foundation
 */
/*
 * foundation
 */
.l-footer {
  background-color: #029b41;
  padding: 0.5625rem 0 0.6875rem;
}
@media screen and (max-width: 750px) {
  .l-footer {
    margin-bottom: 16vw;
  }
}
.l-footer__copy {
  text-align: center;
}
.l-footer__copy small {
  font-size: 0.6875rem;
  font-weight: 300;
  color: #FFFFFF;
}
@media screen and (max-width: 750px) {
  .l-footer__copy small {
    font-size: 2.1333333333vw;
  }
}

/*
* object
*/
/*
 * foundation
 */
.c-button-basic {
  border-radius: 100vw;
  display: block;
  color: #FFFFFF;
}

.c-button-primary {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  display: block;
}
@media screen and (max-width: 750px) {
  .c-button-primary {
    font-size: 4.8vw;
    border: 0.2666666667vw solid #FFFFFF;
  }
}

.c-button-secondary {
  font-family: "Noto Serif JP", serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  padding: 0.9375rem 0 2.3125rem;
}

.c-button-bg-green {
  background-color: #029b41;
}

.c-button-bg-camel {
  background-color: #feac00;
}

.c-button-dl span {
  position: relative;
  padding-bottom: 1.5625rem;
}
.c-button-dl span::before {
  content: "";
  width: 1.3125rem;
  height: 1.125rem;
  background: url(../img/icon-dl.webp) no-repeat center center/contain;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: 0;
}

.c-button-email span {
  position: relative;
  padding-bottom: 1.4375rem;
}
.c-button-email span::before {
  content: "";
  width: 1.3125rem;
  height: 1.0625rem;
  background: url(../img/icon-email.webp) no-repeat center center/contain;
  position: absolute;
}
.c-button-email--center span::before {
  left: 50%;
  transform: translatex(-50%);
  bottom: 0;
}
.c-button-email--left span::before {
  left: 0;
  top: 50%;
  transform: translatey(-50%);
}

.c-button-arrow-right {
  position: relative;
}
.c-button-arrow-right::before {
  content: "";
  width: 19px;
  height: 19px;
  background: url(../img/icon-arrow-right.webp) no-repeat center center/contain;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translatey(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .c-button-arrow-right::before {
    width: 4.2222222222vw;
    height: 4.2222222222vw;
    right: 8.4444444444vw;
  }
}
.c-button-arrow-right:hover {
  opacity: 1;
}
.c-button-arrow-right:hover::before {
  -webkit-transform: translate(8px, -50%);
  -ms-transform: translate(8px, -50%);
  transform: translate(8px, -50%);
}

/*
 * foundation
 */
.c-title-pattern1 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.1875rem;
  color: #029b41;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .c-title-pattern1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 750px) {
  .c-title-pattern1 {
    font-size: 5.6vw;
    line-height: 1.5;
  }
}

.c-title-pattern2--ja {
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2285714286;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 750px) {
  .c-title-pattern2--ja {
    font-size: 5.6vw;
    line-height: 1.1904761905;
    margin-bottom: 1.1111111111vw;
  }
}
.c-title-pattern2--ja.u-txt-white {
  color: #FFFFFF;
}
.c-title-pattern2--en {
  font-family: "Montserrat", sans-serif;
  color: #9bd700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-title-pattern2--en {
    font-size: 3.2vw;
  }
}

.c-title-pattern3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.730625rem;
  font-weight: 600;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  padding: 0 1.6875rem;
}
@media screen and (max-width: 750px) {
  .c-title-pattern3 {
    font-size: 4.8vw;
    padding: 0 3.5555555556vw;
  }
}
.c-title-pattern3::before, .c-title-pattern3::after {
  content: "";
  width: 0.15625rem;
  height: 3.0625rem;
  background-color: #FFFFFF;
  border-radius: 100vw;
  position: absolute;
  bottom: -0.75rem;
}
@media screen and (max-width: 750px) {
  .c-title-pattern3::before, .c-title-pattern3::after {
    width: 0.3306666667vw;
    height: 6.5146666667vw;
    bottom: -1.5555555556vw;
  }
}
.c-title-pattern3::before {
  -webkit-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  transform: rotate(-25deg);
  left: 0;
}
.c-title-pattern3::after {
  -webkit-transform: rotate(25deg);
  -ms-transform: rotate(25deg);
  transform: rotate(25deg);
  right: 0;
}

/*
 * foundation
 */
.c-section-text {
  font-size: 1.125rem;
  line-height: 1.6111111111;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .c-section-text {
    font-size: 3.4666666667vw;
    line-height: 1.6153846154;
  }
}

/*
 * foundation
 */
.p-global-nav {
  padding: 0.1875rem 1.1875rem 0.4375rem 0.625rem;
  border: 1px solid #dedede;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.31);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.31);
}
@media screen and (max-width: 750px) {
  .p-global-nav {
    padding: 2vw 3.2vw 2.6666666667vw 2.5333333333vw;
  }
}
.p-global-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-global-nav__logo {
  padding-top: 0.3125rem;
}
@media screen and (max-width: 750px) {
  .p-global-nav__logo {
    padding-top: 0;
  }
}
.p-global-nav__logo-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .p-global-nav__logo-inner {
    gap: 1.3333333333vw;
  }
}
.p-global-nav__logo-img img {
  width: 4.625rem;
}
@media screen and (max-width: 1439px) {
  .p-global-nav__logo-img img {
    width: 4rem;
  }
}
@media screen and (max-width: 750px) {
  .p-global-nav__logo-img img {
    width: 10.4vw;
  }
}
.p-global-nav__logo-txt-lead {
  font-family: "Noto Serif JP", serif;
  color: #029b41;
  font-size: 1.763125rem;
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media screen and (max-width: 1439px) {
  .p-global-nav__logo-txt-lead {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 750px) {
  .p-global-nav__logo-txt-lead {
    font-size: 3.6613333333vw;
  }
}
.p-global-nav__logo-txt-management {
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding-left: 0.25rem;
}
@media screen and (max-width: 750px) {
  .p-global-nav__logo-txt-management {
    font-size: 2.2533333333vw;
    padding-left: 0;
  }
}
@media screen and (max-width: 1279px) {
  .p-global-nav__link-wrapper {
    width: 60%;
    min-width: 280px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 400;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}
.p-global-nav__link-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 33px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1279px) {
  .p-global-nav__link-inner {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    padding: 0 15px;
    position: relative;
    z-index: 15;
  }
}
.p-global-nav__link-tel {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 20px;
  color: #fff;
  background-color: #be3134;
  border-radius: 100px;
}
.p-global-nav__link-tel span {
  display: block;
}
.p-global-nav__link-tel-txt--free {
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}
.p-global-nav__link-tel-txt--time {
  font-size: 0.7rem;
}
.p-global-nav__link-tel-link {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  position: relative;
  display: block;
  padding-left: 1.6875rem;
}
@media screen and (max-width: 1439px) {
  .p-global-nav__link-tel-link {
    font-size: 1.75rem;
  }
}
.p-global-nav__link-tel-link::before {
  content: "";
  width: 1.125rem;
  height: 1.5rem;
  background: url(../img/icon-tel.webp) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
}
@media screen and (max-width: 1439px) {
  .p-global-nav__link-tel-link::before {
    width: 0.9375rem;
    height: 1.25rem;
    top: 55%;
  }
}
.p-global-nav__link-tel-time {
  font-size: 0.875rem;
  font-weight: 400;
}
.p-global-nav__link-button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}
.p-global-nav__link-button-item {
  width: 230px;
}
.p-global-nav__input {
  display: none;
}
.p-global-nav__burger-button {
  display: none;
}
@media screen and (max-width: 1279px) {
  .p-global-nav__burger-button {
    display: block;
    width: 66px;
    height: 53px;
    position: fixed;
    top: 13px;
    right: 24px;
    background-color: transparent;
    border: none;
  }
}
@media screen and (max-width: 750px) {
  .p-global-nav__burger-button {
    width: 8.8vw;
    height: 7.0666666667vw;
    top: 4vw;
    right: 3.2vw;
  }
}
@media screen and (max-width: 1279px) {
  .p-global-nav__burger-button--close {
    z-index: 995;
    opacity: 1;
  }
}
@media screen and (max-width: 1279px) {
  .p-global-nav__bar {
    width: 66px;
    height: 8px;
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #029b41;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    visibility: visible;
  }
}
@media screen and (max-width: 750px) {
  .p-global-nav__bar {
    width: 8.8vw;
    height: 1.0666666667vw;
  }
}
@media screen and (max-width: 1279px) {
  .p-global-nav__bar--top {
    top: 0;
  }
}
@media screen and (max-width: 1279px) {
  .p-global-nav__bar--mid {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1279px) {
  .p-global-nav__bar--bottom {
    bottom: 0;
  }
}
.p-global-nav__menu-black-bg {
  display: none;
}
@media screen and (max-width: 1279px) {
  .p-global-nav__menu-black-bg {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    border: none;
  }
}
@media screen and (max-width: 1279px) {
  .p-global-nav__nav--open .p-global-nav__link-wrapper {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}
.p-global-nav__nav--open .p-global-nav__link-wrapper .p-global-nav__link-inner {
  overflow-y: inherit;
}
@media screen and (max-width: 1279px) {
  .p-global-nav__nav--open .p-global-nav__link-wrapper .p-global-nav__link-inner {
    overflow-y: auto;
  }
}
@media screen and (max-width: 1279px) {
  .p-global-nav__nav--open .p-global-nav__burger-button .p-global-nav__bar--top {
    -webkit-transform: translate(-50%, 37px) rotate(45deg);
    -ms-transform: translate(-50%, 37px) rotate(45deg);
    transform: translate(-50%, 37px) rotate(45deg);
  }
}
@media screen and (max-width: 750px) {
  .p-global-nav__nav--open .p-global-nav__burger-button .p-global-nav__bar--top {
    -webkit-transform: translate(-50%, 4.9333333333vw) rotate(45deg);
    -ms-transform: translate(-50%, 4.9333333333vw) rotate(45deg);
    transform: translate(-50%, 4.9333333333vw) rotate(45deg);
  }
}
@media screen and (max-width: 1279px) {
  .p-global-nav__nav--open .p-global-nav__burger-button .p-global-nav__bar--mid {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media screen and (max-width: 1279px) {
  .p-global-nav__nav--open .p-global-nav__burger-button .p-global-nav__bar--bottom {
    -webkit-transform: translate(-50%, -8px) rotate(-45deg);
    -ms-transform: translate(-50%, -8px) rotate(-45deg);
    transform: translate(-50%, -8px) rotate(-45deg);
  }
}
@media screen and (max-width: 750px) {
  .p-global-nav__nav--open .p-global-nav__burger-button .p-global-nav__bar--bottom {
    -webkit-transform: translate(-50%, -1.0666666667vw) rotate(-45deg);
    -ms-transform: translate(-50%, -1.0666666667vw) rotate(-45deg);
    transform: translate(-50%, -1.0666666667vw) rotate(-45deg);
  }
}
@media screen and (max-width: 1279px) {
  .p-global-nav__nav--open .p-global-nav__burger-button--close {
    z-index: 1;
    opacity: 0;
  }
}
@media screen and (max-width: 1279px) {
  .p-global-nav__nav--open .p-global-nav__burger-button--open {
    z-index: 995;
    opacity: 1;
  }
}
.p-global-nav__nav--open .p-global-nav__menu-black-bg {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 1279px) {
  .p-global-nav__nav--open .p-global-nav__menu-black-bg {
    opacity: 0.3;
    visibility: visible;
  }
}
.p-global-nav-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 30px;
}
.p-global-nav-link__item {
  width: 100%;
  color: #029b41;
}
.p-global-nav-link__item a {
  display: block;
}

/*
 * foundation
 */
.p-fv {
  background-color: #e3f1e9;
  padding: 19px 0 23px 0;
}
@media screen and (max-width: 1279px) {
  .p-fv {
    padding: 19px 0 80px 0;
  }
}
@media screen and (max-width: 750px) {
  .p-fv {
    padding: 4.4444444444vw 0 16vw 0;
  }
}
@media screen and (max-width: 750px) {
  .p-fv .l-container-1140 {
    padding: 0 3.3333333333vw;
  }
}
.p-fv-outer {
  max-width: 1049px;
  margin: 0 auto;
}
.p-fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -42px;
  margin-right: -42px;
}
@media screen and (max-width: 1279px) {
  .p-fv__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 1023px) {
  .p-fv__inner {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 750px) {
  .p-fv__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 0.2222222222vw;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-fv__txt, .p-fv__img {
  padding: 0 42px;
}
@media screen and (max-width: 1023px) {
  .p-fv__txt, .p-fv__img {
    padding: 0 20px;
  }
}
.p-fv__txt {
  width: 59.5%;
  padding-top: 35px;
}
@media screen and (max-width: 1279px) {
  .p-fv__txt {
    width: 65%;
  }
}
@media screen and (max-width: 750px) {
  .p-fv__txt {
    width: 100%;
    padding: 1.7777777778vw 0 0;
  }
}
.p-fv__txt-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.75rem;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: url(../img/fv-lead-bg.webp) no-repeat center center/contain;
  padding: 0.625rem 0px;
  text-align: center;
  margin-bottom: 0.25rem;
  -webkit-animation: fade-in-from-bottom 0.7s linear forwards 0.3s;
  animation: fade-in-from-bottom 0.7s linear forwards 0.3s;
  opacity: 0;
}
@media screen and (max-width: 1023px) {
  .p-fv__txt-lead {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 750px) {
  .p-fv__txt-lead {
    font-size: 4.412vw;
    margin-bottom: 0.4444444444vw;
  }
}
.p-fv__txt-catch {
  font-size: 4.933125rem;
  font-weight: 900;
  line-height: 1.1000886862;
  text-align: center;
  margin-bottom: 1.25rem;
  -webkit-animation: fade-in-from-bottom 0.7s linear forwards 0.6s;
  animation: fade-in-from-bottom 0.7s linear forwards 0.6s;
  opacity: 0;
}
@media screen and (max-width: 1023px) {
  .p-fv__txt-catch {
    font-size: 3.625rem;
  }
}
@media screen and (max-width: 750px) {
  .p-fv__txt-catch {
    font-size: 12.4386666667vw;
    margin-bottom: 4.2222222222vw;
  }
}
.p-fv__txt-message {
  font-size: 1.375rem;
  line-height: 1.7272727273;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  -webkit-animation: fade-in-from-bottom 0.7s linear forwards 0.9s;
  animation: fade-in-from-bottom 0.7s linear forwards 0.9s;
  opacity: 0;
}
@media screen and (max-width: 1023px) {
  .p-fv__txt-message {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 750px) {
  .p-fv__txt-message {
    font-size: 3.7333333333vw;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    line-height: 1.5;
  }
}
.p-fv__img {
  width: 40.5%;
}
@media screen and (max-width: 1279px) {
  .p-fv__img {
    width: 35%;
  }
}
@media screen and (max-width: 750px) {
  .p-fv__img {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .p-fv__img img {
    width: 56vw;
  }
}

/*
 * foundation
 */
.p-benefit {
  background: -o-linear-gradient(left, #029b41, #9bd700);
  background: -webkit-gradient(linear, left top, right top, from(#029b41), to(#9bd700));
  background: linear-gradient(to right, #029b41, #9bd700);
  padding-bottom: 12px;
}
@media screen and (max-width: 1023px) {
  .p-benefit {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 750px) {
  .p-benefit {
    padding-bottom: 8.4444444444vw;
  }
}
@media screen and (max-width: 750px) {
  .p-benefit .l-container-1140 {
    padding: 0 3.3333333333vw;
  }
}
.p-benefit__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1279px) {
  .p-benefit__inner {
    padding-left: 4.4444444444vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-benefit__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 29px;
    gap: 30px;
  }
}
@media screen and (max-width: 750px) {
  .p-benefit__inner {
    padding-left: 0;
    row-gap: 2.8888888889vw;
  }
}
.p-benefit__features {
  max-width: 544px;
  width: 50%;
  margin-top: -33px;
}
@media screen and (max-width: 1279px) {
  .p-benefit__features {
    width: 57%;
  }
}
@media screen and (max-width: 1023px) {
  .p-benefit__features {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .p-benefit__features {
    max-width: none;
    margin-top: -16vw;
  }
}
.p-benefit__features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -10.5px;
  margin-right: -10.5px;
}
@media screen and (max-width: 750px) {
  .p-benefit__features-list {
    margin-left: -0.9333333333vw;
    margin-right: -0.9333333333vw;
  }
}
.p-benefit__features-item {
  width: 33.3333333%;
  padding: 0 10.5px;
}
@media screen and (max-width: 750px) {
  .p-benefit__features-item {
    padding: 0 0.9333333333vw;
  }
}
.p-benefit__features-item:first-of-type .p-benefit__features-item-img {
  width: 35.5%;
  top: 34px;
}
@media screen and (max-width: 750px) {
  .p-benefit__features-item:first-of-type .p-benefit__features-item-img {
    top: 6vw;
  }
}
.p-benefit__features-item:first-of-type .p-benefit__features-item-txt {
  bottom: 29px;
}
@media screen and (max-width: 750px) {
  .p-benefit__features-item:first-of-type .p-benefit__features-item-txt {
    bottom: 6vw;
  }
}
.p-benefit__features-item:nth-of-type(2) .p-benefit__features-item-img {
  width: 39%;
  top: 26px;
}
@media screen and (max-width: 750px) {
  .p-benefit__features-item:nth-of-type(2) .p-benefit__features-item-img {
    top: 4.8888888889vw;
  }
}
.p-benefit__features-item:nth-of-type(2) .p-benefit__features-item-txt {
  bottom: 29px;
}
@media screen and (max-width: 750px) {
  .p-benefit__features-item:nth-of-type(2) .p-benefit__features-item-txt {
    bottom: 5.7777777778vw;
  }
}
.p-benefit__features-item:nth-of-type(3) .p-benefit__features-item-img {
  width: 38%;
  top: 26px;
}
@media screen and (max-width: 750px) {
  .p-benefit__features-item:nth-of-type(3) .p-benefit__features-item-img {
    top: 4.6666666667vw;
  }
}
.p-benefit__features-item:nth-of-type(3) .p-benefit__features-item-txt {
  bottom: 17px;
}
@media screen and (max-width: 750px) {
  .p-benefit__features-item:nth-of-type(3) .p-benefit__features-item-txt {
    bottom: 3.1111111111vw;
  }
}
.p-benefit__features-item-inner {
  border-radius: 50%;
  border: 2px solid #029b41;
  position: relative;
  background: -o-linear-gradient(bottom, #d1e5da 0%, #ffffff 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(#d1e5da), to(#ffffff));
  background: linear-gradient(to top, #d1e5da 0%, #ffffff 100%);
  height: 0;
  padding-top: 100%;
}
.p-benefit__features-item-inner::before {
  content: "";
  width: 93%;
  height: 93%;
  background: url(../img/benefit-bg.webp) no-repeat center center/contain;
  position: absolute;
  top: 53%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-benefit__features-item-img {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
}
.p-benefit__features-item-txt {
  font-size: 1.0625rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 900;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 750px) {
  .p-benefit__features-item-txt {
    font-size: 3.4533333333vw;
  }
}
.p-benefit__contact {
  width: 33%;
  max-width: 348px;
}
@media screen and (max-width: 1279px) {
  .p-benefit__contact {
    width: 39%;
  }
}
@media screen and (max-width: 1023px) {
  .p-benefit__contact {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .p-benefit__contact {
    max-width: none;
    width: 88vw;
  }
}
.p-benefit__contact .c-button-primary {
  padding: 28px 80px 28px 60px;
}
@media screen and (max-width: 750px) {
  .p-benefit__contact .c-button-primary {
    padding: 6.2222222222vw 17.7777777778vw 6.2222222222vw 14.8888888889vw;
  }
}

/*
 * foundation
 */
.p-links {
  padding-top: 2.0625rem;
  padding-bottom: 2.9375rem;
}
@media screen and (max-width: 750px) {
  .p-links {
    padding-top: 3.7777777778vw;
    padding-bottom: 4.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .p-links .l-container-1140 {
    padding: 0 6.6666666667vw;
  }
}
.p-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
@media screen and (max-width: 1279px) {
  .p-links__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
  }
}
@media screen and (max-width: 750px) {
  .p-links__list {
    margin-left: -0.7333333333vw;
    margin-right: -0.7333333333vw;
    row-gap: 1.3333333333vw;
  }
}
.p-links__list-item {
  width: 16.6666667%;
  text-align: center;
  padding: 0 7.5px;
}
@media screen and (max-width: 1279px) {
  .p-links__list-item {
    width: 33.3333333%;
  }
}
@media screen and (max-width: 750px) {
  .p-links__list-item {
    width: 50%;
    padding: 0 0.7333333333vw;
  }
}
.p-links__list-item-inner {
  background-color: #029b41;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-links__list-item-inner {
    border-radius: 1.3333333333vw;
  }
}
.p-links__list-item-inner a {
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1.0625rem 0 2.25rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-links__list-item-inner a {
    font-size: 3.4666666667vw;
    padding: 2.8888888889vw 0 6.4444444444vw;
  }
}
.p-links__list-item-inner a::before {
  content: "";
  width: 0.8125rem;
  height: 0.5rem;
  background: url(../img/icon-arrow-down-light-green.webp) no-repeat center center/contain;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translatex(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .p-links__list-item-inner a::before {
    width: 2.5333333333vw;
    height: 1.6vw;
    bottom: 2.5333333333vw;
  }
}
.p-links__list-item-inner a:hover {
  opacity: 1;
}
.p-links__list-item-inner a:hover::before {
  -webkit-transform: translate(-50%, 5px);
  -ms-transform: translate(-50%, 5px);
  transform: translate(-50%, 5px);
}

/*
 * foundation
 */
.p-problem {
  background-color: #f6f6f6;
  padding-top: 4rem;
  padding-bottom: 5.5625rem;
}
@media screen and (max-width: 750px) {
  .p-problem {
    padding-top: 9.7777777778vw;
    padding-bottom: 11.1111111111vw;
  }
}
.p-problem__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -18px;
  margin-right: -18px;
  margin-top: 3.5625rem;
}
@media screen and (max-width: 1023px) {
  .p-problem__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 36px;
  }
}
@media screen and (max-width: 750px) {
  .p-problem__list {
    margin-left: -1.3333333333vw;
    margin-right: -1.3333333333vw;
    row-gap: 2.6666666667vw;
    margin-top: 5.3333333333vw;
  }
}
.p-problem__list-item {
  width: 25%;
  padding: 0 18px;
}
@media screen and (max-width: 1023px) {
  .p-problem__list-item {
    width: 50%;
  }
}
@media screen and (max-width: 750px) {
  .p-problem__list-item {
    padding: 0 1.3333333333vw;
  }
}
.p-problem__list-item:first-of-type .p-problem__list-item-img img {
  width: 54%;
}
.p-problem__list-item:nth-of-type(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.p-problem__list-item:nth-of-type(2) .p-problem__list-item-img img {
  width: 56%;
}
.p-problem__list-item:nth-of-type(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
@media screen and (max-width: 1023px) {
  .p-problem__list-item:nth-of-type(3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
}
.p-problem__list-item:nth-of-type(3) .p-problem__list-item-img img {
  width: 43%;
}
.p-problem__list-item:nth-of-type(4) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
@media screen and (max-width: 1023px) {
  .p-problem__list-item:nth-of-type(4) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
}
.p-problem__list-item:nth-of-type(4) .p-problem__list-item-img img {
  width: 52%;
}
.p-problem__list-item-inner {
  border-radius: 10px;
  background-color: #FFFFFF;
  text-align: center;
  padding: 32px 10px;
}
@media screen and (max-width: 750px) {
  .p-problem__list-item-inner {
    padding: 6.6666666667vw 2.1333333333vw 5.7777777778vw;
  }
}
.p-problem__list-item-img {
  background-color: #e3f1e9;
  border-radius: 50%;
  width: 125px;
  height: 125px;
  position: relative;
  margin: 0 auto 1.3125rem;
}
@media screen and (max-width: 750px) {
  .p-problem__list-item-img {
    width: 16.6666666667vw;
    height: 16.6666666667vw;
    margin: 0 auto 3.1111111111vw;
  }
}
.p-problem__list-item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-problem__list-item-txt {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 1279px) {
  .p-problem__list-item-txt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 750px) {
  .p-problem__list-item-txt {
    font-size: 3.4666666667vw;
    line-height: 1.3846153846;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
  }
}

/*
 * foundation
 */
.p-solution {
  position: relative;
  padding-top: 3.4375rem;
  padding-bottom: 3.875rem;
}
@media screen and (max-width: 750px) {
  .p-solution {
    padding-top: 10vw;
    padding-bottom: 16.8888888889vw;
    background-color: #e3f1e9;
  }
}
@media screen and (max-width: 750px) {
  .p-solution .l-container-1140 {
    padding: 0 4.8888888889vw;
  }
}
.p-solution::before {
  content: "";
  width: 100%;
  height: 345px;
  background-color: #e3f1e9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .p-solution::before {
    content: none;
  }
}
.p-solution__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -41.5px;
  margin-right: -69.5px;
  margin-top: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .p-solution__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 750px) {
  .p-solution__list {
    margin-top: 8.2222222222vw;
    margin-left: 0;
    margin-right: 0;
    row-gap: 8.2222222222vw;
  }
}
.p-solution__list-item {
  width: 33.3333333%;
  height: 325px;
  position: relative;
}
.p-solution__list-item:first-of-type {
  padding: 0 41.5px;
  width: 32.6%;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
@media screen and (max-width: 1023px) {
  .p-solution__list-item:first-of-type {
    width: 50%;
    height: 330px;
  }
}
@media screen and (max-width: 750px) {
  .p-solution__list-item:first-of-type {
    width: 100%;
    padding: 0;
    height: auto;
  }
}
.p-solution__list-item:first-of-type .p-solution__list-item-img {
  margin-top: 32px;
}
@media screen and (max-width: 1023px) {
  .p-solution__list-item:first-of-type .p-solution__list-item-img {
    margin-top: 60px;
  }
}
@media screen and (max-width: 750px) {
  .p-solution__list-item:first-of-type .p-solution__list-item-img {
    margin-top: 0;
  }
}
.p-solution__list-item:first-of-type .p-solution__list-item-img img {
  width: 82.5%;
}
@media screen and (max-width: 1023px) {
  .p-solution__list-item:first-of-type .p-solution__list-item-img img {
    width: 254px;
  }
}
@media screen and (max-width: 750px) {
  .p-solution__list-item:first-of-type .p-solution__list-item-img img {
    width: 49.7%;
  }
}
.p-solution__list-item:nth-of-type(2) {
  padding: 0 69.5px 0 41.5px;
  width: 29.3%;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
@media screen and (max-width: 1023px) {
  .p-solution__list-item:nth-of-type(2) {
    width: 50%;
    height: 330px;
  }
}
@media screen and (max-width: 750px) {
  .p-solution__list-item:nth-of-type(2) {
    width: 100%;
    padding: 0;
    height: auto;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}
.p-solution__list-item:nth-of-type(2) .p-solution__list-item-img img {
  width: 86.1%;
}
@media screen and (max-width: 1023px) {
  .p-solution__list-item:nth-of-type(2) .p-solution__list-item-img img {
    width: 241px;
  }
}
@media screen and (max-width: 750px) {
  .p-solution__list-item:nth-of-type(2) .p-solution__list-item-img img {
    width: 41.6%;
  }
}
.p-solution__list-item:nth-of-type(3) {
  padding: 0 69.5px;
  width: 38.1%;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
@media screen and (max-width: 1023px) {
  .p-solution__list-item:nth-of-type(3) {
    width: 50%;
    height: 290px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}
@media screen and (max-width: 750px) {
  .p-solution__list-item:nth-of-type(3) {
    width: 100%;
    padding: 0;
    height: auto;
  }
}
.p-solution__list-item:nth-of-type(3) .p-solution__list-item-img img {
  width: 67.2%;
}
@media screen and (max-width: 1023px) {
  .p-solution__list-item:nth-of-type(3) .p-solution__list-item-img img {
    width: 202px;
  }
}
@media screen and (max-width: 750px) {
  .p-solution__list-item:nth-of-type(3) .p-solution__list-item-img img {
    width: 43.5%;
  }
}
.p-solution__list-item-inner {
  height: 100%;
}
.p-solution__list-item-txt {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3636363636;
  color: #029b41;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translatex(-50%);
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .p-solution__list-item-txt {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 750px) {
  .p-solution__list-item-txt {
    font-size: 4.8vw;
    line-height: 1.5;
    position: static;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    margin-top: 2.8888888889vw;
  }
}
.p-solution__list-item-img {
  text-align: center;
}

/*
 * foundation
 */
.p-cv-banner {
  background-color: #029b41;
  color: #FFFFFF;
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}
@media screen and (max-width: 750px) {
  .p-cv-banner {
    padding-top: 7.5555555556vw;
    padding-bottom: 8.6666666667vw;
  }
}
.p-cv-banner__wrapper {
  max-width: 928px;
  margin: 3.1875rem auto 0;
}
@media screen and (max-width: 750px) {
  .p-cv-banner__wrapper {
    margin-top: 7.7777777778vw;
  }
}
.p-cv-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -54.5px;
  margin-right: -54.5px;
}
@media screen and (max-width: 1023px) {
  .p-cv-banner__inner {
    margin-left: -20px;
    margin-right: -20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 750px) {
  .p-cv-banner__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 2.4444444444vw;
  }
}
.p-cv-banner__email, .p-cv-banner__tel {
  padding: 0 54.5px;
}
@media screen and (max-width: 1023px) {
  .p-cv-banner__email, .p-cv-banner__tel {
    padding: 0 20px;
  }
}
.p-cv-banner__email {
  width: 54%;
}
@media screen and (max-width: 1023px) {
  .p-cv-banner__email {
    width: 384px;
  }
}
@media screen and (max-width: 750px) {
  .p-cv-banner__email {
    width: 100%;
  }
}
.p-cv-banner__button {
  font-size: 1.665rem;
  padding: 1.3125rem 0 1.8125rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-cv-banner__button {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 750px) {
  .p-cv-banner__button {
    font-size: 5.3333333333vw;
    padding: 4.2222222222vw 0 5.1111111111vw;
    letter-spacing: 0;
  }
}
.p-cv-banner .c-button-email span {
  padding-left: 4.375rem;
}
@media screen and (max-width: 1023px) {
  .p-cv-banner .c-button-email span {
    padding-left: 1.875rem;
  }
}
@media screen and (max-width: 750px) {
  .p-cv-banner .c-button-email span {
    padding-left: 9.1111111111vw;
  }
}
.p-cv-banner .c-button-email span::before {
  width: 1.9375rem;
  height: 1.5625rem;
  top: 36%;
  left: 1.3125rem;
}
@media screen and (max-width: 1023px) {
  .p-cv-banner .c-button-email span::before {
    width: 1.4375rem;
    height: 1.125rem;
    top: 32%;
    left: 0;
  }
}
@media screen and (max-width: 750px) {
  .p-cv-banner .c-button-email span::before {
    width: 5.3333333333vw;
    height: 4.4vw;
    left: 1.1111111111vw;
  }
}
.p-cv-banner__tel {
  width: 46%;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-cv-banner__tel {
    width: 327px;
  }
}
@media screen and (max-width: 750px) {
  .p-cv-banner__tel {
    width: 100%;
  }
}
.p-cv-banner__tel a {
  font-size: 3.20375rem;
  font-family: "Noto Serif JP", serif;
  position: relative;
  padding-left: 3.5rem;
  font-weight: 300;
}
@media screen and (max-width: 1023px) {
  .p-cv-banner__tel a {
    font-size: 1.875rem;
    padding-left: 2.1875rem;
  }
}
@media screen and (max-width: 750px) {
  .p-cv-banner__tel a {
    font-size: 8vw;
    padding-left: 7.7777777778vw;
  }
}
.p-cv-banner__tel a::before {
  content: "";
  width: 2.8125rem;
  height: 2.6875rem;
  background: url(../img/icon-tel-white.webp) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
}
@media screen and (max-width: 1023px) {
  .p-cv-banner__tel a::before {
    width: 1.6875rem;
    height: 1.625rem;
  }
}
@media screen and (max-width: 750px) {
  .p-cv-banner__tel a::before {
    width: 6.9333333333vw;
    height: 6.8vw;
    top: 55%;
  }
}
.p-cv-banner__tel-time {
  font-size: 1.11rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-cv-banner__tel-time {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 750px) {
  .p-cv-banner__tel-time {
    font-size: 2.9333333333vw;
    margin-top: 0.6666666667vw;
  }
}

/*
 * foundation
 */
.p-forte {
  padding-top: 4rem;
  padding-bottom: 6.75rem;
}
@media screen and (max-width: 750px) {
  .p-forte {
    padding-top: 15.3333333333vw;
    padding-bottom: 12.4444444444vw;
  }
}
@media screen and (max-width: 750px) {
  .p-forte .l-container-1140 {
    padding: 0 5.0666666667vw;
  }
}
.p-forte__message {
  width: 85%;
  text-align: center;
  margin: 2.25rem auto 5.125rem;
}
@media screen and (max-width: 750px) {
  .p-forte__message {
    width: 100%;
    text-align: left;
    margin: 4vw auto 16vw;
  }
}
.p-forte-wrapper {
  max-width: 1093px;
  margin: 0 auto;
}
.p-forte-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 78px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .p-forte-list {
    row-gap: 15.1111111111vw;
  }
}
.p-forte-list__item {
  position: relative;
  width: 100%;
}
.p-forte-list__item::before {
  content: "";
  width: 704px;
  height: 212px;
  background-color: #e3f1e9;
  position: absolute;
  left: -378px;
  bottom: -34px;
}
@media screen and (max-width: 1279px) {
  .p-forte-list__item::before {
    height: 16.5625vw;
    bottom: -2.65625vw;
    left: -440px;
  }
}
@media screen and (max-width: 1023px) {
  .p-forte-list__item::before {
    top: 30px;
    left: -500px;
  }
}
@media screen and (max-width: 750px) {
  .p-forte-list__item::before {
    content: none;
  }
}
.p-forte-list__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -21.5px;
  margin-right: -21.5px;
}
@media screen and (max-width: 750px) {
  .p-forte-list__item-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -5.0666666667vw;
    margin-right: -5.0666666667vw;
    row-gap: 3.5555555556vw;
  }
}
.p-forte-list__item-img, .p-forte-list__item-txt-wrapper {
  padding: 0 21.5px;
}
.p-forte-list__item-img {
  position: relative;
  width: 37.8%;
}
@media screen and (max-width: 750px) {
  .p-forte-list__item-img {
    width: 100%;
    padding: 0;
  }
}
.p-forte-list__item-num {
  width: 61px;
  height: 61px;
  background-color: #bfa658;
  position: absolute;
  right: 46px;
  top: -30px;
  display: block;
}
@media screen and (max-width: 750px) {
  .p-forte-list__item-num {
    width: 10vw;
    height: 10vw;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -4.8888888889vw;
  }
}
.p-forte-list__item-num span {
  font-size: 1.75rem;
  color: #FFFFFF;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5357142857;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
  .p-forte-list__item-num span {
    font-size: 5.3333333333vw;
  }
}
.p-forte-list__item-txt-wrapper {
  width: 62.2%;
}
@media screen and (max-width: 750px) {
  .p-forte-list__item-txt-wrapper {
    width: 100%;
  }
}
.p-forte-list__item-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.75rem;
  line-height: 1.5357142857;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #029b41;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 1023px) {
  .p-forte-list__item-ttl {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 750px) {
  .p-forte-list__item-ttl {
    font-size: 5.3333333333vw;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 6.6666666667vw;
  }
}
.p-forte-list__item-txt {
  font-size: 1.125rem;
  line-height: 1.6111111111;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .p-forte-list__item-txt {
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
  }
}

/*
 * foundation
 */
.p-service {
  background: -webkit-gradient(linear, left top, right top, from(#029b41), to(#9bd700));
  background: -o-linear-gradient(left, #029b41, #9bd700);
  background: linear-gradient(to right, #029b41, #9bd700);
  padding-top: 3.875rem;
  padding-bottom: 7.25rem;
}
@media screen and (max-width: 750px) {
  .p-service {
    padding-top: 9.7777777778vw;
    padding-bottom: 13.3333333333vw;
  }
}
.p-service__message {
  text-align: center;
  color: #FFFFFF;
  margin-top: 2.9375rem;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 750px) {
  .p-service__message {
    text-align: left;
    margin-top: 3.7777777778vw;
    margin-bottom: 8vw;
  }
}
.p-service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 9px;
  margin-left: -4px;
  margin-right: -4px;
}
@media screen and (max-width: 1023px) {
  .p-service-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 750px) {
  .p-service-list {
    row-gap: 1.3333333333vw;
  }
}
.p-service-list__item {
  padding: 0 4px;
  width: 33.3333333%;
}
@media screen and (max-width: 1023px) {
  .p-service-list__item {
    width: 50%;
  }
}
@media screen and (max-width: 750px) {
  .p-service-list__item {
    width: 100%;
    height: 36vw;
  }
}
.p-service-list__item:first-of-type .p-service-list__item-img img {
  width: 34%;
}
.p-service-list__item:nth-of-type(2) .p-service-list__item-img img {
  width: 49%;
}
.p-service-list__item:nth-of-type(3) .p-service-list__item-img img, .p-service-list__item:nth-of-type(5) .p-service-list__item-img img {
  width: 48%;
}
.p-service-list__item:nth-of-type(4) .p-service-list__item-img img {
  width: 43%;
}
.p-service-list__item:nth-of-type(6) .p-service-list__item-img img {
  width: 42%;
}
.p-service-list__item:nth-of-type(7) .p-service-list__item-img img {
  width: 46%;
}
.p-service-list__item:nth-of-type(8) .p-service-list__item-img img {
  width: 57%;
}
.p-service-list__item:nth-of-type(9) .p-service-list__item-img img {
  width: 41%;
}
.p-service-list__item:nth-of-type(7) .p-service-list__item-inner, .p-service-list__item:nth-of-type(8) .p-service-list__item-inner, .p-service-list__item:nth-of-type(9) .p-service-list__item-inner {
  padding-bottom: 0.9375rem;
}
.p-service-list__item-inner {
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 27px 14px 33px;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .p-service-list__item-inner {
    padding: 4vw 4.2222222222vw 4vw;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.p-service-list__item-img {
  width: 29%;
  padding-right: 12.5px;
}
@media screen and (max-width: 750px) {
  .p-service-list__item-img {
    width: 22.4%;
    padding-right: 2vw;
    padding-top: 6vw;
  }
}
.p-service-list__item-img-inner {
  padding-top: 100%;
  height: 0;
  background-color: #029b41;
  position: relative;
  border-radius: 50%;
}
.p-service-list__item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-service-list__item-txt-wrapper {
  width: 71%;
  padding-left: 12.5px;
}
@media screen and (max-width: 750px) {
  .p-service-list__item-txt-wrapper {
    width: 77.6%;
    padding-left: 2vw;
  }
}
.p-service-list__item-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 1279px) {
  .p-service-list__item-ttl {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 750px) {
  .p-service-list__item-ttl {
    font-size: 4.8vw;
    line-height: 1.5;
    margin-bottom: 1.5555555556vw;
  }
}
.p-service-list__item-txt {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  color: #767676;
}
@media screen and (max-width: 750px) {
  .p-service-list__item-txt {
    font-size: 3.2vw;
    line-height: 1.5;
  }
}

/*
 * foundation
 */
.p-feature {
  padding-top: 5rem;
  padding-bottom: 6.875rem;
}
@media screen and (max-width: 750px) {
  .p-feature {
    padding-top: 10.4444444444vw;
    padding-bottom: 11.1111111111vw;
  }
}
.p-feature .l-container-1140 {
  position: relative;
}
.p-feature-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.125rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .p-feature-inner {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .p-feature-inner {
    margin-top: 8.4444444444vw;
  }
}
.p-feature-list-wrapper {
  color: #FFFFFF;
  width: 51.8%;
}
@media screen and (max-width: 1279px) {
  .p-feature-list-wrapper {
    width: 60%;
    padding-left: 3.125rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-feature-list-wrapper {
    width: 100%;
    padding-left: 0;
  }
}
.p-feature-list__item {
  background-color: #029b41;
  position: relative;
  padding-right: 3.8125rem;
}
@media screen and (max-width: 1023px) {
  .p-feature-list__item {
    padding-left: 5.6vw;
  }
}
@media screen and (max-width: 750px) {
  .p-feature-list__item {
    padding-right: 3.5555555556vw;
  }
}
.p-feature-list__item::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #029b41;
  position: absolute;
  top: 0;
  left: -400px;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .p-feature-list__item::before {
    content: none;
  }
}
.p-feature-list__item:first-of-type {
  padding-top: 4.5625rem;
}
@media screen and (max-width: 750px) {
  .p-feature-list__item:first-of-type {
    padding-top: 6.6666666667vw;
  }
}
.p-feature-list__item:last-of-type {
  padding-bottom: 5.375rem;
}
@media screen and (max-width: 750px) {
  .p-feature-list__item:last-of-type {
    padding-bottom: 8.8888888889vw;
  }
}
.p-feature-list__item:not(:last-of-type) {
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 750px) {
  .p-feature-list__item:not(:last-of-type) {
    padding-bottom: 11.3333333333vw;
    margin-bottom: 2.8888888889vw;
  }
}
.p-feature-list__item:not(:first-of-type) {
  margin-top: -1px;
}
@media screen and (max-width: 750px) {
  .p-feature-list__item:not(:first-of-type) {
    padding-top: 6.4444444444vw;
    margin-top: 0;
  }
}
.p-feature-list__item-ttl {
  font-size: 1.625rem;
  letter-spacing: 0.05em;
  line-height: 1.6538461538;
  font-weight: 700;
  position: relative;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .p-feature-list__item-ttl {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 750px) {
  .p-feature-list__item-ttl {
    font-size: 5.3333333333vw;
    line-height: 1.5;
    padding-bottom: 4.4444444444vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-feature-list__item-ttl::before {
  content: "";
  width: 367px;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  top: 23px;
  left: -388px;
}
@media screen and (max-width: 1023px) {
  .p-feature-list__item-ttl::before {
    width: 83.7333333333vw;
    height: 2px;
    top: unset;
    bottom: 0;
    left: -5.6vw;
  }
}
@media screen and (max-width: 750px) {
  .p-feature-list__item-ttl::before {
    height: 0.284vw;
  }
}
.p-feature__img {
  width: 48.2%;
}
@media screen and (max-width: 1279px) {
  .p-feature__img {
    width: 40%;
  }
}
@media screen and (max-width: 1023px) {
  .p-feature__img {
    width: 100%;
    margin-bottom: 8.8888888889vw;
  }
}
@media screen and (max-width: 750px) {
  .p-feature__img {
    width: 112%;
    margin-left: -5.3333333333vw;
    margin-right: -5.3333333333vw;
  }
}
.p-feature__img img {
  position: sticky;
  top: 0;
  right: 0;
}

/*
 * foundation
 */
.p-comparison {
  padding-top: 6.0625rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 750px) {
  .p-comparison {
    padding-top: 9.5555555556vw;
    padding-bottom: 20vw;
  }
}
.p-comparison.lazyloaded {
  background: url(../img/comparison-bg.webp) no-repeat center center/cover;
}
.p-comparison-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -15.5px;
  margin-right: -15.5px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 1023px) {
  .p-comparison-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 750px) {
  .p-comparison-inner {
    margin-top: 6.4444444444vw;
    row-gap: 5.7777777778vw;
  }
}
.p-comparison__txt, .p-comparison__table {
  padding: 0 15.5px;
}
.p-comparison__txt {
  width: 43%;
}
@media screen and (max-width: 1279px) {
  .p-comparison__txt {
    width: 45.5%;
  }
}
@media screen and (max-width: 1023px) {
  .p-comparison__txt {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .p-comparison__txt {
    line-height: 1.7307692308;
  }
}
.p-comparison__table {
  width: 57%;
  padding-top: 3rem;
}
@media screen and (max-width: 1279px) {
  .p-comparison__table {
    width: 54.5%;
  }
}
@media screen and (max-width: 1023px) {
  .p-comparison__table {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .p-comparison__table {
    padding-top: 0;
  }
}
.p-comparison__table table {
  margin: 0 auto;
}
.p-comparison__table table thead {
  display: block;
  margin-bottom: 21px;
}
@media screen and (max-width: 750px) {
  .p-comparison__table table thead {
    margin-bottom: 2.8vw;
  }
}
.p-comparison__table table thead tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-comparison__table table thead tr th {
  width: 129px;
  text-align: center;
  height: 68px;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.0625rem;
  line-height: 1.3529411765;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1279px) {
  .p-comparison__table table thead tr th {
    width: 80px;
  }
}
@media screen and (max-width: 750px) {
  .p-comparison__table table thead tr th {
    font-size: 2.4vw;
    height: 9.0666666667vw;
  }
}
.p-comparison__table table thead tr th:first-of-type {
  width: 150px;
}
@media screen and (max-width: 1023px) {
  .p-comparison__table table thead tr th:first-of-type {
    width: 28vw;
  }
}
.p-comparison__table table thead tr th:not(:first-of-type):not(:nth-of-type(2)) {
  width: 120px;
}
@media screen and (max-width: 1279px) {
  .p-comparison__table table thead tr th:not(:first-of-type):not(:nth-of-type(2)) {
    width: 90px;
  }
}
@media screen and (max-width: 1023px) {
  .p-comparison__table table thead tr th:not(:first-of-type):not(:nth-of-type(2)) {
    width: 15.0666666667vw;
  }
}
.p-comparison__table table thead tr th:nth-of-type(2) {
  width: 129px;
  background-color: #9bd700;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .p-comparison__table table thead tr th:nth-of-type(2) {
    width: 80px;
  }
}
@media screen and (max-width: 1023px) {
  .p-comparison__table table thead tr th:nth-of-type(2) {
    width: 16vw;
  }
}
.p-comparison__table table thead tr th:nth-of-type(2)::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 13px solid #9bd700;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: -12px;
}
@media screen and (max-width: 750px) {
  .p-comparison__table table thead tr th:nth-of-type(2)::before {
    border-right: 0.9333333333vw solid transparent;
    border-left: 0.9333333333vw solid transparent;
    border-top: 1.7333333333vw solid #9bd700;
    bottom: -1.6vw;
  }
}
.p-comparison__table table tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #FFFFFF;
}
.p-comparison__table table tbody tr:not(:last-of-type) {
  margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .p-comparison__table table tbody tr:not(:last-of-type) {
    margin-bottom: 0.6666666667vw;
  }
}
.p-comparison__table table tbody tr th {
  width: 150px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 18px;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-comparison__table table tbody tr th {
    width: 28vw;
  }
}
@media screen and (max-width: 750px) {
  .p-comparison__table table tbody tr th {
    font-size: 2.4vw;
    height: 9.0666666667vw;
  }
}
.p-comparison__table table tbody tr td {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.p-comparison__table table tbody tr td:first-of-type {
  background-color: #9bd700;
  width: 129px;
}
@media screen and (max-width: 1279px) {
  .p-comparison__table table tbody tr td:first-of-type {
    width: 80px;
  }
}
@media screen and (max-width: 1023px) {
  .p-comparison__table table tbody tr td:first-of-type {
    width: 16vw;
  }
}
.p-comparison__table table tbody tr td:not(:first-of-type) {
  font-size: 1.4375rem;
  width: 120px;
}
@media screen and (max-width: 1279px) {
  .p-comparison__table table tbody tr td:not(:first-of-type) {
    width: 90px;
  }
}
@media screen and (max-width: 1023px) {
  .p-comparison__table table tbody tr td:not(:first-of-type) {
    width: 15.0666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .p-comparison__table table tbody tr td:not(:first-of-type) {
    font-size: 3.4666666667vw;
  }
}
.p-comparison__table table tbody tr td img {
  width: 26px;
}
@media screen and (max-width: 750px) {
  .p-comparison__table table tbody tr td img {
    width: 4vw;
  }
}

/*
 * foundation
 */
.p-case-and-fee {
  padding-top: 4.6875rem;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee {
    padding-top: 9.7777777778vw;
  }
}
.p-case-and-fee-list {
  margin-top: 3.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 52px;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list {
    margin-top: 4vw;
    row-gap: 5.5555555556vw;
  }
}
.p-case-and-fee-list__item {
  background-color: #e3f1e9;
  width: 100%;
  position: relative;
}
.p-case-and-fee-list__item::before {
  content: "";
  width: 500px;
  height: 100%;
  background-color: #e3f1e9;
  position: absolute;
  top: 0;
  right: -330px;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list__item::before {
    content: none;
  }
}
.p-case-and-fee-list__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -13.5px;
  margin-right: -13.5px;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list__item-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-case-and-fee-list__img, .p-case-and-fee-list-txt-wrapper {
  padding: 0 13.5px;
}
.p-case-and-fee-list__img {
  width: 35.9%;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list__img {
    width: 100%;
  }
}
.p-case-and-fee-list__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list__img img {
    aspect-ratio: 779/511;
  }
}
.p-case-and-fee-list-txt-wrapper {
  width: 64.1%;
  padding-top: 1.5rem;
  padding-bottom: 1.8125rem;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list-txt-wrapper {
    width: 100%;
    padding-top: 3.7777777778vw;
    padding-bottom: 6.8888888889vw;
  }
}
.p-case-and-fee-list-txt-inner {
  padding-right: 1.875rem;
}
@media screen and (max-width: 1279px) {
  .p-case-and-fee-list-txt-inner {
    padding-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list-txt-inner {
    padding-left: 3.1111111111vw;
  }
}
.p-case-and-fee-list__ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.8125rem;
  line-height: 1.4827586207;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 0.25rem;
  margin-bottom: 1.0625rem;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list__ttl {
    font-size: 4.8vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-case-and-fee-list__ttl::before {
  content: "";
  width: 31.8888888889vw;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  top: 24px;
  right: 0;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list__ttl::before {
    width: 61.0666666667vw;
    right: 3.8666666667vw;
    top: 3.3333333333vw;
  }
}
.p-case-and-fee-list__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 9px;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list__contents {
    row-gap: 4vw;
  }
}
.p-case-and-fee-list__contents dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list__contents dl {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.p-case-and-fee-list__contents dl.u-align-items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.p-case-and-fee-list__contents dl dt {
  width: 112px;
  background-color: #029b41;
  font-size: 0.8125rem;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.4375rem 0 0.5rem;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list__contents dl dt {
    font-size: 2.6666666667vw;
    width: 20vw;
    padding: 1.1111111111vw 0 1.3333333333vw;
  }
}
.p-case-and-fee-list__contents dl dd {
  width: calc(100% - 112px);
  padding-left: 15px;
  letter-spacing: 0.05em;
  line-height: 1.4375;
}
@media screen and (max-width: 750px) {
  .p-case-and-fee-list__contents dl dd {
    font-size: 3.2vw;
    padding-left: 1.3333333333vw;
    line-height: 1.5;
  }
}

/*
 * foundation
 */
.p-faq {
  padding-top: 4.5rem;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 750px) {
  .p-faq {
    padding-top: 13.3333333333vw;
    padding-bottom: 10.4444444444vw;
  }
}
.p-faq-wrapper {
  max-width: 1000px;
  margin: 3.9375rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media screen and (max-width: 750px) {
  .p-faq-wrapper {
    margin: 5.1111111111vw auto 0;
  }
}
.p-faq__item {
  width: 100%;
}
.p-faq__q-box {
  position: relative;
}
.p-faq__q-box::before {
  content: "";
  width: 17px;
  height: 11px;
  background: url(../img/icon-arrow-down-green.webp) no-repeat center center/contain;
  position: absolute;
  top: 31px;
  right: 27px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .p-faq__q-box::before {
    width: 2.2666666667vw;
    height: 1.4666666667vw;
    top: 8vw;
    right: 2.8888888889vw;
  }
}
.p-faq__q-box:has(.is-accordion-head-opened)::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.p-faq__q-box-inner {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.3930434783;
  letter-spacing: 0.05em;
  width: 100%;
  border: 0.73px solid #c9c9c9;
  padding: 1.25rem 4.375rem 1.125rem 1.375rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-faq__q-box-inner {
    font-size: 4vw;
    padding: 2.8888888889vw 8.4444444444vw 3.5555555556vw 4.8888888889vw;
  }
}
.p-faq__q-box .p-faq__icon {
  color: #029b41;
  top: 18px;
  left: 23px;
}
@media screen and (max-width: 750px) {
  .p-faq__q-box .p-faq__icon {
    top: 5.1111111111vw;
    left: 2.6666666667vw;
  }
}
.p-faq__a-box {
  color: #545454;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .p-faq__a-box {
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.p-faq__a-box-inner {
  position: relative;
  padding: 1.3125rem 3.4375rem 1.4375rem 1.375rem;
}
@media screen and (max-width: 750px) {
  .p-faq__a-box-inner {
    padding: 1.5555555556vw 3.3333333333vw 0.4444444444vw 4.8888888889vw;
  }
}
.p-faq__a-box .p-faq__icon {
  color: #bfa658;
  top: 11px;
  left: 24px;
}
@media screen and (max-width: 750px) {
  .p-faq__a-box .p-faq__icon {
    top: 0.2222222222vw;
    left: 2.4444444444vw;
  }
}
.p-faq__icon {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4375rem;
  margin-right: 1.4375rem;
  position: absolute;
}
@media screen and (max-width: 750px) {
  .p-faq__icon {
    font-size: 4vw;
  }
}
.p-faq__contents {
  padding-left: 2.875rem;
  display: block;
}
@media screen and (max-width: 750px) {
  .p-faq__contents {
    padding-left: 4.2222222222vw;
  }
}

/*
 * foundation
 */
::-webkit-input-placeholder {
  color: #b8b8b8;
  opacity: 1;
}

::-moz-placeholder {
  color: #b8b8b8;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #b8b8b8;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #b8b8b8;
  opacity: 1;
}

::placeholder {
  color: #b8b8b8;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #b8b8b8;
}

::-ms-input-placeholder {
  color: #b8b8b8;
}

.p-contact {
  background-color: #e3f1e9;
  padding-top: 4.5625rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 750px) {
  .p-contact {
    padding-top: 10vw;
    padding-bottom: 13.3333333333vw;
  }
}
.p-contact-wrapper {
  max-width: 907px;
  margin: 5.625rem auto 0;
}
@media screen and (max-width: 750px) {
  .p-contact-wrapper {
    margin-top: 6.6666666667vw;
  }
}
.p-contact-wrapper--confirm {
  max-width: 500px;
  margin-top: 6.875rem;
}
.p-contact-wrapper table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .p-contact-wrapper table tr {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.p-contact-wrapper table tr:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .p-contact-wrapper table tr:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.p-contact-wrapper table tr th,
.p-contact-wrapper table tr td {
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-contact-wrapper table tr th {
  width: 200px;
}
@media screen and (max-width: 750px) {
  .p-contact-wrapper table tr th {
    width: 100%;
  }
}
.p-contact-wrapper table tr td {
  width: calc(100% - 200px);
  padding-left: 30px;
}
@media screen and (max-width: 750px) {
  .p-contact-wrapper table tr td {
    width: 100%;
  }
}
.p-contact__message--confirm, .p-contact__message--complete {
  text-align: center;
  font-size: 1.25rem;
  margin-top: 5rem;
}
@media screen and (max-width: 479px) {
  .p-contact__message--confirm, .p-contact__message--complete {
    font-size: 1.125rem;
  }
}
.p-contact__message--complete {
  margin-bottom: 5rem;
}
.p-contact-inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .p-contact-inner dl {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 3.1111111111vw;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.p-contact-inner dl:not(:first-of-type) {
  padding-top: 18px;
}
.p-contact-inner dl dt,
.p-contact-inner dl dd {
  font-weight: 400;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .p-contact-inner dl dt,
  .p-contact-inner dl dd {
    font-size: 4vw;
  }
}
.p-contact-inner dl dt {
  width: 212px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-contact-inner dl dt {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3.5555555556vw;
  }
}
.p-contact-inner dl dt .must,
.p-contact-inner dl dt .optional {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 0.75rem;
  padding: 0.21875rem 0.875rem 0.34375rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 750px) {
  .p-contact-inner dl dt .must,
  .p-contact-inner dl dt .optional {
    font-size: 2.4vw;
    position: static;
    padding: 0.8888888889vw 1.1111111111vw;
  }
}
.p-contact-inner dl dt .must {
  background-color: #be3134;
}
.p-contact-inner dl dt .optional {
  background-color: #888888;
}
.p-contact-inner dl dd {
  width: calc(100% - 212px);
  padding-left: 29px;
}
@media screen and (max-width: 750px) {
  .p-contact-inner dl dd {
    width: 100%;
    padding-left: 0;
  }
}
.p-contact__select-wrapper {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-contact__select-wrapper::before {
  content: "";
  width: 15px;
  height: 13px;
  background: url(../img/icon-triangle-black.webp) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  right: 19px;
}
.p-contact input[type=text],
.p-contact input[type=email],
.p-contact input[type=tel],
.p-contact select,
.p-contact textarea {
  border: 1px solid #d6d6d6;
  background-color: #FFFFFF;
}
.p-contact input[type=text],
.p-contact input[type=email],
.p-contact input[type=tel],
.p-contact textarea {
  width: 100%;
}
.p-contact input[type=text],
.p-contact input[type=email],
.p-contact input[type=tel],
.p-contact select {
  height: 58px;
  padding: 10px 18px;
}
@media screen and (max-width: 750px) {
  .p-contact input[type=text],
  .p-contact input[type=email],
  .p-contact input[type=tel],
  .p-contact select {
    height: 8.9333333333vw;
    padding: 6px 2.6666666667vw;
  }
}
.p-contact select {
  width: 310px;
}
.p-contact textarea {
  height: 200px;
  padding: 20px 18px;
  line-height: 1.7647058824;
}
@media screen and (max-width: 750px) {
  .p-contact textarea {
    height: 56vw;
    padding: 6px 2.6666666667vw;
  }
}
.p-contact-btn-wrapper {
  width: 526px;
  margin: 2.8125rem auto 0;
  max-width: 100%;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-contact-btn-wrapper {
    margin-top: 6.6666666667vw;
  }
}
.p-contact-btn-wrapper::before {
  content: "";
  width: 9px;
  height: 16px;
  background: url(../img/icon-arrow-right-white.webp) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  right: 39px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .p-contact-btn-wrapper::before {
    width: 1.6vw;
    height: 2.6666666667vw;
    right: 5.3333333333vw;
  }
}
.p-contact-btn-wrapper:hover::before {
  -webkit-transform: translate(8px, -50%);
  -ms-transform: translate(8px, -50%);
  transform: translate(8px, -50%);
}
.p-contact__button {
  text-align: center;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-weight: 500;
  font-size: 1.375rem;
  padding: 1.5rem 0;
  background-color: #bfa658 !important;
}
@media screen and (max-width: 750px) {
  .p-contact__button {
    font-size: 5.3333333333vw;
  }
}
.p-contact__error {
  color: #be3134;
  font-weight: 700;
  margin-top: 10px;
}
.p-contact-buttons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  margin-top: 100px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-contact__submit-button, .p-contact__back-button {
  width: 200px;
  text-align: center;
  padding: 20px 0;
  max-width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.1875rem;
}
@media screen and (max-width: 599px) {
  .p-contact__submit-button, .p-contact__back-button {
    width: 100%;
  }
}
.p-contact__submit-button:hover, .p-contact__back-button:hover {
  opacity: 0.7;
}
.p-contact__link--complete {
  width: 300px;
  margin: 0 auto;
  max-width: 100%;
}
.p-contact__top-button {
  font-size: 1.25rem;
  padding: 1.5rem 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-align: center;
}

/*
 * foundation
 */
.p-fixed-banner {
  transition: 0.3s;
  visibility: visible;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
}
@media screen and (max-width: 750px) {
  .p-fixed-banner {
    display: block;
  }
}
.p-fixed-banner-list {
  display: flex;
}
.p-fixed-banner__item {
  width: 50%;
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  position: relative;
  text-align: center;
}
.p-fixed-banner__item::before {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
}
.p-fixed-banner__item--tel {
  background-color: #be3134;
}
.p-fixed-banner__item--tel::before {
  content: "";
  width: 2.4vw;
  height: 3.2vw;
  background: url(../img/icon-tel-white2.webp) no-repeat center center/contain;
  top: 1.6vw;
}
.p-fixed-banner__item--dl {
  background-color: #029b41;
}
.p-fixed-banner__item--dl::before {
  content: "";
  width: 3.8666666667vw;
  height: 3.3333333333vw;
  background: url(../img/icon-dl.webp) no-repeat center center/contain;
  top: 1.6vw;
}
.p-fixed-banner__item--email {
  background-color: #feac00;
}
.p-fixed-banner__item--email::before {
  content: "";
  width: 4vw;
  height: 3.0666666667vw;
  background: url(../img/icon-email.webp) no-repeat center center/contain;
  top: 1.7333333333vw;
}
.p-fixed-banner__item a {
  display: block;
  padding-bottom: 1.3333333333vw;
  padding-top: 6.2666666667vw;
}
.p-fixed-banner__item a span {
  display: block;
}
.p-fixed-banner__tel {
  font-size: 4.2666666667vw;
  margin-bottom: 0.6666666667vw;
}
.p-fixed-banner__time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.1333333333vw;
}
.p-fixed-banner__dl, .p-fixed-banner__email {
  font-size: 3.0666666667vw;
  line-height: 1.1739130435;
}
.p-fixed-banner__email {
  margin-top: 1.6vw;
}

/*
 * foundation
 */
/* フォント */
.notoserif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.notosans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.noto-emoji {
  font-family: "Noto Color Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* //フォント */
/* フォントウェイト */
.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* //フォントウェイト */
/* color */
.u-text-green {
  color: #029b41;
}

.u-txt-white {
  color: #FFFFFF;
}

/* display */
.u-d-none {
  display: none;
}

.u-d-inline-block {
  display: inline-block;
}

@media screen and (max-width: 1279px) {
  .u-d-xl-none {
    display: none;
  }
}

@media screen and (max-width: 1279px) {
  .u-d-xl-block {
    display: block;
  }
}

@media screen and (max-width: 1279px) {
  .u-d-xl-flex {
    display: flex;
  }
}

@media screen and (max-width: 1023px) {
  .u-d-lg-none {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .u-d-lg-block {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .u-d-md-none {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .u-d-md-block {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .u-d-sm-none {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .u-d-sm-block {
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .u-d-xs-none {
    display: none;
  }
}

.u-align-items-start {
  align-items: flex-start;
}/*# sourceMappingURL=style.css.map */