@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,
ul {
  margin: 0;
}

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

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

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

/* 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 {
  max-width: 100%;
  display: block;
}

/* 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関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "IBM Plex Sans JP", serif;
  font-weight: 400;
  color: #333;
  background-color: #F3F3F3;
}

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;
  }
}

input[type=checkbox] {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* デフォルトの矢印を非表示 */
}

.wpcf7-not-valid-tip {
  font-size: 0.5729166667vw !important;
}
@media screen and (max-width: 767px) {
  .wpcf7-not-valid-tip {
    font-size: 0.5rem;
  }
}

div.wpcf7 .ajax-loader {
  display: none !important;
}

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

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-not-valid-tip {
  position: absolute !important;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.9895833333vw;
}
@media screen and (max-width: 767px) {
  .wpcf7-list-item label {
    gap: 0.625rem;
  }
}

input[type=button] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
       appearance: none !important;
  all: unset;
  /* すべてのスタイルをリセット */
  background: none;
  /* 背景のリセット */
  border: none;
  /* 枠線のリセット */
  color: inherit;
  /* 文字色の継承 */
  font: inherit;
  /* フォントの継承 */
  cursor: pointer;
  /* ポインタを表示 */
}

/* 初期値 (MM) の色を薄く */
select.month {
  color: #F3F3F3;
  /* 薄いグレー */
}

/* 選択済み（aria-invalid="false" になるとき）の色を変更 */
select.month[aria-invalid=false] {
  color: #333;
  /* 通常の黒 */
}

.l-header {
  position: fixed;
  top: 0.875rem;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .l-header {
    top: 0;
  }
}

.l-header.l-header--bg {
  top: 0;
  background-image: url(../images/common/header-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .l-header.l-header--bg {
    background-image: unset;
    background-color: #fff;
  }
}

.l-inner {
  max-width: 98.125rem;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 28.125rem;
    padding: 0 15px;
  }
}

.c-entry-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
}

.c-entry-btn a {
  position: relative;
  padding: 1.6666666667vw 2.0833333333vw 1.3541666667vw;
  display: inline-block;
  width: 20vw;
  font-weight: 500;
  font-size: 0.8333333333vw;
  line-height: 1.4375;
  letter-spacing: 0;
  color: #FFF;
  background-color: #5F2942;
  border-top-left-radius: 1.6666666667vw;
}
.c-entry-btn a::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 1.6666666667vw;
  right: 1.5625vw;
  width: 3.6458333333vw;
  height: 3.6458333333vw;
  background-image: url(../images/common/entry-btn-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.c-entry-btn a span {
  font-family: "Roboto", serif;
  font-weight: 700;
  font-size: 1.71875vw;
}

.c-title {
  font-size: 1.5rem;
  color: green;
}
@media screen and (max-width: 1199px) {
  .c-title {
    color: blue;
  }
}
@media screen and (max-width: 999px) {
  .c-title {
    color: red;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    color: black;
  }
}

.p-about-intro {
  position: relative;
  margin-top: 4.0104166667vw;
  padding-bottom: 35.625vw;
}
@media screen and (max-width: 767px) {
  .p-about-intro {
    margin-top: 1.5625rem;
    padding-bottom: 18.3125rem;
  }
}

.p-service-intro {
  margin-top: 4.0104166667vw;
}
@media screen and (max-width: 767px) {
  .p-service-intro {
    margin-top: 1.5625rem;
    padding-bottom: 1.25rem;
  }
}

.p-about-intro__inner {
  max-width: 115.625rem;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-about-intro__inner {
    padding: 0 15px;
  }
}

.p-about-intro__title {
  font-weight: 700;
  font-size: 2.0833333333vw;
  line-height: 1.7;
  color: #224E00;
}
@media screen and (max-width: 767px) {
  .p-about-intro__title {
    position: relative;
    z-index: 5;
    font-size: 1.375rem;
  }
}

.p-about-intro__text {
  margin-top: 1.25vw;
  margin-left: 7.2916666667vw;
  margin-bottom: 1.0416666667vw;
  max-width: 53.8541666667vw;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-about-intro__text {
    max-width: 100%;
    margin-top: 11.125rem;
    margin-left: 0;
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

@media screen and (max-width: 767px) {
  .p-about-intro__text.p-about-intro__text--service {
    margin-top: 0;
  }
}

.p-about-intro__img01 {
  position: absolute;
  bottom: 0;
  left: 3.125vw;
  max-width: 21.875vw;
}
@media screen and (max-width: 767px) {
  .p-about-intro__img01 {
    max-width: 14.5rem;
    bottom: 3.4375rem;
    left: 0rem;
  }
}

.p-about-intro__img02 {
  position: absolute;
  bottom: 0;
  left: 26.0416666667vw;
  max-width: 48.0208333333vw;
}
@media screen and (max-width: 767px) {
  .p-about-intro__img02 {
    bottom: 52.0625rem;
    left: unset;
    right: 0;
    max-width: 15.625rem;
  }
}

.p-about-intro__img03 {
  position: absolute;
  bottom: 21.3541666667vw;
  right: 3.125vw;
  max-width: 21.875vw;
}
@media screen and (max-width: 767px) {
  .p-about-intro__img03 {
    bottom: 55.8125rem;
    right: unset;
    left: 0;
    max-width: 8.3125rem;
  }
}

.p-about-intro__img04 {
  position: absolute;
  bottom: 0;
  right: 3.125vw;
  max-width: 21.875vw;
}
@media screen and (max-width: 767px) {
  .p-about-intro__img04 {
    right: 0;
    bottom: 3.4375rem;
    max-width: 9.375rem;
  }
}

.p-about-message {
  padding: 8.0208333333vw 0 9.375vw;
  background-color: #224E00;
}
@media screen and (max-width: 767px) {
  .p-about-message {
    padding: 2.625rem 0;
  }
}

.p-about-message__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-about-message__wrap {
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
}

.p-about-message__wrap-img {
  width: 45.59%;
}
@media screen and (max-width: 767px) {
  .p-about-message__wrap-img {
    position: relative;
    width: 77.5%;
  }
}

.p-about-message__wrap-body {
  width: 50%;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-about-message__wrap-body {
    width: 100%;
  }
}

.p-about-message__wrap-body-tag {
  font-family: "Roboto", serif;
  font-weight: 700;
  font-size: 2.1875vw;
}
@media screen and (max-width: 767px) {
  .p-about-message__wrap-body-tag {
    font-size: 1.375rem;
    text-align: center;
  }
}

.p-about-message__wrap-body-tag span {
  padding-bottom: 0.78125vw;
  border-bottom: 1px solid #FFF;
}
@media screen and (max-width: 767px) {
  .p-about-message__wrap-body-tag span {
    padding-bottom: 0.1875rem;
  }
}

.p-about-message__wrap-body-title {
  margin-top: 2.0833333333vw;
  font-weight: 700;
  font-size: 2.0833333333vw;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-about-message__wrap-body-title {
    margin-top: 2.5rem;
    font-size: 1.375rem;
  }
}

.p-about-message__wrap-body-text {
  margin-top: 1.25vw;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-about-message__wrap-body-text {
    margin-top: 0;
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.p-about-message__wrap-body-name {
  margin-top: 2.6041666667vw;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-about-message__wrap-body-name {
    position: absolute;
    bottom: 1.3125rem;
    left: 0.8125rem;
    margin: 0;
    font-size: 0.75rem;
    color: #FFF;
    -moz-filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.46));
    -ms-filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.46));
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.46));
  }
}

.p-about-message__wrap-body-name span {
  display: inline-block;
  margin-top: 0.9375vw;
  font-size: 1.25vw;
}
@media screen and (max-width: 767px) {
  .p-about-message__wrap-body-name span {
    margin-top: 0.4375rem;
    font-size: 1rem;
  }
}

.p-company-outline {
  position: relative;
  margin-top: 5.0520833333vw;
}
@media screen and (max-width: 767px) {
  .p-company-outline {
    margin-top: 0.875rem;
  }
}
.p-company-outline::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 11.6145833333vw;
  background-color: #224E00;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-company-outline::before {
    height: 5.1875rem;
  }
}

.p-info-wrap {
  padding: 4.0625vw 10.0520833333vw 8.3333333333vw;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-info-wrap {
    padding: 1.875rem 1.5625rem;
  }
}

.p-info-wrap__title {
  font-family: "Roboto", serif;
  font-weight: 700;
  font-size: 2.0833333333vw;
  line-height: 1;
  color: #224E00;
}
@media screen and (max-width: 767px) {
  .p-info-wrap__title {
    font-size: 1.375rem;
  }
}

.p-info-wrap__title span {
  margin-top: 1.0416666667vw;
  display: inline-block;
  font-family: "IBM Plex Sans JP", serif;
  font-weight: 500;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 767px) {
  .p-info-wrap__title span {
    margin-top: 0.6875rem;
    font-size: 0.75rem;
  }
}

.p-info-wrap__dl {
  margin-top: 4.0625vw;
}
@media screen and (max-width: 767px) {
  .p-info-wrap__dl {
    margin-top: 3.5625rem;
  }
}

.p-info-wrap__dl dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-info-wrap__dl--guideline dl {
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-info-wrap__dl--guideline dl {
    flex-direction: column;
  }
}

.p-info-wrap__dl dl dt {
  width: 22.75%;
  font-weight: 700;
  font-size: 0.9375vw;
  line-height: 1;
  border-top: 1px solid #224E00;
}
@media screen and (max-width: 767px) {
  .p-info-wrap__dl dl dt {
    width: 26.93%;
    font-weight: 500;
    font-size: 0.6875rem;
    letter-spacing: -0.05em;
  }
}

.p-info-wrap__dl dl:last-of-type dt {
  border-bottom: 1px solid #224E00;
}

.p-info-wrap__dl--guideline dl:last-of-type dt {
  height: 24.5833333333vw;
}
@media screen and (max-width: 767px) {
  .p-info-wrap__dl--guideline dl:last-of-type dt {
    height: unset;
    border: none;
  }
}

.p-info-wrap__dl dl dd {
  position: relative;
  width: 70.72%;
  font-weight: 500;
  font-size: 0.9375vw;
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-info-wrap__dl dl dd {
    font-weight: 700;
    width: 68.71%;
    font-size: 0.875rem;
    line-height: 2.2142857143;
    letter-spacing: 0;
  }
}
.p-info-wrap__dl dl dd::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: url(../images/common/info-border.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.p-info-wrap__dl dl:last-of-type dd::after {
  position: absolute;
  display: inline-block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: url(../images/common/info-border.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.p-info-wrap__dl dl dt,
.p-info-wrap__dl dl dd {
  height: 7.7083333333vw;
  display: flex;
  align-items: center;
  color: #224E00;
}
@media screen and (max-width: 767px) {
  .p-info-wrap__dl dl dt,
  .p-info-wrap__dl dl dd {
    height: 6.375rem;
  }
}

.p-info-wrap__dl--guideline dl dt,
.p-info-wrap__dl--guideline dl dd {
  height: 100%;
  display: block;
  padding: 3.125vw 0;
}
@media screen and (max-width: 767px) {
  .p-info-wrap__dl--guideline dl dt,
  .p-info-wrap__dl--guideline dl dd {
    width: 100%;
    border: none;
  }
  .p-info-wrap__dl--guideline dl dt::before,
  .p-info-wrap__dl--guideline dl dd::before {
    display: none;
  }
  .p-info-wrap__dl--guideline dl dt::after,
  .p-info-wrap__dl--guideline dl dd::after {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-info-wrap__dl--guideline dl dt {
    position: relative;
    padding: 1.4375rem 0 0;
    font-weight: 700;
    font-size: 0.875rem;
  }
  .p-info-wrap__dl--guideline dl dt::before {
    position: absolute;
    display: inline-block;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 0.0625rem;
    background-image: url(../images/common/info-border.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
}

.p-info-wrap__dl--guideline dl dd {
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-info-wrap__dl--guideline dl dd {
    padding: 0 0 1.25rem;
    margin-top: 0.9375rem;
    font-weight: 500;
    font-size: 0.6875rem;
  }
}

.p-contact-form {
  margin-top: 4.1666666667vw;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    margin-top: 1.25rem;
    padding-bottom: 2.5rem;
  }
}

.p-contact-form__inner {
  max-width: 74rem;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__inner {
    padding: 0 15px;
  }
}

.p-contact-form__title {
  font-weight: 700;
  font-size: 1.6666666667vw;
  line-height: 1;
  color: #224E00;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-form__title {
    font-size: 0.875rem;
    text-align: left;
  }
}

.p-contact-form__title.privacy {
  padding-left: 0.9375rem;
}

.p-contact-form__title span {
  display: inline-block;
  margin-bottom: 0.8333333333vw;
  font-family: "Roboto", serif;
  font-size: 5.1041666667vw;
}
@media screen and (max-width: 767px) {
  .p-contact-form__title span {
    margin-bottom: 0;
    font-size: 3.8125rem;
    letter-spacing: -0.05em;
  }
}

.p-contact-form__wrap {
  margin-top: 6.5104166667vw;
}
@media screen and (max-width: 767px) {
  .p-contact-form__wrap {
    margin-top: 2.1875rem;
  }
}

.p-form__labels {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-form__labels {
    flex-direction: column;
    padding: 2.1875rem 0;
    border-top: 1px solid #224E00;
  }
}

@media screen and (max-width: 767px) {
  .p-form__labels:last-of-type {
    border-bottom: 1px solid #224E00;
  }
}

.p-form__label {
  display: flex;
  align-items: center;
  padding: 1.8229166667vw 0;
  width: 22.75%;
  border-top: 1px solid #224E00;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    padding: 0;
    width: 100%;
    border: none;
  }
}

.p-form__label.end {
  border-bottom: 1px solid #224E00;
}
@media screen and (max-width: 767px) {
  .p-form__label.end {
    border: none;
  }
}

.p-form__label.end.top {
  align-items: start;
}

.p-form__label-text {
  font-weight: 700;
  font-size: 0.9375vw;
  line-height: 1;
  color: #224E00;
}
@media screen and (max-width: 767px) {
  .p-form__label-text {
    font-size: 0.875rem;
  }
}

.p-form__label-text span {
  margin-left: 1.0416666667vw;
  padding: 0.15625vw 0.4166666667vw;
  font-size: 0.7291666667vw;
  letter-spacing: 0.05em;
  color: #FFF;
  background-color: #5F2942;
}
@media screen and (max-width: 767px) {
  .p-form__label-text span {
    margin-left: 1.25rem;
    padding: 0.1875rem 0.5rem;
    font-size: 0.625rem;
  }
}

.p-form__input {
  position: relative;
  padding: 1.8229166667vw 0;
  width: 70.72%;
}
@media screen and (max-width: 767px) {
  .p-form__input {
    margin-top: 0.875rem;
    padding: 0;
    width: 100%;
  }
}
.p-form__input::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: url(../images/common/info-border.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-form__input::before {
    display: none;
  }
}

.p-form__item .p-form__input::after {
  position: absolute;
  display: inline-block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: url(../images/common/info-border.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-form__item .p-form__input::after {
    display: none;
  }
}

.p-form__input-text {
  width: 100%;
  border: none;
  border-radius: none;
  padding: 0.46875vw 1.9791666667vw;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1;
  letter-spacing: 0.05em;
  height: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .p-form__input-text {
    padding: 0.8125rem 1.5625rem;
    font-size: 1rem;
  }
}

.p-form__input-text::-moz-placeholder {
  color: rgba(29, 26, 29, 0.15);
}

.p-form__input-text::placeholder {
  color: rgba(29, 26, 29, 0.15);
}

.p-form__input-select {
  display: flex;
  align-items: center;
  gap: 1.6666666667vw;
}
@media screen and (max-width: 767px) {
  .p-form__input-select {
    gap: 1.25rem;
  }
}

.p-form__input-select select {
  border: none;
  border-radius: 0;
  background-color: #FFF;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  height: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .p-form__input-select select {
    font-size: 1rem;
  }
}

.p-form__input-select select.year {
  width: 6.9270833333vw;
}
@media screen and (max-width: 767px) {
  .p-form__input-select select.year {
    width: 6rem;
  }
}

.p-form__input-select select.month {
  width: 5.78125vw;
}
@media screen and (max-width: 767px) {
  .p-form__input-select select.month {
    width: 4.875rem;
  }
}

.p-form__input-select select.day {
  width: 5.5208333333vw;
}
@media screen and (max-width: 767px) {
  .p-form__input-select select.day {
    width: 4.625rem;
  }
}

.p-form__input-radio .radio {
  display: flex;
  align-items: center;
  gap: 3.6458333333vw;
}
@media screen and (max-width: 767px) {
  .p-form__input-radio .radio {
    gap: 5rem;
  }
}

.p-form__input-radio input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1.9375rem;
  height: 1.9375rem;
  border: 1px solid #707070;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
}

.p-form__input-radio input[type=radio]::before {
  content: "";
  width: 1.4375rem;
  height: 1.4375rem;
  background-color: #5F2942;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.p-form__input-radio input[type=radio]:checked::before {
  opacity: 1;
}

.p-form__input-radio label {
  display: flex;
  align-items: center;
  gap: 0.6770833333vw;
  font-weight: 500;
  font-size: 1.0416666667vw;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-form__input-radio label {
    gap: 0.75rem;
    font-size: 1rem;
  }
}

.is-error-name,
.is-error-kana,
.is-error-tel,
.is-error-email,
.is-error-day,
.is-error-job,
.is-error-resume,
.is-error-history,
.is-error-cheek {
  color: red;
}

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

.p-form__check-text {
  padding: 1.625rem;
  background-color: #fff;
  height: 19.5625rem;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .p-form__check-text {
    padding: 1.25rem;
  }
}

.p-form__check-text h3 {
  padding-left: 1.3020833333vw;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1.85;
  letter-spacing: 0.05em;
  border-left: 5px solid #5F2942;
}
@media screen and (max-width: 767px) {
  .p-form__check-text h3 {
    padding-left: 0.9375rem;
    font-size: 0.875rem;
  }
}

.p-form__check-text p {
  margin-top: 1.625rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-form__check-text p {
    font-size: 0.75rem;
    line-height: 1.8333333333;
  }
}

.p-form__check-btn {
  margin-top: 2.6041666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9895833333vw;
}
@media screen and (max-width: 767px) {
  .p-form__check-btn {
    margin-top: 1.5625rem;
    gap: 0.625rem;
  }
}

.p-form__check-btn input {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .p-form__check-btn input {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.p-form__check-btn input:checked::before {
  position: absolute;
  top: -0.8125rem;
  left: 0.375rem;
  transform: rotate(50deg);
  width: 1.25rem;
  height: 2.375rem;
  border-right: 0.1875rem solid #000;
  border-bottom: 0.1875rem solid #000;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-form__check-btn input:checked::before {
    top: -0.4375rem;
    left: 0.1875rem;
    width: 0.6875rem;
    height: 1.25rem;
    border-right: 0.125rem solid #000;
    border-bottom: 0.125rem solid #000;
  }
}

.p-form__check-btn span {
  font-weight: 500;
  font-size: 1.1458333333vw;
}
@media screen and (max-width: 767px) {
  .p-form__check-btn span {
    font-size: 0.6875rem;
  }
}

.p-form__button {
  margin-top: 6.09375vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__button {
    margin-top: 2.5rem;
  }
}

.p-form__button.p-form__button-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8.875rem;
}

.p-form__button-img {
  position: relative;
  display: inline-block;
}
.p-form__button-img::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 3.125vw;
  width: 2.03125vw;
  height: 2.03125vw;
  background-image: url(../images/common/btn-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-form__button-img::before {
    width: 1.5625rem;
    height: 1.5625rem;
    right: 2.375rem;
  }
}

.p-form__button-img input {
  padding: 2.25rem 0;
  padding-left: 8.6875rem;
  display: inline-block;
  width: 25.375rem;
  border: none;
  background-color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  color: #5F2942;
  border-radius: 3.3125rem;
  text-align: left;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__button-img input {
    padding: 1.5625rem 0;
    padding-left: 5rem;
    width: 16.125rem;
    font-size: 0.875rem;
  }
}

.p-form__button-back {
  position: relative;
  display: inline-block;
}
.p-form__button-back::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 3.125vw;
  width: 2.03125vw;
  height: 2.03125vw;
  background-image: url(../images/common/btn-arrow-back.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-form__button-back::before {
    width: 1.5625rem;
    height: 1.5625rem;
    left: 2.375rem;
  }
}

.p-form__button-back {
  padding: 2.25rem 0;
  display: inline-block;
  width: 25.375rem;
  border: none;
  background-color: #DBDBDB;
  font-weight: 700;
  font-size: 1.25rem;
  color: #5F2942;
  border-radius: 3.3125rem;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__button-back {
    padding: 1.5625rem 0;
    width: 16.125rem;
    font-size: 0.875rem;
  }
}

.p-form__textarea {
  width: 100%;
  border: none;
  background-color: #fff;
  height: 16.3020833333vw;
  overflow-y: scroll;
  padding: 0.7291666667vw 1.0416666667vw;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-form__textarea {
    height: 14.5625rem;
    padding: 0.9375rem 1.5625rem;
    font-size: 0.875rem;
    line-height: 2.2857142857;
  }
}

.p-form__textarea::-moz-placeholder {
  color: rgba(29, 26, 29, 0.15);
}

.p-form__textarea::placeholder {
  color: rgba(29, 26, 29, 0.15);
}

.p-form__thanks {
  font-weight: 700;
  font-size: 1.6875rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__thanks {
    font-size: 1rem;
  }
}

.p-contact {
  position: relative;
  padding: 8.125vw 0 10.7291666667vw;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 1.5625rem 0;
  }
}
.p-contact::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 5.3125vw;
  left: 0;
  width: 10.5729166667vw;
  height: 43.28125vw;
  background-image: url(../images/common/contact-before.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-contact::before {
    top: 2rem;
    width: 4.375rem;
    height: 18.125rem;
  }
}
.p-contact::after {
  position: absolute;
  display: inline-block;
  content: "";
  top: 10.9375vw;
  right: 0;
  width: 12.65625vw;
  height: 32.2916666667vw;
  background-image: url(../images/common/contact-after.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-contact::after {
    top: unset;
    bottom: 3.625rem;
    width: 5.875rem;
    height: 15rem;
  }
}

.p-contact.p-contact--before::before {
  top: unset;
  bottom: 1.3541666667vw;
  left: 0;
  width: 98.28125vw;
  height: 30.5729166667vw;
  background-image: url(../images/common/contact-bg-before.png);
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-contact.p-contact--before::before {
    display: none;
  }
}

.p-contact.p-contact--after::after {
  top: unset;
  bottom: 1.3541666667vw;
  right: 0;
  width: 98.28125vw;
  height: 30.5729166667vw;
  background-image: url(../images/entry/entry-contact-bg.png);
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-contact.p-contact--after::after {
    display: none;
  }
}

.p-contact__inner {
  max-width: 73.1770833333vw;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    max-width: 28.125rem;
    padding: 0 15px;
  }
}

.p-contact-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.40625vw;
}
@media screen and (max-width: 767px) {
  .p-contact-list {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-contact.p-contact--after .p-contact-list {
  justify-content: start;
}

.p-contact.p-contact--before .p-contact-list {
  justify-content: flex-end;
}

.p-contact-list__item {
  position: relative;
  padding: 5.7291666667vw 5.46875vw 4.5833333333vw;
  color: #5F2942;
  background-color: #ECECEC;
  text-align: center;
  border-radius: 3.125vw;
}
@media screen and (max-width: 767px) {
  .p-contact-list__item {
    margin-left: auto;
    padding: 2.5rem 1.625rem;
    border-radius: 2.875rem;
  }
}
.p-contact-list__item::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0.46875vw;
  right: -0.4166666667vw;
  width: 32.0833333333vw;
  height: 36.9270833333vw;
  background-image: url(../images/common/contact-item-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-contact-list__item::before {
    top: 0.25rem;
    right: -0.25rem;
    width: 16.3125rem;
    height: 18.75rem;
    background-image: url(../images/common/contact-item-bg-sp.png);
  }
}

.p-contact-list__item:nth-of-type(2) {
  margin-left: unset;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .p-contact-list__item.p-contact-list__item--entry {
    margin-left: unset;
    margin-right: auto;
  }
}

.p-contact-list__item-title-jp {
  font-weight: 600;
  font-size: 1.40625vw;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-list__item-title-jp {
    font-size: 0.875rem;
  }
}

.p-contact-list__item-title-en {
  margin-top: 0.9375vw;
  font-family: "Roboto", serif;
  font-weight: 800;
  font-size: 5.2604166667vw;
  line-height: 1.198019802;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-list__item-title-en {
    margin-top: 0.125rem;
    font-size: 3rem;
    line-height: 1.2083333333;
  }
}

.p-contact-list__item-text {
  margin-top: 3.3333333333vw;
  font-weight: 600;
  font-size: 1.40625vw;
  line-height: 1.5925925926;
}
@media screen and (max-width: 767px) {
  .p-contact-list__item-text {
    margin-top: 1.125rem;
    font-size: 0.875rem;
    line-height: 2.2142857143;
  }
}

.p-contact-list__item-btn {
  margin-top: 4.6875vw;
}
@media screen and (max-width: 767px) {
  .p-contact-list__item-btn {
    margin-top: 1.6875rem;
  }
}

.c-contact-btn a {
  position: relative;
  display: inline-block;
  width: 21.1458333333vw;
  padding: 2.2135416667vw 3.125vw;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1;
  text-align: left;
  background-color: #FFF;
  border-radius: 2.7604166667vw;
}
@media screen and (max-width: 767px) {
  .c-contact-btn a {
    width: 13.1875rem;
    padding: 0.875rem 1.78125rem;
    font-size: 0.75rem;
    border-radius: 3.3125rem;
  }
}
.c-contact-btn a::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 1.71875vw;
  right: 3.125vw;
  width: 2.03125vw;
  height: 2.03125vw;
  background-image: url(../images/common/contact-btn-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-contact-btn a::before {
    top: 50%;
    transform: translateY(-50%);
    right: 1.78125rem;
    width: 1rem;
    height: 1rem;
  }
}

.c-contact-btn a:hover:before {
  right: 2.6041666667vw;
}

.p-footer {
  padding: 1.4583333333vw 0 1.3020833333vw;
  color: #FFF;
  background-color: #224E00;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 1.0625rem 0 1.875rem;
  }
}

.p-footer__inner {
  max-width: 115.625rem;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    max-width: 28.125rem;
    padding: 0 15px;
  }
}

.p-footer__wrap {
  margin-left: 7.2916666667vw;
  display: flex;
  gap: 1.1979166667vw;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    margin: 0;
    gap: 0.5625rem;
  }
}

.p-footer__logo {
  width: 11.40625vw;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 5.9375rem;
  }
}

.p-footer__info {
  padding-top: 3.2291666667vw;
}
@media screen and (max-width: 767px) {
  .p-footer__info {
    padding-top: 1.625rem;
  }
}

.p-footer__info-title {
  font-weight: 500;
  font-size: 1.09375vw;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__info-title {
    font-size: 0.875rem;
  }
}

.p-footer__info-address {
  margin-top: 1.5104166667vw;
  font-weight: 300;
  font-size: 1.09375vw;
  line-height: 1.0476190476;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__info-address {
    margin-top: 0.625rem;
    font-size: 0.75rem;
    line-height: 2;
  }
}

.p-footer__privacy {
  margin-top: 2.34375vw;
  font-weight: 500;
  font-size: 1.09375vw;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__privacy {
    margin-top: 3.625rem;
    font-size: 0.75rem;
  }
}

.p-footer__copy {
  margin-top: 1.3020833333vw;
  padding-top: 0.859375vw;
  font-weight: 500;
  font-size: 0.8333333333vw;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  border-top: 1px solid #FEFFFD;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    margin-top: 0.5rem;
    padding-top: 0.625rem;
    font-size: 0.5625rem;
  }
}

.p-fv {
  margin-top: 2.03125vw;
  width: 96.9791666667vw;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-fv {
    margin-top: 0.8125rem;
    width: 100%;
    margin-left: unset;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__inner {
    padding: 0 15px;
  }
}

.p-fv__img {
  position: relative;
}
.p-fv__img::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 59.2708333333vw;
  height: 27.6041666667vw;
  bottom: -1.40625vw;
  left: -1.3020833333vw;
  background-image: url(../images/common/fv-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-fv__img::before {
    width: 22.6875rem;
    height: 7.4375rem;
    bottom: -0.25rem;
    left: -0.25rem;
    background-image: url(../images/common/fv-bg-sp.png);
  }
}
@media screen and (max-width: 767px) {
  .p-fv__img::after {
    position: absolute;
    display: inline-block;
    content: "";
    top: 0;
    right: -0.0625rem;
    width: 5.125rem;
    height: 7.4375rem;
    background-image: url(../images/common/fv-after-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
}

.p-fv__img img {
  width: 100%;
  aspect-ratio: 1862/563;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-fv__img img {
    aspect-ratio: 363/119;
  }
}

.p-fv__title {
  position: relative;
  margin-top: -11.3541666667vw;
  padding-right: 3.125vw;
  font-weight: 700;
  font-size: 1.6666666667vw;
  line-height: 1.1;
  letter-spacing: 0;
  color: #224E00;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    margin-top: -2.375rem;
    padding-right: 0;
    font-size: 0.625rem;
    line-height: 1;
  }
}

.p-fv__title span {
  font-family: "Roboto", serif;
  font-size: 10.5208333333vw;
}
@media screen and (max-width: 767px) {
  .p-fv__title span {
    font-size: 3.8125rem;
    letter-spacing: -0.05em;
  }
}

.p-header {
  height: 5.8125rem;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.4375rem;
    background-color: rgba(255, 255, 255, 0.56);
  }
}

.p-header.p-header--other {
  height: 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-header.p-header--other {
    height: 3.4375rem;
  }
}

.p-header__inner {
  height: inherit;
  max-width: 115.625rem;
  margin: 0 auto;
  padding-left: 25px;
  display: flex;
  justify-content: space-between;
}

.p-header__logo {
  max-width: 11.1458333333vw;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 5.625rem;
  }
}

.p-header--other .p-header__logo {
  max-width: 7.2916666667vw;
}
@media screen and (max-width: 767px) {
  .p-header--other .p-header__logo {
    max-width: 5.625rem;
  }
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-items {
  height: inherit;
  display: flex;
}

.p-header--other .p-header__nav-items {
  align-items: center;
}

.p-header__nav-item a {
  display: inline-block;
  padding: 0.78125vw 1.3020833333vw;
  font-family: "Roboto", serif;
  font-weight: 700;
  font-size: 1.25vw;
  line-height: 1;
  letter-spacing: 0;
  color: #FFF;
  -moz-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
  -ms-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}

.p-header__hamburger {
  position: fixed;
  top: 0;
  right: 0;
  height: 3.125rem;
  width: 3.125rem;
}

.p-header__drawer {
  position: absolute;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.p-hamburger {
  z-index: 9999;
  padding: 1rem 0.875rem;
  align-items: center;
}

.p-hamburger__ber {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.p-hamburger__ber span {
  position: absolute;
  display: block;
  width: 1.375rem;
  height: 0.125rem;
  background-color: #224E00;
  transition: 0.3s ease-in-out;
}

.js-hamburger.is-open span {
  background-color: #224E00;
}

.p-hamburger span:nth-child(1) {
  top: 32%;
}

.p-hamburger__ber span:nth-child(2) {
  top: 48%;
}

.p-hamburger__ber span:nth-child(3) {
  top: 63%;
}

.js-hamburger.is-open span:nth-child(1) {
  top: 48%;
  transform: rotate(-45deg);
}

.js-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.js-hamburger.is-open span:nth-child(3) {
  top: 48%;
  width: 1.375rem;
  transform: rotate(45deg);
}

.p-drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  padding: 3.4375rem 0 0.9375rem;
  overflow-y: scroll;
}

.js-drawer.is-open {
  opacity: 100;
}

.p-drawer-menu__logo {
  position: absolute;
  top: 0;
  left: 1.0625rem;
  width: 5.625rem;
}

.p-drawer-menu__inner {
  width: 100%;
  max-width: 37.5rem;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}

.p-drawer-menu__items {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.p-drawer-menu__item {
  display: block;
  width: 100%;
}

.p-drawer-menu__item:first-of-type {
  border-top: 1px solid #FFF;
}

.p-drawer-menu__item a {
  display: inline-block;
  width: 100%;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.4166666667;
  letter-spacing: 0;
  color: #FFF;
  padding: 0.9375rem 0;
  transition: 0.3s opacity;
  -moz-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  -ms-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}
.p-drawer-menu__item a:hover {
  opacity: 0.75;
}

.p-mv {
  position: relative;
  height: 100vh;
  min-height: 46.875vw;
}
@media screen and (max-width: 767px) {
  .p-mv {
    min-height: 25rem;
  }
}

.p-mv__inner {
  height: inherit;
  min-height: inherit;
}

.p-mv__main {
  height: inherit;
  min-height: inherit;
}

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

.p-mv__wrap {
  position: absolute;
  top: 14.6354166667vw;
  left: 3.125vw;
}
@media screen and (max-width: 767px) {
  .p-mv__wrap {
    top: unset;
    bottom: 3.125rem;
    left: 50%;
    transform: translateX(-50%);
    width: 91%;
  }
}

.p-mv__title {
  font-family: "Roboto", serif;
  font-weight: 700;
  font-size: 4.1145833333vw;
  line-height: 0.9746835443;
  letter-spacing: 0.03em;
  color: #FFF;
  -moz-filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
  -ms-filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
  filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 1.75rem;
    letter-spacing: 0;
  }
}

.p-mv__subtitle {
  position: relative;
  margin-top: 2.65625vw;
  padding-right: 4.9479166667vw;
  font-weight: 700;
  font-size: 1.8229166667vw;
  line-height: 1;
  letter-spacing: 0;
  color: #FFF;
  text-align: right;
  -moz-filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
  -ms-filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
  filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
}
@media screen and (max-width: 767px) {
  .p-mv__subtitle {
    margin-top: 0.5rem;
    padding-right: 0.3125rem;
    font-size: 0.875rem;
  }
}
.p-mv__subtitle::before {
  content: "";
  position: absolute;
  width: 15.3645833333vw;
  height: 1px;
  background: #FFF;
  top: 50%;
  left: 1.0416666667vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-mv__subtitle::before {
    width: 6.75rem;
    left: 0.625rem;
  }
}

.p-mv__text {
  margin-top: 5.9895833333vw;
  font-weight: 500;
  font-size: 1.40625vw;
  line-height: 2.1851851852;
  letter-spacing: 0;
  color: #FFF;
  -moz-filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
  -ms-filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
  filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    margin-top: 1.6875rem;
    font-size: 0.75rem;
    line-height: 1.7;
    -moz-filter: drop-shadow(0px 0px 3px rgb(0, 0, 0));
    -ms-filter: drop-shadow(0px 0px 3px rgb(0, 0, 0));
    filter: drop-shadow(0px 0px 3px rgb(0, 0, 0));
  }
}

.p-mv__text02 {
  margin-top: 1.9270833333vw;
  display: inline-block;
  padding: 0.8854166667vw 1.3020833333vw;
  font-family: "Roboto", serif;
  font-weight: 700;
  font-size: 1.40625vw;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #224E00;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-mv__text02 {
    margin-top: 0.625rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
}

.p-page {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  gap: 1.5104166667vw;
}
@media screen and (max-width: 767px) {
  .p-page {
    margin-top: 4.125rem;
    gap: 1.1875rem;
  }
}

.p-page-top {
  padding-left: 3.125vw;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1;
  color: #224E00;
}
@media screen and (max-width: 767px) {
  .p-page-top {
    padding-left: 0.9375rem;
    font-size: 0.75rem;
  }
}

.p-page-text {
  position: relative;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-page-text {
    font-size: 0.75rem;
  }
}
.p-page-text::before {
  content: "";
  position: absolute;
  width: 0.625vw;
  height: 1px;
  background: #1D1A1D;
  left: -1.0677083333vw;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-page-text::before {
    width: 0.5rem;
    left: -0.875rem;
  }
}

.p-privacy {
  position: relative;
  margin-top: 5.0520833333vw;
}
@media screen and (max-width: 767px) {
  .p-privacy {
    margin-top: 1.6875rem;
  }
}
.p-privacy::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 11.6145833333vw;
  background-color: #224E00;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-privacy::before {
    height: 5.1875rem;
  }
}

.p-privacy__wrap {
  padding: 9.375vw 10.0520833333vw;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-privacy__wrap {
    padding: 1.5625rem;
  }
}

.p-privacy__text p {
  font-weight: 300;
  font-size: 0.9375vw;
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy__text p {
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}

.p-privacy__text p:not(:first-of-type) {
  margin-top: 1.5625vw;
}
@media screen and (max-width: 767px) {
  .p-privacy__text p:not(:first-of-type) {
    margin-top: 0.625rem;
  }
}

.p-privacy__text h3 {
  margin-top: 5.2083333333vw;
  padding-left: 1.3020833333vw;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1.85;
  border-left: 0.3125rem solid #5F2942;
}
@media screen and (max-width: 767px) {
  .p-privacy__text h3 {
    margin-top: 2.25rem;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-service-curriculum {
  position: relative;
  margin-top: 5.9895833333vw;
  padding: 6.25vw 0;
  background-color: #224E00;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-service-curriculum {
    margin-top: 2.5rem;
    padding: 3.75rem 0 6.125rem;
  }
}

.p-service-curriculum__text {
  position: relative;
  font-weight: 700;
  font-size: 2.0833333333vw;
  line-height: 2.2;
  color: #FFF;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-service-curriculum__text {
    font-size: 1rem;
    line-height: 2.1875;
    text-align: center;
  }
}

.p-service-curriculum__title {
  position: relative;
  margin-top: 1.0416666667vw;
  display: inline-block;
  padding-bottom: 1.1458333333vw;
  font-family: "Roboto", serif;
  font-weight: 700;
  font-size: 2.1875vw;
  line-height: 1;
  color: #FFF;
  border-bottom: 1px solid #FFF;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-service-curriculum__title {
    display: block;
    text-align: center;
    margin-top: 2.25rem;
    padding-bottom: 0;
    font-size: 1.375rem;
    border-bottom: none;
  }
}

.p-service-curriculum__title span {
  margin-left: 1.4583333333vw;
  font-family: "IBM Plex Sans JP", serif;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-service-curriculum__title span {
    margin-left: 0;
    display: inline-block;
    margin-top: 0.3125rem;
    padding-top: 0.4375rem;
    font-size: 0.75rem;
    border-top: 1px solid #FFF;
  }
}

.p-curriculum-list {
  position: relative;
  margin: 1.875vw auto 0;
  max-width: 79.1666666667vw;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.6875rem 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-curriculum-list {
    max-width: 19.625rem;
    margin-top: 1.75rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}

.p-curriculum-list__item {
  position: relative;
  padding: 4.2708333333vw 0.2604166667vw 0.2604166667vw;
  height: 12.6302083333vw;
  border-radius: 50%;
  background-color: #FFF;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-curriculum-list__item {
    padding: 2.75rem 0.9375rem 0.3125rem;
    height: 9.5rem;
  }
}
.p-curriculum-list__item::before {
  content: "";
  position: absolute;
  width: 12.6302083333vw;
  height: 12.6302083333vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #163300;
  top: 0.3645833333vw;
  left: 0.3125vw;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-curriculum-list__item::before {
    width: 9.5rem;
    height: 9.5rem;
    top: 0.25rem;
    left: 0.25rem;
  }
}

.p-curriculum-list__item-title {
  position: relative;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1;
  padding-bottom: 0.8854166667vw;
}
@media screen and (max-width: 767px) {
  .p-curriculum-list__item-title {
    font-size: 0.8125rem;
    padding-bottom: 1.0625rem;
  }
}
.p-curriculum-list__item-title::before {
  content: "";
  position: absolute;
  width: 10.4166666667vw;
  height: 1px;
  background: #224E00;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-curriculum-list__item-title::before {
    width: 7.5rem;
  }
}

.p-curriculum-list__item-text {
  margin-top: 1.25vw;
  font-weight: 500;
  font-size: 0.7291666667vw;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-curriculum-list__item-text {
    margin-top: 0.625rem;
    font-size: 0.6875rem;
    line-height: 1.4;
    letter-spacing: -0.05em;
  }
}

.p-service-curriculum__text02 {
  font-weight: 700;
  font-size: 1.25rem;
  color: #FFF;
  text-align: right;
}

.p-service-job {
  margin-top: 9.21875vw;
}
@media screen and (max-width: 767px) {
  .p-service-job {
    margin-top: 2.5rem;
  }
}

.p-service-job__title {
  display: inline-block;
  font-family: "Roboto", serif;
  font-weight: 700;
  font-size: 2.1875vw;
  line-height: 1;
  color: #224E00;
  padding-bottom: 1.1458333333vw;
  border-bottom: 1px solid #224E00;
}
@media screen and (max-width: 767px) {
  .p-service-job__title {
    display: block;
    text-align: center;
    margin-top: 2.25rem;
    padding-bottom: 0;
    font-size: 1.375rem;
    border-bottom: none;
  }
}

.p-service-job__title span {
  margin-left: 2.34375vw;
  font-family: "IBM Plex Sans JP", serif;
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 767px) {
  .p-service-job__title span {
    margin-left: 0;
    display: inline-block;
    margin-top: 0.3125rem;
    padding-top: 0.4375rem;
    font-size: 0.75rem;
    border-top: 1px solid #224E00;
  }
}

.p-job-list {
  margin-top: 2.0833333333vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.09375vw 1.6145833333vw;
}
@media screen and (max-width: 767px) {
  .p-job-list {
    margin-top: 2.1875rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

.p-job-list__item {
  position: relative;
  padding: 0.3125vw 0.3125vw 0.9895833333vw;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-job-list__item {
    padding: 0.375rem 0.375rem 0.375rem 0.75rem;
  }
}
.p-job-list__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #EBEBEB;
  top: 0.625vw;
  right: -0.5729166667vw;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-job-list__item::before {
    top: 0.375rem;
    right: -0.375rem;
  }
}

.p-job-list__item-title {
  padding: 0.8333333333vw;
  font-weight: 700;
  font-size: 1.1458333333vw;
  line-height: 1.4;
  color: #FFF;
  background-color: #224E00;
}
@media screen and (max-width: 767px) {
  .p-job-list__item-title {
    padding: 0 1rem;
    font-size: 0.875rem;
    line-height: 2.2142857143;
  }
}

.p-job-list__item-body {
  margin-top: 1.0416666667vw;
}
@media screen and (max-width: 767px) {
  .p-job-list__item-body {
    margin-top: 1.25rem;
  }
}

.p-job-list__item-body-wrap {
  padding: 0 0.5208333333vw;
  display: flex;
  gap: 1.5625vw;
}
@media screen and (max-width: 767px) {
  .p-job-list__item-body-wrap {
    padding: 0;
    gap: 0.625rem;
  }
}

.p-job-list__item-body-wrap p {
  font-weight: 300;
  font-size: 0.8333333333vw;
  line-height: 2.1875;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-job-list__item-body-wrap p {
    font-size: 0.75rem;
    line-height: 2.1666666667;
    letter-spacing: 0;
  }
}

.p-job-list__item-body-wrap p.name {
  position: relative;
  font-weight: 500;
  letter-spacing: 0;
  width: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-job-list__item-body-wrap p.name {
    width: 3.75rem;
    letter-spacing: -0.05em;
  }
}
.p-job-list__item-body-wrap p.name::before {
  content: "";
  position: absolute;
  width: 0.2604166667vw;
  height: 0.9375vw;
  background: #224E00;
  top: 0.3645833333vw;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-job-list__item-body-wrap p.name::before {
    width: 0.1875rem;
    height: 0.625rem;
    top: 0.4375rem;
  }
}

.p-job-list__item-body-wrap p:nth-of-type(2) {
  width: 84.97%;
}

.p-top-company {
  padding: 6.25vw 0 9.375vw;
  background-color: #224E00;
}
@media screen and (max-width: 767px) {
  .p-top-company {
    padding: 1rem 0 1.625rem;
  }
}

.p-top-company__inner {
  max-width: 81.7708333333vw;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-top-company__inner {
    max-width: 100%;
    padding: 0 15px;
  }
}

.p-top-company__title.p-top-section__title {
  text-align: center;
  color: rgba(56, 95, 25, 0.5);
}
@media screen and (max-width: 767px) {
  .p-top-company__title.p-top-section__title {
    font-size: 4.5rem;
  }
}

.p-top-company__bg {
  position: relative;
}
.p-top-company__bg::before {
  position: absolute;
  display: inline-block;
  content: "";
  bottom: -1.9270833333vw;
  right: -1.9791666667vw;
  width: 79.84375vw;
  height: 27.2916666667vw;
  background-image: url(../images/top/top-company-before.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-top-company__bg::before {
    display: none;
  }
}

.p-top-company__wrap {
  position: relative;
  margin-top: -5.3645833333vw;
  padding: 5.3645833333vw 1.4322916667vw 12.1354166667vw;
  background-image: url(../images/top/top-company-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: right;
  color: #FFF;
  border-radius: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__wrap {
    background-image: none;
    padding: 0;
    margin-top: 1.25rem;
    text-align: left;
  }
}

.p-top-company__wrap-title {
  font-family: "Roboto", serif;
  font-weight: 800;
  font-size: 3.8541666667vw;
  line-height: 1.2027027027;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-company__wrap-title {
    font-size: 1.375rem;
    line-height: 1.2272727273;
    letter-spacing: 0;
  }
}

.p-top-company__wrap-text {
  margin-top: 0.1875rem;
  font-weight: 500;
  font-size: 1.0416666667vw;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-company__wrap-text {
    margin-top: 1.125rem;
    font-size: 0.75rem;
  }
}

.p-top-section__img {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-section__img {
    display: block;
    margin-top: -1.875rem;
    margin-right: calc(50% - 50vw);
  }
}

.p-top-company__wrap-btn {
  margin-top: 1.1197916667vw;
}
@media screen and (max-width: 767px) {
  .p-top-company__wrap-btn {
    margin-top: 1.5rem;
  }
}

.c-view-btn a {
  text-align: left;
}

.p-top-philo {
  padding: 3.2291666667vw 0 8.3333333333vw;
  background-image: url(../images/top/philo-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-top-philo {
    padding: 2.125rem 0 2.875rem;
    background-image: url(../images/top/philo-bg-sp.png);
  }
}

.p-top-philo__text {
  font-weight: 700;
  font-size: 1.8229166667vw;
  line-height: 2.2;
  letter-spacing: 0;
  color: #FFF;
  text-align: center;
  -moz-filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
  -ms-filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
  filter: drop-shadow(0px 0px 10px rgb(0, 0, 0));
}
@media screen and (max-width: 767px) {
  .p-top-philo__text {
    font-size: 0.8125rem;
    line-height: 2.2307692308;
  }
}

.p-top-section {
  padding: 6.25vw 0 9.375vw;
}
@media screen and (max-width: 767px) {
  .p-top-section {
    padding: 1.5625rem 0;
  }
}

.p-top-section.p-top-section--color {
  background-color: #224E00;
}

.p-top-section__inner {
  max-width: 100vw;
  margin-left: auto;
  padding: 0 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .p-top-section__inner {
    max-width: 28.125rem;
    padding: 0 0.625rem;
  }
}

.p-top-section__title {
  position: relative;
  font-family: "Roboto", serif;
  font-weight: 700;
  font-size: 14.9479166667vw;
  line-height: 1.1916376307;
  letter-spacing: 0.05em;
  color: rgba(186, 219, 160, 0.2);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-top-section__title {
    font-size: 5.25rem;
    line-height: 1.1904761905;
  }
}

@media screen and (max-width: 767px) {
  .p-top-section__title.p-top-section__title--about {
    font-size: 4.1875rem;
  }
}

.p-top-section__title.p-top-section__title--right {
  text-align: right;
  color: rgba(56, 95, 25, 0.5);
}

.p-top-section__wrap {
  position: relative;
  margin-top: -6.3541666667vw;
  display: flex;
  align-items: center;
  gap: 1.7708333333vw;
  color: #224E00;
}
@media screen and (max-width: 767px) {
  .p-top-section__wrap {
    margin-top: -2.5rem;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-top-section__wrap.p-top-section__wrap--reverse {
  flex-direction: row-reverse;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-top-section__wrap.p-top-section__wrap--reverse {
    flex-direction: column;
  }
}

.p-top-section__wrap-img {
  width: 63.597%;
}
@media screen and (max-width: 767px) {
  .p-top-section__wrap-img {
    width: 100%;
    margin-right: calc(50% - 50vw);
  }
}

.p-top-section__wrap-body {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .p-top-section__wrap-body {
    width: 100%;
  }
}

.p-top-section__wrap-body-title {
  font-family: "Roboto", serif;
  font-weight: 800;
  font-size: 3.8541666667vw;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-section__wrap-body-title {
    font-size: 1.375rem;
  }
}

.p-top-section__wrap-body-text {
  margin-top: 4.21875vw;
  font-weight: 500;
  font-size: 1.0416666667vw;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-section__wrap-body-text {
    margin-top: 1.125rem;
    font-size: 0.75rem;
    line-height: 1.7;
  }
}

.p-top-section__wrap-body-btn {
  margin-top: 3.9583333333vw;
}
@media screen and (max-width: 767px) {
  .p-top-section__wrap-body-btn {
    margin-top: 0.3125rem;
  }
}

.c-view-btn a {
  position: relative;
  display: inline-block;
  padding: 0.6770833333vw 0 0.9895833333vw;
  width: 10.2083333333vw;
  font-family: "Roboto", serif;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1;
  letter-spacing: 0;
  border-bottom: 0.3125rem solid #224E00;
}
@media screen and (max-width: 767px) {
  .c-view-btn a {
    padding: 0.875rem 0;
    width: 11.5625rem;
    font-size: 0.875rem;
    border-bottom: 0.1875rem solid #224E00;
  }
}
.c-view-btn a::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0;
  right: 0;
  width: 2.03125vw;
  height: 2.03125vw;
  background-image: url(../images/common/view-btn-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-view-btn a::before {
    width: 2.3125rem;
    height: 2.3125rem;
  }
}

.c-view-btn a:hover::before {
  right: -0.625rem;
}

.c-view-btn.c-view-btn--color a {
  border-bottom: 0.3125rem solid #FFF;
}
.c-view-btn.c-view-btn--color a::before {
  background-image: url(../images/common/view-btn-arrow02.svg);
}
@media screen and (max-width: 767px) {
  .c-view-btn.c-view-btn--color a {
    border-bottom: 0.1875rem solid #FFF;
  }
}

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

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
