@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html {
  color: #000;
  word-break: normal;
  line-break: strict;
  height: 100%;
  margin: 0 auto;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  height: 100%;
  margin: 0 auto;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  display: block;
  width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

figure {
  margin: 0;
  padding: 0;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #989898;
}

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

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

::-moz-placeholder {
  color: #989898;
}

::placeholder {
  color: #989898;
}

button {
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  table-layout: auto;
  border-spacing: 0;
}

th, td {
  border: none;
  padding: 0;
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

address {
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
}
/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 10px;
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 0.7936507937vw;
  }
}
@media (min-width: 1260px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  color: #000;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
}
/* 表示領域外へはスクロールさせない */
.no_scroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* -----------------------------------------------
* layout エントリーポイント
-------------------------------------------------- */
/* ------------------------------------------------
l-header
--------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 777;
}

/* --------------------------------
l-inner
----------------------------------- */
.l-inner {
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: 30px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 16px;
    max-width: 600px;
  }
}

/* --------------------------------
l-wrapper
----------------------------------- */
.l-wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* --------------------------------
l-main
----------------------------------- */
.l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 5.2rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .l-main {
    margin-top: 9rem;
    margin-top: min(5.625vw, 100px);
  }
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-hamburger
----------------------------------- */
.c-hamburger {
  width: 3.2rem;
  height: 5.2rem;
  margin-left: auto;
  position: relative;
  display: block;
  z-index: 999;
}

.c-hamburger span {
  position: absolute;
  display: block;
  height: 0.2rem;
  width: 3.2rem;
  background-color: #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-hamburger:hover {
  cursor: pointer;
}

.c-hamburger span:nth-child(1) {
  top: 36%;
}

.c-hamburger span:nth-child(2) {
  opacity: 0;
}

.c-hamburger span:nth-child(3) {
  top: 64%;
}

.c-hamburger.is-open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  width: 30px;
  background-color: #fff;
}

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

.c-hamburger.is-open span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 30px;
  background-color: #fff;
}

/* ------------------------------------------------
c-btn
--------------------------------------------------- */
.c-btn {
  min-width: 23.8rem;
  display: inline-block;
  text-align: left;
  background-color: #64c147;
  padding-block: 1.8rem 2rem;
  padding-inline: 2.7rem 4.5rem;
  border-radius: 2.7rem;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .c-btn {
    min-width: 26.5rem;
    padding-block: 2rem 2.2rem;
    padding-inline: 3rem 5rem;
    border-radius: 3rem;
    font-size: 1.8rem;
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0;
  aspect-ratio: 1/1;
  opacity: 0.3;
  pointer-events: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #669763;
  -webkit-transition: width 0.4s ease-out, opacity 0.4s ease-out;
  transition: width 0.4s ease-out, opacity 0.4s ease-out;
}
.c-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  -webkit-mask-image: url(../img/common/arrow-right.svg);
          mask-image: url(../img/common/arrow-right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .c-btn::after {
    right: 2.2rem;
    width: 2.1rem;
    height: 2.1rem;
  }
}

.c-btn--sm {
  min-width: 16.9rem;
  font-size: 1.6rem;
  padding-block: 1.9rem 2rem;
  padding-inline: 2.5rem 4rem;
  min-width: 16.9rem;
}
.c-btn--sm::before {
  right: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .c-btn--sm {
    min-width: 20rem;
  }
}

.c-btn--white {
  background-color: #fff;
  color: #000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.c-btn--white::before {
  background-color: #d9b12c;
}
.c-btn--white::after {
  background-color: #000;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.c-btn--md {
  min-width: initial;
  width: 100%;
  padding-inline: 1.6rem;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .c-btn--md {
    min-width: 19.9rem;
    font-size: 1.8rem;
    padding-inline: 3rem 5rem;
  }
}
.c-btn--md::after {
  right: 1rem;
}
@media only screen and (min-width: 768px) {
  .c-btn--md::after {
    right: 2.2rem;
  }
}

.c-btn--prev {
  text-align: right;
}
@media only screen and (min-width: 768px) {
  .c-btn--prev {
    padding-inline: 5rem 3rem;
  }
}
.c-btn--prev::after {
  right: initial;
  left: 1rem;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}
@media only screen and (min-width: 768px) {
  .c-btn--prev::after {
    left: 2.2rem;
  }
}

.c-btn--archive {
  min-width: 8rem;
  padding-inline: 2rem;
  text-align: center;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .c-btn--archive {
    min-width: 11.7rem;
    font-size: 1.8rem;
  }
}
.c-btn--archive::after {
  display: none;
}

@media only screen and (min-width: 768px) {
  .c-btn--instagram {
    min-width: 30.5rem;
  }
}
.c-btn--instagram::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  -webkit-mask-image: url(../img/common/icon_link.png);
          mask-image: url(../img/common/icon_link.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .c-btn--instagram::after {
    right: 2.4rem;
    width: 2.6rem;
    height: 2.6rem;
  }
}

@media (any-hover: hover) {
  .c-btn:hover::before {
    width: 120%;
    opacity: 1;
  }
}
/* ------------------------------------------------
c-section-title
--------------------------------------------------- */
.c-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.1rem;
}
@media only screen and (min-width: 768px) {
  .c-section-title {
    gap: 1.7rem;
  }
}
.c-section-title span {
  display: block;
}
.c-section-title span:nth-child(1) {
  text-transform: uppercase;
  color: #64c147;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .c-section-title span:nth-child(1) {
    font-size: 1.6rem;
  }
}
.c-section-title span:nth-child(2) {
  font-size: 2.7rem;
}
@media only screen and (min-width: 768px) {
  .c-section-title span:nth-child(2) {
    font-size: 3.6rem;
  }
}

/* ------------------------------------------------
c-recruit-title
--------------------------------------------------- */
.c-recruit-title {
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .c-recruit-title {
    font-size: 3.6rem;
  }
}

/* ------------------------------------------------
c-leaf-section-title
--------------------------------------------------- */
.c-leaf-section-title {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  position: relative;
  padding-inline: 9.2rem;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .c-leaf-section-title {
    font-size: 3.6rem;
    padding-inline: 18.7rem;
  }
}
.c-leaf-section-title::before, .c-leaf-section-title::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8rem;
  height: 1.3rem;
  background-image: url(../img/common/deco_leaf-left.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .c-leaf-section-title::before, .c-leaf-section-title::after {
    width: 16.1rem;
    height: 2.4rem;
  }
}
.c-leaf-section-title::after {
  left: initial;
  right: 0;
  background-image: url(../img/common/deco_leaf-right.png);
}

.c-leaf-section-title--green {
  color: #33b8ab;
}

/* ------------------------------------------------
c-page-top
--------------------------------------------------- */
.c-page-top {
  position: absolute;
  bottom: -3rem;
  right: 1.6rem;
  height: calc(100% + 3rem);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .c-page-top {
    bottom: -5rem;
    right: 4rem;
    height: calc(100% + 5rem);
  }
}
.c-page-top button {
  position: sticky;
  z-index: 200;
  top: calc(100% - 7rem);
  right: 0;
  width: 5rem;
  height: 5rem;
  background-color: #3a3a3a;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media only screen and (min-width: 768px) {
  .c-page-top button {
    padding-bottom: 0.2rem;
    top: calc(100% - 11.8rem);
    gap: 0.6rem;
    width: 7.8rem;
    height: 7.8rem;
  }
}
.c-page-top button span {
  display: block;
}
.c-page-top button span:nth-child(1) {
  width: 1.7rem;
}
@media only screen and (min-width: 768px) {
  .c-page-top button span:nth-child(1) {
    width: 3.6rem;
  }
}
.c-page-top button span:nth-child(2) {
  width: 2rem;
}
@media only screen and (min-width: 768px) {
  .c-page-top button span:nth-child(2) {
    width: 3.2rem;
  }
}

button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
}

/* ------------------------------------------------
パンくず
--------------------------------------------------- */
.c-breadcrumbs {
  color: #9f9f9f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* パンくずリンクとテキスト */
.c-breadcrumbs a,
.c-breadcrumbs span {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .c-breadcrumbs a,
  .c-breadcrumbs span {
    font-size: max(1.2rem, 10px);
  }
}

.c-breadcrumbs a {
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding: 1.1rem 1rem 1.4rem;
}
@media only screen and (max-width: 767px) {
  .c-breadcrumbs a {
    padding: 0.8rem 0.8rem 0.8rem 0.4rem;
  }
}

.c-breadcrumbs span:not(:last-of-type) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.c-breadcrumbs span:last-of-type {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; /* 最後の要素が余分に広がらないよう調整 */
  max-width: 100%; /* 必ず幅を制限 */
  min-width: 0;
}

.c-breadcrumbs span.current-item {
  width: 100%;
  display: block;
  padding: 1.1rem 1rem 1.4rem;
  overflow: hidden; /* はみ出し部分を隠す */
  white-space: nowrap; /* テキストを1行に制限 */
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-breadcrumbs span.current-item {
    padding: 0.8rem 0.6rem 0.8rem 1rem;
  }
}

.c-breadcrumbs .breadcrumb-icon {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  -webkit-transform: translateY(-0.2rem);
          transform: translateY(-0.2rem);
}
@media only screen and (min-width: 768px) {
  .c-breadcrumbs .breadcrumb-icon {
    font-size: max(1.8rem, 12px);
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
}

.c-breadcrumbs a:hover {
  opacity: 0.5;
}

/* ------------------------------------------------
c-wave-absolute
--------------------------------------------------- */
.c-wave-absolute {
  position: absolute;
  left: 0;
  width: 100%;
}

.c-wave-absolute--top {
  top: 0;
}

.c-wave-absolute--bottom {
  bottom: 0;
}

/* ------------------------------------------------
c-swiper-pagination
--------------------------------------------------- */
.c-swiper-pagination {
  bottom: 3rem !important;
}
@media only screen and (min-width: 768px) {
  .c-swiper-pagination {
    bottom: 6rem !important;
  }
}
.c-swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #fff !important;
  border: 0.1rem solid #fff !important;
  width: 0.9rem !important;
  height: 0.9rem !important;
  margin-inline: 0.8rem !important;
}
@media only screen and (min-width: 768px) {
  .c-swiper-pagination .swiper-pagination-bullet {
    width: 1.7rem !important;
    height: 1.7rem !important;
    margin-inline: 1.5rem !important;
  }
}
.c-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #737373 !important;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* common */
/* ------------------------------------------------
p-header
--------------------------------------------------- */
.p-header {
  height: 5.2rem;
}
@media only screen and (min-width: 768px) {
  .p-header {
    height: min(6.25vw, 100px);
  }
}

.p-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.5rem;
}
@media only screen and (min-width: 768px) {
  .p-header__bg {
    height: min(9.25vw, 148px);
  }
}
.p-header__bg img {
  width: 100%;
  height: 100%;
}

.p-header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  padding-inline: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-header__inner {
    padding-inline: min(2.1875vw, 35px);
  }
}

.p-header__logo {
  width: 14rem;
}
@media only screen and (min-width: 768px) {
  .p-header__logo {
    padding-top: 2.6rem;
    width: min(17.75vw, 284px);
  }
}

.p-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-header__left {
    gap: 2.7rem;
  }
}
.p-header__left > span {
  margin-top: 0.3rem;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  background-color: #38b013;
  line-height: 1;
  padding: 0.2rem 0.4rem 0.4rem 0.5rem;
  border-radius: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-header__left > span {
    margin-top: 0.3rem;
    font-size: 2rem;
    padding: 0.4rem 0.7rem 0.5rem 0.8rem;
    border-radius: 0.5rem;
  }
}

/* ------------------------------------------------
p-header-nav
--------------------------------------------------- */
.p-header-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(2.1875vw, 35px);
}

.p-header-nav__list a {
  font-size: min(1.375vw, 22px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #564415;
  position: relative;
  padding-left: min(2.375vw, 38px);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-header-nav__list a::before {
  position: absolute;
  content: "";
  top: 52%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(1.875vw, 30px);
  height: min(1.625vw, 26px);
  background-image: url(../../assets/img/common/icon_sprout.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}

@media (any-hover: hover) {
  .p-header-nav__list a:hover {
    color: #38b013;
  }
  .p-header-nav__list a:hover::before {
    background-image: url(../../assets/img/common/icon_sprout-active.png);
  }
}
/* ------------------------------------------------
p-header-entry
--------------------------------------------------- */
.p-header-entry {
  position: fixed;
  z-index: 800;
  top: 4.6rem;
  right: 2rem;
  width: 10rem;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}
@media only screen and (min-width: 768px) {
  .p-header-entry {
    top: min(5.625vw, 90px);
    right: 3.2rem;
    width: 20rem;
  }
}
.p-header-entry a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-header-entry.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-header-entry__bg {
  position: relative;
}
.p-header-entry__bg::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-image: url(../img/recruit/img_entry-bg-hover.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  -webkit-transition: width 0.3s, height 0.3s;
  transition: width 0.3s, height 0.3s;
}

.p-header-entry__contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 1rem;
  gap: 0.8rem;
}
.p-header-entry__contents span {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-header-entry__contents span {
    font-size: 2.8rem;
  }
}

.p-header-entry__icon {
  width: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-header-entry__icon {
    width: 4rem;
  }
}

@media (any-hover: hover) {
  .p-header-entry a:hover .p-header-entry__bg::before {
    width: 100%;
    height: 100%;
  }
}
/* --------------------------------
p-drawer
----------------------------------- */
.p-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  padding-inline: 2.5rem;
  overflow-y: auto;
  padding-bottom: 6rem;
  z-index: 888;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #64c147;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  padding-top: 8rem;
}

.p-drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-drawer-nav__list {
  border-bottom: 0.05rem solid #fff;
}
.p-drawer-nav__list a {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  padding-block: 2rem;
  width: 100%;
  text-align: center;
}
.p-drawer-nav__list a span {
  position: relative;
  padding-left: 4.6rem;
}
.p-drawer-nav__list a span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3.2rem;
  height: 2.5rem;
  background-image: url(../img/common/icon_sprout-white.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

/* ------------------------------------------------
p-footer
--------------------------------------------------- */
.p-footer {
  position: relative;
  z-index: 10;
  color: #fff;
  position: relative;
  padding-top: 5.5rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(7.5rem, transparent), color-stop(7.5rem, #64c147));
  background: linear-gradient(180deg, transparent 7.5rem, #64c147 7.5rem);
}
@media only screen and (min-width: 768px) {
  .p-footer {
    padding-top: 9.2rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(14.9rem, transparent), color-stop(14.9rem, #64c147));
    background: linear-gradient(180deg, transparent 14.9rem, #64c147 14.9rem);
  }
}

@media only screen and (max-width: 767px) {
  .p-footer__inner {
    padding-inline: 0;
  }
}

.p-footer__bg {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 7.5rem;
}
@media only screen and (min-width: 768px) {
  .p-footer__bg {
    height: 14.9rem;
  }
}
.p-footer__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer__contents {
  position: relative;
  padding-bottom: 3.8rem;
}
@media only screen and (min-width: 768px) {
  .p-footer__contents {
    padding-bottom: 3.2rem;
  }
}

.p-footer-nav__items {
  border-top: 0.05rem solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-color: #64c147;
}
@media only screen and (min-width: 768px) {
  .p-footer-nav__items {
    border: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3.7rem;
  }
}

.p-footer-nav__item {
  border-bottom: 0.05rem solid #fff;
}
@media only screen and (min-width: 768px) {
  .p-footer-nav__item {
    border: none;
  }
}
.p-footer-nav__item a {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  padding-block: 2rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .p-footer-nav__item a {
    font-size: 2.1rem;
    padding-block: 0;
    width: auto;
  }
}
.p-footer-nav__item a span {
  position: relative;
  padding-left: 4.6rem;
}
@media only screen and (min-width: 768px) {
  .p-footer-nav__item a span {
    padding-left: 3.4rem;
  }
}
.p-footer-nav__item a span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3.2rem;
  height: 2.5rem;
  background-image: url(../img/common/icon_sprout-white.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-footer-nav__item a span::before {
    width: 2.8rem;
    height: 2.3rem;
  }
}

.p-footer__info {
  margin-top: 3.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  padding-inline: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-footer__info {
    margin-top: 3.4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 0;
  }
}

.p-footer__logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-footer__logo-wrap {
    gap: 1.6rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.p-footer__logo:nth-child(1) {
  width: 27rem;
}
@media only screen and (min-width: 768px) {
  .p-footer__logo:nth-child(1) {
    width: 42.4rem;
  }
}

.p-footer__logo:nth-child(2) {
  width: 25.5rem;
}
@media only screen and (min-width: 768px) {
  .p-footer__logo:nth-child(2) {
    width: 37.3rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-footer__meta {
    padding-block: 1.3rem;
    padding-left: 3.6rem;
    border-left: 0.2rem solid #fff;
  }
}

.p-footer__address {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-footer__address {
    font-size: 1.7rem;
  }
}

.p-footer__contact {
  margin-top: 0.3rem;
  gap: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) {
  .p-footer__contact {
    margin-top: 0.5rem;
    gap: 2rem;
  }
}

.p-footer__tel {
  font-size: 3.7rem;
}
@media only screen and (min-width: 768px) {
  .p-footer__tel {
    font-size: 4.4rem;
  }
}

.p-footer__time {
  padding-top: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.1739130435;
}
@media only screen and (min-width: 768px) {
  .p-footer__time {
    font-size: 1.4rem;
    line-height: 1.1428571429;
  }
}

.p-footer__copyright {
  background-color: #956225;
  height: 2.8rem;
  display: grid;
  place-content: center;
  text-align: center;
  padding-bottom: 0.2rem;
}
.p-footer__copyright p {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
}

/* --------------------------------
inview
----------------------------------- */
.js-fadeUp {
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media only screen and (max-width: 767px) {
  .js-fadeUp {
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}

.js-fadeUp.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* ------------------------------------------------
p-lower-fv
--------------------------------------------------- */
.p-lower-fv {
  position: relative;
}

.p-lower-fv__content {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-lower-fv__content {
    padding-bottom: 0.6rem;
  }
}

.p-lower-fv__page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-lower-fv__page-title {
    gap: 1.6rem;
  }
}
.p-lower-fv__page-title span:nth-child(1) {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .p-lower-fv__page-title span:nth-child(1) {
    font-size: 1.6rem;
  }
}
.p-lower-fv__page-title span:nth-child(2) {
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .p-lower-fv__page-title span:nth-child(2) {
    font-size: 3.6rem;
  }
}

/* ------------------------------------------------
p-information-item
--------------------------------------------------- */
.p-information-item {
  border-bottom: 0.1rem solid #e1e1e1;
}
.p-information-item:first-child {
  border-top: 0.1rem solid #e1e1e1;
}
.p-information-item a {
  display: block;
  padding-block: 0.7rem 1.1rem;
  padding-right: 6.4rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-information-item a {
    padding-block: 2.7rem;
    padding-right: 12.4rem;
  }
}
.p-information-item a::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  background-color: #64c147;
  border-radius: 50%;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
@media only screen and (min-width: 768px) {
  .p-information-item a::before {
    right: 1.4rem;
    width: 3rem;
    height: 3rem;
  }
}
.p-information-item a::after {
  position: absolute;
  content: "";
  top: 49%;
  right: 0.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.2rem;
  height: 0.8rem;
  background-image: url(../img/common/arrow_circle-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-information-item a::after {
    right: 2.2rem;
    width: 1.4rem;
    height: 0.9rem;
  }
}
.p-information-item time {
  font-size: 1.5rem;
  color: #956225;
}
@media only screen and (min-width: 768px) {
  .p-information-item time {
    font-size: 2rem;
  }
}

.p-information-item__title {
  margin-top: 0.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  font-size: 1.5rem;
  line-height: 1.3;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-information-item__title {
    margin-top: 1rem;
    font-size: 2rem;
    -webkit-line-clamp: 1;
    line-height: 1.6;
  }
}

@media (any-hover: hover) {
  .p-information-item a:hover::before {
    background-color: #669763;
  }
  .p-information-item a:hover .p-information-item__title {
    color: #669763;
  }
}
/* ------------------------------------------------
p-pagination
--------------------------------------------------- */
.p-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-pagination .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-pagination .wp-pagenavi {
    gap: 3rem;
  }
}
.p-pagination span,
.p-pagination a {
  display: block;
  font-size: 1.8rem;
  width: 4rem;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  padding-bottom: 0.4rem !important;
  border-color: #e1e1e1 !important;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-pagination span,
  .p-pagination a {
    width: 5rem;
    padding-bottom: 0.5rem !important;
    font-size: 1.8rem;
  }
}
.p-pagination span.current {
  background-color: #b9b9b9;
  color: #fff;
}
.p-pagination a.last, .p-pagination a.first, .p-pagination a.nextpostslink, .p-pagination a.previouspostslink {
  padding: 0 !important;
  margin: 0 !important;
  width: 4rem !important;
  height: 4rem !important;
}
@media only screen and (min-width: 768px) {
  .p-pagination a.last, .p-pagination a.first, .p-pagination a.nextpostslink, .p-pagination a.previouspostslink {
    width: 5rem !important;
    height: 5rem !important;
  }
}
.p-pagination a.last {
  padding-left: 0.2rem !important;
}
@media only screen and (min-width: 768px) {
  .p-pagination a.last {
    padding-left: 0.3rem !important;
  }
}
.p-pagination span.last-page,
.p-pagination span.first-page {
  background-color: #000;
  -webkit-mask-image: url(../img/common/arrow_right-double.svg);
          mask-image: url(../img/common/arrow_right-double.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 1.2rem;
  border: none;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-pagination span.last-page,
  .p-pagination span.first-page {
    width: 2rem;
  }
}
.p-pagination span.first-page {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.p-pagination span.next-page,
.p-pagination span.prev-page {
  background-color: #000;
  -webkit-mask-image: url(../img/common/arrow_right-single.svg);
          mask-image: url(../img/common/arrow_right-single.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 1.2rem;
  border: none;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-pagination span.next-page,
  .p-pagination span.prev-page {
    width: 2rem;
  }
}
.p-pagination span.prev-page {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

@media (any-hover: hover) {
  .p-pagination a:hover {
    background-color: #b9b9b9;
    color: #fff;
  }
  .p-pagination a:hover span {
    background-color: #fff;
  }
}
.p-pagination--foot .wp-pagenavi {
  margin-top: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-pagination--foot .wp-pagenavi {
    margin-top: 6rem;
  }
}

/* ------------------------------------------------
p-detail-pagination
--------------------------------------------------- */
.p-detail-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-detail-pagination {
    gap: 3rem;
  }
}

.p-detail-pagination__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 14rem;
}
@media only screen and (min-width: 768px) {
  .p-detail-pagination__item {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 19.9rem;
    max-width: initial;
  }
}

/* ------------------------------------------------
p-form
--------------------------------------------------- */
.p-form {
  font-family: "Noto Sans JP", sans-serif;
  color: #484848;
}

.p-form__contents {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-form__contents {
    margin-top: 4.4rem;
    gap: 3.5rem;
  }
}

.p-form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .p-form-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-form-item__label {
  font-size: 1.4rem;
  line-height: 1.35;
}
@media only screen and (min-width: 768px) {
  .p-form-item__label {
    padding-top: 1.9rem;
    font-size: 2rem;
    width: 26rem;
    padding-right: 3.6rem;
  }
}
.p-form-item__label label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) {
  .p-form-item__label label {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-form-item__label .u-required {
  display: inline-block;
  font-size: 1.1rem;
  color: #fff;
  background-color: #e91818;
  line-height: 1;
  padding-block: 0.1rem 0.3rem;
  padding-inline: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .p-form-item__label .u-required {
    font-size: 1.6rem;
    padding-block: 0.3rem 0.5rem;
    padding-inline: 0.8rem;
  }
}

.p-form-item__input {
  margin-top: 0.6rem;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .p-form-item__input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
}
.p-form-item__input input {
  border: 0.1rem solid #c2c2c2;
  padding: 1.4rem 1.2rem;
  width: 100%;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-form-item__input input {
    padding: 2.2rem;
    font-size: 1.8rem;
    line-height: 1;
  }
}

.p-form-item__input--select {
  height: 4.6rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-form-item__input--select {
    max-width: 27.8rem;
    height: 6.9rem;
  }
}
.p-form-item__input--select::before {
  position: absolute;
  z-index: 3;
  content: "";
  top: 50%;
  right: 1.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.4rem;
  height: 1rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #484848;
  pointer-events: none;
}
.p-form-item__input--select select {
  height: 100%;
  width: 100%;
  padding-left: 1.4rem;
  font-size: 1.4rem;
  color: #484848 !important;
  background-color: #fff;
  border: 0.1rem solid #c2c2c2;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .p-form-item__input--select select {
    padding-left: 1.8rem;
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-form-item__input--email,
  .p-form-item__input--tel {
    max-width: 33.5rem;
  }
}

.p-form-item__input--age .p-form-item__wrapper input,
.p-form-item__input--zip .p-form-item__wrapper input {
  max-width: 17.8rem;
}
.p-form-item__input--age .p-form-item__wrapper span:nth-child(2),
.p-form-item__input--zip .p-form-item__wrapper span:nth-child(2) {
  padding-left: 0.4em;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-form-item__input--age .p-form-item__wrapper span:nth-child(2),
  .p-form-item__input--zip .p-form-item__wrapper span:nth-child(2) {
    font-size: 2rem;
  }
}

.p-form-item__input--zip .p-form-item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-form-item__zip-btn {
  margin-left: 1rem;
  background-color: #a2a2a2;
  height: 4.45rem;
  width: 12rem;
  font-size: 1.4rem;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-form-item__zip-btn {
    height: 6.7rem;
    width: 17.7rem;
    font-size: 1.8rem;
  }
}

.p-form-item--message {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-form-item--message label {
  line-height: 1.35;
}
@media only screen and (min-width: 768px) {
  .p-form-item--message label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-form-item--message label span {
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-form-item--message label span {
    font-size: 1.8rem;
  }
}
.p-form-item--message textarea {
  width: 100%;
  border: 0.1rem solid #c2c2c2;
  padding: 1.2rem;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .p-form-item--message textarea {
    padding: 2.2rem;
    font-size: 1.8rem;
    line-height: 1;
    height: 16.7rem;
    min-height: 16.7rem;
    line-height: 1.6;
  }
}
.p-form-item--message .p-form-item__input p {
  font-size: 1.2rem;
}

.p-form__privacy {
  margin-top: 3rem;
  height: 20rem;
  overflow-y: auto;
}
@media only screen and (min-width: 768px) {
  .p-form__privacy {
    margin-top: 6.3rem;
    height: 30.4rem;
  }
}

.p-form-privacy {
  border: 0.1rem solid #c2c2c2;
  padding: 2rem 2rem 0;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-form-privacy {
    padding: 2rem 3rem 0;
  }
}

.p-form-privacy__inner {
  padding-bottom: 1.4rem;
}

.p-form-privacy__title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-form-privacy__title {
    font-size: 1.8rem;
  }
}

.p-form-privacy__content {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-form-privacy__content {
    margin-top: 3.4rem;
  }
}
.p-form-privacy__content p {
  font-size: 1.2rem;
  line-height: 1.7142857143;
}
@media only screen and (min-width: 768px) {
  .p-form-privacy__content p {
    font-size: 1.4rem;
  }
}
.p-form-privacy__content ol {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-form-privacy__content ol {
    margin-top: 3.4rem;
  }
}
.p-form-privacy__content ol li h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.7142857143;
}
@media only screen and (min-width: 768px) {
  .p-form-privacy__content ol li h3 {
    font-size: 1.4rem;
  }
}
.p-form-privacy__content ol li p {
  margin-top: 0.2rem;
}
.p-form-privacy__content ol li table {
  margin-top: 0.8rem;
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.7142857143;
  border-collapse: separate;
  border-spacing: 0;
}
.p-form-privacy__content ol li table tbody {
  display: block;
}
.p-form-privacy__content ol li table tr {
  display: block;
  margin-bottom: 0.6rem;
  border: 0.1rem solid #c2c2c2;
}
.p-form-privacy__content ol li table tr:last-child {
  margin-bottom: 0;
}
.p-form-privacy__content ol li table th,
.p-form-privacy__content ol li table td {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  text-align: left;
  border: none;
  border-bottom: 0.1rem solid #c2c2c2;
}
.p-form-privacy__content ol li table td {
  border-bottom: none;
}
.p-form-privacy__content ol li table th {
  background-color: #f5f5f5;
  font-weight: 700;
  white-space: normal;
}
@media only screen and (min-width: 768px) {
  .p-form-privacy__content ol li table {
    width: 64rem;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  .p-form-privacy__content ol li table tbody {
    display: table-row-group;
  }
  .p-form-privacy__content ol li table tr {
    display: table-row;
    margin-bottom: 0;
    border: none;
  }
  .p-form-privacy__content ol li table th,
  .p-form-privacy__content ol li table td {
    display: table-cell;
    width: auto;
    border: 0.1rem solid #c2c2c2;
    padding: 0.8rem 1.4rem;
    text-align: left;
  }
  .p-form-privacy__content ol li table th {
    background-color: #f5f5f5;
    font-weight: 700;
    white-space: nowrap;
    width: 25%;
  }
}
.p-form-privacy__content ul {
  margin-top: 0.8rem;
}
.p-form-privacy__content ul li {
  font-size: 1.2rem;
  line-height: 1.7142857143;
  position: relative;
  padding-left: 1rem;
}
.p-form-privacy__content ul li::before {
  position: absolute;
  content: "";
  top: 1.1rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  background-color: #000;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .p-form-privacy__content ul li {
    font-size: 1.4rem;
  }
}

.p-form__check {
  margin-top: 3.3rem;
  text-align: center;
}

.p-form__privacy-policy {
  cursor: pointer;
}

.p-form__privacy-policy input + span {
  position: relative;
  font-size: 1.4rem;
  line-height: 1;
  padding-left: 2rem;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .p-form__privacy-policy input + span {
    font-size: 1.8rem;
    padding-left: 3.4rem;
  }
}

.p-form__privacy-policy input + span::before {
  position: absolute;
  content: "";
  top: 54%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid #707070;
}
@media only screen and (min-width: 768px) {
  .p-form__privacy-policy input + span::before {
    width: 2rem;
    top: 54%;
  }
}

.p-form__privacy-policy input + span::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 0.3rem;
  -webkit-transform: translateY(-50%) rotate(-40deg);
          transform: translateY(-50%) rotate(-40deg);
  width: 1rem;
  height: 0.7rem;
  border-left: 0.2rem solid #38b013;
  border-bottom: 0.2rem solid #38b013;
  display: none;
}
@media only screen and (min-width: 768px) {
  .p-form__privacy-policy input + span::after {
    width: 1.3rem;
    height: 1rem;
    left: 0.45rem;
    border-left: 0.3rem solid #38b013;
    border-bottom: 0.3rem solid #38b013;
  }
}

[type=checkbox]:checked + span::after {
  display: block;
}

.p-form__submit {
  margin-top: 3.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-form__submit-btn {
  width: 20rem;
  height: 6rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-form__submit-btn {
    width: 35.3rem;
    height: 8rem;
  }
}
.p-form__submit-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.6rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 1rem;
  height: 1rem;
  border-bottom: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
}
@media only screen and (min-width: 768px) {
  .p-form__submit-btn::before {
    right: 3rem;
    width: 1.2rem;
    height: 1.2rem;
    border-bottom: 0.3rem solid #fff;
    border-right: 0.3rem solid #fff;
  }
}

input[type=submit] {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  background-color: #bcbcbc;
  color: #fff;
  cursor: not-allowed;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (min-width: 768px) {
  input[type=submit] {
    padding-top: 0.2rem;
    padding-left: 0.4rem;
    font-size: 2.8rem;
  }
}
input[type=submit].is-active {
  background-color: #ff7200;
  cursor: pointer;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  position: absolute;
  font-size: 1rem;
  bottom: -2.6rem;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
    font-size: 1.2rem;
    bottom: -4.1rem;
  }
}
.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}

@media only screen and (max-width: 767px) {
  .wpcf7-response-output {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------------
確認画面
--------------------------------------------------- */
.p-confirm .p-form__contents,
.p-entry-confirm .p-form__contents {
  gap: 0;
  padding-right: 0;
}
.p-confirm .p-form-item,
.p-entry-confirm .p-form-item {
  padding-block: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-confirm .p-form-item,
  .p-entry-confirm .p-form-item {
    padding-block: 1.6rem;
  }
}
.p-confirm .p-form-item:not(:last-child),
.p-entry-confirm .p-form-item:not(:last-child) {
  border-bottom: 0.1rem solid #c2c2c2;
}
.p-confirm .p-form-item__label,
.p-entry-confirm .p-form-item__label {
  padding-top: 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .p-confirm .p-form-item__label,
  .p-entry-confirm .p-form-item__label {
    font-weight: 500;
    font-size: 1.8rem;
  }
}
.p-confirm dd,
.p-entry-confirm dd {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.6;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-confirm dd,
  .p-entry-confirm dd {
    font-size: 1.8rem;
  }
}
.p-confirm .p-form__submit,
.p-entry-confirm .p-form__submit {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-confirm .p-form__submit,
  .p-entry-confirm .p-form__submit {
    margin-top: 6rem;
    gap: 3rem;
  }
}
.p-confirm .p-form__submit-btn,
.p-entry-confirm .p-form__submit-btn {
  width: 20rem;
  height: 6rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-confirm .p-form__submit-btn,
  .p-entry-confirm .p-form__submit-btn {
    width: 35.3rem;
    height: 8rem;
  }
}
.p-confirm .p-form__submit-btn::before,
.p-entry-confirm .p-form__submit-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.6rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 1rem;
  height: 1rem;
  border-bottom: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
}
@media only screen and (min-width: 768px) {
  .p-confirm .p-form__submit-btn::before,
  .p-entry-confirm .p-form__submit-btn::before {
    right: 3rem;
    width: 1.2rem;
    height: 1.2rem;
    border-bottom: 0.3rem solid #fff;
    border-right: 0.3rem solid #fff;
  }
}
.p-confirm input[type=submit],
.p-confirm input[type=button],
.p-entry-confirm input[type=submit],
.p-entry-confirm input[type=button] {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  background-color: #bcbcbc;
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .p-confirm input[type=submit],
  .p-confirm input[type=button],
  .p-entry-confirm input[type=submit],
  .p-entry-confirm input[type=button] {
    padding-left: 0.4rem;
    padding-top: 0.2rem;
    font-size: 2.8rem;
  }
}
.p-confirm input[type=submit],
.p-entry-confirm input[type=submit] {
  background-color: #ff7200;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  input[type=submit]:hover,
  .p-confirm input[type=submit]:hover,
  .p-entry-confirm input[type=submit]:hover {
    background-color: #ee6d04;
  }
  .p-confirm input[type=button]:hover {
    background-color: #878787;
  }
}
.p-entry-confirm a.form-return {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  background-color: #bcbcbc;
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  font-weight: 400;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .p-entry-confirm a.form-return {
    padding-top: 0.2rem;
    padding-left: 0.4rem;
    font-size: 2.8rem;
  }
}

@media (any-hover: hover) {
  .p-entry-confirm a.form-return:hover {
    background-color: #878787;
  }
}
/* ------------------------------------------------
エントリーフォーム（p-entry-form内のみ・コンタクトフォームに影響しない）
--------------------------------------------------- */
.p-entry-form .p-entry-form__text {
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 1.9285714286;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .p-entry-form .p-entry-form__text {
    font-size: 1.6rem;
    line-height: 1.6666666667;
  }
}
.p-entry-form .p-entry-form__text a {
  color: #0030ff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-entry-form .p-entry-form__text a:hover {
  opacity: 0.8;
}
.p-entry-form .p-entry-form__form {
  margin-top: 4.4rem;
}

.p-form-item--birth input[type=text],
.p-form-item--birth input[type=email],
.p-form-item--birth input[type=tel],
.p-form-item--birth select {
  border: 0.1rem solid #c2c2c2;
  background-color: #fff;
  height: 100%;
  padding-inline: 1.2rem;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-form-item--birth input[type=text],
  .p-form-item--birth input[type=email],
  .p-form-item--birth input[type=tel],
  .p-form-item--birth select {
    font-size: 1.8rem;
    padding-inline: 2.4rem;
  }
}
.p-form-item--birth input[type=text]#birth-year,
.p-form-item--birth input[type=email]#birth-year,
.p-form-item--birth input[type=tel]#birth-year,
.p-form-item--birth select#birth-year {
  border: 0.1rem solid #c2c2c2;
  height: 4.6rem;
  width: 8.6rem;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .p-form-item--birth input[type=text]#birth-year,
  .p-form-item--birth input[type=email]#birth-year,
  .p-form-item--birth input[type=tel]#birth-year,
  .p-form-item--birth select#birth-year {
    height: 6.9rem;
    width: 13rem;
  }
}
.p-form-item--birth input[type=text]#birth-month, .p-form-item--birth input[type=text]#birth-day,
.p-form-item--birth input[type=email]#birth-month,
.p-form-item--birth input[type=email]#birth-day,
.p-form-item--birth input[type=tel]#birth-month,
.p-form-item--birth input[type=tel]#birth-day,
.p-form-item--birth select#birth-month,
.p-form-item--birth select#birth-day {
  border: 0.1rem solid #c2c2c2;
  height: 4.6rem;
  width: 8rem;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .p-form-item--birth input[type=text]#birth-month, .p-form-item--birth input[type=text]#birth-day,
  .p-form-item--birth input[type=email]#birth-month,
  .p-form-item--birth input[type=email]#birth-day,
  .p-form-item--birth input[type=tel]#birth-month,
  .p-form-item--birth input[type=tel]#birth-day,
  .p-form-item--birth select#birth-month,
  .p-form-item--birth select#birth-day {
    width: 10.8rem;
    height: 6.9rem;
  }
}
.p-form-item--birth .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  position: absolute;
  font-size: 0.6rem;
  letter-spacing: -0.04em;
  bottom: -1.2rem;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .p-form-item--birth .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
    font-size: 1rem;
    bottom: -1.4rem;
  }
}
.p-form-item--birth .wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}

.p-form-item__wrapper--birth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .p-form-item__wrapper--birth {
    gap: 1.2rem;
  }
}

.p-form-item__birth-label {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-form-item__birth-label {
    font-size: 1.8rem;
  }
}

.p-form-item__birth-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .p-form-item__birth-unit {
    gap: 0.6rem;
  }
}

.p-form-item__birth-suffix {
  font-size: 1.4rem;
  color: #484848;
}
@media only screen and (min-width: 768px) {
  .p-form-item__birth-suffix {
    font-size: 1.8rem;
  }
}

.p-form-item__input--birth select,
.p-form-item__birth-unit .wpcf7-form-control-wrap select {
  width: auto;
}
@media only screen and (min-width: 768px) {
  .p-form-item__input--birth select,
  .p-form-item__birth-unit .wpcf7-form-control-wrap select {
    min-width: 9rem;
  }
}

.p-form-item__birth-label,
.p-form-item__birth-suffix {
  font-weight: 400;
}

.p-form-item__birth-unit {
  position: relative;
}
.p-form-item__birth-unit::before {
  position: absolute;
  z-index: 3;
  content: "";
  top: 50%;
  right: 2.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 0.7rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #484848;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .p-form-item__birth-unit::before {
    right: 4rem;
    width: 1.4rem;
    height: 1rem;
  }
}

/* ------------------------------------------------
p-timetable
--------------------------------------------------- */
.p-timetable {
  position: relative;
}

.p-timetable__inner {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-timetable__inner {
    padding-inline: 1rem;
  }
}

.p-timetable__deco-container {
  position: absolute;
  top: 8.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: min(95.2380952381vw, 1200px);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-timetable__container {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-timetable__table {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .p-timetable__table {
    margin-top: 6.8rem;
    max-width: 87.8rem;
  }
}
.p-timetable__table::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 6rem;
  left: 5.2rem;
  width: 0.4rem;
  height: calc(100% - 12rem);
  background-color: #38b013;
}
@media only screen and (min-width: 768px) {
  .p-timetable__table::before {
    display: none;
  }
}

.p-timetable-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) {
  .p-timetable-item {
    gap: 1.4rem;
    padding-block: 0.4rem;
  }
}

.p-timetable-item__img {
  position: relative;
  z-index: 2;
  width: 9.5rem;
  margin-left: -0.4rem;
}
@media only screen and (min-width: 768px) {
  .p-timetable-item__img {
    width: 18rem;
    margin-right: 0;
  }
}

.p-timetable-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #38b013;
  width: 10.8rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  gap: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .p-timetable-item__title {
    width: 14.3rem;
    gap: 1rem;
    position: relative;
    z-index: 3;
  }
  .p-timetable-item__title::before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 50%;
    width: 21rem;
    height: 0.6rem;
    background-color: #38b013;
  }
}
.p-timetable-item__title span:nth-child(1) {
  color: #fff100;
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .p-timetable-item__title span:nth-child(1) {
    font-size: 2.4rem;
  }
}
.p-timetable-item__title span:nth-child(2) {
  color: #fff;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-timetable-item__title span:nth-child(2) {
    font-size: 2rem;
  }
}

.p-timetable-item__text-wrap {
  -webkit-filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, 0.25));
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (min-width: 768px) {
  .p-timetable-item__text-wrap {
    padding-inline: 2.2rem;
    -webkit-filter: drop-shadow(3px 6px 6px rgba(0, 0, 0, 0.25));
            filter: drop-shadow(3px 6px 6px rgba(0, 0, 0, 0.25));
  }
}

.p-timetable-item__text {
  background-color: #fff;
  border-radius: 1.5rem;
  position: relative;
  padding: 1.2rem 1rem 1.2rem 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-timetable-item__text {
    width: 100%;
    padding: 2rem 2rem 2rem 2.6rem;
  }
}
.p-timetable-item__text p {
  font-size: 1.2rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .p-timetable-item__text p {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}
.p-timetable-item__text::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -1.7rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.7rem;
  height: 1.6rem;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-timetable-item__text::before {
    width: 2.6rem;
    height: 3rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-timetable-item:nth-child(odd) {
    padding-left: 8rem;
  }
  .p-timetable-item:nth-child(odd) .p-timetable-item__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-timetable-item:nth-child(odd) .p-timetable-item__title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-timetable-item:nth-child(odd) .p-timetable-item__title::before {
    left: 50%;
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  .p-timetable-item:nth-child(odd) .p-timetable-item__text-wrap {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding-inline: 4.6rem 2.2rem;
  }
  .p-timetable-item:nth-child(odd) .p-timetable-item__text::before {
    left: -2.6rem;
  }
  .p-timetable-item:nth-child(even) {
    padding-right: 8rem;
  }
  .p-timetable-item:nth-child(even) .p-timetable-item__img {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .p-timetable-item:nth-child(even) .p-timetable-item__title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-timetable-item:nth-child(even) .p-timetable-item__title::before {
    right: 50%;
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }
  .p-timetable-item:nth-child(even) .p-timetable-item__text-wrap {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-inline: 2.2rem 4.6rem;
  }
  .p-timetable-item:nth-child(even) .p-timetable-item__text::before {
    left: initial;
    right: -2.5rem;
    -webkit-transform: translateY(-50%) scaleX(-1);
            transform: translateY(-50%) scaleX(-1);
  }
}
.p-timetable-item:last-child .p-timetable-item__title::before {
  display: none;
}

.p-timetable__deco01 {
  top: 1rem;
  right: 1.4rem;
  width: 17.7rem;
}
@media only screen and (min-width: 768px) {
  .p-timetable__deco01 {
    margin-top: 0;
    top: -1rem;
    width: 35.2rem;
    right: 3.125vw;
  }
}

.p-timetable__deco02 {
  margin-top: 1.8rem;
  width: 100%;
  padding-inline: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-timetable__deco02 {
    width: 21.2rem;
  }
}

.p-timetable__deco03 {
  margin-top: 1rem;
  width: 100%;
  padding-inline: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-timetable__deco03 {
    margin-top: 3.4rem;
    width: 19.3rem;
  }
}

.p-timetable__deco04 {
  top: -1.5vw;
  left: 1.5rem;
  width: 16.8rem;
}
@media only screen and (min-width: 768px) {
  .p-timetable__deco04 {
    top: -2vw;
    width: 33rem;
    left: 3.125vw;
  }
}

/* ------------------------------------------------
p-timetable リクルートページ
--------------------------------------------------- */
.p-timetable--recruit .p-timetable__deco01,
.p-timetable--recruit .p-timetable__deco02 {
  width: 100%;
  padding-inline: 2rem;
}
.p-timetable--recruit .p-timetable-item__title {
  background-color: #956225;
}
.p-timetable--recruit .p-timetable-item__title::before {
  background-color: #956225;
}
@media only screen and (min-width: 768px) {
  .p-timetable--recruit .p-timetable__deco-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 10rem;
  }
}
.p-timetable--recruit .p-timetable__table::before {
  background-color: #956225;
}

.p-timetable-item {
  position: relative;
}

.p-timetable-item__deco {
  position: absolute;
  z-index: 3;
}

.p-timetable-item__deco--01 {
  top: 0;
  left: 1rem;
  width: 5.5rem;
}

.p-timetable-item__deco--02 {
  top: -0.9rem;
  left: -5.1rem;
  width: 8rem;
}

.p-timetable-item__deco--03 {
  top: -1rem;
  right: -12.4rem;
  width: 14.9rem;
}

.p-timetable-item__deco--04 {
  top: 0;
  left: -16.9rem;
  width: 23.8rem;
}

.p-timetable-item__deco--05 {
  bottom: -1.1rem;
  right: -14.7rem;
  width: 13.8rem;
}

.p-timetable-item__deco--06 {
  bottom: -1.1rem;
  left: -15.8rem;
  width: 16.1rem;
}

.p-timetable-item__deco--07 {
  top: 2rem;
  right: 3.8rem;
  width: 6.2rem;
}

.p-timetable-item__deco--08 {
  bottom: 1.7rem;
  left: 3.4rem;
  width: 6.1rem;
}

.p-timetable-item__deco--09 {
  top: -1.3rem;
  right: -8.9rem;
  width: 7.2rem;
}

.p-timetable-item__deco--10 {
  top: -2.1rem;
  left: -9.1rem;
  width: 12.1rem;
}

.p-timetable-item__deco--11 {
  top: -0.8rem;
  right: -10.6rem;
  width: 13.1rem;
}

.p-timetable-item__deco--12 {
  top: 2.2rem;
  left: -12.4rem;
  width: 14.8rem;
}

.p-timetable-item__deco--13 {
  top: 2.2rem;
  right: -14rem;
  width: 7rem;
}

.p-timetable-item__deco--14 {
  top: 5.7rem;
  left: -13.2rem;
  width: 4.5rem;
}

.p-timetable-item__deco--15 {
  top: 0.5rem;
  right: -10.4rem;
  width: 8.3rem;
}

.p-timetable-item__deco--16 {
  top: 0.3rem;
  right: 4.8rem;
  width: 4.5rem;
}

/* page */
/* ------------------------------------------------
p-top
--------------------------------------------------- */
.p-top {
  padding-bottom: 5.5rem;
}
@media only screen and (min-width: 768px) {
  .p-top {
    padding-bottom: 6rem;
  }
}

.p-top__link-banner {
  margin-top: 5.2rem;
}
@media only screen and (min-width: 768px) {
  .p-top__link-banner {
    margin-top: 8.7rem;
  }
}

/* ------------------------------------------------
p-top-fv
--------------------------------------------------- */
.p-top-fv {
  position: relative;
  z-index: 10;
}

.p-fv-slider__item img {
  border-radius: 0 0 5rem 5rem;
}
@media only screen and (min-width: 768px) {
  .p-fv-slider__item img {
    border-radius: 0 0 30rem 30rem;
  }
}

.p-top-fv__deco {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  top: -1.7rem;
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .p-top-fv__deco {
    top: -4.2rem;
  }
}

.p-top-fv__catch {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-top-fv__catch p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.7rem;
  line-height: 1.4814814815;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-shadow: 0.3rem 0.3rem 0.8rem rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 768px) {
  .p-top-fv__catch p {
    font-size: 4.8rem;
    line-height: 1.4583333333;
  }
}

/* ------------------------------------------------
p-flower
--------------------------------------------------- */
.p-flower {
  position: absolute;
  pointer-events: none;
  z-index: 6;
  inset: 0;
}

.p-flower__item {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8.75vw;
}
@media only screen and (min-width: 768px) {
  .p-flower__item {
    width: 4.5138888889vw;
  }
}

.p-flower--01 {
  top: 25.5%;
  left: 6.5%;
}
@media only screen and (min-width: 768px) {
  .p-flower--01 {
    top: 32.5%;
    left: 6%;
  }
}

.p-flower--02 {
  bottom: 20%;
  left: 5.5%;
}
@media only screen and (min-width: 768px) {
  .p-flower--02 {
    bottom: 20%;
    left: 3.5%;
  }
}

.p-flower--03 {
  bottom: -5.5%;
  left: 16.5%;
}
@media only screen and (min-width: 768px) {
  .p-flower--03 {
    bottom: -5.5%;
    left: 33.5%;
  }
}

.p-flower--04 {
  bottom: -5.5%;
  right: -3.5%;
}
@media only screen and (min-width: 768px) {
  .p-flower--04 {
    bottom: -5%;
    right: 19%;
  }
}

.p-flower--05 {
  top: 47%;
  right: -3.8%;
}
@media only screen and (min-width: 768px) {
  .p-flower--05 {
    top: 54%;
    right: -0.8%;
  }
}

.p-flower--06 {
  top: 28.5%;
  right: -3.2%;
}
@media only screen and (min-width: 768px) {
  .p-flower--06 {
    top: 37.5%;
    right: 0.8%;
  }
}

/* ------------------------------------------------
p-top-about
--------------------------------------------------- */
.p-top-about {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), color-stop(50%, #956225));
  background: linear-gradient(#fff 50%, #956225 50%);
  max-height: 860px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-top-about {
    margin-top: -3.25vw;
    max-height: initial;
  }
}
@media (min-width: 1261px) and (max-width: 1600px) {
  .p-top-about {
    height: calc(25.9441vw + 513.1041px);
  }
}
@media (min-width: 768px) and (max-width: 1260px) {
  .p-top-about {
    height: 83.999rem;
  }
}

.p-top-about__contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 56.5vw;
}
@media only screen and (min-width: 768px) {
  .p-top-about__contents {
    padding-top: 31.5625vw;
  }
}

.p-top-about__message {
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 2.1052631579;
  text-shadow: 0.2rem 0.2rem 0.4rem rgba(4, 0, 0, 0.3);
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .p-top-about__message {
    font-size: 3.4rem;
    line-height: 2.1176470588;
    text-shadow: 0.3rem 0.3rem 0.8rem rgba(4, 0, 0, 0.3);
  }
}

.p-top-about__btn {
  margin-top: 2.7rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-top-about__btn {
    margin-top: 4.5rem;
  }
}

/* ------------------------------------------------
p-top-information
--------------------------------------------------- */
.p-top-information {
  position: relative;
  padding-block: 23.6rem 14rem;
}
@media only screen and (min-width: 768px) {
  .p-top-information {
    padding-block: 29.6rem 25.7rem;
  }
}

.p-top-information__wave-deco {
  position: absolute;
  left: 0;
  width: 100%;
}

.p-top-information__wave-deco--top {
  top: 0;
}

.p-top-information__wave-deco--bottom {
  bottom: 0;
}

.p-top-information__deco--01 {
  position: absolute;
  width: 20rem;
  top: -1.3rem;
  left: 2.2rem;
  width: 20rem;
}
@media only screen and (min-width: 768px) {
  .p-top-information__deco--01 {
    width: min(25vw, 400px);
    top: -5.625vw;
    top: -9rem;
    left: 6.5625vw;
  }
}

.p-top-information__deco--02 {
  position: absolute;
  top: 11.2rem;
  right: 1.6rem;
  width: 24.4rem;
}
@media only screen and (min-width: 768px) {
  .p-top-information__deco--02 {
    width: min(30.375vw, 486px);
    top: 0;
    right: 1.25vw;
  }
}

@media only screen and (min-width: 768px) {
  .p-top-information__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10rem;
  }
}

.p-top-information__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-top-information__head {
    padding-bottom: 2.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media only screen and (min-width: 768px) {
  .p-top-information__btn {
    margin-top: 3.3rem;
  }
}

/* ------------------------------------------------
p-top-wrapper
--------------------------------------------------- */
.p-top-wrapper {
  position: relative;
  background-color: #f8edd7;
  padding-block: 14rem 5.4rem;
}
@media only screen and (min-width: 768px) {
  .p-top-wrapper {
    padding-block: 13.5rem 10rem;
  }
}

.p-top-wrapper__deco {
  position: absolute;
}

.p-top-wrapper__deco--01 {
  z-index: 2;
  top: 1rem;
  left: 0.9375vw;
  width: 25rem;
}
@media only screen and (min-width: 768px) {
  .p-top-wrapper__deco--01 {
    top: -8.875vw;
    left: 0.9375vw;
    width: 49.5rem;
  }
}

.p-top-wrapper__deco--02 {
  top: -9.6rem;
  right: 0;
  width: 18.8rem;
}
@media only screen and (min-width: 768px) {
  .p-top-wrapper__deco--02 {
    top: -17.2rem;
    right: 5.1rem;
    width: 37.8rem;
  }
}

.p-top-wrapper__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.5rem;
}
@media only screen and (min-width: 768px) {
  .p-top-wrapper__items {
    gap: 5rem;
  }
}

.p-top-banner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-top-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 3rem;
  }
}
.p-top-banner::before {
  position: absolute;
  z-index: 3;
  content: "";
  top: 0.5rem;
  left: 0.5rem;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: 0.1rem solid #fff;
  border-radius: 1rem;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .p-top-banner::before {
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    border-radius: 2rem;
  }
}

.p-top-banner__img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .p-top-banner__img {
    width: 53.7rem;
  }
}
.p-top-banner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-banner__contents {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: 2rem 3rem;
  padding-inline: 2.5rem 1.9rem;
}
@media only screen and (min-width: 768px) {
  .p-top-banner__contents {
    padding-block: 6rem 5.5rem;
    padding-inline: 6.5rem;
  }
}

.p-top-banner__text {
  margin-top: 1.4rem;
  font-size: 1.7rem;
  line-height: 1.2352941176;
}
@media only screen and (min-width: 768px) {
  .p-top-banner__text {
    margin-top: 2.2rem;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2727272727;
  }
}

.p-top-banner__btn {
  margin-top: 1.6rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-top-banner__btn {
    margin-top: 3.7rem;
    text-align: left;
  }
}

.p-top-banner--admission {
  background-color: #ffd666;
}
.p-top-banner--admission .p-top-banner__contents::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  background-image: url(../img/top/deco_dots.png);
  background-repeat: repeat;
  background-position: top left;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-top-banner--admission {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-top-banner--recruit {
  background-color: #ffbede;
}
.p-top-banner--recruit .p-top-banner__contents::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  background-image: url(../img/top/deco_stripe.png);
  background-repeat: repeat;
  background-position: top left;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-top-banner--recruit .p-top-banner__contents {
    text-align: right;
  }
}

/* ------------------------------------------------
p-top-sns
--------------------------------------------------- */
.p-top-sns {
  position: relative;
  padding-top: 25.6rem;
}
@media only screen and (min-width: 768px) {
  .p-top-sns {
    padding-top: 30.6rem;
  }
}

.p-top-sns__wave-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.p-top-sns__deco {
  position: absolute;
}

.p-top-sns__deco--01 {
  top: -1.5rem;
  left: 1.6rem;
  width: 18rem;
}
@media only screen and (min-width: 768px) {
  .p-top-sns__deco--01 {
    top: -1.125vw;
    left: 5.25vw;
    width: 36rem;
  }
}

.p-top-sns__deco--02 {
  top: 10.5rem;
  right: 1.6rem;
  width: 26rem;
}
@media only screen and (min-width: 768px) {
  .p-top-sns__deco--02 {
    top: 0.25vw;
    right: 1.875vw;
    width: 52.7rem;
  }
}

.p-top-sns__contents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.7rem;
}
@media only screen and (min-width: 768px) {
  .p-top-sns__contents {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.p-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-sns__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-sns__icon {
  width: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-sns__icon {
    width: 6.2rem;
  }
}

.p-sns__title {
  margin-top: 1rem;
  font-size: 2.3rem;
}
@media only screen and (min-width: 768px) {
  .p-sns__title {
    margin-top: 1.3rem;
    font-size: 3.6rem;
  }
}

.p-sns__body {
  margin-top: 2rem;
  border: 0.1rem solid #d3d3d3;
  height: 50rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-sns__body {
    margin-top: 3.4rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 60rem;
  }
}

.p-sns__body--insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.p-sns__text {
  font-size: 1.5rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .p-sns__text {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.p-sns__btn {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-sns__btn {
    margin-top: 4rem;
  }
}

/* ------------------------------------------------
p-link-banner
--------------------------------------------------- */
.p-link-banner {
  text-align: center;
}
.p-link-banner a {
  display: inline-block;
  width: 30rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-link-banner a {
    width: 32rem;
  }
}
.p-link-banner a p {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media (any-hover: hover) {
  .p-link-banner a:hover {
    opacity: 0.7;
  }
}
/* ------------------------------------------------
p-about
--------------------------------------------------- */
.p-about__wrapper {
  padding-top: 5rem;
  padding-bottom: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-about__wrapper {
    padding-top: 10.8rem;
    padding-bottom: 12rem;
  }
}

/* ------------------------------------------------
p-message
--------------------------------------------------- */
.p-message {
  background-image: url(../img/about/img_message-bg-sp.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-block: 5rem 12rem;
}
@media only screen and (min-width: 768px) {
  .p-message {
    margin-top: 1rem;
    padding-block: 5.4375vw max(11.125vw, 178px);
    background-image: url(../img/about/img_message-bg.jpg);
  }
}

.p-message__inner {
  max-width: 50rem;
}
@media only screen and (min-width: 768px) {
  .p-message__inner {
    max-width: 106rem;
  }
}

.p-message__contents {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 4rem 1.4rem;
  border-radius: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-message__contents {
    padding: 5rem 2rem;
    border-radius: 3rem;
  }
}

.p-message__title {
  font-size: 2.4rem;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .p-message__title {
    font-size: 3.6rem;
  }
}

.p-message__lead {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.4;
  white-space: nowrap;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .p-message__lead {
    margin-top: 4.6rem;
    font-size: 2.8rem;
  }
}

.p-message__text {
  margin-top: 3rem;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .p-message__text {
    margin-top: 4.2rem;
    font-size: 2rem;
    line-height: 1.7;
  }
}

/* ------------------------------------------------
p-goal
--------------------------------------------------- */
.p-goal {
  margin-top: -7rem;
  position: relative;
  z-index: 3;
  padding-block: 10rem;
  background-image: url(../img/about/img_goal-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .p-goal {
    margin-top: min(-6.75vw, -108px);
    padding-block: 13vw 12.125vw;
  }
}

.p-goal__inner {
  max-width: 50rem;
}
@media only screen and (min-width: 768px) {
  .p-goal__inner {
    max-width: 106rem;
  }
}

.p-goal__contents {
  position: relative;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 3rem;
  padding: 3.6rem 2rem 4rem 2.4rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-goal__contents {
    padding: 6.6rem 8.4rem 8rem;
    border-radius: 3rem;
  }
}
.p-goal__contents::before {
  position: absolute;
  content: "";
  top: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: 0.1rem solid #38b013;
  border-radius: 1.5rem;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .p-goal__contents::before {
    top: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
  }
}

.p-goal__title {
  text-align: center;
  font-size: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-goal__title {
    font-size: 3.6rem;
  }
}

.p-goal__lists {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-goal__lists {
    margin-top: 4.6rem;
    gap: 2.8rem;
  }
}

.p-goal__list {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
  padding-left: 3.3rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-goal__list {
    font-size: 2.4rem;
    padding-left: 5.3rem;
  }
}
.p-goal__list::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../img/about/icon_flower.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-goal__list::before {
    width: 3.5rem;
    height: 3.4rem;
  }
}

.p-goal__wave-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-goal__wave-deco {
    height: 6rem;
  }
  .p-goal__wave-deco img {
    width: 100%;
    height: 100%;
  }
}

.p-goal__deco {
  position: absolute;
}

.p-goal__deco--01 {
  top: -2rem;
  left: 2rem;
  width: 17rem;
}
@media only screen and (min-width: 768px) {
  .p-goal__deco--01 {
    top: max(-2.8125vw, -45px);
    left: 5.625vw;
    width: 22.6rem;
  }
}

.p-goal__deco--02 {
  top: 1.6rem;
  right: 2rem;
  width: 15rem;
}
@media only screen and (min-width: 768px) {
  .p-goal__deco--02 {
    top: 3.25vw;
    right: 7vw;
    width: 21.1rem;
  }
}

.p-goal__deco--03 {
  left: 1.6rem;
  width: 16rem;
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  .p-goal__deco--03 {
    left: 6.25vw;
    width: 22.2rem;
  }
}

.p-goal__deco--04 {
  right: 3rem;
  width: 10rem;
  bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-goal__deco--04 {
    bottom: 5.8125vw;
    right: 3.625vw;
    width: 14.2rem;
  }
}

/* ------------------------------------------------
p-overview
--------------------------------------------------- */
/* ------------------------------------------------
p-feature
--------------------------------------------------- */
.p-feature__inner {
  max-width: 50rem;
}
@media only screen and (min-width: 768px) {
  .p-feature__inner {
    max-width: 112.5rem;
  }
}

.p-feature__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.6rem;
}
@media only screen and (min-width: 768px) {
  .p-feature__contents {
    gap: 6.3rem;
  }
}

.p-feature__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-feature__text {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .p-feature__text {
    margin-top: 3.5rem;
    font-size: 2.2rem;
    line-height: 1.8181818182;
  }
}

/* ------------------------------------------------
p-area
--------------------------------------------------- */
.p-area {
  margin-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-area {
    margin-top: 9.5rem;
  }
}

.p-area__inner {
  max-width: 50rem;
}
@media only screen and (min-width: 768px) {
  .p-area__inner {
    max-width: 112.5rem;
  }
}

.p-area__box {
  border: 0.2rem solid #956225;
  border-radius: 2rem;
  padding: 0 3rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .p-area__box {
    border: 0.3rem solid #956225;
    border-radius: 3rem;
    padding: 0 4.3rem 4.8rem 0.6rem;
  }
}

.p-area__title {
  margin-top: -1.2rem;
  font-size: 2rem;
  color: #956225;
  text-align: center;
  background-color: #fff;
  padding-inline: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-area__title {
    margin-top: -2.2rem;
    font-size: 3.6rem;
    padding-inline: 1rem;
  }
}

.p-area__contents {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.7rem;
}
@media only screen and (min-width: 768px) {
  .p-area__contents {
    margin-top: 3.6rem;
    gap: 1.7rem;
  }
}

.p-area-block__title {
  font-size: 1.8rem;
  color: #956225;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-area-block__title {
    font-size: 2.4rem;
  }
}

.p-area-block__items {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 768px) {
  .p-area-block__items {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 10.4rem;
       -moz-column-gap: 10.4rem;
            column-gap: 10.4rem;
  }
}

.p-area-block__item {
  font-size: 1.8rem;
  line-height: 1.5833333333;
}
@media only screen and (min-width: 768px) {
  .p-area-block__item {
    font-size: 2.4rem;
  }
}

.p-area__note {
  margin-top: 0.6rem;
  font-size: 1.2rem;
  color: #956225;
}
@media only screen and (min-width: 768px) {
  .p-area__note {
    margin-top: 0.6rem;
    font-size: 1.8rem;
  }
}

/* ------------------------------------------------
p-corporation
--------------------------------------------------- */
.p-corporation {
  margin-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-corporation {
    margin-top: 11.5rem;
  }
}

.p-corporation__inner {
  max-width: 50rem;
}
@media only screen and (min-width: 768px) {
  .p-corporation__inner {
    max-width: 112.5rem;
  }
}

.p-corporation__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-corporation__title {
  text-align: center;
  font-size: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-corporation__title {
    font-size: 3.6rem;
  }
}

.p-corporation__contents {
  margin-top: 2.4rem;
  width: 100%;
  border-top: 0.1rem solid #e1e1e1;
}
@media only screen and (min-width: 768px) {
  .p-corporation__contents {
    margin-top: 4.5rem;
  }
}
.p-corporation__contents dl {
  padding-block: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 0.1rem solid #e1e1e1;
  gap: 0.6rem;
}
@media only screen and (min-width: 768px) {
  .p-corporation__contents dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-block: 3rem;
    gap: 0;
  }
}
.p-corporation__contents dt {
  font-size: 1.6rem;
  line-height: 1.4;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .p-corporation__contents dt {
    width: 19.4rem;
    padding-right: 3rem;
    font-size: 2rem;
  }
}
.p-corporation__contents dd {
  font-size: 1.6rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .p-corporation__contents dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 2rem;
  }
}

/* ------------------------------------------------
p-access
--------------------------------------------------- */
.p-access {
  margin-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-access {
    margin-top: 9.8rem;
  }
}

.p-access__title {
  font-size: 2.4rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-access__title {
    font-size: 3.6rem;
  }
}

.p-access__map {
  margin-top: 2.4rem;
  width: 100%;
  height: 40rem;
}
@media only screen and (min-width: 768px) {
  .p-access__map {
    margin-top: 4.5rem;
    height: 47.2rem;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------
p-schedule
--------------------------------------------------- */
.p-schedule {
  position: relative;
}

.p-schedule__bg {
  position: absolute;
  bottom: -6.8rem;
  width: 100%;
  height: 7rem;
  background-color: #d5eecd;
}

/* ------------------------------------------------
p-term
--------------------------------------------------- */
.p-term {
  padding-block: 3.4rem calc(4.5rem + 16.5vw);
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-term {
    padding-block: 5.5rem calc(16.6rem + 8.3125vw);
  }
}

.p-term__container {
  max-width: 94.8rem;
  margin-inline: auto;
}

.p-term__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-term__text {
  margin-top: 2.2rem;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-term__text {
    margin-top: 4.5rem;
    font-size: 2.2rem;
    line-height: 1.8181818182;
  }
}

.p-term__body {
  margin-top: 1.7rem;
}
@media only screen and (min-width: 768px) {
  .p-term__body {
    margin-top: 3.5rem;
  }
}

.p-term__time {
  border-top: 0.1rem solid #e1e1e1;
  border-bottom: 0.1rem solid #e1e1e1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding-block: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-term__time {
    gap: 30px;
    padding-block: 3.9rem;
  }
}
.p-term__time span:nth-child(1) {
  font-size: 1.2rem;
  background-color: #b4b4b4;
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .p-term__time span:nth-child(1) {
    font-size: 1.9rem;
    padding: 0.5rem 1.1rem;
    border-radius: 0.5rem;
  }
}
.p-term__time span:nth-child(2) {
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .p-term__time span:nth-child(2) {
    font-size: 2.8rem;
  }
}

.p-term__note {
  margin-top: 1.3rem;
  font-size: 1.2rem;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (min-width: 768px) {
  .p-term__note {
    margin-top: 1.9rem;
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}

.p-term__wave-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.p-term__deco {
  position: absolute;
  top: -1rem;
  left: 1.4rem;
  width: 17.7rem;
}
@media only screen and (min-width: 768px) {
  .p-term__deco {
    top: -4.2rem;
    width: 35.2rem;
    left: 3.125vw;
  }
}

/* ------------------------------------------------
1day
--------------------------------------------------- */
.p-1day {
  background-color: #fbf5ea;
  position: relative;
}

.p-1day__container {
  max-width: 96rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 2.7rem 6rem;
}
@media only screen and (min-width: 768px) {
  .p-1day__container {
    padding-block: 4.7rem 7.5rem;
  }
}

.p-1day__table {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-1day__table {
    margin-top: 5rem;
    font-size: 3rem;
  }
}
.p-1day__table th {
  font-weight: 500;
}
.p-1day__table tr {
  border-bottom: 1px solid #fbf5ea;
}
.p-1day__table thead th:nth-child(1) {
  width: 11.8rem;
  background-color: #fff;
  height: 3.8rem;
}
@media only screen and (min-width: 768px) {
  .p-1day__table thead th:nth-child(1) {
    height: 7.6rem;
  }
}
.p-1day__table thead th:nth-child(2) {
  width: 39.1rem;
  background-color: #fda34b;
  color: #fff;
  font-size: 1.3rem;
}
@media only screen and (min-width: 768px) {
  .p-1day__table thead th:nth-child(2) {
    font-size: 3rem;
  }
}
.p-1day__table thead th:nth-child(3) {
  width: 39.1rem;
  background-color: #38b013;
  color: #fff;
  font-size: 1.3rem;
}
@media only screen and (min-width: 768px) {
  .p-1day__table thead th:nth-child(3) {
    font-size: 3rem;
  }
}
.p-1day__table tbody th {
  background-color: #fff;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-1day__table tbody th {
    font-size: 3rem;
  }
}
.p-1day__table tbody td:nth-child(2) {
  height: 5rem;
  background-color: #f8edd7;
  color: #fda34b;
}
@media only screen and (min-width: 768px) {
  .p-1day__table tbody td:nth-child(2) {
    height: 10rem;
  }
}
.p-1day__table tbody td:nth-child(3) {
  background-color: #ddeed8;
  color: #38b013;
}

/* ------------------------------------------------
p-schedule-timetable
--------------------------------------------------- */
.p-schedule-timetable {
  position: relative;
  padding-top: calc(4.8rem + 16.5vw);
  padding-bottom: calc(4.5rem + 15.75vw);
}
@media only screen and (min-width: 768px) {
  .p-schedule-timetable {
    padding-top: calc(8.2rem + 8.3125vw);
    padding-bottom: calc(9.6rem + 8.1875vw);
  }
}

/* ------------------------------------------------
p-event
--------------------------------------------------- */
.p-event {
  background-color: #d5eecd;
  padding-block: 5rem 8rem;
}
@media only screen and (min-width: 768px) {
  .p-event {
    padding-block: 5rem 14rem;
  }
}

.p-event__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-event__items {
  margin-top: 2.7rem;
  max-width: 90rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-event__items {
    margin-top: 5.2rem;
    gap: 4rem;
  }
}

.p-event-item__head {
  display: grid;
  place-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: 1.5rem 1.5rem 0 0;
  height: 4rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-event-item__head {
    height: 7.8rem;
    padding-bottom: 0.6rem;
  }
}
.p-event-item__head::before {
  position: absolute;
  content: "";
  width: 15rem;
  height: 5rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-event-item__head::before {
    width: 31.4rem;
    height: 11.4rem;
  }
}

.p-event-item__title {
  display: inline-block;
  color: #fff;
  font-size: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .p-event-item__title {
    font-size: 5rem;
  }
}
.p-event-item__title span {
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-event-item__title span {
    font-size: 4rem;
  }
}

.p-event-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-event-item__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 2rem 3rem 3rem 2rem;
    gap: 5.3rem;
  }
}

.p-event-item__contents {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .p-event-item__contents {
    width: 55.3rem;
  }
}

.p-event-item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .p-event-item__list {
    gap: 1.6rem;
  }
}
.p-event-item__list li {
  min-width: calc((100% - 2rem) / 2);
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 1em;
}
@media only screen and (min-width: 768px) {
  .p-event-item__list li {
    font-size: 2.2rem;
  }
}
.p-event-item__list li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
  font-size: 1.3rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .p-event-item__list li::before {
    font-size: 2.2rem;
  }
}

.p-event-item__img-wrap {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-event-item__img-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
    padding-top: 0.8rem;
    gap: 3rem;
  }
}

.p-event-item__img {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .p-event-item__img {
    width: 18rem;
  }
}
.p-event-item__img::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
}
.p-event-item__img::after {
  position: absolute;
  content: "+";
  bottom: 0;
  right: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 8rem;
  line-height: 1;
  font-weight: 300;
  color: #fff;
}
.p-event-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-event-item--term01 .p-event-item__head {
  background-color: #ffa4c2;
}
.p-event-item--term01 .p-event-item__head::before {
  top: -0.3rem;
  left: -0.4rem;
  background-image: url(../img/schedule/deco_4-6.png);
}
@media only screen and (min-width: 768px) {
  .p-event-item--term01 .p-event-item__head::before {
    top: -0.9rem;
    left: -0.4rem;
  }
}

.p-event-item--term02 .p-event-item__head {
  background-color: #44c666;
}
.p-event-item--term02 .p-event-item__head::before {
  top: -0.9rem;
  left: -1.5rem;
  background-image: url(../img/schedule/deco_7-9.png);
}
@media only screen and (min-width: 768px) {
  .p-event-item--term02 .p-event-item__head::before {
    top: -2.5rem;
    left: -2.2rem;
  }
}

.p-event-item--term03 .p-event-item__head {
  background-color: #f5b341;
}
.p-event-item--term03 .p-event-item__head::before {
  top: -1rem;
  left: -0.3rem;
  background-image: url(../img/schedule/deco_10-12.png);
}
@media only screen and (min-width: 768px) {
  .p-event-item--term03 .p-event-item__head::before {
    top: -2rem;
    left: -0.6rem;
  }
}

.p-event-item--term04 .p-event-item__head {
  background-color: #49c9fe;
}
.p-event-item--term04 .p-event-item__head::before {
  top: -0.5rem;
  left: -1.5rem;
  background-image: url(../img/schedule/deco_1-3.png);
}
@media only screen and (min-width: 768px) {
  .p-event-item--term04 .p-event-item__head::before {
    top: -2rem;
    left: -3rem;
  }
}

.p-event-item__target + .p-event-item__list {
  margin-top: 1rem;
  gap: 0.2rem 2rem;
}
@media only screen and (min-width: 768px) {
  .p-event-item__target + .p-event-item__list {
    margin-top: 1rem;
    padding-bottom: 0;
    gap: 0.3rem 2rem;
  }
}
.p-event-item__target + .p-event-item__list li {
  min-width: calc((100% - 2rem) / 2);
  font-weight: 500;
  color: #6f6f6f;
  font-size: 1.2rem;
  line-height: 1.4;
  position: relative;
  padding-left: 1em;
}
@media only screen and (min-width: 768px) {
  .p-event-item__target + .p-event-item__list li {
    font-size: 2rem;
  }
}
.p-event-item__target + .p-event-item__list li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
  font-size: 1.2rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-event-item__target + .p-event-item__list li::before {
    font-size: 2rem;
  }
}

/* ------------------------------------------------
画像モーダル
--------------------------------------------------- */
.p-schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.p-schedule-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.p-schedule-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.p-schedule-modal__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  max-height: 70vh;
  width: 100%;
}

.p-schedule-modal__img-wrap {
  max-height: 70vh;
}

.p-schedule-modal__img {
  width: 100%;
  max-width: 80rem;
  height: auto;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.p-schedule-modal__close {
  position: absolute;
  top: -4.6rem;
  right: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ------------------------------------------------
p-information
--------------------------------------------------- */
.p-information__container {
  padding-block: 4rem 11rem;
}
@media only screen and (min-width: 768px) {
  .p-information__container {
    padding-block: 9.4rem 13.4rem;
  }
}

.p-information__inner {
  max-width: 960px;
}

.p-information__items {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-information__items {
    margin-top: 4.6rem;
  }
}

/* ------------------------------------------------
p-information-detail
--------------------------------------------------- */
.p-information-detail__container {
  padding-block: 4rem 11rem;
}
@media only screen and (min-width: 768px) {
  .p-information-detail__container {
    padding-block: 6.4rem 14.4rem;
  }
}

.p-information-detail__inner {
  max-width: 860px;
}

.p-information-detail__day {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #956225;
}
@media only screen and (min-width: 768px) {
  .p-information-detail__day {
    font-size: 1.8rem;
  }
}

.p-information-detail__title {
  margin-top: 1rem;
  font-size: 2.2rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .p-information-detail__title {
    margin-top: 1rem;
    font-size: 3rem;
  }
}

.p-information-detail__content {
  margin-top: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-information-detail__content {
    margin-top: 1.6rem;
  }
}
.p-information-detail__content figure {
  margin-block: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-information-detail__content figure {
    margin-block: 3rem;
  }
}
.p-information-detail__content h2 {
  margin-block: 2rem;
  font-size: 2rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .p-information-detail__content h2 {
    margin-block: 3rem;
    font-size: 2.4rem;
  }
}
.p-information-detail__content h3 {
  margin-block: 2rem;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .p-information-detail__content h3 {
    margin-block: 3rem;
    font-size: 2rem;
  }
}
.p-information-detail__content p {
  margin-block: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.875;
}
@media only screen and (min-width: 768px) {
  .p-information-detail__content p {
    margin-block: 3rem;
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
.p-information-detail__content figcaption.wp-element-caption {
  margin-top: 1.4rem;
  font-size: 1.4rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-information-detail__content figcaption.wp-element-caption {
    margin-top: 1.4rem;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  :where(.wp-block-columns.is-layout-flex) {
    gap: 0;
  }
}

.p-information-detail__pagination {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .p-information-detail__pagination {
    margin-top: 7.4rem;
  }
}

/* ------------------------------------------------
p-contact
--------------------------------------------------- */
.p-contact__container {
  padding-block: 4rem 11rem;
}
@media only screen and (min-width: 768px) {
  .p-contact__container {
    padding-block: 6.4rem 16.5rem;
  }
}

.p-contact__inner {
  max-width: 960px;
}

.p-contact__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .p-contact__text {
    font-size: 1.6rem;
  }
}
.p-contact__text a {
  color: #003cff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media only screen and (min-width: 768px) {
  .p-form__contents {
    padding-right: 10rem;
  }
}

/* ------------------------------------------------
p-confirm
--------------------------------------------------- */
.p-confirm__container {
  padding-block: 4rem 11rem;
}
@media only screen and (min-width: 768px) {
  .p-confirm__container {
    padding-block: 6.4rem 16.5rem;
  }
}

.p-confirm__inner {
  max-width: 860px;
}

.p-confirm__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .p-confirm__text {
    font-size: 1.6rem;
  }
}
.p-confirm__text a {
  color: #003cff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media only screen and (min-width: 768px) {
  .p-form__contents {
    padding-right: 10rem;
  }
}

/* ------------------------------------------------
p-thanks
--------------------------------------------------- */
.p-thanks__container {
  padding-block: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-thanks__container {
    padding-block: 12rem 9rem;
    text-align: center;
  }
}

.p-thanks__inner {
  max-width: 960px;
}

.p-thanks__lead {
  line-height: 1.5;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-thanks__lead {
    font-size: 2.8rem;
  }
}

.p-thanks__text {
  margin-top: 4rem;
}
.p-thanks__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}
@media only screen and (min-width: 768px) {
  .p-thanks__text p {
    font-size: 1.6rem;
  }
}
.p-thanks__text p span {
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-thanks__text p span {
    font-size: 1.4rem;
  }
}
.p-thanks__text p + p {
  margin-top: 2rem;
}
.p-thanks__text a {
  color: #003cff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-thanks__btn {
  display: grid;
  place-content: center;
  margin-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-thanks__btn {
    margin-top: 8rem;
  }
}

/* ------------------------------------------------
p-admission
--------------------------------------------------- */
.p-admission {
  position: relative;
}

.p-admission__btn {
  margin-top: 5rem;
}
@media only screen and (min-width: 768px) {
  .p-admission__btn {
    margin-top: 9.4rem;
  }
}
.p-admission__btn a {
  margin-inline: auto;
  display: grid;
  place-content: center;
  background-color: #38b013;
  max-width: 40rem;
  width: 33.5rem;
  height: 6rem;
  border-radius: 5.3rem;
  padding-right: 0.6rem;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .p-admission__btn a {
    max-width: initial;
    padding-right: 2rem;
    width: 54.8rem;
    height: 10.7rem;
  }
}
.p-admission__btn a::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0;
  aspect-ratio: 1/1;
  opacity: 0.3;
  pointer-events: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #669763;
  -webkit-transition: width 0.4s ease-out, opacity 0.4s ease-out;
  transition: width 0.4s ease-out, opacity 0.4s ease-out;
}
.p-admission__btn a span {
  font-size: 2rem;
  line-height: 1.4;
  color: #fff;
  padding-left: 2.8rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-admission__btn a span {
    font-size: 3.1rem;
    padding-left: 6rem;
  }
}
.p-admission__btn a span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.2rem;
  height: 1.8rem;
  background-image: url(../img/admission/icon_mail.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-admission__btn a span::before {
    width: 4.1rem;
    height: 2.9rem;
  }
}

.p-admission__bg {
  position: absolute;
  bottom: -6.8rem;
  width: 100%;
  height: 7rem;
  background-color: #e0ffe2;
}

@media (any-hover: hover) {
  .p-admission__btn a:hover::before {
    width: 120%;
    opacity: 1;
  }
}
/* ------------------------------------------------
p-admission-contact
--------------------------------------------------- */
.p-admission-contact {
  padding-block: 3.1rem 8rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact {
    padding-block: 6.3rem 21rem;
  }
}

.p-admission-contact__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-admission-contact__text {
  margin-top: 2.4rem;
  font-size: 1.2rem;
  line-height: 1.8181818182;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__text {
    margin-top: 3.4rem;
    font-size: 2.2rem;
  }
}

.p-admission-contact__body {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff7f7;
  position: relative;
  border-radius: 1rem;
  padding-block: 4rem 5rem;
  max-width: 50rem;
  margin-inline: auto;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__body {
    margin-top: 5.6rem;
    border-radius: 1.5rem;
    padding-block: 6.4rem 7rem;
    max-width: 90rem;
  }
}
.p-admission-contact__body p:nth-of-type(1) {
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__body p:nth-of-type(1) {
    font-size: 2rem;
  }
}
.p-admission-contact__body p:nth-of-type(2) {
  margin-top: 1.8rem;
}
.p-admission-contact__body p:nth-of-type(2) a {
  font-size: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__body p:nth-of-type(2) a {
    font-size: 6rem;
  }
}
.p-admission-contact__body p:nth-of-type(3) {
  margin-top: 1.6rem;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__body p:nth-of-type(3) {
    margin-top: 2rem;
    font-size: 2.4rem;
  }
}
.p-admission-contact__body p:nth-of-type(3) span {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__body p:nth-of-type(3) span {
    font-size: 2.2rem;
  }
}
.p-admission-contact__body p:nth-of-type(4) {
  margin-top: 1.8rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__body p:nth-of-type(4) {
    margin-top: 2.3rem;
    font-size: 2.4rem;
  }
}

.p-admission-contact__sakura {
  position: absolute;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__sakura {
    width: 90.8rem;
  }
}

.p-admission-contact__sakura--upper {
  top: -1.3rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__sakura--upper {
    top: -2.3rem;
  }
}

.p-admission-contact__sakura--bottom {
  bottom: -1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__sakura--bottom {
    bottom: -1.7rem;
  }
}

.p-admission-contact__btn--admission {
  margin-top: 2.9rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__btn--admission {
    margin-top: 2.9rem;
  }
}
.p-admission-contact__btn--admission a {
  padding-block: 1.8rem 2rem;
  padding-inline: 2.7rem;
  border-radius: 2.7rem;
  font-size: 1.6rem;
  text-align: center;
  background-color: #ff80b3;
  color: #fff;
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__btn--admission a {
    min-width: 35.2rem;
    height: 6.8rem;
    border-radius: 3.4rem;
    font-size: 2.4rem;
  }
}
.p-admission-contact__btn--admission a::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0;
  aspect-ratio: 1/1;
  opacity: 0.3;
  pointer-events: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #c85f89;
  -webkit-transition: width 0.4s ease-out, opacity 0.4s ease-out;
  transition: width 0.4s ease-out, opacity 0.4s ease-out;
}
.p-admission-contact__btn--admission a span {
  position: relative;
  padding-left: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__btn--admission a span {
    padding-left: 4rem;
  }
}
.p-admission-contact__btn--admission a span::before {
  position: absolute;
  content: "";
  top: 52%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.4rem;
  height: 1.6rem;
  background-image: url(../img/admission/icon_mail.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__btn--admission a span::before {
    width: 3.1rem;
    height: 2.1rem;
  }
}

.p-admission-contact__foot {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__foot {
    margin-top: 5.6rem;
  }
}
.p-admission-contact__foot .p-admission-contact__text {
  margin-top: 0;
}

.p-admission-contact__btn--yakuba {
  margin-top: 1.6rem;
}

.p-admission-contact__btn--yakuba a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #956225;
  max-width: 40rem;
  width: 33.5rem;
  height: 6rem;
  border-radius: 5.3rem;
  font-size: 2rem;
  line-height: 1.4;
  padding-right: 2rem;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__btn--yakuba a {
    max-width: initial;
    width: 54.7rem;
    height: 10.7rem;
    font-size: 3.2rem;
    line-height: 1.4;
    padding-right: 4rem;
  }
}
.p-admission-contact__btn--yakuba a span {
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__btn--yakuba a span {
    font-size: 1.4rem;
  }
}
.p-admission-contact__btn--yakuba a::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0;
  aspect-ratio: 1/1;
  opacity: 0.3;
  pointer-events: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #564415;
  -webkit-transition: width 0.4s ease-out, opacity 0.4s ease-out;
  transition: width 0.4s ease-out, opacity 0.4s ease-out;
}
.p-admission-contact__btn--yakuba a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-image: url(../img/admission/icon_link.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__btn--yakuba a::after {
    right: 4rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}

.p-admission-contact__wave-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.p-admission-contact__deco {
  position: absolute;
  top: -1rem;
  left: 1.4rem;
  width: 17.7rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-contact__deco {
    top: -2.4375vw;
    left: 3.125vw;
    width: 35.3rem;
  }
}

@media (any-hover: hover) {
  .p-admission-contact__btn a:hover::before {
    width: 120%;
    opacity: 1;
  }
}
/* ------------------------------------------------
p-admission-about
--------------------------------------------------- */
.p-admission-about {
  background-color: #e0ffe2;
  padding-block: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-about {
    padding-block: 10rem;
  }
}

.p-admission-about__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-admission-about__text {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-about__text {
    margin-top: 5rem;
  }
}
.p-admission-about__text p {
  font-size: 1.2rem;
  line-height: 1.8181818182;
}
@media only screen and (min-width: 768px) {
  .p-admission-about__text p {
    font-size: 2.2rem;
  }
}
.p-admission-about__text p + p {
  margin-top: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-about__text p + p {
    margin-top: 3rem;
  }
}

.p-admission-about__body {
  margin-top: 3rem;
  max-width: 42.5rem;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .p-admission-about__body {
    margin-top: 5.5rem;
    max-width: initial;
  }
}

/* ------------------------------------------------
p-chart
--------------------------------------------------- */
.p-chart {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
@media only screen and (min-width: 768px) {
  .p-chart {
    grid-template-columns: 31.7fr 55.5fr 31.7fr;
    gap: 0;
  }
}

.p-chart-item {
  position: relative;
}

.p-chart-item__contents {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-chart-item__contents > span {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.2rem;
  letter-spacing: 0;
  top: -4%;
}
@media only screen and (min-width: 768px) {
  .p-chart-item__contents > span {
    top: 24%;
    font-size: 1.6rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}

@media (max-width: 767px) {
  .p-chart__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-chart-item--01 img {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
@media only screen and (min-width: 768px) {
  .p-chart-item--01 img {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.p-chart-item--01 .p-chart-item__contents {
  padding-inline: 0.4rem 2.4rem;
  padding-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--01 .p-chart-item__contents {
    padding-inline: 0.4rem 4.1rem;
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
.p-chart-item--01 .p-chart-item__contents > span {
  right: 7rem;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--01 .p-chart-item__contents > span {
    right: 0.8rem;
  }
}
.p-chart-item--01 .p-chart-item__contents .p-chart-item__title {
  font-size: 1.8rem;
  color: #44babe;
  background-color: #fff;
  display: grid;
  place-content: center;
  height: 3rem;
  width: 9.6rem;
  border-radius: 3rem;
  margin-left: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--01 .p-chart-item__contents .p-chart-item__title {
    width: 17.7rem;
    height: 5rem;
    font-size: 3rem;
    border-radius: 4rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-chart-item--01 .p-chart-item__contents .p-chart-item__title {
    width: 15rem;
  }
}
.p-chart-item--01 .p-chart-item__contents ul {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--01 .p-chart-item__contents ul {
    margin-top: 2rem;
  }
}
.p-chart-item--01 .p-chart-item__contents ul li {
  color: #fff;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--01 .p-chart-item__contents ul li {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}

.p-chart-item--02 span {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fce6d7;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--02 span {
    width: 55.5rem;
  }
}
.p-chart-item--02 .p-chart-item__contents ul {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-inline: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--02 .p-chart-item__contents ul {
    margin-top: 3.2rem;
    gap: 3rem;
    padding-inline: 3.5rem;
  }
}
.p-chart-item--02 .p-chart-item__contents .p-chart-item__text {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
  padding-bottom: 1rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--02 .p-chart-item__contents .p-chart-item__text {
    font-size: 2rem;
    line-height: 1.6;
    padding-bottom: 1rem;
  }
}
.p-chart-item--02 .p-chart-item__contents .p-chart-item__text::before {
  position: absolute;
  content: "";
  bottom: -1.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 1.5rem;
  background-image: url(../img/admission/deco_line.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--02 .p-chart-item__contents .p-chart-item__text::before {
    bottom: -1.4rem;
    height: 1.5rem;
  }
}
.p-chart-item--02 .p-chart-item__contents .p-chart-item__desc {
  margin-top: 1.8rem;
  font-size: 1.1rem;
  line-height: 1.3;
  text-align: justify;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--02 .p-chart-item__contents .p-chart-item__desc {
    margin-top: 1.8rem;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.p-chart-item--02 .p-chart-item__contents .p-chart-item__title {
  margin-top: 2.8rem;
  display: grid;
  place-content: center;
  font-size: 2.2rem;
  width: 19rem;
  height: 4.6rem;
  background-color: #fff;
  color: #f29461;
  border-radius: 5rem;
  padding-bottom: 0.2rem;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--02 .p-chart-item__contents .p-chart-item__title {
    margin-top: 2.8rem;
    font-size: 3.6rem;
    width: 30.6rem;
    height: 7rem;
    border-radius: 5rem;
    padding-bottom: 0.4rem;
  }
}
.p-chart-item--02 .p-chart-item__lead {
  font-size: 1.4rem;
  line-height: 1.3;
  background-color: #f29461;
  color: #fff;
  text-align: center;
  padding: 0.8rem 2rem;
  border-radius: 5rem;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--02 .p-chart-item__lead {
    font-size: 2.4rem;
    padding: 0.8rem 3.4rem;
    border-radius: 5rem;
  }
}

.p-chart-item--03 img {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
@media only screen and (min-width: 768px) {
  .p-chart-item--03 img {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.p-chart-item--03 .p-chart-item__contents {
  padding-inline: 2.8rem 2rem;
  padding-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--03 .p-chart-item__contents {
    padding-inline: 5.6rem 3rem;
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-chart-item--03 .p-chart-item__contents {
    padding-left: 4.6rem;
  }
}
.p-chart-item--03 .p-chart-item__contents > span {
  left: 7rem;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--03 .p-chart-item__contents > span {
    left: 0.8rem;
  }
}
.p-chart-item--03 .p-chart-item__contents .p-chart-item__title {
  font-size: 1.8rem;
  color: #57ba7b;
  background-color: #fff;
  display: grid;
  place-content: center;
  height: 3rem;
  width: 9.6rem;
  border-radius: 3rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-chart-item--03 .p-chart-item__contents .p-chart-item__title {
    width: 15rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-chart-item--03 .p-chart-item__contents .p-chart-item__title {
    font-size: 3rem;
    height: 5rem;
    width: 17.7rem;
    border-radius: 4rem;
  }
}
.p-chart-item--03 .p-chart-item__contents ul {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--03 .p-chart-item__contents ul {
    margin-top: 2rem;
  }
}
.p-chart-item--03 .p-chart-item__contents ul li {
  color: #fff;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .p-chart-item--03 .p-chart-item__contents ul li {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}

/* ------------------------------------------------
p-admission-table
--------------------------------------------------- */
.p-admission-table {
  margin-top: 6.6rem;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .p-admission-table {
    margin-top: 9.6rem;
    max-width: 90rem;
  }
}

.p-admission-table__title {
  text-align: center;
  font-size: 1.8rem;
  color: #38b013;
}
@media only screen and (min-width: 768px) {
  .p-admission-table__title {
    font-size: 3rem;
  }
}

.p-admission-table__body {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-table__body {
    margin-top: 2.6rem;
  }
}
.p-admission-table__body table {
  width: 100%;
}
.p-admission-table__body table tr:not(:last-child) {
  border-bottom: 1px solid #e0ffe2;
}
.p-admission-table__body table th {
  width: 14rem;
  background-color: #38b013;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-table__body table th {
    width: 28.4rem;
    font-size: 2.2rem;
  }
}
.p-admission-table__body table td {
  width: calc(100% - 28.4rem);
  background-color: #fff;
  padding: 1rem 1.6rem;
  height: 6rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-table__body table td {
    width: calc(100% - 28.4rem);
    padding: 1.6rem 2.4rem;
    height: 8rem;
  }
}
.p-admission-table__body table td p {
  line-height: 1.3333333333;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-table__body table td p {
    font-size: 1.8rem;
  }
}

.p-admission-table__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-admission-table__items {
    gap: 5.2rem;
  }
}

/* ------------------------------------------------
p-recruit
--------------------------------------------------- */
.p-recruit {
  position: relative;
}

.p-recruit__bg {
  position: absolute;
  bottom: -6.8rem;
  width: 100%;
  height: 7rem;
  background-color: #def0d8;
}

/* ------------------------------------------------
p-recruit-fv
--------------------------------------------------- */
.p-recruit-fv {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .p-recruit-fv-slider__item {
    aspect-ratio: 400/500;
  }
  .p-recruit-fv-slider__item img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 73% 100%;
       object-position: 73% 100%;
  }
}

.p-recruit-fv__content {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-content: center;
}

.p-recruit-fv__catch {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  letter-spacing: 0.05em;
  text-shadow: 0.3rem 0.3rem 0.6rem rgba(4, 0, 0, 0.5);
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-recruit-fv__catch {
    font-size: 4.8rem;
    line-height: 1.4583333333;
  }
}

@media only screen and (max-width: 767px) {
  .p-recruit-fv-slide__pagination.c-swiper-pagination {
    bottom: 7rem !important;
  }
}

/* ------------------------------------------------
p-recruit-message
--------------------------------------------------- */
.p-recruit-message {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  padding-block: 13rem 8rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message {
    margin-top: -3.125vw;
    padding-block: 10rem 17rem;
  }
}
.p-recruit-message::before {
  position: absolute;
  z-index: 3;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/recruit/img_message-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.p-recruit-message__page-title {
  position: absolute;
  z-index: 5;
  top: -1rem;
  left: 2rem;
  width: 16rem;
  height: 7rem;
  border-radius: 2.8rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__page-title {
    top: -3.125vw;
    left: min(7.875vw, 126px);
    width: min(26.5vw, 424px);
    height: min(9.5vw, 152px);
    border-radius: min(3.75vw, 60px);
    gap: min(0.75vw, 12px);
  }
}
.p-recruit-message__page-title span {
  color: #38b013;
}
.p-recruit-message__page-title span:nth-child(1) {
  font-size: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__page-title span:nth-child(1) {
    font-size: min(4.125vw, 66px);
  }
}
.p-recruit-message__page-title span:nth-child(2) {
  font-size: 1.4rem;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__page-title span:nth-child(2) {
    font-size: min(1.625vw, 26px);
  }
}

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

.p-recruit-message__title {
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  padding-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__title {
    font-size: 3.6rem;
    padding-bottom: 5.5rem;
  }
}
.p-recruit-message__title::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 10rem;
  height: 2rem;
  background-image: url(../img/recruit/deco_leaf.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__title::before {
    width: 20.3rem;
    height: 4rem;
  }
}

.p-recruit-message__contents {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__contents {
    margin-top: -1.6rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.7rem;
  }
}

.p-recruit-message__img-wrap {
  display: contents;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 41.8rem;
  }
}

.p-recruit-message__img-box:nth-child(1) {
  display: contents;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__img-box:nth-child(1) {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    padding-inline: 2rem 1rem;
  }
}
.p-recruit-message__img-box:nth-child(2) {
  display: contents;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__img-box:nth-child(2) {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.p-recruit-message__img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-recruit-message__img--01 {
  width: 38%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-top: -20rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__img--01 {
    margin-top: initial;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    width: 24.2rem;
    -ms-flex-item-align: initial;
        align-self: initial;
  }
}

.p-recruit-message__img--02 {
  width: 39%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__img--02 {
    margin-top: -1.8rem;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    -ms-flex-item-align: end;
        align-self: flex-end;
    width: 23rem;
  }
}

.p-recruit-message__img--03 {
  width: 44%;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: -8rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__img--03 {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    width: 23rem;
    -ms-flex-item-align: initial;
        align-self: initial;
    margin-top: initial;
  }
}

.p-recruit-message__img--04 {
  width: 46%;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  margin-left: 8rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__img--04 {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    margin-top: -1.8rem;
    -ms-flex-item-align: end;
        align-self: flex-end;
    width: 24rem;
  }
}

.p-recruit-message__text-wrap {
  margin-top: 7rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__text-wrap {
    margin-top: initial;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-top: 6.6rem;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.p-recruit-message__text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: -0.02em;
  text-align: justify;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__text {
    font-size: 2.6rem;
    letter-spacing: 0;
  }
}
@media (min-width: 768px) and (max-width: 1180px) {
  .p-recruit-message__text {
    font-size: 2.4rem;
  }
}

.p-recruit-message__chairman {
  margin-top: 2rem;
  text-align: right;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__chairman {
    margin-top: 7rem;
  }
}

.p-recruit-message__facility {
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__facility {
    font-size: 1.6rem;
  }
}

.p-recruit-message__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
  margin-top: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__name {
    gap: 2rem;
    margin-top: 1.6rem;
  }
}
.p-recruit-message__name span:nth-child(1) {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__name span:nth-child(1) {
    font-size: 1.8rem;
  }
}
.p-recruit-message__name span:nth-child(2) {
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-message__name span:nth-child(2) {
    font-size: 3rem;
  }
}

/* ------------------------------------------------
p-recruit-target
--------------------------------------------------- */
.p-recruit-target {
  padding-block: 7.8rem 13rem;
  position: relative;
  z-index: 5;
  background-image: url(../img/recruit/img_target-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .p-recruit-target {
    padding-block: 10.8rem 22rem;
  }
}

.p-recruit-target__title {
  position: absolute;
  top: -4.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  white-space: nowrap;
  font-size: 2rem;
  line-height: 1.4;
  color: #fff;
  background-color: #956225;
  padding: 1rem 2.6rem 1.2rem 3rem;
  border-radius: 4rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-recruit-target__title {
    font-size: 4rem;
    padding: 1.9rem 5.5rem;
  }
}
.p-recruit-target__title::before {
  position: absolute;
  content: "";
  bottom: -1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.4rem;
  height: 1.6rem;
  background-color: #956225;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.p-recruit-target__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-target__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 7rem 2.5%;
  }
}

.p-recruit-target__item {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-recruit-target__item {
    width: 31.6666666667%;
  }
}

.p-recruit-target__img img {
  border-radius: 1.5rem;
}

.p-recruit-target__text {
  position: absolute;
  background-color: #fff;
  padding-top: 1.9rem;
  top: -1.3rem;
  right: 1.5rem;
  width: 6rem;
  height: 19rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0.3rem 0.3rem 0.8rem rgba(4, 0, 0, 0.3);
          box-shadow: 0.3rem 0.3rem 0.8rem rgba(4, 0, 0, 0.3);
}
@media only screen and (min-width: 768px) {
  .p-recruit-target__text {
    width: 9.1rem;
    height: 26.8rem;
  }
}
.p-recruit-target__text p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.6rem;
  line-height: 1.25;
}
@media only screen and (min-width: 768px) {
  .p-recruit-target__text p {
    font-size: 2.4rem;
  }
}

.p-recruit-target__deco,
.p-recruit-target__wave-deco {
  position: absolute;
}

.p-recruit-target__wave-deco {
  bottom: -1px;
  left: 0;
  width: 100%;
}

.p-recruit-target__deco--01 {
  bottom: 7rem;
  right: 2.6rem;
  width: 14rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-target__deco--01 {
    bottom: 11rem;
    right: 7.6rem;
    width: 28.2rem;
  }
}

.p-recruit-target__deco--02 {
  top: -2.4rem;
  left: 2rem;
  width: 16rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-target__deco--02 {
    top: -5.4rem;
    left: 5rem;
    width: 40rem;
  }
}

/* ------------------------------------------------
p-recruit-senior
--------------------------------------------------- */
.p-recruit-senior {
  padding-block: 3rem 6rem;
  background-color: #64c147;
}
@media only screen and (min-width: 768px) {
  .p-recruit-senior {
    padding-block: 3rem 10rem;
  }
}

.p-recruit-senior__body {
  margin-top: 4rem;
  max-width: 1000px;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .p-recruit-senior__body {
    margin-top: 8rem;
  }
}

.p-recruit-senior__messages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.6rem;
}
@media (min-width: 768px) and (max-width: 1159px) {
  .p-recruit-senior__messages {
    gap: 1.25vw;
  }
}
@media (min-width: 1160px) {
  .p-recruit-senior__messages {
    gap: min(2.5vw, 40px);
  }
}

.p-senior-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
}
@media only screen and (min-width: 768px) {
  .p-senior-message {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.3rem;
  }
}
@media (min-width: 768px) and (max-width: 1159px) {
  .p-senior-message:last-child {
    margin-top: 0.7rem;
  }
  .p-senior-message:last-child .p-senior-message__text {
    margin-top: 1rem;
  }
}

.p-senior-message__img {
  width: 10rem;
}
@media only screen and (min-width: 768px) {
  .p-senior-message__img {
    width: 20rem;
  }
}

.p-senior-message__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 1.6rem 1.6rem 1.6rem 2rem;
}
@media only screen and (min-width: 768px) {
  .p-senior-message__text {
    padding: 2.4rem 2rem 2.4rem 3rem;
  }
}
.p-senior-message__text p {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .p-senior-message__text p {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}
.p-senior-message__text span {
  margin-top: 1rem;
  text-align: right;
  display: block;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .p-senior-message__text span {
    font-size: 1.8rem;
    padding-right: 1rem;
  }
}

/* ------------------------------------------------
p-recruit-timetable
--------------------------------------------------- */
.p-recruit-timetable {
  background-image: url(../img/recruit/img_target-bg.jpg);
  background-repeat: repeat-y;
  background-position: center center;
  background-size: cover;
  position: relative;
  padding-block: 0 8rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-timetable {
    padding-block: 3.125vw 100px;
  }
}
.p-recruit-timetable .p-timetable__wave-deco {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
}
.p-recruit-timetable .p-timetable__deco03 {
  position: absolute;
  top: -1.6rem;
  right: 1rem;
  width: 14rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-timetable .p-timetable__deco03 {
    top: -3.6rem;
    right: 5rem;
    width: 40rem;
  }
}
.p-recruit-timetable .p-timetable__body {
  margin-top: 3rem;
}

.p-recruit-timetable__title {
  font-size: 1.8rem;
  padding-top: 8.6rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-timetable__title {
    font-size: 3.6rem;
    padding-top: 15.5rem;
  }
}
.p-recruit-timetable__title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8rem;
  height: 8rem;
  background-image: url(../img/recruit/deco_tokei.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .p-recruit-timetable__title::before {
    width: 13rem;
    height: 13rem;
  }
}

/* ------------------------------------------------
p-recruit-detail
--------------------------------------------------- */
.p-recruit-detail {
  padding-block: 7rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-detail {
    padding-block: 10rem;
  }
}

.p-recruit-detail__container {
  margin-top: 4.3rem;
}

.p-recruit-detail__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-detail__tabs {
    gap: 3rem;
  }
}

.p-re-detail__tab {
  width: 15rem;
  height: 4rem;
  border-radius: 2rem;
  display: grid;
  place-content: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  background-color: #fda34b;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding-bottom: 0.3rem;
}
@media only screen and (min-width: 768px) {
  .p-re-detail__tab {
    width: 30rem;
    height: 8rem;
    border-radius: 4rem;
    font-size: 2.4rem;
  }
}

.p-re-detail__tab:hover {
  opacity: 1;
}

.p-re-detail__tab.is-active {
  opacity: 1;
}

.p-recruit-detail__contents {
  margin-top: 3.8rem;
  max-width: 106rem;
  width: 100%;
  margin-inline: auto;
  display: none;
}

.p-recruit-detail__contents.is-active {
  display: block;
}

.p-recruit-detail__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 0.1rem solid #e1e1e1;
}
.p-recruit-detail__list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 1.6rem;
  border-bottom: 0.1rem solid #e1e1e1;
}
@media only screen and (min-width: 768px) {
  .p-recruit-detail__list dl {
    padding-block: 3.4rem;
  }
}
.p-recruit-detail__list dt {
  width: 10rem;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .p-recruit-detail__list dt {
    width: 19.7rem;
    font-size: 2rem;
  }
}
.p-recruit-detail__list dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .p-recruit-detail__list dd {
    font-size: 2rem;
  }
}

.p-recruit-detail__empty {
  padding-block: 3.4rem;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  color: #666;
}

/* ------------------------------------------------
p-recruit-flow
--------------------------------------------------- */
.p-recruit-flow {
  padding-block: 6rem;
  background-color: #f8edd7;
}
@media only screen and (min-width: 768px) {
  .p-recruit-flow {
    padding-block: 10rem;
  }
}

.p-recruit-flow__inner {
  position: relative;
}

.p-recruit-flow__contents {
  margin-top: 3.7rem;
  max-width: 90rem;
  width: 100%;
  margin-inline: auto;
}

.p-recruit-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .p-recruit-flow__list {
    gap: 7.6rem;
  }
}

.p-flow-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  padding: 1.6rem;
  background-color: #fff;
  border-radius: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-flow-item {
    gap: 3rem;
    padding: 3rem 3rem 4rem 3.4rem;
    border-radius: 1.5rem;
  }
}
.p-flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -2.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 6rem;
  height: 1.5rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #f6c461;
}
@media only screen and (min-width: 768px) {
  .p-flow-item:not(:last-child)::after {
    bottom: -5.5rem;
    width: 14rem;
    height: 3.6rem;
  }
}
.p-flow-item:last-child {
  margin-bottom: 0;
}

.p-flow-item__number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  background-color: #38b013;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 50%;
  padding-bottom: 0.2rem;
}
@media only screen and (min-width: 768px) {
  .p-flow-item__number {
    width: 6.8rem;
    height: 6.8rem;
    font-size: 3.8rem;
    padding-bottom: 0.4rem;
  }
}

.p-flow-item__content {
  padding-top: 0.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (min-width: 768px) {
  .p-flow-item__content {
    padding-top: 1rem;
  }
}

.p-flow-item__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .p-flow-item__title {
    font-size: 3rem;
  }
}

.p-flow-item__link {
  color: #0030ff;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-flow-item__link:hover {
  opacity: 0.8;
}

.p-flow-item__text {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .p-flow-item__text {
    margin-top: 1.8rem;
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}

/* ------------------------------------------------
p-entry-form
--------------------------------------------------- */
.p-entry-form {
  background-color: #def0d8;
  padding-bottom: 11rem;
}

.p-entry-form__title {
  background-color: #64c147;
  color: #fff;
  display: grid;
  place-content: center;
  width: 100%;
  height: 5.6rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-entry-form__title {
    height: 10rem;
  }
}
.p-entry-form__title::before {
  position: absolute;
  content: "";
  bottom: -1.8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3rem;
  height: 1.9rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #64c147;
}
@media only screen and (min-width: 768px) {
  .p-entry-form__title::before {
    bottom: -2.8rem;
    width: 5.6rem;
    height: 2.9rem;
  }
}

.p-entry-form__inner {
  max-width: 960px;
}

.p-entry-form__contents {
  padding-top: 4rem;
}
@media only screen and (min-width: 768px) {
  .p-entry-form__contents {
    padding-top: 7.6rem;
  }
}

.p-entry-form__text {
  font-size: 1.6rem;
  line-height: 1.5;
}

/* --------------------------------
utility
----------------------------------- */
.u-ib {
  display: inline-block;
}

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

@media only screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

.u-absolute {
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .u-sp-les-5 {
    letter-spacing: -0.05em;
  }
}

.u-les-5 {
  letter-spacing: -0.05em;
}/*# sourceMappingURL=style.css.map */