@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]) {
  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;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (max-width: 1150px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

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-inner {
  max-width: 71.875rem;
  width: 100%;
  margin-inline: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 37.5rem;
  }
}

.l-recruit {
  padding-bottom: 7.3125rem;
}

.l-vision {
  padding-top: 1rem;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .l-vision {
    padding-top: 2.125rem;
    padding-bottom: 3rem;
  }
}

.l-button-block {
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-button-block {
    padding-top: 3.8rem;
  }
}

.l-point {
  margin-top: 8.8875rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-point {
    margin-top: 6.6875rem;
    padding-bottom: 4rem;
  }
}

.l-point-list {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-point-list {
    margin-top: 6.5rem;
  }
}

.l-staff {
  padding-top: 10.525rem;
  padding-bottom: 9.825rem;
}
@media screen and (max-width: 767px) {
  .l-staff {
    padding-bottom: 6.025rem;
  }
}

.l-curriculum {
  padding-top: 10.5rem;
}

.l-event {
  padding-top: 10.4rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-event {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

.l-trial-session {
  padding-top: 6.25rem;
  padding-bottom: 6.35rem;
}
@media screen and (max-width: 767px) {
  .l-trial-session {
    padding-top: 3.4375rem;
    padding-bottom: 3.4375rem;
  }
}

.l-trial-session-about {
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .l-trial-session-about {
    padding-top: 4rem;
  }
}

.l-trial-session-detail {
  margin-top: 4rem;
  padding-bottom: 5.5rem;
}

.l-message {
  padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-message {
    padding-top: 3.5rem;
  }
}

.l-requirements {
  margin-top: 4.95rem;
}

.l-entry {
  margin-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.l-company {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.c-button {
  position: relative;
  padding: 1.275rem 2.95rem;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 3.125rem;
  background-color: linear-gradient(180deg, #4d8048 0%, #5e745d 100%);
}
@media screen and (max-width: 767px) {
  .c-button {
    padding: 0.875rem 1.55rem;
    font-size: 0.75rem;
  }
}

.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.85rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button::before {
    right: 0.65rem;
    width: 0.3rem;
    height: 0.3rem;
  }
}

.c-button:hover::before {
  border-top-color: #818181;
  border-right-color: #818181;
}

.c-button.c-button--green {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(135deg, #fff 50%, #4d8048 50%, #5e745d 100%);
  background-size: 300%;
  background-position: 100% 0;
  transition: background-position 1s cubic-bezier(0.25, 1, 0.5, 1), color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.c-button.c-button--green:hover {
  background-position: 0 0;
  color: #333;
}

.c-button.c-button--white {
  color: #4D8048;
  border: 1px solid #4D8048;
  background: #fff;
  padding: 1.325rem 0;
  width: 22.5rem;
  text-align: center;
  background-image: linear-gradient(135deg, #4D8048 50%, transparent 50%);
  background-size: 300%;
  background-position: 100%;
  transition: background-position 1s cubic-bezier(0.25, 1, 0.5, 1), color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .c-button.c-button--white {
    width: 100%;
  }
}

.c-button.c-button--white:hover {
  background-position: 0;
  color: #fff;
}

.c-button.c-button--white::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.95rem;
  width: 0.375rem;
  height: 0.375rem;
  border-top: 0.0625rem solid #2F552B;
  border-right: 0.0625rem solid #2F552B;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button.c-button--white::before {
    right: 0.65rem;
    width: 0.3rem;
    height: 0.3rem;
  }
}

.c-button.c-button--white:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.c-button.c-button--big {
  position: relative;
  padding: 3.7875rem 0;
  max-width: 43.3125rem;
  width: 100%;
  display: inline-block;
  font-size: 1.375rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.4;
  letter-spacing: 0.2em;
  border: 1px solid #fff;
  border-radius: 999px;
  text-indent: 1.0625rem;
  background-color: #fff;
  background-image: linear-gradient(135deg, #4D8048 50%, transparent 50%);
  background-size: 300%;
  background-position: 100%;
  transition: background-position 1s cubic-bezier(0.25, 1, 0.5, 1), color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .c-button.c-button--big {
    padding: 1.125rem 0;
    max-width: 18.1875rem;
    width: 100%;
    font-size: 1rem;
    line-height: 1.8;
    white-space: nowrap;
    text-indent: -0.3125rem;
  }
}

@-moz-document url-prefix() {
  @media screen and (max-width: 767px) {
    .c-button.c-button--big {
      line-height: 1.4;
    }
  }
}
.c-button.c-button--big:hover {
  background-position: 0;
  color: #fff;
}

.c-button.c-button--big::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.15rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #333;
  border-right: 0.125rem solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button.c-button--big::before {
    right: 1.35rem;
    width: 0.6rem;
    height: 0.6rem;
  }
}

.c-button.c-button--big:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.c-button.c-button--wide {
  max-width: 21.5625rem;
  width: 100%;
  padding: 1.275rem 2.95rem;
  margin-inline: auto;
  color: #fff;
  background: #748C71;
  font-size: 1.0625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-indent: 0.3125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(135deg, #2F552B 50%, transparent 50%);
  background-size: 300%;
  background-position: 100%;
  transition: background-position 1s cubic-bezier(0.25, 1, 0.5, 1), color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.c-button.c-button--wide:hover {
  background-position: 0;
}

.c-button.c-button--wide::before {
  content: "";
  position: absolute;
  top: 44%;
  right: 1.05rem;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button.c-button--wide::before {
    right: 1.05rem;
  }
}

.c-scroll-down {
  position: absolute;
  top: 70.4%;
  right: 2.55rem;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.2em;
  color: #5D715B;
  line-height: 1;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (max-width: 767px) {
  .c-scroll-down {
    top: 91.1%;
    right: 1.75rem;
    font-size: 0.9375rem;
  }
}

.c-scroll-down::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 8.8125rem;
  margin-right: 0.65rem;
  background: #5D715B;
  animation: scroll-down 2s infinite;
}
@media screen and (max-width: 767px) {
  .c-scroll-down::before {
    height: 5.975rem;
    margin-right: 0.85rem;
  }
}

@keyframes scroll-down {
  0% {
    transform: translateX(-50%) scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: translateX(-50%) scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: translateX(-50%) scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: translateX(-50%) scale(1, 0);
    transform-origin: 0 100%;
  }
}
.c-section-title {
  font-size: 4.14125rem;
  font-weight: 400;
  font-family: "Vujahday Script", cursive;
  color: #fff;
  letter-spacing: 0.12em;
  transform: rotate(-5.69deg);
}

.c-section-title.c-section-title--recruit {
  font-size: 6.991875rem;
  color: #7D7B6E;
  position: absolute;
  top: -7.5rem;
  left: -10.25rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-section-title.c-section-title--recruit {
    font-size: 3.5rem;
    top: -7.3rem;
    left: -0.05rem;
  }
}

.c-section-title.c-section-title--vision {
  position: absolute;
  top: 1rem;
  left: calc(50% - min(50vw, 15rem));
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-section-title.c-section-title--vision {
    font-size: 3.5rem;
    top: -2.5rem;
    left: calc(28.5% - min(26vw, 9.5rem));
    z-index: -1;
  }
}

.c-section-head__eyebrow {
  font-size: 4.14125rem;
  font-weight: 400;
  font-family: "Vujahday Script", cursive;
  color: #fff;
  letter-spacing: 0.12em;
  transform: rotate(-3.39deg);
  position: absolute;
  top: -5.25rem;
  left: calc(50% - min(50vw, 35.5rem));
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-section-head__eyebrow {
    font-size: 4rem;
    top: 3rem;
    left: calc(27% - min(27vw, 5.5rem));
  }
}

@media screen and (max-width: 767px) {
  .c-section-head__eyebrow.c-section-head__eyebrow--point {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

.c-section-head__eyebrow.c-section-head__eyebrow--trial-session {
  color: #959595;
  top: 10.25rem;
  left: calc(50% - min(50vw, 29.3rem));
  font-size: 2.5375rem;
}
@media screen and (max-width: 767px) {
  .c-section-head__eyebrow.c-section-head__eyebrow--trial-session {
    top: 4.4rem;
    left: calc(33% - min(25vw, 9rem));
  }
}

.c-section-head__eyebrow.c-section-head__eyebrow--message {
  color: #959595;
  top: 10.25rem;
  left: calc(50% - min(50vw, 29.3rem));
  font-size: 2.5375rem;
}
@media screen and (max-width: 767px) {
  .c-section-head__eyebrow.c-section-head__eyebrow--message {
    font-size: 1.5rem;
    top: 5.2rem;
    left: calc(43% - min(31vw, 13rem));
  }
}

.c-section-head__eyebrow.c-section-head__eyebrow--transparent {
  color: rgba(255, 255, 255, 0.5);
  top: -4.775rem;
  left: calc(50% - min(50vw, 35.4rem));
}
@media screen and (max-width: 767px) {
  .c-section-head__eyebrow.c-section-head__eyebrow--transparent {
    top: -4.45rem;
    left: calc(32% - min(30vw, 10.4rem));
    font-size: 3.5rem;
  }
}

.c-section-head__eyebrow.c-section-head__eyebrow--curriculum {
  top: 5.45rem;
  left: calc(50% - min(50vw, 34.7rem));
}
@media screen and (max-width: 767px) {
  .c-section-head__eyebrow.c-section-head__eyebrow--curriculum {
    top: 6.2375rem;
    left: calc(40% - min(36vw, 13.1rem));
    font-size: 3.5rem;
  }
}

.c-section-head__eyebrow.c-section-head__eyebrow--event {
  top: 5.45rem;
  left: calc(50% - min(50vw, 34.7rem));
}
@media screen and (max-width: 767px) {
  .c-section-head__eyebrow.c-section-head__eyebrow--event {
    top: 1.5375rem;
    left: calc(40% - min(36vw, 13.1rem));
    font-size: 3.5rem;
  }
}

.c-section-head__title {
  display: flex;
}

@media screen and (max-width: 767px) {
  .c-section-head__title.c-section-head__title--point {
    justify-content: center;
  }
}

.c-section-head__number {
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #2F552B;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .c-section-head__number {
    font-size: 1.5rem;
  }
}

.c-section-head__number.c-section-head__number--white {
  color: #fff;
}

.c-section-head__label {
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #2F552B;
  letter-spacing: 0.15em;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-section-head__label {
    font-size: 1.5rem;
    white-space: nowrap;
  }
}

.c-section-head__label.c-section-head__label--white {
  color: #fff;
}

.c-sub-section-title {
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #2F552B;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .c-sub-section-title {
    font-size: 1.375rem;
    line-height: 1.7;
    white-space: nowrap;
  }
}

.c-sub-section-title.c-sub-section-title--black {
  color: #333;
}

.p-header {
  position: relative;
  z-index: 1;
  height: 5.625rem;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.875rem;
  }
}

.p-header__inner {
  padding-left: 2rem;
  padding-right: 2rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-header__logo {
  max-width: 10.9375rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 6.25rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

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

.p-header__nav {
  height: inherit;
}

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

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

.p-bg {
  position: relative;
  clip-path: inset(0);
}

.p-bg::before {
  content: "";
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/bg-img01.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-bg-green {
  background-color: #D6DDD6;
  position: relative;
  z-index: 1;
}

.p-recruit {
  position: relative;
  z-index: 1;
}

.p-recruit__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin-left: calc(-50vw + 50%);
  width: 96.8vw;
}
@media screen and (max-width: 767px) {
  .p-recruit__container {
    flex-direction: column;
    text-align: center;
    width: 100vw;
  }
}

.p-recruit__image {
  max-width: 52.0625rem;
  width: 58vw;
}
@media screen and (max-width: 767px) {
  .p-recruit__image {
    width: 100vw;
  }
}

.p-recruit__image img {
  aspect-ratio: 833/727;
  object-fit: cover;
  height: auto;
  width: 100%;
  display: block;
}

.p-recruit__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 2.1;
  padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__content {
    padding-top: 0.35rem;
  }
}

.p-recruit__lead {
  font-size: 2.375rem;
  font-weight: 400;
  font-family: "Hannari", serif;
  color: #4B3B3B;
  letter-spacing: 0.15em;
  line-height: 2.1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-recruit__lead {
    font-size: 1.625rem;
    text-align: left;
  }
}

.p-recruit__sub {
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #5E745D;
  letter-spacing: 0.2em;
  line-height: 2.4;
  margin-top: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__sub {
    margin-top: 0.5875rem;
    text-align: left;
  }
}

.p-vision {
  position: relative;
  z-index: 1;
}

.p-vision__wrap {
  display: flex;
  gap: 6.2375rem;
}
@media screen and (max-width: 767px) {
  .p-vision__wrap {
    gap: 2.9rem;
    flex-direction: column-reverse;
  }
}

.p-vision__container {
  position: relative;
  max-width: 28.625rem;
  padding-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-vision__container {
    padding-top: 0;
    margin-inline: auto;
    max-width: 37.5rem;
  }
}

.p-vision__lead {
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Hannari", serif;
  color: #4B3B3B;
  letter-spacing: 0.15em;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .p-vision__lead {
    font-size: 1.5rem;
  }
}

.p-vision__sub {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  line-height: 2.4;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-vision__sub {
    font-size: 0.875rem;
  }
}

.p-vision__img {
  margin-left: 0;
  margin-right: calc(-50vw + 50%);
  flex-shrink: 0;
  max-width: 44.25rem;
  display: flex;
  align-items: center;
  padding-top: 5.8625rem;
  width: 50vw;
}
@media screen and (max-width: 767px) {
  .p-vision__img {
    margin-inline: calc(-50vw + 50%);
    padding-top: 0;
    width: 100vw;
    max-width: initial;
  }
}

.p-vision__img img {
  aspect-ratio: 708/581;
  object-fit: cover;
  height: auto;
  width: 100%;
}

.p-vision__button {
  text-align: center;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-vision__button {
    margin-top: 5.65rem;
  }
}

.p-vision-swiper {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  margin-top: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-vision-swiper {
    margin-top: 3.7875rem;
  }
}

.p-vision-swiper__inner {
  max-width: 90rem; /* ここで制御 */
  margin-inline: auto;
}

.js-vision-swiper .swiper-slide {
  width: 25.3125rem;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .js-vision-swiper .swiper-slide {
    width: 14.375rem;
  }
}

.p-vision-swiper .swiper-slide:nth-child(odd) {
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-vision-swiper .swiper-slide:nth-child(odd) {
    padding-top: 2.1rem;
  }
}

.js-vision-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 405/293;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .js-vision-swiper .swiper-slide img {
    aspect-ratio: 230/166;
  }
}

.swiper {
  margin-left: -3.125rem;
}
@media screen and (max-width: 767px) {
  .swiper {
    margin-left: -2.025rem;
  }
}

.p-button-block__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 1.90625rem;
}
@media screen and (max-width: 767px) {
  .p-button-block__items {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1.20625rem;
  }
}

.p-button-block__namber {
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.p-point {
  position: relative;
  z-index: 1;
}

.p-point__body {
  display: flex;
  align-items: center;
  gap: 6.5625rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-point__body {
    gap: 2rem;
    margin-top: 4.3rem;
    flex-direction: column;
  }
}

.p-point__image {
  max-width: 34.4375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-point__image {
    width: 100vw;
    margin-inline: calc(-50vw + 50%);
  }
}

.p-point__image img {
  aspect-ratio: 551/500;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-point__image img {
    aspect-ratio: 375/340;
  }
}

.p-point__text {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  line-height: 2.4;
}

.p-point__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4.75rem;
  row-gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-point__list {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0;
  }
}

.p-point__others {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-point__others {
    margin-top: 2.2rem;
  }
}

.p-point__others-title {
  text-align: center;
}

.p-point__others-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-point__others-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-point__others-img {
  max-width: 16.6875rem;
  width: 100%;
}

.p-point__others-img img {
  aspect-ratio: 267/251;
  object-fit: cover;
  height: auto;
}

.p-point-bg {
  background-color: #D6DDD6;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-point-list__item {
    margin-inline: auto;
  }
}

.p-point-list__item-img {
  max-width: 31.875rem;
  width: 100%;
}

.p-point-list__item-img img {
  aspect-ratio: 510/320;
  object-fit: cover;
  height: auto;
}

.p-point-list__item-content {
  margin-top: 0.825rem;
  max-width: 24.5rem;
  width: 100%;
  margin-inline: auto;
}

.p-point-list__item-title {
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #4D8048;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #748C71;
  padding-bottom: 0.6375rem;
  padding-left: 2.125rem;
}

.p-point-list__item-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/common/point-icon.png") no-repeat center center/contain;
}

.p-point-list__item-text {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  margin-top: 0.8125rem;
  line-height: 1.7;
}

.p-point__about {
  background: linear-gradient(90deg, #E8F1E6 0%, #DCEAD9 100%);
  margin-top: 4.03125rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-point__about {
    margin-top: 4rem;
    max-width: 21.875rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-point-about {
  position: relative;
}

.p-point-about::before {
  content: "";
  position: absolute;
  top: -2.5625rem;
  left: -0.4375rem;
  width: 25.75rem;
  height: 4.6875rem;
  background: url(../images/common/point-about-title-img.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-point-about::before {
    width: 16.875rem;
  }
}

.p-point-about__contaier {
  display: flex;
  gap: 2.6125rem;
  padding: 3.65625rem 3.34375rem;
}
@media screen and (max-width: 767px) {
  .p-point-about__contaier {
    padding: 1.84375rem 0.84375rem;
    gap: 1.5rem;
    display: grid;
    grid-template-columns: 174px auto;
    grid-template-areas: "title image" "text text";
  }
}

.p-point-about__img {
  display: flex;
  align-items: center;
  border-radius: 999px;
  max-width: 10.4375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-point-about__img {
    grid-area: image;
    max-width: 5.625rem;
    align-items: flex-start;
  }
}

.p-point-about__img img {
  aspect-ratio: 167/167;
  object-fit: cover;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-point-about__img img {
    aspect-ratio: 90/90;
  }
}

@media screen and (max-width: 767px) {
  .p-point-about__wrap {
    display: contents;
  }
}

.p-point-about__title {
  color: #333;
}

.p-point-about__sub {
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #5E745D;
  letter-spacing: 0.2em;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-point-about__sub {
    margin-top: 0.5rem;
  }
}

.p-point-about__text {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-top: 1.8rem;
  background-color: #fff;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-point-about__text {
    grid-area: text;
    margin-top: 0.2rem;
  }
}

.p-point-gallery {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-point-gallery {
    margin-top: 3.5rem;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
  }
}

.p-point-gallery__inner {
  max-width: 85.625rem;
  margin-inline: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.p-point-gallery__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-point-gallery__container {
    gap: 0.75rem;
    width: 100vw;
    margin-inline: calc(-50vw + 50%);
  }
}

.p-point-gallery__img {
  max-width: 26.25rem;
  width: 100%;
}

.p-point-gallery__img:nth-child(odd) {
  padding-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-point-gallery__img:nth-child(odd) {
    padding-top: 1.5625rem;
  }
}

.p-point-gallery__img img {
  aspect-ratio: 420/420;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-point-gallery__img img {
    aspect-ratio: 169/169;
  }
}

.p-staff {
  position: relative;
  clip-path: inset(0);
}

.p-staff::before {
  content: "";
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/staff-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-staff__inner {
  position: relative;
}

.p-staff__contaier {
  margin-top: 3.3rem;
}
@media screen and (max-width: 767px) {
  .p-staff__contaier {
    margin-top: 2rem;
  }
}

.p-staff__content {
  background-color: #E3EAE2;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-staff__content {
    padding: 2.5rem 1.125rem 2.9rem;
  }
}

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

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

.p-staff__img {
  max-width: 12.0625rem;
  width: 100%;
}

.p-staff__img {
  aspect-ratio: 193/193;
  object-fit: cover;
  height: auto;
}

.p-staff__info {
  background-color: #fff;
  display: flex;
  padding: 1.525rem 1.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-staff__info {
    flex-direction: column;
    padding: 1.125rem 1rem;
    max-width: 21.875rem;
  }
}

.p-staff__name {
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #4B3B3B;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-staff__name {
    font-size: 1.5rem;
    flex-direction: column;
  }
}

.p-staff__role {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
}

.p-staff__message {
  margin-top: 1.8rem;
}

.p-staff__message-title {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #4B3B3B;
  letter-spacing: 0.15em;
  border-bottom: 1px solid #4D8048;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-staff__message-title {
    font-size: 1.25rem;
  }
}

.p-staff__message-text {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  line-height: 2.4;
  margin-top: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-staff__message-text {
    font-size: 0.875rem;
  }
}

.p-curriculum {
  position: relative;
  background-color: #D6DDD6;
  z-index: 1;
}

.p-curriculum__text {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #2F552B;
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 2.9rem;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .p-curriculum__text {
    font-size: 0.9375rem;
    text-align: left;
    margin-top: 3.4rem;
  }
}

.p-curriculum__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-curriculum__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-curriculum__year {
  background-color: #fff;
  border-radius: 0.625rem;
  max-width: 33.4375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-curriculum__year {
    max-width: 100%;
  }
}

.p-curriculum__title {
  margin: 0;
  padding: 1rem 0;
  background: linear-gradient(90deg, #4D8048, #5E745D);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.15em;
  text-align: center;
  border-radius: 0.625rem 0.625rem 0 0;
}

.p-curriculum__list {
  padding: 1.25rem 1.125rem 2rem 1.125rem;
}

.p-curriculum__item {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #4D8048;
  padding: 1.65rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-curriculum__item {
    padding: 1.65rem 0;
    text-align: left;
  }
}

.p-curriculum__item.p-curriculum__item--no-border {
  border-bottom: none;
}

.p-curriculum__item span {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-curriculum__item span {
    margin-top: 1rem;
    display: block;
  }
}

.p-curriculum__wrap {
  margin-top: 2.5rem;
  padding: 3rem 6.25rem 2.4rem 6.25rem;
  background-color: #F9FBF8;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-curriculum__wrap {
    padding: 2.5rem 1.125rem;
  }
}

.p-curriculum-flow__lead {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #2F552B;
  letter-spacing: 0.2em;
  text-align: center;
  font-size: 0.9375rem;
}

.p-curriculum-flow__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 1.475rem;
}
@media screen and (max-width: 767px) {
  .p-curriculum-flow__steps {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-curriculum-flow__step {
  position: relative;
  flex: 1 1 auto;
  max-width: 9.375rem;
  height: 9.375rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  letter-spacing: 0.2em;
  background-color: #4D8048;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-curriculum-flow__step {
    max-width: 18.125rem;
    height: 5.5rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-curriculum-flow__step::before {
  position: absolute;
  z-index: 1;
  content: "";
  top: 44%;
  left: -0.3125rem;
  background-image: url(../images/common/white-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1rem;
  height: auto;
  aspect-ratio: 16/16;
}
@media screen and (max-width: 767px) {
  .p-curriculum-flow__step::before {
    top: -9%;
    left: 47%;
    transform: rotate(90deg);
  }
}

.p-curriculum-flow__step:first-child::before {
  content: none;
}

.p-curriculum-flow__step:nth-child(1) {
  background: #A2C1B2;
}

.p-curriculum-flow__step:nth-child(2) {
  background: #84BAA0;
}

.p-curriculum-flow__step:nth-child(3) {
  background: #6FB693;
}

.p-curriculum-flow__step:nth-child(4) {
  background: #5AB387;
}

.p-curriculum-flow__step:nth-child(5) {
  background: #50A37B;
}

.p-curriculum-flow__step:nth-child(6) {
  background: #3C9268;
}

.p-curriculum-flow__dot-img {
  max-width: 2.4375rem;
  width: 100%;
  margin-top: 1.5rem;
  margin-inline: auto;
}

.p-curriculum-flow__dot-img img {
  aspect-ratio: 48/43;
  object-fit: cover;
  height: auto;
}

.p-curriculum-flow__goal {
  padding: 0.8125rem 2rem;
  margin-top: 1.7rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  letter-spacing: 0.2em;
  background: linear-gradient(90deg, #4D8048, #5E745D);
  width: 100%;
  text-align: center;
}

.p-curriculum__img {
  width: 100vw;
  margin-inline: calc(-50vw + 50%);
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-curriculum__img {
    margin-top: 3.5rem;
  }
}

.p-event {
  position: relative;
  background-color: #D6DDD6;
  z-index: 1;
}

.p-event__text {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #2F552B;
  letter-spacing: 0.2em;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-event__text {
    text-align: initial;
  }
}

.p-event__swiper {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  margin-top: 2.9875rem;
}
@media screen and (max-width: 767px) {
  .p-event__swiper {
    margin-top: 3.7875rem;
  }
}

.p-event-swiper__inner {
  max-width: 90rem;
  margin-inline: auto;
}

.js-event-swiper .swiper-slide {
  width: 25.3125rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .js-event-swiper .swiper-slide {
    width: 14.375rem;
  }
}

.p-event-swiper .swiper-slide:nth-child(even) {
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-event-swiper .swiper-slide:nth-child(even) {
    padding-top: 2.1rem;
  }
}

.js-event-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 405/293;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .js-event-swiper .swiper-slide img {
    aspect-ratio: 230/166;
  }
}

.swiper.js-event-swiper {
  margin-left: -8.05rem;
}
@media screen and (max-width: 767px) {
  .swiper.js-event-swiper {
    margin-left: -2.025rem;
  }
}

.p-trial-session {
  position: relative;
  clip-path: inset(0);
}

.p-trial-session::before {
  content: "";
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/trial-session-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-trial-session__body {
  padding: 8rem 5.5rem 5.75rem;
  background-color: #F3F1EA;
}
@media screen and (max-width: 767px) {
  .p-trial-session__body {
    padding: 4rem 1.125rem;
  }
}

.p-trial-session__contaier {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.8rem;
  padding-left: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-trial-session__contaier {
    grid-template-columns: repeat(1, 1fr);
    padding-left: 0;
  }
}

.p-trial-session__img {
  max-width: 26rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-trial-session__img {
    margin-inline: auto;
  }
}

.p-trial-session__img img {
  aspect-ratio: 416/380;
  object-fit: cover;
  height: auto;
}

.p-trial-session__button {
  text-align: center;
  margin-left: -1.25rem;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-trial-session__button {
    max-width: 18.125rem;
    margin-inline: auto;
  }
}

.p-trial-session__button-big {
  text-align: center;
  margin-top: 2.6125rem;
}

.p-trial-session__wrap {
  background-color: #F9FBF8;
  padding: 2.5rem 0;
  margin-top: 3rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-trial-session__wrap {
    margin-top: 2rem;
    padding: 2.5rem 1.125rem;
  }
}

.p-trial-session__goal-wrap {
  width: max-content;
  margin-inline: auto;
  padding-left: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-trial-session__goal-wrap {
    width: initial;
    max-width: 27.625rem;
  }
}

.p-trial-session__lead {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #2F552B;
  letter-spacing: 0.2em;
  text-align: center;
}

.p-trial-session__dot-img {
  max-width: 2.375rem;
  width: 100%;
  margin-top: 1.625rem;
  margin-inline: auto;
}

.p-trial-session__dot-img img {
  aspect-ratio: 75/40;
  object-fit: cover;
  height: auto;
}

.p-trial-session__goal {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  line-height: 2.4;
  margin-top: 0.625rem;
}

.p-trial-session__goal::before {
  content: "";
  position: absolute;
  top: 0.575rem;
  left: -2.125rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/common/check-icon.png) no-repeat center center/contain;
}

.p-trial-session-about__inner {
  max-width: 49.25rem;
  width: 100%;
  margin-inline: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.p-trial-session-about__title {
  text-align: center;
}

.p-trial-session-about__wrap {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-trial-session-about__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-trial-session-about__img {
  max-width: 22.0625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-trial-session-about__img {
    max-width: 34.375rem;
    margin-inline: auto;
  }
}

.p-trial-session-about__img img {
  aspect-ratio: 353/255;
  object-fit: cover;
  height: auto;
}

.p-trial-session-detail__wrap {
  background-color: #F3F1EA;
  padding: 3.5rem 4.4375rem 3.375rem 4.4375rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-trial-session-detail__wrap {
    padding: 3.5rem 1.125rem;
  }
}

.p-trial-session-detail__title {
  text-align: center;
  line-height: 2;
}

.p-trial-session-detail__container {
  margin-top: 1.5rem;
}

.p-trial-session-detail__store {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-trial-session-detail__store {
    flex-direction: column;
  }
}

.p-trial-session-detail__store + .p-trial-session-detail__store {
  margin-top: 2.7rem;
}

.p-trial-session-detail__img {
  max-width: 22.0625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-trial-session-detail__img {
    max-width: 37.5rem;
    margin-inline: auto;
  }
}

.p-trial-session-detail__img img {
  aspect-ratio: 353/262;
  object-fit: cover;
  height: auto;
}

.p-trial-session-detail__info {
  flex: 2 1 400px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-trial-session-detail__info {
    flex: initial;
  }
}

.p-trial-session-detail__store-name {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #2F552B;
  letter-spacing: 0.2em;
  line-height: 2.4;
}

.p-trial-session-detail__time,
.p-trial-session-detail__holiday,
.p-trial-session-detail__tel,
.p-trial-session-detail__address {
  display: flex;
  align-items: flex-start;
  margin-top: 1rem;
}

.p-trial-session-detail__label {
  flex: 0 0 6em;
  border-right: 1px solid #4D8048;
  padding-right: 0.5em;
  margin-right: 0.75em;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: left;
  max-width: 4.5625rem;
}

.p-message {
  position: relative;
}

.p-message__container {
  background-color: #F3F1EA;
  padding: 7.5rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-message__container {
    padding: 3.5rem 1rem;
  }
}

.p-message__header {
  margin-top: 4.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-message__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-message__wrap {
  max-width: 26.3125rem;
  width: 100%;
  margin-top: -1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-message__wrap {
    max-width: initial;
  }
}

.p-message__img {
  max-width: 26.3125rem;
  width: 100%;
  margin-inline: auto;
}

.p-message__img img {
  aspect-ratio: 434/395;
  object-fit: cover;
  height: auto;
}

.p-message__name {
  background-color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #2F552B;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-align: center;
}

.p-message__profile-title {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  line-height: 2.4;
}

.p-message__profile-text {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  line-height: 2.4;
}

.p-message__profile-text.p-message__profile-text--center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-message__profile-text.p-message__profile-text--center {
    text-align: left;
  }
}

.p-message__body {
  margin-top: 3.125rem;
}

.p-requirements__container {
  padding: 3.5rem 4.5rem 2.9rem 4.5rem;
  background-color: #fff;
  color: #333;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-requirements__container {
    padding: 3rem 1.125rem;
  }
}

.p-requirements__title {
  text-align: center;
  line-height: 2;
}

.p-requirements__list {
  margin-top: 1.5rem;
}

.p-requirements__item {
  display: flex;
  align-items: center;
  border-top: 1px solid #748C71;
  padding: 2rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-requirements__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-requirements__item:last-child {
  border-bottom: 1px solid #748C71;
}

.p-requirements__label {
  flex: 0 0 6em;
  border-right: 1px solid #4D8048;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #4D8048;
  line-height: 1.8;
  letter-spacing: 0.2em;
  max-width: 5rem;
}
@media screen and (max-width: 767px) {
  .p-requirements__label {
    flex: initial;
    border-right: none;
  }
}

.p-requirements__text {
  flex: 1;
  line-height: 1.8;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  margin-left: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-requirements__text {
    margin-left: 0;
    margin-top: 0.625rem;
  }
}

.p-requirements__text span {
  padding-left: 1rem;
}

.p-entry__container {
  background-color: #B8CFB8;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-entry__container {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}

.p-entry__title {
  width: fit-content;
  font-size: 4.14125rem;
  font-weight: 400;
  font-family: "Vujahday Script", cursive;
  color: #fff;
  letter-spacing: 0.12em;
  transform: rotate(-3.39deg);
  text-align: center;
  margin-inline: auto;
}

.p-entry__button-big {
  margin-top: 1.25rem;
  text-align: center;
}

.p-company {
  background-color: #5E745D;
  position: relative;
  z-index: 1;
}

.p-company__container {
  background-color: #E3EAE2;
  padding: 2.5rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__container {
    padding: 2.5rem 1.125rem;
  }
}

.p-company__title {
  text-align: center;
  line-height: 2;
}

.p-company__list {
  margin-top: 1rem;
}

.p-company__item {
  display: flex;
  align-items: flex-start;
  padding: 1.125rem 1.5rem 1.125rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-company__item {
    flex-direction: column;
  }
}

.p-company__item + .p-company__item {
  margin-top: 0.3125rem;
}

.p-company__label {
  flex: 0 0 6.25rem;
  border-right: 2px solid #2c4a2d;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #4D8048;
  letter-spacing: 0.2em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-company__label {
    flex: initial;
    border-right: none;
  }
}

.p-company__text {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-company__text {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

.p-instagram__container {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-instagram__container {
    flex-direction: column;
  }
}

.p-instagram__item {
  position: relative;
}

.p-instagram__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(66, 79, 65, 0.72);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.p-instagram__item:hover::before {
  opacity: 1;
}

.p-instagram__bg-img {
  width: 100%;
}

.p-instagram__bg-img img {
  aspect-ratio: 720/375;
  object-fit: cover;
  height: auto;
}

.p-instagram__overlay {
  max-width: 9.875rem;
  width: 100%;
  position: absolute;
  top: 45.6%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-instagram__overlay {
    max-width: 6.875rem;
  }
}

.p-instagram__overlay img {
  aspect-ratio: 126/165;
  object-fit: cover;
  height: auto;
}

.p-footer {
  background: #333;
  padding: 5.5rem 0;
  position: relative;
  z-index: 1;
}

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

.p-footer__logo {
  max-width: 13.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    max-width: 9.75rem;
  }
}

.p-footer__logo img {
  width: 100%;
  height: auto;
}

.p-footer__nav-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-items {
    flex-direction: column;
    align-items: center;
  }
}

.p-footer__nav-item {
  position: relative;
  padding-right: 0.9375rem;
  padding-left: 0.71875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item {
    width: 13.9375rem;
    padding-left: 2.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-item.p-footer__nav-item--group {
    max-width: 18.75rem;
    width: 100%;
  }
}

.p-footer__nav-item:last-child {
  padding-left: 0;
  padding-right: 0;
}

.p-footer__nav-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 25px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item::after {
    display: none;
  }
}

.p-footer__nav-item:nth-child(1)::before,
.p-footer__nav-item:nth-child(5n)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 25px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item:nth-child(1)::before,
.p-footer__nav-item:nth-child(5n)::before {
    display: none;
  }
}

.p-footer__nav-item a {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.p-footer__nav-item a:hover {
  opacity: 0.7;
}

.p-footer__nav-subitems {
  position: relative;
  display: flex;
}

@media screen and (max-width: 767px) {
  .p-footer__nav-subitems::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background: #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-subitems::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background: #fff;
  }
}

.p-footer__nav-subitem {
  position: relative;
  padding-right: 0.9375rem;
  padding-left: 0.71875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-subitem {
    padding-right: 2.5625rem;
    padding-left: 2.5625rem;
  }
}

.p-footer__nav-subitem:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 25px;
  background: #fff;
}

.p-footer__buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.3rem;
}
@media screen and (max-width: 767px) {
  .p-footer__buttons {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__button {
    max-width: 22.5rem;
    width: 100%;
    margin-inline: auto;
  }
}

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

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

/*# sourceMappingURL=style.css.map */