@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizespeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * 1920pxカンプを基準にしたレスポンシブ値の計算
 * 1920pxのカンプ値をそのまま入れると、画面幅に応じてスケーリング
 * 例: prem-vw(100) → 1920px画面で100px、960px画面で50px
******************************************/
/*****************************************
 * 1920pxカンプを基準にしたclamp値の計算
 * 最小値、最大値を指定してスムーズにスケーリング
 * 例: prem-clamp(20, 100) → 最小20px、最大100px、1920px基準
 * 注意: $base-font-sizeは16pxを想定
******************************************/
:root {
  --white: #fff;
  --red: #dc3545;
  --text: #212529;
  --text-16: 1rem;
  --text-18: 1.125rem;
  --text-20: 1.25rem;
  --text-32: 2rem;
  --regular: 400;
  --bold: 700;
}

html {
  font-size: 16px;
}
@media (max-width: 1250px) {
  html {
    font-size: 1.28vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (width <= 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #212529;
  background-color: #FCF9F3;
}
@media screen and (max-width: 767px) {
  body {
    padding-bottom: 3.625rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.l-footer {
  padding: 20px 0;
  text-align: center;
  color: #fff;
  background-color: #333;
}

.l-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 1000px) {
  .l-inner {
    padding: 0 0.9375rem;
  }
}

.l-section {
  width: 100%;
}

.l-content {
  width: 100%;
}

.l-cta {
  margin-top: 3.75rem;
}
@media screen and (max-width: 500px) {
  .l-cta {
    margin-top: 2.5rem;
  }
}

.l-sidebar {
  display: flex;
  gap: 2.5rem;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-sidebar {
    padding: 0 3.625rem;
  }
}

.l-sidebar__main {
  flex: 1;
}

.l-sidebar__aside {
  width: 18.75rem;
  flex-shrink: 0;
}

@media screen and (width <= 767px) {
  .l-sidebar {
    flex-direction: column;
    gap: 1.875rem;
  }
  .l-sidebar__aside {
    width: 100%;
  }
}
.l-grid {
  display: grid;
  gap: 1.25rem;
}

.l-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.l-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.l-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (width <= 767px) {
  .l-grid--2col,
  .l-grid--3col,
  .l-grid--4col {
    grid-template-columns: 1fr;
  }
}
.l-flex {
  display: flex;
}

.l-flex--center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-flex--between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-flex--around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.l-flex--column {
  flex-direction: column;
}

@media screen and (width <= 767px) {
  .l-flex--between,
  .l-flex--around {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-show {
    display: block;
  }
}

.sm-show {
  display: none;
}
@media screen and (max-width: 500px) {
  .sm-show {
    display: block;
  }
}

.md-none {
  display: block;
}
@media screen and (max-width: 767px) {
  .md-none {
    display: none;
  }
}

.u-flex {
  display: flex;
}

.u-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.u-flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  height: 3.625rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-sticky-footer {
    display: flex;
  }
}

.p-sticky-footer__btn {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.p-sticky-footer__btn:hover {
  opacity: 0.8;
}
.p-sticky-footer__btn:active {
  opacity: 0.6;
}

.p-sticky-footer__btn--tel {
  background-color: #6F3B25;
}

.p-sticky-footer__btn--line {
  background-color: #2ECC71;
}

.p-sticky-footer__btn--form {
  background: linear-gradient(to right, #E45A00, #FF9100);
}

.p-sticky-footer__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-sticky-footer__content {
    gap: 0.375rem;
    padding: 0.375rem 0.125rem;
  }
}

.p-sticky-footer__btn--tel .p-sticky-footer__content {
  gap: 0.375rem;
  padding: 0.5rem 0.5rem 0.5rem 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-sticky-footer__btn--tel .p-sticky-footer__content {
    gap: 0.25rem;
    padding: 0.375rem 0.375rem 0.375rem 0.125rem;
  }
}

.p-sticky-footer__btn--line .p-sticky-footer__content,
.p-sticky-footer__btn--form .p-sticky-footer__content {
  flex-direction: column;
  gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-sticky-footer__btn--line .p-sticky-footer__content,
  .p-sticky-footer__btn--form .p-sticky-footer__content {
    gap: 0.125rem;
  }
}

.p-sticky-footer__icon {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-sticky-footer__icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-sticky-footer__btn--tel .p-sticky-footer__icon {
  width: 29vw;
  height: 1.25rem;
  flex-shrink: 0;
}

.p-sticky-footer__btn--line .p-sticky-footer__icon {
  width: 1.1875rem;
  height: 1.1875rem;
}

.p-sticky-footer__btn--form .p-sticky-footer__icon {
  width: 0.875rem;
  height: 0.875rem;
}

.p-sticky-footer__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.125rem;
}

.p-sticky-footer__btn--tel .p-sticky-footer__text {
  align-items: flex-start;
}

.p-sticky-footer__tel-number {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-sticky-footer__tel-number {
    font-size: 0.875rem;
  }
}

.p-sticky-footer__label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

.p-recruit {
  width: 100%;
  padding: 5.625rem 0;
  background-image: var(--recruit-bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-recruit {
    padding: 3.75rem 0;
    background-image: var(--recruit-bg-image-sp);
  }
}
@media screen and (max-width: 500px) {
  .p-recruit {
    padding: 2.5rem 0;
  }
}

.p-recruit__inner {
  overflow: visible;
}
@media screen and (max-width: 1000px) {
  .p-recruit__inner {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__inner {
    width: 100%;
  }
}

.p-recruit__title.c-section-title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  overflow: visible;
}

.p-recruit__title::after {
  position: absolute;
  top: 50%;
  left: 78%;
  z-index: 0;
  width: 59vw;
  max-width: 62.25rem;
  height: 8.3125rem;
  background-image: var(--title-bg-image);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .p-recruit__title::after {
    left: 40%;
    width: 120.8vw;
    height: 7.75rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__title::after {
    height: 4rem;
  }
}

.p-recruit__tabs {
  display: flex;
  gap: 0;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__tabs {
    gap: 0.3125rem;
    margin-top: 2.5rem;
  }
}

.p-recruit__tab {
  flex: 1;
  padding: 2.5rem;
  border: none;
  border-radius: 1.0625rem 1.0625rem 0 0;
  font-size: 1.75rem;
  font-weight: 500;
  color: #fff;
  background-color: #B1B1B1;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-recruit__tab {
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
  }
}
.p-recruit__tab:not(.p-recruit__tab--active):hover {
  background-color: rgb(202.5, 202.5, 202.5);
}

.p-recruit__tab--active {
  color: #fff;
  background-color: #07913A;
}
.p-recruit__tab--active:hover {
  background-color: rgb(9.3486842105, 193.6513157895, 77.4605263158);
}

.p-recruit__content {
  position: relative;
  padding: 0 2.5rem;
  border-radius: 0 0 1.0625rem 1.0625rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-recruit__content {
    padding: 0 1.25rem 1.875rem;
    border-radius: 0 1.0625rem 1.0625rem;
  }
}

.p-recruit__content-panel {
  display: none;
  padding: 0;
}

.p-recruit__content-panel--active {
  display: block;
}

.p-recruit__content-item {
  display: flex;
  gap: 0.9375rem;
  padding: 1.25rem 0;
  border-top: 1px solid #e0e0e0;
}
.p-recruit__content-item:first-child {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .p-recruit__content-item {
    flex-direction: column;
    gap: 0.625rem;
    padding: 0.625rem 0;
  }
}

.p-recruit__content-item-label {
  flex: 0 0 15.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #07913A;
}
@media screen and (max-width: 767px) {
  .p-recruit__content-item-label {
    flex: none;
    font-size: 1rem;
  }
}

.p-recruit__content-item-value {
  flex: 1;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #212529;
}
@media screen and (max-width: 767px) {
  .p-recruit__content-item-value {
    font-size: 0.9375rem;
  }
}

.p-reason {
  width: 100%;
  padding: 5.625rem 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-reason {
    padding: 3.75rem 0;
  }
}
@media screen and (max-width: 500px) {
  .p-reason {
    padding: 2.5rem 0;
  }
}

.p-reason__title {
  position: relative;
  text-align: center;
}

.p-reason__title::after {
  position: absolute;
  top: 50%;
  left: 28%;
  z-index: -1;
  width: 44vw;
  max-width: 58.6875rem;
  height: 8.75rem;
  background-image: var(--title-bg-image);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 1240px) {
  .p-reason__title::after {
    left: 20%;
    width: 53vw;
  }
}
@media screen and (max-width: 1000px) {
  .p-reason__title::after {
    left: 34%;
    width: 65vw;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__title::after {
    left: 50%;
    width: 102vw;
  }
}

.p-reason__content {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-reason__content {
    margin-top: 2.5rem;
  }
}

.p-reason__content-item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-reason__content-item {
    flex-direction: column;
  }
}

.p-reason__content-item.p-reason__content-item--02 {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-reason__content-item.p-reason__content-item--02 {
    flex-direction: column-reverse;
  }
}

.p-reason__content-item--01 .p-reason__content-item-image {
  order: 1;
}

.p-reason__content-item--01 .p-reason__content-item-body {
  order: 2;
}
@media screen and (max-width: 767px) {
  .p-reason__content-item--01 .p-reason__content-item-body {
    width: 96%;
    margin: -1.875rem 0 0 auto;
  }
}

.p-reason__content-item--02 .p-reason__content-item-body {
  order: 1;
}

.p-reason__content-item--02 .p-reason__content-item-image {
  order: 2;
}

.p-reason__content-item-image {
  position: relative;
  z-index: 0;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-reason__content-item-image {
    width: 100%;
    order: 1 !important;
  }
}

.p-reason__content-item-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-reason__content-item-image img {
    width: 96%;
  }
}

@media screen and (max-width: 767px) {
  .p-reason__content-item-image.p-reason__content-item-image--02 img {
    margin-left: auto;
  }
}

.p-reason__content-item-body {
  position: relative;
  z-index: 1;
  flex: 1;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-reason__content-item-body {
    padding: 1.875rem 0;
  }
}

.p-reason__content-item-body--01 {
  margin-left: -5rem;
  padding: 2.5rem 1.875rem 4.0625rem 3.75rem;
  border-radius: 1.875rem 0 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-reason__content-item-body--01 {
    margin-left: 0;
    padding: 1.875rem 1.25rem;
  }
}

.p-reason__content-item-body--02 {
  margin-right: -5rem;
  padding: 2.5rem 3.75rem 4.0625rem 1.875rem;
  border-radius: 0 1.875rem 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .p-reason__content-item-body--02 {
    margin-right: 0;
    padding: 1.875rem 1.875rem 1.875rem 1.25rem;
  }
}

.p-reason__content-item-body-inner {
  max-width: 41.875rem;
  margin-right: auto;
  padding: 0 0.625rem;
}
@media screen and (max-width: 1000px) {
  .p-reason__content-item-body-inner {
    max-width: 100%;
    padding: 0 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__content-item-body-inner {
    padding: 0 1.25rem;
  }
}

.p-reason__content-item-body-inner.p-reason__content-item-body-inner--02 {
  margin-right: 0;
  margin-left: auto;
}

.p-reason__content-item-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 1000px) {
  .p-reason__content-item-title {
    gap: 0.9375rem;
    margin-bottom: 1.25rem;
  }
}

@media screen and (max-width: 1000px) {
  .p-reason__content-item-number img {
    width: auto;
    height: 4.6875rem;
  }
}

.p-reason__content-item-title-text {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: #07913A;
}
@media screen and (max-width: 767px) {
  .p-reason__content-item-title-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-reason__content-item-title-text {
    font-size: 1.25rem;
  }
}

.p-reason__content-item-text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #212529;
}
@media screen and (max-width: 767px) {
  .p-reason__content-item-text p {
    font-size: 0.9375rem;
  }
}

.p-reason__content-text-green {
  color: #07913A;
}

.p-number {
  width: 100%;
  padding: 5.625rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-number {
    padding: 3.75rem 0;
  }
}
@media screen and (max-width: 500px) {
  .p-number {
    padding: 2.5rem 0;
  }
}

.p-number__title {
  position: relative;
  text-align: center;
}

.p-number__title::after {
  position: absolute;
  top: 50%;
  left: 79%;
  z-index: -1;
  width: 44vw;
  max-width: 53rem;
  height: 6.875rem;
  background-image: var(--title-bg-image);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 1240px) {
  .p-number__title::after {
    left: 73%;
    width: 53vw;
  }
}
@media screen and (max-width: 767px) {
  .p-number__title::after {
    left: 50%;
    width: 102vw;
  }
}

.p-number__content {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin: 3.75rem 0 0;
}
@media screen and (max-width: 1000px) {
  .p-number__content {
    gap: 1.25rem;
    max-width: 50rem;
    margin: 2.5rem auto 0;
    flex-flow: row wrap;
  }
  .p-number__content .p-number__content-row--03 {
    display: contents;
  }
  .p-number__content .p-number__content-row--04 {
    display: contents;
  }
  .p-number__content .p-number__content-row--03 .p-number__content-box--half:first-child {
    width: 100%;
    order: 1;
  }
  .p-number__content .p-number__content-row--03 .p-number__content-box--half:last-child {
    width: calc(50% - 0.625rem);
    order: 2;
  }
  .p-number__content .p-number__content-row--04 .p-number__content-box:first-child {
    width: calc(50% - 0.625rem);
    order: 3;
  }
  .p-number__content .p-number__content-row--04 .p-number__content-box:nth-of-type(2) {
    width: calc(50% - 0.625rem);
    order: 4;
  }
  .p-number__content .p-number__content-row--04 .p-number__content-box:last-child {
    width: calc(50% - 0.625rem);
    order: 5;
  }
}
@media screen and (max-width: 767px) {
  .p-number__content .p-number__content-row--03 {
    display: contents;
  }
  .p-number__content .p-number__content-row--04 {
    display: contents;
  }
  .p-number__content .p-number__content-row--03 .p-number__content-box--half:first-child .p-number__content-box-inner:first-child {
    order: 1;
  }
  .p-number__content .p-number__content-row--03 .p-number__content-box--half:first-child .p-number__content-box-inner:last-child {
    order: 2;
  }
  .p-number__content .p-number__content-row--03 .p-number__content-box--half:last-child {
    width: calc(50% - 0.6875rem);
    order: 3;
  }
  .p-number__content .p-number__content-row--04 .p-number__content-box:first-child {
    width: calc(50% - 0.6875rem);
    order: 4;
  }
  .p-number__content .p-number__content-row--04 .p-number__content-box:nth-of-type(2) {
    width: calc(50% - 0.6875rem);
    order: 5;
  }
  .p-number__content .p-number__content-row--04 .p-number__content-box:last-child {
    width: calc(50% - 0.6875rem);
    order: 6;
  }
}

.p-number__content-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-number__content-row {
    gap: 0.9375rem;
  }
}

.p-number__content-box-icon--01 img {
  aspect-ratio: 66/90;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1000px) {
  .p-number__content-row--01 {
    gap: 1.25rem;
  }
  .p-number__content-row--01 .p-number__content-box:first-child {
    width: 48%;
    order: 1;
  }
  .p-number__content-row--01 .p-number__content-box:last-child {
    width: 48%;
    order: 2;
  }
  .p-number__content-row--01 .p-number__content-box--double {
    width: 100%;
    min-width: 100%;
    order: 3;
  }
  .p-number__content-row--01 .p-number__content-box:last-child .p-number__content-box-number img {
    width: 4.1875rem;
    height: 6rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 767px) {
  .p-number__content-row--01 .p-number__content-box:first-child {
    width: calc(50% - 0.6875rem);
  }
  .p-number__content-row--01 .p-number__content-box:last-child {
    width: calc(50% - 0.6875rem);
  }
  .p-number__content-row--01 .p-number__content-box:last-child .p-number__content-box-number img {
    height: 5rem;
    aspect-ratio: 67/96;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 767px) and (width <= 375px) {
  .p-number__content-row--01 .p-number__content-box:last-child .p-number__content-box-number img {
    width: 18vw;
    height: auto;
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 767px) {
  .p-number__content-row--01 .p-number__content-box--double {
    width: 100%;
    min-width: 100%;
    order: 3;
  }
  .p-number__content-row--01 .p-number__content-box-icon--01 {
    width: 7.6vw;
  }
  .p-number__content-row--01 .p-number__content-box:last-child .p-number__content-box-icon {
    width: 7.6vw;
    height: 4rem;
  }
  .p-number__content-row--01 .p-number__content-box-icon img {
    aspect-ratio: 66/90;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .p-number__content-row--01 .p-number__content-box:last-child .p-number__content-box-icon img {
    aspect-ratio: unset;
  }
  .p-number__content-row--01 .p-number__content-box:first-child .p-number__content-box-number img {
    height: 5rem;
    aspect-ratio: 93/52;
  }
}
@media screen and (max-width: 767px) and (width <= 375px) {
  .p-number__content-row--01 .p-number__content-box:first-child .p-number__content-box-number img {
    width: 30vw;
    height: auto;
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 767px) {
  .p-number__content-row--01 {
    gap: 0.9375rem;
  }
  .p-number__content-row--01 .p-number__content-box:first-child .p-number__content-box-icon--01 {
    min-width: 3.75rem;
  }
  .p-number__content-row--01 .p-number__content-box:last-child .p-number__content-box-icon {
    width: 10.6vw;
    min-width: 3.75rem;
    height: 4rem;
    margin-top: 0.625rem;
  }
  .p-number__content-row--01 .p-number__content-box-icon--01 {
    width: 9.6vw;
  }
}

@media screen and (max-width: 1000px) {
  .p-number__content-row--02 {
    gap: 1.25rem;
  }
  .p-number__content-row--02 .p-number__content-box--double {
    width: 100%;
    min-width: 100%;
    padding: 2.5rem 1.25rem;
    order: 1;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1000px) {
  .p-number__content-row--02 .p-number__content-box--double {
    justify-content: center;
    padding: 1.25rem 0.625rem;
  }
}
@media screen and (max-width: 1000px) {
  .p-number__content-row--02 .p-number__content-box--02:nth-of-type(2) {
    width: calc(50% - 0.625rem);
    order: 2;
  }
  .p-number__content-row--02 .p-number__content-box--02:nth-of-type(3) {
    width: calc(50% - 0.625rem);
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  .p-number__content-row--02 .p-number__content-box--double {
    width: 100%;
    min-width: 100%;
    padding: 1.25rem 0.9375rem;
    order: 1;
  }
  .p-number__content-row--02 .p-number__content-box--highlight {
    order: 2;
  }
  .p-number__content-row--02 .p-number__content-box--02:nth-of-type(2) {
    width: calc(50% - 0.6875rem);
    order: 3;
  }
  .p-number__content-row--02 .p-number__content-box--02:nth-of-type(3) {
    width: calc(50% - 0.6875rem);
    order: 4;
  }
  .p-number__content-row--02 .p-number__content-box--02:nth-of-type(2) .p-number__content-box-number img {
    height: 5rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 767px) and (width <= 375px) {
  .p-number__content-row--02 .p-number__content-box--02:nth-of-type(2) .p-number__content-box-number img {
    width: 30vw;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-number__content-row--02 .p-number__content-box--02:nth-of-type(3) .p-number__content-box-number img {
    height: 5.625rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 767px) and (width <= 375px) {
  .p-number__content-row--02 .p-number__content-box--02:nth-of-type(3) .p-number__content-box-number img {
    width: 30vw;
    height: auto;
  }
}

@media screen and (max-width: 1000px) {
  .p-number__content-row--03 {
    flex-direction: column;
    gap: 1.5625rem;
  }
}
.p-number__content-row--03 .p-number__content-box-info--03 {
  flex-direction: column;
  justify-content: center;
}
.p-number__content-row--03 .p-number__content-box-label--03 {
  width: auto;
  padding: 0.25rem 1.75rem;
  font-size: 1.5625rem;
}
.p-number__content-row--03 .p-number__content-box-number img {
  width: 22vw;
  max-width: 11.75rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-number__content-row--03 .p-number__content-box--half:last-child .p-number__content-box-number img {
  width: 18vw;
}
.p-number__content-row--03 .p-number__content-box-icon--03 {
  width: 6.375rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-number__content-row--03 .p-number__content-box-label--03 {
    font-size: 3.7vw;
  }
  .p-number__content-row--03 .p-number__content-box-number img {
    width: 30vw;
  }
  .p-number__content-row--03 .p-number__content-box--half:last-child .p-number__content-box-number img {
    width: auto;
    height: 5rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 767px) and (width <= 375px) {
  .p-number__content-row--03 .p-number__content-box--half:last-child .p-number__content-box-number img {
    width: 27vw;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-number__content-row--03 .p-number__content-box--half:last-child {
    width: calc(50% - 0.6875rem);
  }
  .p-number__content-row--03 .p-number__content-box-icon--03 {
    width: 11vw;
    height: auto;
  }
}

.p-number__content-row--04 .p-number__content-box {
  width: 32%;
  min-width: calc(32% - 0.9375rem);
}
.p-number__content-row--04 .p-number__content-box-number img {
  width: 19vw;
  max-width: 15rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-number__content-row--04 .p-number__content-box:last-child::before {
  position: absolute;
  top: 2%;
  left: -20%;
  z-index: 1;
  width: 7.5vw;
  min-width: 4.25rem;
  height: 6.5625rem;
  background-image: var(--baby-icon-image);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (max-width: 1440px) {
  .p-number__content-row--04 .p-number__content-box:last-child::before {
    left: -15%;
  }
}
@media screen and (max-width: 767px) {
  .p-number__content-row--04 .p-number__content-box:last-child::before {
    left: -12%;
  }
}
@media (width <= 375px) {
  .p-number__content-row--04 .p-number__content-box:last-child::before {
    left: -25%;
  }
}
@media screen and (max-width: 1000px) {
  .p-number__content-row--04 .p-number__content-box-number img {
    width: 23vw;
    max-width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 767px) {
  .p-number__content-row--04 .p-number__content-box:first-child {
    width: calc(50% - 0.6875rem);
  }
  .p-number__content-row--04 .p-number__content-box:nth-of-type(2) {
    width: calc(50% - 0.6875rem);
  }
  .p-number__content-row--04 .p-number__content-box:last-child {
    width: calc(50% - 0.6875rem);
  }
  .p-number__content-row--04 .p-number__content-box-number img {
    width: 30vw;
  }
}

.p-number__content-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 0.625rem;
  width: 25%;
  min-width: calc(25% - 0.9375rem);
  height: 18.75rem;
  padding: 2.5rem 1.25rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media screen and (max-width: 1000px) {
  .p-number__content-box {
    justify-content: space-between;
    height: auto;
    padding: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-number__content-box {
    gap: 0.3125rem;
    height: auto;
    padding: 1.25rem 0.625rem 0.625rem;
  }
}

.p-number__content-box.p-number__content-box--02 {
  gap: 0;
  height: 13.9375rem;
}
@media screen and (max-width: 1000px) {
  .p-number__content-box.p-number__content-box--02 {
    gap: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-number__content-box.p-number__content-box--02 {
    height: auto;
  }
}

.p-number__content-box--double {
  align-items: center;
  width: 46%;
  padding: 1.25rem;
}

.p-number__content-box--half {
  align-items: center;
  width: 49%;
  height: 20.625rem;
}
@media screen and (max-width: 1000px) {
  .p-number__content-box--half {
    width: 100%;
    height: auto;
  }
}

.p-number__content-box-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #212529;
}
@media screen and (max-width: 767px) {
  .p-number__content-box-title {
    font-size: 4.2vw;
  }
}

.p-number__content-box-info {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.p-number__content-box-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 50%;
  padding-top: 1.25rem;
}

.p-number__content-box-subtitle {
  font-size: 0.875rem;
  color: #212529;
}

.p-number__content-box-icon {
  width: 4.125rem;
  height: auto;
}

.p-number__content-box-icon--02 {
  width: 7.125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-number__content-box-icon--02 {
    width: auto;
    height: 4.375rem;
  }
}

.p-number__content-box--double .p-number__content-box-icon--02 img {
  width: auto;
  height: 5.625rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-number__content-box--double .p-number__content-box-icon--02 img {
    height: 5.0625rem;
  }
}
@media (width <= 375px) {
  .p-number__content-box--double .p-number__content-box-icon--02 img {
    width: 25vw;
    height: auto;
  }
}

.p-number__content-box-number {
  margin: 0;
}

.p-number__content-box-number img {
  width: 100%;
  max-width: 10.3125rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-number__content-row--01 .p-number__content-box:last-child .p-number__content-box-number img {
  width: 4.1875rem;
  height: 6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-number__content-row--01 .p-number__content-box:last-child .p-number__content-box-number img {
    width: auto;
    height: 5.125rem;
  }
}
@media (width <= 375px) {
  .p-number__content-row--01 .p-number__content-box:last-child .p-number__content-box-number img {
    width: 13vw;
    height: auto;
  }
}

.p-number__content-box--double .p-number__content-box-left .p-number__content-box-number img {
  width: auto;
  max-width: none;
  height: 6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-number__content-box--double .p-number__content-box-left .p-number__content-box-number img {
    height: 5.0625rem;
    aspect-ratio: 81/53;
  }
}
@media (width <= 375px) {
  .p-number__content-box--double .p-number__content-box-left .p-number__content-box-number img {
    width: 30vw;
    height: auto;
  }
}

.p-number__content-box-number--02 img {
  width: auto;
  height: 4.375rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width <= 375px) {
  .p-number__content-box-number--02 img {
    width: 23vw;
    height: auto;
  }
}

.p-number__content-box-number--03 img {
  width: auto;
  height: 4.375rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width <= 375px) {
  .p-number__content-box-number--03 img {
    width: 18vw;
    height: auto;
  }
}

.p-number__content-box-number span:not(.p-number__text-number, .p-number__text-unit) {
  font-size: 3rem;
  font-weight: 700;
  color: #07913A;
}

.p-number__content-box-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  padding: 0.8125rem 0.625rem 0.625rem;
  border-radius: 1.25rem;
  background-color: #DBEBE1;
}

.p-number__content-box-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 50%;
}

.p-number__content-box-label {
  width: 9.625rem;
  padding: 0.25rem;
  border-radius: 1.6875rem;
  font-size: 1.5625rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background-color: #07913A;
}
@media screen and (max-width: 767px) {
  .p-number__content-box-label {
    width: 100%;
    padding: 0.25rem;
    font-size: 4vw;
  }
}

.p-number__content-box--gender {
  width: 46%;
}

.p-number__content-box-gender {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-number__content-box-gender {
    width: 100%;
    max-width: 37.5rem;
    margin-top: 0.9375rem;
  }
}

.p-number__content-box-gender-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.p-number__content-box-gender-item--men {
  width: 30%;
  min-width: 10.625rem;
}
@media screen and (max-width: 767px) {
  .p-number__content-box-gender-item--men {
    width: 50%;
    min-width: auto;
  }
}

.p-number__content-box-gender-item--women {
  width: 70%;
}

.p-number__content-box-gender-item img {
  width: auto;
  height: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-number__content-box-gender-item img {
    height: 2.625rem;
  }
}

.p-number__content-box-gender-item--men .p-number__content-box-gender-info {
  width: 100%;
  padding: 0.4375rem 0.9375rem;
  text-align: center;
  background-color: #DBE1EB;
}

.p-number__content-box-gender-item--women .p-number__content-box-gender-info {
  width: 100%;
  padding: 0.4375rem 0.9375rem;
  text-align: center;
  background-color: #EBDBDB;
}

.p-number__content-box-gender-label,
.p-number__content-box-gender-number {
  font-size: 1.5rem;
  font-weight: 500;
  color: #212529;
}
@media screen and (max-width: 767px) {
  .p-number__content-box-gender-label,
  .p-number__content-box-gender-number {
    font-size: 3.7vw;
  }
}

.p-interview {
  width: 100%;
  padding: 5.9375rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-interview {
    padding: 3.75rem 0;
  }
}
@media screen and (max-width: 500px) {
  .p-interview {
    padding: 2.5rem 0;
  }
}

.p-interview__title {
  position: relative;
  text-align: center;
}

.p-interview__title::after {
  position: absolute;
  top: 50%;
  left: 66%;
  z-index: -1;
  width: 59vw;
  max-width: 71.0625rem;
  height: 8.8125rem;
  background-image: var(--title-bg-image);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .p-interview__title::after {
    left: 26%;
    width: 143vw;
    height: 7.75rem;
  }
}
@media screen and (max-width: 500px) {
  .p-interview__title::after {
    left: 75%;
    height: 4rem;
  }
}

.p-interview__list {
  max-width: 1250px;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-interview__list {
    margin-top: 2.5rem;
  }
}

.p-interview__list-item {
  padding: 2.5rem 5rem 2.5rem 3.75rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-interview__list-item {
    max-width: 37.5rem;
    margin: 0 auto;
    padding: 1.875rem 1.25rem;
  }
}

.p-interview__list-item:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-interview__list-item:not(:first-child) {
    margin-top: 3.75rem;
  }
}

.p-interview__list-item-body {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-interview__list-item-body {
    flex-direction: column;
    align-items: center;
    gap: 1.875rem;
  }
}

.p-interview__list-item-body--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-interview__list-item-body--reverse {
    flex-direction: column;
  }
}

.p-interview__content-item-image {
  flex: 0 0 auto;
  width: 13.75rem;
  height: 13.75rem;
}
@media screen and (max-width: 767px) {
  .p-interview__content-item-image {
    width: 46vw;
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  .p-interview__content-item-image {
    width: 56vw;
  }
}

.p-interview__content-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-interview__list-item-text-content {
  flex: 1;
}

.p-interview__list-item-title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: #07913A;
}
@media screen and (max-width: 767px) {
  .p-interview__list-item-title {
    font-size: 4vw;
    word-break: auto-phrase;
  }
}
@media screen and (max-width: 500px) {
  .p-interview__list-item-title {
    font-size: 1.125rem;
  }
}

.p-interview__list-item-info {
  margin-top: 0.8125rem;
  font-size: 0.875rem;
  color: #212529;
}
@media screen and (max-width: 500px) {
  .p-interview__list-item-info {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.p-interview__list-item-text {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #212529;
}
@media screen and (max-width: 500px) {
  .p-interview__list-item-text {
    margin-top: 0.9375rem;
    font-size: 0.9375rem;
  }
}

.p-fv {
  position: relative;
  width: 100%;
  height: clamp(37.5rem, 75vh, 46.875rem);
  margin-top: 7.5rem;
  overflow: hidden;
}
@media screen and (max-width: 1240px) {
  .p-fv {
    min-height: 37.5rem;
    overflow: visible;
  }
}
@media screen and (max-width: 1000px) {
  .p-fv {
    height: clamp(43.75rem, 63vh, 43.75rem);
  }
}
@media screen and (max-width: 767px) {
  .p-fv {
    height: 95vh;
    min-height: 56.25rem;
    max-height: 100%;
    margin-top: 3.75rem;
    padding: 1.25rem;
    overflow: visible;
  }
}
@media screen and (max-width: 500px) {
  .p-fv {
    height: 46.875rem;
    min-height: 100%;
    max-height: 100%;
  }
}

.p-fv__bg {
  position: relative;
  z-index: 0;
  width: clamp(67.5rem, -7.5rem + 100vw, 112.5rem);
  height: clamp(31.25rem, 63vh, 46.875rem);
  max-height: 40.625rem;
  margin-left: auto;
  border-radius: 2.5rem 0 0 2.5rem;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .p-fv__bg {
    min-height: 31.25rem;
    max-height: 40.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__bg {
    width: 100%;
    height: 100%;
    min-height: 56.25rem;
    max-height: 62.5rem;
    border-radius: 1.875rem;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__bg {
    height: 37.5rem;
    min-height: 100%;
  }
}

.p-fv__bg picture {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem 0 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__bg picture {
    border-radius: 0;
  }
}

.p-fv__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 46.875rem;
  border-radius: 2.5rem 0 0 2.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .p-fv__bg-img {
    max-height: 50rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__bg-img {
    max-height: none;
    border-radius: 0;
    -o-object-position: top;
       object-position: top;
  }
}

.p-fv__inner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: clamp(43.75rem, 90vh, 56.25rem);
}
@media screen and (max-width: 1240px) {
  .p-fv__inner {
    min-height: clamp(46.75rem, 90vh, 60.25rem);
  }
}
@media screen and (max-width: 1000px) {
  .p-fv__inner {
    min-height: 56.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__inner {
    min-height: 45.625rem;
  }
}

.p-fv__text-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 47.375rem;
  margin-top: 10rem;
}
@media screen and (max-width: 1000px) {
  .p-fv__text-box {
    margin-top: 15.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__text-box {
    gap: 0.5rem;
    margin-top: 2.5rem;
  }
}

.p-fv__text-item {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.25rem clamp(1.875rem, 2.25vw, 7.5rem) 1.25rem 7.5rem;
  background: linear-gradient(to right, #07913A, #A8EF6B);
}
@media screen and (max-width: 1240px) {
  .p-fv__text-item {
    padding: 1.25rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__text-item {
    padding: 1.25rem 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__text-item {
    padding: 0.375rem 1.25rem;
  }
}

.p-fv__text {
  font-size: clamp(1.25rem, 2vw, 2.875rem);
  font-weight: 700;
  line-height: 1.435;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 1240px) {
  .p-fv__text {
    font-size: clamp(1.25rem, 2.4vw, 2.875rem);
  }
}
@media screen and (max-width: 1000px) {
  .p-fv__text {
    font-size: clamp(1.25rem, 3vw, 2.875rem);
  }
}
@media screen and (max-width: 767px) {
  .p-fv__text {
    font-size: 6.4vw;
  }
}

.p-fv__cta {
  position: absolute;
  bottom: 20%;
  left: 50%;
  width: 53vw;
  max-width: 75rem;
  height: clamp(9.375rem, 20vh, 12.5rem);
  padding: 2.5rem 3.75rem;
  border-radius: 1.875rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  background-color: #DBEBE1;
  transform: translateX(-50%);
}
@media screen and (max-width: 1440px) {
  .p-fv__cta {
    height: auto;
  }
}
@media screen and (max-width: 1240px) {
  .p-fv__cta {
    bottom: 17%;
    min-width: 28.75rem;
  }
}
@media screen and (max-width: 1000px) {
  .p-fv__cta {
    bottom: 20%;
    min-width: 31.25rem;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__cta {
    bottom: 2%;
    width: 100%;
    min-width: 100%;
    height: auto;
    padding: 1.25rem;
    border-radius: 1.5625rem;
  }
}

.p-fv__cta-title {
  margin-top: -9.5%;
  font-size: clamp(2rem, 2.7vw, 3.25rem);
  font-weight: 900;
  line-height: 1.44;
  color: #07913A;
  text-shadow: 2px 2px 1px #fff, -2px -2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, 2px 0 1px #fff, -2px 0 1px #fff, 0 2px 1px #fff, 0 -2px 1px #fff;
}
@media screen and (max-width: 1440px) {
  .p-fv__cta-title {
    margin-top: -11%;
    font-size: clamp(1.875rem, 3vw, 2.5rem);
  }
}
@media screen and (max-width: 1000px) {
  .p-fv__cta-title {
    font-size: clamp(1.875rem, 3.2vw, 2.5rem);
  }
}
@media screen and (max-width: 767px) {
  .p-fv__cta-title {
    font-size: 8.5vw;
  }
}

.p-fv__cta-title--sp,
.p-fv__cta-text--sp {
  display: none;
}

.md-show .p-fv__cta-title--sp,
.md-show .p-fv__cta-text--sp {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-fv__cta-title--pc,
  .p-fv__cta-text--pc {
    display: none;
  }
  .p-fv__cta-title--sp {
    display: block;
  }
  .p-fv__cta-text--sp {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .p-fv__cta-title--pc,
  .p-fv__cta-text--pc {
    display: none;
  }
}
.p-fv__cta-text {
  display: inline-block;
  margin: 0 0 0.625rem;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
}
@media screen and (max-width: 767px) {
  .p-fv__cta-text {
    margin: 0;
    font-size: 4.8vw;
  }
}

.p-fv__cta-text--green {
  color: #07913A;
}

.p-fv__cta-text--large {
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-fv__cta-text--large {
    font-size: 7.4vw;
  }
}

.p-fv__cta-text--medium {
  font-size: clamp(1.5rem, 2.08vw, 2.5rem);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-fv__cta-text--medium {
    font-size: 6.4vw;
  }
}

.p-fv__cta-text--xlarge {
  font-size: clamp(2.5rem, 3.33vw, 4rem);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-fv__cta-text--xlarge {
    font-size: 15vw;
    line-height: 1em;
  }
}

.p-fv__cta-underline {
  position: relative;
  z-index: 3;
  display: inline-block;
}

.p-fv__cta-underline::after {
  position: absolute;
  bottom: 0.9375rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.75rem;
  background-color: #EBFF00;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-fv__cta-underline::after {
    bottom: 0.625rem;
    height: 0.9375rem;
  }
}

.p-fv__cta-highlight {
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
}

@media screen and (max-width: 767px) {
  .p-fv__cta-highlight {
    font-size: 1.75rem;
  }
}
@media screen and (width <= 767px) {
  .p-fv__cta-highlight {
    font-size: 1.5rem;
  }
}
.p-fv__cta-note {
  margin: 0.625rem 0 0;
  font-size: 0.875rem;
  color: #212529;
}

@media screen and (width <= 767px) {
  .p-fv__cta-note {
    font-size: 0.875rem;
  }
}
.p-footer {
  width: 100%;
  padding: 1.875rem 0;
  background-color: #07913A;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 1.25rem 0;
  }
}

.p-footer__copyright {
  text-align: center;
  color: #fff;
}
.p-footer__copyright small {
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright small {
    font-size: 0.8125rem;
  }
}

.p-flow {
  width: 100%;
  padding: 5.625rem 0 10rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: 3.75rem 0;
  }
}
@media screen and (max-width: 500px) {
  .p-flow {
    padding: 2.5rem 0;
  }
}

.p-flow__inner {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding: 0 1.25rem;
  }
}

.p-flow__title {
  position: relative;
  text-align: center;
  overflow: visible;
}

.p-flow__title::after {
  position: absolute;
  top: 50%;
  left: 30%;
  z-index: -1;
  width: 59vw;
  max-width: 44.6875rem;
  height: 8.3125rem;
  background-image: var(--title-bg-image);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .p-flow__title::after {
    left: 40%;
    width: 86vw;
    height: 7.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-flow__title::after {
    left: 75%;
    height: 4rem;
  }
}

.p-flow__content {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-flow__content {
    gap: 0.75rem;
    max-width: 37.5rem;
    margin: 0 auto;
    margin: 2.5rem auto 0;
  }
}

.p-flow__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.875rem 2.5rem;
  border-radius: 1.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
    gap: 0.625rem;
    width: 100%;
    margin: 0 auto;
    padding: 1.25rem 1.25rem 1.875rem;
  }
}
.p-flow__item:not(:last-child)::after {
  position: absolute;
  bottom: -1.25rem;
  left: 15%;
  width: 3.25rem;
  height: 1.375rem;
  background-image: var(--flow-arrow-image);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-flow__item:not(:last-child)::after {
    bottom: -0.75rem;
    left: 10%;
  }
}
.p-flow__item:last-child {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    padding: 1.25rem;
  }
}

.p-flow__item-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-header {
    gap: 0.9375rem;
  }
}

.p-flow__item-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #07913A;
}
@media screen and (max-width: 767px) {
  .p-flow__item-number {
    font-size: 1.25rem;
  }
}

.p-flow__item-title {
  width: 16.25rem;
  font-size: 1.75rem;
  font-weight: 400;
  color: #07913A;
}
@media screen and (max-width: 767px) {
  .p-flow__item-title {
    font-size: 1.25rem;
  }
}

.p-flow__item-text {
  font-size: 1rem;
  line-height: 1.62;
  color: #212529;
}
@media screen and (max-width: 767px) {
  .p-flow__item-text {
    font-size: 0.9375rem;
  }
}

.p-faq {
  width: 100%;
  padding: 5.625rem 0 7.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 3.75rem 0;
  }
}
@media screen and (max-width: 500px) {
  .p-faq {
    padding: 2.5rem 0;
  }
}

.p-faq__inner {
  overflow: visible;
}

.p-faq__title {
  position: relative;
  text-align: center;
  overflow: visible;
}

.p-faq__title::after {
  position: absolute;
  top: 50%;
  left: 25rem;
  z-index: -1;
  width: 59vw;
  max-width: 71.0625rem;
  height: 8.8125rem;
  background-image: var(--title-bg-image);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .p-faq__title::after {
    left: 67%;
    width: 137vw;
    height: 7.75rem;
  }
}
@media screen and (max-width: 500px) {
  .p-faq__title::after {
    height: 4rem;
  }
}

.p-faq__content {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-faq__content {
    margin-top: 2.5rem;
  }
}

.p-faq__content-item:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-faq__content-item:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.p-faq__content-item-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem 3.75rem;
  border-radius: 1.0625rem;
  background-color: #fff;
  cursor: pointer;
  transition: border-radius 0.4s ease;
}
@media screen and (max-width: 767px) {
  .p-faq__content-item-title {
    gap: 0.5rem;
    padding: 1.875rem;
  }
}

.p-faq__content-item--open .p-faq__content-item-title {
  border-radius: 1.0625rem 1.0625rem 0 0;
}

.p-faq__content-item-label {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.p-faq__content-item-label img {
  display: block;
  width: auto;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-faq__content-item-label img {
    height: 1.875rem;
  }
}

.p-faq__content-item-title-text {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 500;
  color: #212529;
}
@media screen and (max-width: 767px) {
  .p-faq__content-item-title-text {
    font-size: 1rem;
  }
}

.p-faq__content-item-title-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-faq__content-item-title-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__content-item-title-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.p-faq__content-item-title-icon:hover {
  opacity: 0.8;
}

.p-faq__content-item-title-icon-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 3px;
  background-color: #07913A;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-faq__content-item-title-icon-line {
    width: 16px;
    height: 2.5px;
  }
}

.p-faq__content-item-title-icon-line::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 20px;
  background-color: #07913A;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .p-faq__content-item-title-icon-line::before {
    height: 16px;
  }
}

.p-faq__content-item--open .p-faq__content-item-title-icon-line::before {
  opacity: 0;
}

.p-faq__content-item-answer {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  max-height: 0;
  padding: 0 1.25rem;
  border-radius: 0 0 1.0625rem 1.0625rem;
  background-color: #fff;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
}
@media screen and (max-width: 767px) {
  .p-faq__content-item-answer {
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0 1rem;
  }
}

.p-faq__content-item--open .p-faq__content-item-answer {
  max-height: 500px;
  padding: 0 8rem 2.5rem 3.75rem;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-faq__content-item--open .p-faq__content-item-answer {
    padding: 0 4.875rem 1.875rem 1.875rem;
  }
}

.p-faq__content-item-answer .p-faq__content-item-label {
  margin-top: 0.3125rem;
}

.p-faq__content-item-answer-text {
  flex: 1;
  margin-top: 13px;
  font-size: 1rem;
  line-height: 1.8;
  color: #212529;
}
@media screen and (max-width: 767px) {
  .p-faq__content-item-answer-text {
    font-size: 0.9375rem;
  }
}

.p-faq__content-item-answer-text-bold {
  font-weight: 700;
  color: #07913A;
}

.p-contact {
  width: 100%;
  padding: 10rem 0 12.5rem;
  background-color: #FCF9F3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 3.75rem 0;
  }
}
@media screen and (max-width: 500px) {
  .p-contact {
    padding: 2.5rem 0;
  }
}

.p-contact__title {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-contact__title::after {
  position: absolute;
  top: 50%;
  left: 75%;
  z-index: 0;
  width: 59vw;
  max-width: 33.4375rem;
  height: 8.3125rem;
  background-image: var(--title-bg-image);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .p-contact__title::after {
    left: 72%;
    width: 64.8vw;
    height: 7.75rem;
  }
}
@media screen and (max-width: 500px) {
  .p-contact__title::after {
    left: 75%;
    height: 3.5rem;
  }
}

.p-contact__form {
  margin-top: 3.75rem;
  margin-right: auto;
  margin-left: auto;
  padding: 3.75rem;
  border-radius: 1.25rem;
  background-color: #fff;
}
@media screen and (max-width: 1000px) {
  .p-contact__form {
    max-width: 50rem;
    padding: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    margin-top: 2.5rem;
    padding: 1.875rem;
    border-radius: 0.9375rem;
  }
}
@media screen and (max-width: 500px) {
  .p-contact__form {
    padding: 1.25rem;
  }
}

.p-contact__form-placeholder {
  font-size: 0.875rem;
  text-align: center;
  color: #999;
}

/* ヘッダー全体の共通スタイル */
.header {
  position: fixed;
  top: 0;
  z-index: 5000;
  width: 100%;
  height: 7.5rem;
  background-color: #FCF9F3;
}
@media screen and (max-width: 767px) {
  .header {
    height: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .header {
    height: 3.75rem;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  padding: 0 3.625rem;
}
@media screen and (max-width: 1240px) {
  .header__inner {
    padding: 0 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1.25rem;
  }
}

/* ロゴの共通スタイル */
.header__logo {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 24.375rem;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 15.625rem;
  }
}

/* ロゴ内のリンクの共通スタイル */
.header__logo a {
  display: block;
  height: auto;
  padding: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .header__logo a {
    padding: 0;
  }
}

.header__logo-img.is-scroll {
  margin: 0 0 0 10%;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .header__logo-img.is-scroll {
    padding: 0 1.5625rem 0 0;
  }
}

/* ナビゲーションのスタイル */
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 62.5rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  justify-content: right;
  align-items: center;
  width: 100%;
  height: inherit;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1240px) {
  .header__nav-list {
    width: 90%;
    margin: 0 0 0 auto;
  }
}

.header__nav-item {
  position: relative;
  height: inherit;
}

.header__nav-item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  font-size: 1.0625rem;
  color: #212529;
  overflow: hidden;
  transition: color 0.3s ease;
}
.header__nav-item a:hover::after {
  left: 0;
  width: 100%;
}

.header__nav-item img {
  height: 80%;
}

.header__nav-item--contact a::after {
  display: none;
}

.header__nav-item--contact a:hover {
  background-color: #CC8400;
}

/* お問合せボタンのスタイル */
.header__nav-item.header__nav-item--contact {
  width: 13.125rem;
  height: auto;
}

.header__nav-item--contact a {
  display: flex;
  gap: 20px;
  padding: 0.625rem 1.25rem;
  border-radius: 1.5rem;
  color: white;
  background-color: #F58031;
  transition: background-color 0.5s ease;
}

.button__icon.button__icon--header {
  width: 0.4375rem;
  height: auto;
  transition: transform 0.5s ease-out;
}

.header .header__nav-item--contact a:hover {
  background-color: #FF5E00;
}

.header__nav-item--contact a:hover .button__icon--header {
  transform: translateX(10px);
}

/* ハンバーガーメニュー */
.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10000;
  display: block;
  width: 5.125rem;
  height: inherit;
  background-color: #07913A;
  cursor: pointer;
}
@media (width >= 768px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーの各線 */
.hamburger span {
  position: absolute;
  left: 1.5rem;
  display: inline-block;
  width: 2.1875rem;
  height: 0.1875rem;
  background-color: #fff;
  transition: all 0.5s ease;
}

/* 上の線 */
.hamburger span:first-child {
  top: 1.875rem;
}

/* 真ん中の線 */
.hamburger span:nth-child(2) {
  top: 2.625rem;
}

/* 下の線 */
.hamburger span:nth-child(3) {
  top: 3.375rem;
}

/* アクティブ時の変化 */
.js-hamburger.is-active span:first-child {
  top: 2.5625rem;
  animation: ham_btn_span01_active 0.75s forwards;
}

.js-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  animation: ham_btn_span02_active 0.75s forwards;
}

.js-hamburger.is-active span:nth-child(3) {
  top: 2.5625rem;
  animation: ham_btn_span03_active 0.75s forwards;
}

/* 非アクティブ時（元に戻る） */
.js-hamburger:not(.is-active) span:first-child {
  animation: ham_btn_span01_reverse 0.75s forwards;
}

.js-hamburger:not(.is-active) span:nth-child(2) {
  animation: ham_btn_span02_reverse 0.75s forwards;
}

.js-hamburger:not(.is-active) span:nth-child(3) {
  animation: ham_btn_span03_reverse 0.75s forwards;
}

/* 上の線のアニメーション */
@keyframes ham_btn_span01_active {
  0% {
    opacity: 1;
    transform: rotate(0);
  }
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-45deg);
  }
}
@keyframes ham_btn_span01_reverse {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: translateY(0.875rem) rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
/* 真ん中の線のアニメーション */
@keyframes ham_btn_span02_active {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ham_btn_span02_reverse {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 下の線のアニメーション */
@keyframes ham_btn_span03_active {
  0% {
    opacity: 1;
    transform: rotate(0);
  }
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes ham_btn_span03_reverse {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: translateY(-0.875rem) rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
/* オーバーレイのスタイル */
.js-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.6s, visibility 0.6s;
}

.js-overlay.is-active {
  visibility: visible;
}

.drawer-menu,
.js-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9999;
  display: block;
  width: 60%;
  height: 100%;
  background-color: #FCF9F3;
  opacity: 1;
  transition: right 0.8s ease;
}

.js-header .drawer-menu,
.js-header .js-drawer {
  opacity: 1;
}

.drawer-menu.is-active {
  right: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.6s, visibility 0.6s;
}

.overlay.is-active {
  opacity: 0.8;
  visibility: visible;
}

.drawer-menu__inner {
  position: relative;
  max-width: 27.5rem;
  margin: 0 auto;
  padding: 6.25rem 1.875rem;
}
@media screen and (max-width: 500px) {
  .drawer-menu__inner {
    max-width: 18.75rem;
  }
}

.drawer-logo {
  position: fixed;
  top: 2.8125rem;
  left: 1.25rem;
  z-index: 9999;
  background-color: #fff;
}

.drawer-logo img {
  width: 40%;
  min-width: 12.5rem;
  /* ロゴのサイズを調整 */
  max-width: 18.75rem;
  height: 5rem;
}

.drawer__nav-item {
  display: inline-block;
  width: 100%;
  padding: 2.5rem 0 0.9375rem 2.625rem;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  color: #212529;
}
@media screen and (max-width: 500px) {
  .drawer__nav-item {
    padding: 1.875rem 0 0.9375rem 2rem;
  }
}

.drawer__nav-item:not(:last-child) {
  border-bottom: 2px dashed #07913A;
}

.drawer-item a {
  font-weight: 700;
  color: #212529;
}

.drawer__nav-item.drawer__nav-item--contact,
.drawer__nav-item.drawer__nav-item--tel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 3.125rem auto 0;
  padding: 1.25rem;
  border-radius: 0.8125rem;
  text-align: center;
}

.drawer__nav-item.drawer__nav-item--contact {
  background-color: #07913A;
}

.drawer__nav-item.drawer__nav-item--tel {
  background-color: #FF6B35;
}

.drawer__nav-item.drawer__nav-item--contact a,
.drawer__nav-item.drawer__nav-item--tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  color: #fff;
}

/* 他のアイテムも同様に設定 */
.drawer-item__button {
  display: block;
  max-width: 18.75rem;
  margin: 2.5rem auto 0;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: #46B036;
  transition: background-color 0.3s;
}
.drawer-item__button:hover {
  background-color: #76c7a1;
}

.drawer-item__button span {
  font-size: 1.5625rem;
  font-weight: 700;
}

.drawer-item__button p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.c-section-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #52291A;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 5vw;
  }
}
@media screen and (max-width: 500px) {
  .c-section-title {
    font-size: 6.4vw;
  }
}

.c-privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
  width: 100%;
  height: 100%;
}
.c-privacy-modal.is-active {
  display: block;
}

.c-privacy-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.c-privacy-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 50rem;
  max-height: 90vh;
  border-radius: 1.25rem;
  background-color: #fff;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__content {
    width: 95%;
    max-height: 95vh;
    border-radius: 0.9375rem;
  }
}

.c-privacy-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.875rem 2.5rem;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__header {
    padding: 1.25rem;
  }
}

.c-privacy-modal__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__title {
    font-size: 1.25rem;
  }
}

.c-privacy-modal__close {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #212529;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__close {
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 1.75rem;
  }
}
.c-privacy-modal__close:hover {
  opacity: 0.7;
}

.c-privacy-modal__body {
  flex: 1;
  padding: 2.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__body {
    padding: 1.25rem;
  }
}

.c-privacy-modal__subtitle {
  margin-top: 1.875rem;
  margin-bottom: 0.9375rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
}
.c-privacy-modal__subtitle:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__subtitle {
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
  }
}

.c-privacy-modal__subtitle-small {
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #212529;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__subtitle-small {
    margin-top: 0.9375rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
}

.c-privacy-modal__body p {
  margin-bottom: 0.9375rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #212529;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__body p {
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
  }
}

.c-privacy-modal__body ul {
  margin: 0.9375rem 0;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__body ul {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
  }
}

.c-privacy-modal__body li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #212529;
  list-style-type: disc;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__body li {
    margin-bottom: 0.375rem;
    font-size: 0.9375rem;
  }
}

.c-privacy-modal__date {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__date {
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}

.c-privacy-modal__notes {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: 0.5rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__notes {
    margin-top: 0.9375rem;
    padding: 0.9375rem;
  }
}
.c-privacy-modal__notes p {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__notes p {
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
  }
}

.c-privacy-modal__footer {
  padding: 1.25rem 2.5rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__footer {
    padding: 0.9375rem 1.25rem;
  }
}

.c-privacy-modal__scroll-notice {
  margin-bottom: 0.9375rem;
  font-size: 0.875rem;
  color: #999;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__scroll-notice {
    margin-bottom: 0.625rem;
    font-size: 0.8125rem;
  }
}

.c-privacy-modal__agree-btn {
  padding: 0.75rem 2.5rem;
  border: none;
  border-radius: 1.875rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: #07913A;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-privacy-modal__agree-btn {
    width: 100%;
    padding: 0.625rem 1.875rem;
    font-size: 0.9375rem;
  }
}
.c-privacy-modal__agree-btn:hover:not(:disabled) {
  background-color: rgb(9.3486842105, 193.6513157895, 77.4605263158);
}
.c-privacy-modal__agree-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.c-form {
  width: 100%;
}

.c-form__row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  margin-top: 2.5rem;
}
.c-form__row:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1000px) {
  .c-form__row {
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1.25rem;
  }
}

.c-form__row--center {
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .c-form__row--center {
    align-items: flex-start;
  }
}
.c-form__row--center .c-form__field {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 1000px) {
  .c-form__row--center .c-form__field {
    justify-content: flex-start;
  }
}

.c-form__label {
  display: flex;
  flex: 0 0 18.75rem;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .c-form__label {
    flex: none;
    justify-content: flex-start;
    gap: 0.625rem;
    width: 100%;
  }
}

.c-form__label-text {
  font-size: 1rem;
  font-weight: 500;
  color: #212529;
}
@media screen and (max-width: 767px) {
  .c-form__label-text {
    font-size: 0.9375rem;
  }
}

.c-form__badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background-color: #BA0D0D;
}
@media screen and (max-width: 767px) {
  .c-form__badge {
    padding: 0.0625rem 0.375rem;
    font-size: 0.6875rem;
  }
}

.c-form__field {
  width: 77%;
  max-width: 50.25rem;
}
@media screen and (max-width: 1000px) {
  .c-form__field {
    width: 100%;
  }
}

.c-form__input,
.c-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(33, 37, 41, 0.8);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #212529;
  background-color: #f5f5f5;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-form__input,
  .c-form__textarea {
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
  }
}
.c-form__input:focus,
.c-form__textarea:focus {
  border-color: #07913A;
  background-color: #fff;
  outline: none;
}
.c-form__input::-moz-placeholder, .c-form__textarea::-moz-placeholder {
  color: #999;
}
.c-form__input::placeholder,
.c-form__textarea::placeholder {
  color: #999;
}

.c-form__textarea {
  min-height: 7.5rem;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .c-form__textarea {
    min-height: 6.25rem;
  }
}

.c-form__radio {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-form__radio {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.c-form__radio label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #212529;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-form__radio label {
    font-size: 0.9375rem;
  }
}

.c-form__radio input[type=radio] {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  cursor: pointer;
  accent-color: #212529;
}
@media screen and (max-width: 767px) {
  .c-form__radio input[type=radio] {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.c-form__acceptance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #212529;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-form__acceptance {
    font-size: 0.9375rem;
  }
}

.c-form__acceptance input[type=checkbox],
.c-form__acceptance-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  cursor: pointer;
  accent-color: #07913A;
}
@media screen and (max-width: 767px) {
  .c-form__acceptance input[type=checkbox],
  .c-form__acceptance-checkbox {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.c-form__acceptance-text {
  display: inline-block;
  margin-left: 0.5rem;
}

.c-form__acceptance label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-form__acceptance label {
    font-size: 0.9375rem;
  }
}

.c-privacy-modal__link {
  text-decoration: underline;
  color: #07913A;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-privacy-modal__link:hover {
  opacity: 0.7;
}

.c-form__actions {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-form__actions {
    margin-top: 1.875rem;
  }
}

.c-form__submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  padding: 1.5625rem 2.5rem 1.5625rem 3.125rem;
  border: none;
  border-radius: 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background-color: #E45A00;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-form__submit {
    width: 16.25rem;
    padding: 0.875rem 1.875rem;
    font-size: 1rem;
  }
}
.c-form__submit:hover {
  opacity: 0.7;
}
.c-form__submit:active {
  transform: translateY(2);
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  color: #dc3545;
}
@media screen and (max-width: 767px) {
  .wpcf7-not-valid-tip {
    font-size: 0.8125rem;
  }
}

.wpcf7-not-valid {
  border-color: #dc3545 !important;
  background-color: #ffe6e6 !important;
}

.wpcf7-mail-sent-ok {
  margin-top: 1.25rem;
  padding: 0.9375rem 1.25rem;
  border: 2px solid #07913A;
  border-radius: 0.5rem;
  font-size: 1rem;
  text-align: center;
  color: #07913A;
  background-color: #e8f5e9;
}
@media screen and (max-width: 767px) {
  .wpcf7-mail-sent-ok {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-spam {
  margin-top: 1.25rem;
  padding: 0.9375rem 1.25rem;
  border: 2px solid #dc3545;
  border-radius: 0.5rem;
  font-size: 1rem;
  text-align: center;
  color: #dc3545;
  background-color: #ffe6e6;
}
@media screen and (max-width: 767px) {
  .wpcf7-mail-sent-ng,
  .wpcf7-aborted,
  .wpcf7-spam {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }
}

.wpcf7-spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.625rem;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  border-top-color: transparent;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.c-cta {
  width: 100%;
  padding: 3.75rem 0;
  background-image: var(--cta-bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .c-cta {
    background-image: var(--cta-bg-image-sp);
  }
}

.c-cta__inner {
  margin: 0 auto;
  text-align: center;
}

.c-cta__box {
  margin: 0 auto;
  padding: 2.5rem 5rem;
  border-radius: 1.875rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-cta__box {
    width: 100%;
    padding: 2.5rem 0.3125rem;
  }
}

.c-cta__title {
  margin: 0 0 1.25rem;
}

.c-cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-cta__buttons {
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1.25rem;
  }
}

.c-cta__buttons-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.c-cta__buttons-item img {
  display: block;
  width: 100%;
  height: auto;
}