@charset "UTF-8";
/*
 * Sass    : Dart sass
 * 命名規則 : BEM ベース
 *   [接頭辞]
 *   .-****  : Variant
 *   ._****  : Helpers
 *   .c-**** : 汎用コンポーネント
 *   .l-**** : レイアウト
 *   .f-**** : フォーム系コンポーネント
 */
@import url("https://use.fontawesome.com/releases/v5.15.1/css/all.css");
/**************************************************/
/* helpers */
/**************************************************/
._disp-ib {
  display: inline-block !important;
}

@media (max-width: 1081px) {
  ._view-cw-high {
    display: none !important;
  }
}
@media (min-width: 1082px) {
  ._view-cw-low {
    display: none !important;
  }
}
@media (max-width: 1279px) {
  ._view-xl-high {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  ._view-xl-low {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  ._view-lg-high {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  ._view-lg-low {
    display: none !important;
  }
}
@media (max-width: 767px) {
  ._view-md-high {
    display: none !important;
  }
}
@media (min-width: 768px) {
  ._view-md-low {
    display: none !important;
  }
}
@media (max-width: 479px) {
  ._view-sm-high {
    display: none !important;
  }
}
@media (min-width: 480px) {
  ._view-sm-low {
    display: none !important;
  }
}
._clearfix {
  zoom: 1;
}
._clearfix:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

._center {
  text-align: center !important;
}

._left {
  text-align: left !important;
}

._right {
  text-align: right !important;
}

._float-l {
  float: left !important;
}

._float-r {
  float: right !important;
}

._clear {
  clear: both !important;
}

._hidden {
  display: none !important;
}

._disp-ib {
  display: inline-block !important;
}

._margin0 {
  margin: 0 !important;
}

._padding0 {
  padding: 0 !important;
}

._border0 {
  border: none !important;
}

._fixed {
  position: fixed !important;
}

._absolute {
  position: absolute !important;
}

._static {
  position: static !important;
}

._xsmall {
  font-size: 75% !important;
}

._small {
  font-size: 88% !important;
}

._large {
  font-size: 113% !important;
}

._xlarge {
  font-size: 133% !important;
}

._nowrap {
  white-space: nowrap !important;
}

._nobg {
  background: none !important;
}

._full {
  width: 100% !important;
}

/**************************************************/
/* base */
/**************************************************/
:root {
  --footer-background-color: #333;
  --footer-color: white;
  --marker-color: #FDF41F;
}

:root {
  font-size: min(16px, 1.4801110083vw);
}
@media (max-width: 767px) {
  :root {
    font-size: 4.2666666667vw;
  }
}

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 56px;
  }
}

body {
  min-width: 320px;
  padding: 0;
  background-color: #ECF1EF;
  color: #000;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
body.-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

input,
textarea,
select,
button {
  font-size: 1rem;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
}

button,
input[type=button],
input[type=submit] {
  transition: opacity 0.15s ease-out;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #039C5E;
  text-decoration: underline;
  transition: opacity 0.15s ease-out;
}
a:hover {
  opacity: 0.7;
}
a:hover {
  text-decoration: none;
}

em {
  font-style: normal;
}

a.-telink,
a.js-telink {
  cursor: default;
  opacity: 1 !important;
}

body._ios a:hover {
  opacity: 1;
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* Header */
/**************************************************/
.l-header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: #fff;
  z-index: 100;
}
.l-header__inner {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.l-header__logo {
  margin: 0;
  color: #000;
  line-height: 0;
  padding: 1.375rem 0 1.375rem 2.5rem;
}
.l-header__logo a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  width: 20rem;
}
@media (max-width: 767px) {
  .l-header {
    height: 3.5rem;
  }
  .l-header__logo {
    padding-left: 1.25rem;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
  .l-header__logo a {
    width: 12.5rem;
    padding: 0;
  }
}

.l-gnav__list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-gnav__list > li {
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
.l-gnav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 1.5rem;
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.125rem;
  background: linear-gradient(to right bottom, #1BA36B 0%, #91CF00 100%);
  color: #fff;
  text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  height: 5rem;
}
.l-gnav__btn:hover, .l-gnav__btn.-current {
  opacity: 1;
}
@media (max-width: 767px) {
  .l-gnav__btn {
    font-size: 0.875rem;
    padding: 0 1rem;
    height: 3.5rem;
  }
}

.l-spnav {
  display: none;
  position: fixed;
  top: 3.5rem;
  right: 0;
  width: 100%;
  height: calc(100% - 3.5rem);
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.l-spnav__container {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.l-spnav__container::-webkit-scrollbar {
  display: none;
}
.l-spnav__container {
  -webkit-overflow-scrolling: touch;
  max-height: 100%;
  overflow-y: auto;
}
.l-spnav__list {
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
  background: #000;
  color: #fff;
}
.l-spnav__list > li {
  display: block;
}
.l-spnav__list > li:not(:last-child) {
  border-bottom: 1px solid #cccccc;
}
.l-spnav__btn {
  display: block;
  padding: 1.25rem 0.9375rem;
  color: inherit;
}
@media (min-width: 768px) {
  .l-spnav {
    display: none !important;
  }
}

/**************************************************/
/* Footer */
/**************************************************/
.l-footer {
  position: relative;
  background: var(--footer-background-color, #039C5E);
  z-index: 5;
  padding: 1.3125rem 1.25rem;
}
.l-footer__copy {
  margin: 0;
  display: block;
  color: var(--footer-color, #fff);
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .l-footer__copy {
    font-size: 0.75rem;
  }
}

/**************************************************/
/* contents */
/**************************************************/
body > .inbox {
  padding-top: 80px;
}
@media (max-width: 1023px) {
  body > .inbox {
    padding-top: 56px;
  }
}

.l-page-container {
  position: relative;
}

.l-page-contents {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 1.25rem;
}
.l-page-contents > *:first-child {
  margin-top: 0 !important;
}

.l-page-contents-l {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 1.25rem;
}
.l-page-contents-l > *:first-child {
  margin-top: 0 !important;
}

/**************************************************/
/* components */
/**************************************************/
/**************************************************/
/* components - basic */
/**************************************************/
.c-heading-a {
  font-weight: bold;
  font-size: 2.25rem;
  text-align: center;
  margin: 0;
  padding-bottom: 1.625rem;
  position: relative;
}
.c-heading-a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4.5rem;
  height: 0.25rem;
  border-radius: 6.25rem;
  background: #039C5E;
}
@media (max-width: 767px) {
  .c-heading-a {
    font-size: 1.625rem;
    padding-bottom: 1rem;
  }
  .c-heading-a::after {
    width: 3.125rem;
    height: 0.1875rem;
  }
}

/**************************************************/
/* components - form */
/**************************************************/
:root {
  --form-border-color: #039C5E;
  --form-border-radius: 0.25rem;
  --form-required-color: #DD0000;
  --form-alert-color: #DD0000;
  --form-alert-bg-color: #FFF0F0;
  --form-btn-bg-color: black;
  --form-btn-edit-color: #6F6F6F;
}

form label {
  cursor: pointer;
}
form textarea {
  line-height: 1.25;
  resize: vertical;
}

*:-moz-placeholder {
  color: #B5AFAF;
}

*:placeholder-shown {
  color: #B5AFAF;
}
*::-webkit-input-placeholder {
  color: #B5AFAF;
}
*:-moz-placeholder {
  color: #B5AFAF;
  opacity: 1;
}
*::-moz-placeholder {
  color: #B5AFAF;
  opacity: 1;
}
*:-ms-input-placeholder {
  color: #B5AFAF;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

.f-error {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.625rem 0 0;
  padding: 0.5em 1em;
  border-radius: 0.1875rem;
  background: var(--form-alert-bg-color);
  color: var(--form-alert-color);
  font-weight: 700;
}

.f-errorMsg {
  display: block;
  margin-bottom: 2.5rem;
  padding: 1em;
  background: var(--form-alert-bg-color);
  color: var(--form-alert-color);
  font-weight: 700;
}
.f-errorMsg__text {
  display: block;
  margin: 0;
  background-color: transparent;
}

.f-field {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  padding: 1.3125rem 1rem;
  border: 1px solid var(--form-border-color);
  border-radius: var(--form-border-radius);
  line-height: 1.25em;
  background: white;
}
.f-field.-short {
  max-width: 16.5rem;
}
.f-field.-middle {
  max-width: 25rem;
}
@media (max-width: 767px) {
  .f-field {
    padding-block: 1rem;
  }
}

textarea.f-field {
  display: block;
  line-height: 1.25;
  min-height: 12.5rem;
  resize: vertical;
}
@media (max-width: 767px) {
  textarea.f-field {
    min-height: 10rem;
  }
}

.f-checkbox {
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.f-checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
}
.f-checkbox .wpcf7-list-item, .f-checkbox__input {
  position: relative;
  margin: 0;
}
.f-checkbox .wpcf7-list-item-label, .f-checkbox__in {
  font-weight: bold;
  display: block;
  position: relative;
  padding: 0.125rem 0 0.125rem 2rem;
  line-height: 1.5;
}
.f-checkbox .wpcf7-list-item-label::after {
  display: none !important;
}
.f-checkbox .wpcf7-list-item-label::before, .f-checkbox__in::before {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid black;
  border-radius: var(--form-border-radius);
  background: #fff no-repeat center/1.125rem 1.125rem;
  content: "";
}
.f-checkbox input[type=checkbox]:checked ~ .f-checkbox__in::before {
  background-image: url(../img/icon-checkbox-checked.svg);
}
.f-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-image: url(../img/icon-checkbox-checked.svg);
}

.f-checkbox--policy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}
.f-checkbox--policy .f-checkbox__in {
  font-weight: bold;
}
@media (max-width: 767px) {
  .f-checkbox--policy {
    font-size: 1rem;
  }
}

.f-selectbox {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.f-selectbox::-ms-expand {
  display: none;
}
.f-selectbox {
  position: relative;
  padding: 1.3125rem 2.25rem 1.3125rem 1rem;
  border: 1px solid var(--form-border-color);
  border-radius: var(--form-border-radius);
  background: url(../img/icon-select.svg) no-repeat right 1.25rem top 50%, white;
  background-size: 0.9375rem 0.5625rem, 100%;
  line-height: 1.25em;
}
.f-selectbox.-full {
  width: 100%;
}
.f-selectbox.-short {
  width: 100%;
  max-width: 11.875rem;
}
.f-selectbox.-middle {
  width: 100%;
  max-width: 25rem;
}
@media (max-width: 767px) {
  .f-selectbox {
    padding-block: 1rem;
  }
}

.f-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: block;
  width: 100%;
  max-width: 15rem;
  margin: 0;
  padding: 0.6875rem;
  font-size: 1.125rem;
  box-shadow: none;
  font-weight: bold;
  background: var(--form-btn-bg-color);
  color: #fff;
}
@media (max-width: 767px) {
  .f-btn {
    font-size: 1rem;
  }
}

.f-form {
  --form-gap: 1.5rem 1.25rem;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: var(--form-gap);
}
@media (max-width: 767px) {
  .f-form {
    --form-gap: 0.625rem 0.625rem;
    margin-top: 2rem;
  }
}
.f-form__item {
  display: flex;
  gap: var(--form-gap);
}
@media (max-width: 767px) {
  .f-form__item {
    flex-direction: column;
  }
}
.f-form__label {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 0.5rem 1rem;
  padding-top: 1.125rem;
  width: 23.75rem;
  box-sizing: border-box;
  max-width: 100%;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .f-form__label {
    font-size: 1rem;
    gap: 0.5rem;
    padding-top: 0.625rem;
  }
}
.f-form__required {
  border-radius: 6.25rem;
  display: inline-block;
  background: var(--form-required-color);
  color: white;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.25rem 0.875rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .f-form__required {
    font-size: 0.8125rem;
  }
}
.f-form__input {
  flex: 1;
}
.f-form__input.-row {
  display: flex;
  gap: var(--form-gap);
}
.f-form__input.-column {
  display: flex;
  flex-direction: column;
  gap: var(--form-gap);
}

.f-form-confirm {
  max-width: 800px;
  margin: 0 auto;
}
.f-form-confirm .f-form {
  gap: 2rem;
}
.f-form-confirm .f-form__label {
  padding-top: 0;
}
@media (max-width: 767px) {
  .f-form-confirm .f-form {
    gap: 1.5rem;
  }
}

.f-policy {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .f-policy {
    margin-top: 2.5rem;
  }
}
.f-policy__title {
  margin: 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .f-policy__title {
    font-size: 1.0625rem;
  }
}
.f-policy__box {
  margin-top: 1.25rem;
  border: solid 1px var(--form-border-color);
  border-radius: var(--form-border-radius);
  max-height: 11.875rem;
  padding: 1rem 2.5rem;
  box-sizing: border-box;
  overflow-y: auto;
}
.f-policy__box h4, .f-policy__box h5 {
  font-weight: bold;
  margin: 0;
  line-height: 1.8;
}
.f-policy__box h4 {
  font-size: 1.125rem;
}
.f-policy__box h5 {
  font-size: 1rem;
}
.f-policy__box p {
  margin: 0;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .f-policy__box {
    margin-top: 1rem;
    padding: 1rem;
  }
  .f-policy__box h4 {
    font-size: 1rem;
  }
  .f-policy__box h5, .f-policy__box p {
    font-size: 0.875rem;
  }
}
.f-policy__check {
  margin-top: 1.5rem;
  background: #ECF1EF;
  padding: 1.5rem;
}

.f-toSend {
  margin: 5rem auto 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .f-toSend {
    margin-top: 2.5rem;
  }
}

.wpcf7-spinner {
  display: none !important;
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* Home */
/**************************************************/
.p-mv {
  width: 100%;
  position: relative;
  min-height: 40rem;
  overflow: hidden;
}
.p-mv__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-mv__bg img, .p-mv__bg iframe, .p-mv__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv__contents {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.8571428571vw;
  transform: translateY(-50%);
  background: rgba(0, 116, 68, 0.8);
  backdrop-filter: blur(0.375rem);
  border-radius: 1.5rem;
  border: solid 1px white;
  padding: 5.3125rem 4rem;
}
@media (max-width: 767px) {
  .p-mv__contents {
    padding: 2.5rem 1rem;
    border-radius: 1rem;
  }
}
.p-mv__title {
  margin: 0;
  color: white;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-mv__title {
    gap: 1rem;
  }
}
.p-mv__title-sub {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .p-mv__title-sub {
    font-size: 1rem;
  }
}
.p-mv__title-main {
  font-weight: bold;
  font-size: 5.5rem;
}
@media (max-width: 767px) {
  .p-mv__title-main {
    font-size: 2.75rem;
  }
}
.p-mv__title-main-en {
  font-family: "Jost", sans-serif;
  font-size: 6.25rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .p-mv__title-main-en {
    font-size: 3.125rem;
  }
}
.p-mv__bosyu {
  color: white;
  font-weight: bold;
  text-align: center;
  margin: 1.5rem 0 0 0;
  font-size: 2.5rem;
  padding: 0.75rem 0 1.0625rem;
  line-height: 1;
  background: black;
}
@media (max-width: 767px) {
  .p-mv__bosyu {
    font-size: 1.25rem;
    margin-top: 0.75rem;
    margin-inline: auto;
    padding-bottom: 0.875rem;
    max-width: 18.75rem;
  }
}
.p-mv__btn {
  background: linear-gradient(to right bottom, #1BA36B 0%, #91CF00 100%);
  margin: 4rem auto 0;
  color: white;
  font-weight: bold;
  border-radius: 6.25rem;
  display: block;
  box-sizing: border-box;
  font-size: 1.5rem;
  text-decoration: none;
  line-height: 1;
  max-width: 25rem;
  width: 100%;
  padding: 1.75rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-mv__btn {
    margin-top: 1.875rem;
    font-size: 1.125rem;
    max-width: 18.75rem;
    padding: 1.25rem;
  }
}

.p-lead {
  padding-top: 7.5rem;
}
@media (max-width: 767px) {
  .p-lead {
    padding-top: 3.75rem;
  }
}
.p-lead__inner {
  display: flex;
  gap: 1.5rem 3.75rem;
  max-width: 67.5rem;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-lead__inner {
    flex-direction: column;
  }
}
.p-lead__title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.8;
  margin: -0.45em 0 0;
}
@media (max-width: 767px) {
  .p-lead__title {
    font-size: 1.5rem;
  }
}
.p-lead__img {
  margin-top: 1rem;
  max-width: 27.125rem;
}
@media (max-width: 767px) {
  .p-lead__img {
    width: 90%;
    margin-left: auto;
    margin-top: 0;
  }
}
.p-lead__body {
  flex: 1;
}
.p-lead__lead {
  margin: -0.45em 0 0;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-lead__lead {
    font-size: 1rem;
  }
}

.p-strength {
  padding-top: 2.5rem;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .p-strength {
    padding-bottom: 4.375rem;
  }
}
.p-strength__title {
  text-align: center;
  font-weight: bold;
  font-size: 2.25rem;
  margin: 0;
}
.p-strength__title mark {
  background: linear-gradient(transparent 70%, var(--marker-color) 70%);
}
.p-strength__title em {
  color: #039C5E;
}
@media (max-width: 767px) {
  .p-strength__title {
    font-size: 1.625rem;
  }
}
.p-strength__title-num {
  font-family: "Jost";
  line-height: 0.8;
  font-size: 5.5rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .p-strength__title-num {
    font-size: 3rem;
  }
}
.p-strength__list {
  margin: 5rem 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-strength__list {
    flex-direction: column;
    margin-top: 2.5rem;
  }
}
.p-strength__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-strength__item-img {
  max-width: 17.5rem;
}
@media (max-width: 767px) {
  .p-strength__item-img {
    max-width: 12.5rem;
  }
}
.p-strength__item-title {
  font-weight: bold;
  margin: 2rem 0 0 0;
  font-size: 1.75rem;
  color: #007444;
  text-align: center;
}
@media (max-width: 767px) {
  .p-strength__item-title {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}
.p-strength__item-text {
  text-align: center;
  line-height: 1.8;
  font-size: 1.125rem;
  margin: 0.75rem 0 0 0;
}
@media (max-width: 767px) {
  .p-strength__item-text {
    font-size: 1rem;
    margin-top: 0.375rem;
  }
}

.p-num {
  background: white;
  padding-top: 10rem;
  padding-bottom: 3.625rem;
}
@media (max-width: 767px) {
  .p-num {
    padding-top: 4.375rem;
    padding-bottom: 2rem;
  }
}
.p-num__title {
  margin: 0;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}
.p-num__title em {
  color: #039C5E;
  font-size: 3.5rem;
  line-height: 0.8;
}
@media (max-width: 767px) {
  .p-num__title {
    font-size: 1.5rem;
  }
  .p-num__title em {
    font-size: 2.5rem;
  }
}
.p-num__lead {
  text-align: center;
  margin: 2.5rem 0 4.5rem 0;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-num__lead {
    font-size: 1rem;
    margin-top: 1.875rem;
    margin-bottom: 2.5rem;
  }
}
.p-num__list {
  list-style: none;
  display: flex;
  margin: 1.875rem 0 0 0;
  padding: 0;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .p-num__list {
    flex-direction: column;
  }
}
.p-num__item {
  flex: 1;
}
.p-num__item img {
  width: 100%;
}
.p-num__arrow {
  margin: 4rem auto 0;
  display: block;
  width: 5.875rem;
}
@media (max-width: 767px) {
  .p-num__arrow {
    margin: 2rem auto 0;
    width: 3.125rem;
  }
}

.p-copy {
  background: url(../../images/bg-copy.jpg) no-repeat center center/cover;
  padding: 5rem 0;
}
@media (max-width: 767px) {
  .p-copy {
    padding: 2.5rem 0;
  }
}
.p-copy__contents {
  padding: 1.375rem;
  position: relative;
  background: url(../../images/copy-box-strole-l.png) no-repeat top left/4.25rem, url(../../images/copy-box-strole-r.png) no-repeat top right/4.25rem;
}
.p-copy__contents::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../images/copy-box-strole-l.png) no-repeat top left/4.25rem, url(../../images/copy-box-strole-r.png) no-repeat top right/4.25rem;
  transform: scale(1, -1);
  top: 0;
  left: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-copy__contents {
    padding: 0.75rem;
    background-size: 2.5rem 2.5rem;
  }
  .p-copy__contents::after {
    background-size: 2.5rem 2.5rem;
  }
}
.p-copy__box {
  background: rgba(255, 255, 255, 0.7);
  padding: 3.25rem 1.875rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-copy__box {
    padding: 2.5rem 1.25rem;
  }
}
.p-copy__title {
  margin: 0;
  font-weight: bold;
  font-size: 2.25rem;
}
.p-copy__title mark {
  background: linear-gradient(transparent 70%, var(--marker-color) 70%);
}
@media (max-width: 767px) {
  .p-copy__title {
    font-size: 1.625rem;
  }
}
.p-copy__text {
  font-weight: bold;
  margin: 2.25rem 0 0 0;
  font-size: 1.375rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-copy__text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.p-map {
  padding-top: 9.375rem;
}
@media (max-width: 767px) {
  .p-map {
    padding-top: 3.75rem;
  }
}
.p-map__lead {
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  font-size: 1.25rem;
  margin: 2rem 0 0 0;
}
.p-map__lead em {
  font-size: 1.75rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-map__lead {
    font-size: 1.0625rem;
  }
  .p-map__lead em {
    font-size: 1.375rem;
  }
}
.p-map__map {
  margin-top: 5rem;
  aspect-ratio: 1200/662;
  overflow: hidden;
}
.p-map__map iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .p-map__map {
    margin-top: 2.5rem;
  }
}
.p-map__list {
  margin: 4rem 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 0.5rem 3rem;
  counter-reset: number;
}
@media (max-width: 767px) {
  .p-map__list {
    grid-auto-flow: row;
    grid-template-rows: repeat(1, auto);
    margin-top: 2rem;
  }
}
.p-map__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  counter-increment: number;
}
.p-map__item::before {
  content: counter(number);
  color: white;
  font-weight: bold;
  width: 2rem;
  aspect-ratio: 1;
  background: #039C5E;
  border-radius: 0.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-map__item {
    font-size: 1rem;
  }
  .p-map__item::before {
    width: 1.75rem;
    font-size: 1rem;
  }
}

.p-price {
  padding-top: 7.5rem;
}
@media (max-width: 767px) {
  .p-price {
    padding-top: 3.75rem;
  }
}
.p-price__table {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p-price__table {
    margin-top: 2rem;
  }
}
.p-price__table table {
  border-radius: 0.25rem;
  overflow: hidden;
  width: 100%;
  min-width: 50rem;
  border-collapse: collapse;
  border-spacing: 0.25rem;
}
.p-price__table table th, .p-price__table table td {
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.875rem 1rem;
  text-align: center;
}
.p-price__table table th:not(.-noBorder-b), .p-price__table table td:not(.-noBorder-b) {
  border-bottom: solid 0.25rem #ECF1EF;
}
.p-price__table table th:not(.-noBorder-r), .p-price__table table td:not(.-noBorder-r) {
  border-right: solid 0.25rem #ECF1EF;
}
.p-price__table table th {
  background: #039C5E;
  color: white;
}
.p-price__table table td {
  background: white;
}
@media (max-width: 767px) {
  .p-price__table table th, .p-price__table table td {
    font-size: 1rem;
    padding: 0.625rem;
  }
  .p-price__table table th {
    width: auto !important;
  }
}
.p-price__notes {
  list-style: none;
  margin: 2rem 0 0 0;
  padding: 0;
}
.p-price__notes > li {
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 767px) {
  .p-price__notes {
    margin-top: 1.25rem;
  }
  .p-price__notes > li {
    font-size: 0.875rem;
  }
}

.p-schedule {
  padding-top: 7.5rem;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .p-schedule {
    padding-top: 3.75rem;
    padding-bottom: 4.375rem;
  }
}
.p-schedule__dl {
  margin: 4rem auto 0;
  padding: 0;
  max-width: 52.5rem;
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 0.5rem 0;
}
.p-schedule__dl dt, .p-schedule__dl dd {
  font-size: 1.125rem;
  padding: 0.875rem;
  margin: 0;
  font-weight: bold;
  text-align: center;
}
.p-schedule__dl dt {
  background: #039C5E;
  color: white;
  border-radius: 0.25rem 0 0 0.25rem;
}
.p-schedule__dl dd {
  background: white;
  border-radius: 0 0.25rem 0.25rem 0;
}
@media (max-width: 767px) {
  .p-schedule__dl {
    margin-top: 2rem;
    grid-template-columns: 7.5rem 1fr;
  }
  .p-schedule__dl dt, .p-schedule__dl dd {
    font-size: 1rem;
    padding: rme(10);
  }
}

.p-movie {
  background: white;
  padding: 9.375rem 0 8.75rem;
}
@media (max-width: 767px) {
  .p-movie {
    padding-top: 4.375rem;
    padding-bottom: 3.75rem;
  }
}
.p-movie__title {
  font-size: 2.25rem;
  font-weight: bold;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}
.p-movie__title em {
  color: #039C5E;
  font-size: 3rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .p-movie__title {
    font-size: 1.375rem;
  }
  .p-movie__title em {
    font-size: 2rem;
  }
}
.p-movie__subtitle {
  font-weight: bold;
  margin: 0.5rem 0 0 0;
  font-size: 1.75rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-movie__subtitle {
    font-size: 1.1875rem;
  }
}
.p-movie__lead {
  margin: 1.875rem 0 0 0;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 767px) {
  .p-movie__lead {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

.p-movie-case {
  margin: 5rem 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-movie-case {
    flex-direction: column;
    margin-top: 2.5rem;
  }
}
.p-movie-case__item {
  flex: 1;
}
.p-movie-case__heading {
  font-size: 1.5rem;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .p-movie-case__heading {
    font-size: 1.25rem;
  }
}
.p-movie-case__heading-num {
  background: #039C5E;
  border-radius: 6.25rem;
  color: white;
  font-weight: bold;
  font-family: "Jost";
  font-size: 1.5rem;
  width: 3rem;
  aspect-ratio: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .p-movie-case__heading-num {
    font-size: 1.25rem;
    width: 2.25rem;
  }
}
.p-movie-case__thumbnail {
  margin-top: 1.5rem;
  display: block;
}
@media (max-width: 767px) {
  .p-movie-case__thumbnail {
    margin-top: 1rem;
  }
}
.p-movie-case__price {
  margin: 1.5rem 0 0 0;
  border: solid 0.125rem #039C5E;
  padding: 0.5625rem 0.5rem 0.4375rem;
  text-align: center;
  border-radius: 0.25rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-movie-case__price {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}
.p-movie-case__price-heading {
  font-weight: bold;
}
.p-movie-case__price-yen {
  font-family: "Jost";
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .p-movie-case__price-yen {
    font-size: 1.5rem;
  }
}
.p-movie-case__price-num {
  font-family: "Jost";
  color: #007444;
  font-size: 2.75rem;
}
@media (max-width: 767px) {
  .p-movie-case__price-num {
    font-size: 2.25rem;
  }
}
.p-movie-case__price-tax {
  font-weight: bold;
}
.p-movie-case__dl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 0 0;
  padding: 0;
}
.p-movie-case__dl dt {
  background: #039C5E;
  color: white;
  font-weight: bold;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}
.p-movie-case__dl dd {
  padding: 0;
  margin-left: 0.5rem;
  font-weight: bold;
}
.p-movie-case__dl dd + dt {
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .p-movie-case__dl {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}
.p-movie-case__memo {
  margin-top: 1.5rem;
  background: #ECF1EF;
  padding: 1.25rem;
}
@media (max-width: 767px) {
  .p-movie-case__memo {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}
.p-movie-case__memo-heading {
  font-weight: bold;
  margin: 0;
}
.p-movie-case__memo-text {
  margin: 0.5rem 0 0 0;
}

.p-movie-merit {
  list-style: none;
  margin: 5rem 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-movie-merit {
    margin-top: 2.5rem;
    gap: 0.625rem;
  }
}
.p-movie-merit__item {
  box-sizing: border-box;
  width: calc((100% - 5rem) / 3);
  border: solid 1px #039C5E;
  border-radius: 0.5rem;
  background: #ECF1EF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 0.125rem 1.5rem;
}
@media (max-width: 767px) {
  .p-movie-merit__item {
    width: calc(50% - 0.3125rem);
  }
}
.p-movie-merit__img {
  min-height: 5.0625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .p-movie-merit__img {
    transform: scale(0.7);
    min-height: 3.5rem;
  }
}
.p-movie-merit__text {
  flex: 1;
  margin: 0;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.375rem;
}
@media (max-width: 767px) {
  .p-movie-merit__text {
    font-size: 0.9375rem;
    min-height: 2.8125rem;
  }
}

.p-movie-sozai {
  margin-top: 5rem;
  background: linear-gradient(to right bottom, #1BA36B 0%, #91CF00 100%);
  border-radius: 2.5rem;
  padding: 3.5rem 2.8125rem 4rem;
}
@media (max-width: 767px) {
  .p-movie-sozai {
    padding: 1.875rem 1.25rem 2rem;
    border-radius: 1.25rem;
    margin-top: 2.5rem;
  }
}
.p-movie-sozai__title {
  font-weight: bold;
  text-align: center;
  margin: 0;
  color: white;
  font-size: 2rem;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.6);
}
@media (max-width: 767px) {
  .p-movie-sozai__title {
    font-size: 1.5rem;
  }
}
.p-movie-sozai__table {
  margin: 2rem auto 0;
}
@media (max-width: 767px) {
  .p-movie-sozai__table {
    margin-top: 1.25rem;
  }
}
.p-movie-sozai__table table {
  border-spacing: 0.25rem;
  width: 100%;
  min-width: 43.75rem;
}
.p-movie-sozai__table table th, .p-movie-sozai__table table td {
  font-weight: bold;
  text-align: center;
  font-size: 1.125rem;
  padding: 0.875rem;
}
.p-movie-sozai__table table th {
  background: black;
  color: white;
}
.p-movie-sozai__table table td {
  background: white;
}
@media (max-width: 767px) {
  .p-movie-sozai__table table {
    border-spacing: 0.125rem;
  }
  .p-movie-sozai__table table th, .p-movie-sozai__table table td {
    font-size: 1rem;
    padding: 0.625rem;
  }
  .p-movie-sozai__table table th {
    width: auto !important;
  }
}

.p-flow {
  padding-top: 9.375rem;
}
@media (max-width: 767px) {
  .p-flow {
    padding-top: 3.75rem;
  }
}

.p-flow-step {
  margin: 4rem 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-flow-step {
    flex-direction: column;
    margin-top: 2rem;
  }
}
.p-flow-step__item {
  flex: 1;
  position: relative;
  background: white;
  border-radius: 1rem;
  border: solid 1px #039C5E;
  padding: 2.25rem 1.875rem 2.5rem;
}
@media (max-width: 767px) {
  .p-flow-step__item {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}
.p-flow-step__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 0.75rem);
  transform: translateY(-50%);
  width: 1.25rem;
  height: 4.375rem;
  background: #86CD99;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (max-width: 767px) {
  .p-flow-step__item:not(:last-child)::after {
    width: 3.125rem;
    height: 1rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-flow-step__heading {
  text-align: center;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3em;
  font-family: "Jost";
  display: flex;
  gap: 0.375rem;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .p-flow-step__heading {
    font-size: 1.5rem;
  }
}
.p-flow-step__heading-num {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
  line-height: 1;
  font-size: 1.5rem;
  background: linear-gradient(to right bottom, #1BA36B 0%, #91CF00 100%);
  border-radius: 6.25rem;
  width: 3.5rem;
  aspect-ratio: 1;
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .p-flow-step__heading-num {
    width: 2.5rem;
    font-size: 1.25rem;
  }
}
.p-flow-step__img {
  margin: 1.875rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-flow-step__img img {
  height: 4.5rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .p-flow-step__img {
    margin-top: 1.25rem;
  }
  .p-flow-step__img img {
    height: 3.75rem;
  }
}
.p-flow-step__text {
  font-weight: bold;
  text-align: center;
  margin: 1.5rem 0 0 0;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .p-flow-step__text {
    margin-top: 1rem;
    font-size: 1.0625rem;
  }
}
.p-flow-step__small {
  margin: 0.625rem 0 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .p-flow-step__small {
    margin-top: 0.375rem;
    font-size: 0.875rem;
  }
}

.p-faq {
  padding-top: 9.375rem;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .p-faq {
    padding-top: 3.75rem;
    padding-bottom: 4.375rem;
  }
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p-faq__list {
    margin-top: 2rem;
  }
}
.p-faq__item {
  background: white;
  border-radius: 1.5rem;
  padding: 1.875rem 2rem;
  margin: 0;
}
.p-faq__item dt {
  position: relative;
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 1.125rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.p-faq__item dt::before {
  content: "Q";
  font-family: "Jost";
  font-weight: 500;
  line-height: 0.8;
  font-size: 2rem;
  color: #039C5E;
}
.p-faq__item dd {
  margin: 1rem 0 0 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.p-faq__item dd::before {
  content: "A";
  font-family: "Jost";
  font-weight: 500;
  line-height: 0.8;
  font-size: 2rem;
  color: #039C5E;
}
@media (max-width: 767px) {
  .p-faq__item {
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
  }
  .p-faq__item dt {
    font-size: 1rem;
    gap: 0.5rem;
  }
  .p-faq__item dt::before {
    font-size: 1.5rem;
    line-height: 1;
  }
  .p-faq__item dd {
    font-size: 0.875rem;
    gap: 0.5rem;
  }
  .p-faq__item dd::before {
    font-size: 1.5rem;
    line-height: 1;
  }
}

.p-form {
  padding-top: 9.375rem;
  padding-bottom: 10rem;
  background: white;
}
@media (max-width: 767px) {
  .p-form {
    padding-top: 3.75rem;
    padding-bottom: 4.375rem;
  }
}
.p-form__lead {
  margin: 2rem 0 0 0;
  text-align: center;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-form__lead {
    font-size: 0.875rem;
    margin-top: 1.5rem;
  }
}
.p-form__contents {
  margin-top: 5rem;
}
.p-form__contents > *:first-child {
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .p-form__contents {
    margin-top: 2.5rem;
  }
}

.js-form-inquiry {
  display: none;
}

.js-form-inquiry.is-show {
  display: block;
}