@charset "UTF-8";
@import url(https://cdn.jsdelivr.net/npm/destyle.css@4.0.1/destyle.min.css);
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Serif+JP:wght@200..900&family=Tiro+Devanagari+Marathi:ital@0;1&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1400px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 1400px) / 140);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 767px) / 76.7);
  }
}
@media screen and (max-width: 520px) {
  html {
    font-size: calc(10px + (var(--vw, 1vw) * 100 - 375px) / 37.5);
  }
}

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

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

.is-pc--mid {
  display: block !important;
}
@media screen and (max-width: 1280px) {
  .is-pc--mid {
    display: none !important;
  }
}

:root {
  --base-font-size: 1.6rem;
  --color-white: #fff;
  --color-black: #333333;
  --color-orange: #f5b085;
  --base-color: #5e4f47;
  --primary-color: #fd8d7d;
  --secondary-color: #fecb76;
  --bg-color: #fefaf4;
  --blue01: #4bc1c1;
  --blue02: #ace2e2;
  --blue03: #85cff4;
  --blue04: #a2dbf8;
  --pink01: #ffaca0;
  --pink02: #fd8d7d;
  --orange: #f5b085;
  --yellow01: #fcd38e;
  --yellow02: #fecb76;
  --orange01: #f5b085;
  --font-zenMaru: "Zen Maru Gothic", sans-serif;
  --font-inter: "Inter", sans-serif;
  --sec-padding: 6.4rem 0;
}
@media screen and (max-width: 520px) {
  :root {
    --sec-padding: 3.2rem 0;
  }
}

img {
  width: 100%;
  vertical-align: top;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--base-color);
  font-size: var(--base-font-size);
  line-height: 1.7;
  background-color: #fefaf4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.l-header {
  width: 100%;
}

.l-main {
  position: relative;
  z-index: 1;
  padding-top: 12.2rem;
  width: 100%;
}
.l-main.is-page-top {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 6.4rem;
  }
}
@media screen and (max-width: 520px) {
  .l-main {
    padding-top: 3.2rem;
  }
}

.l-footer {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-bottom: 10rem;
  }
}

.l-inner {
  position: relative;
  z-index: 5;
  max-width: min(120rem, 100% - 4rem);
  margin: 0 auto;
}
.l-inner--small {
  position: relative;
  z-index: 5;
  max-width: min(1400px, 100% - 40px);
  margin: 0 auto;
}
.l-inner--xsmall {
  position: relative;
  z-index: 5;
  max-width: min(1200px, 100% - 40px);
  margin: 0 auto;
}

.c-btn {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  min-width: 30rem;
  width: fit-content;
  border-radius: 999px;
  padding: 1.5rem;
  line-height: 1;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.c-btn:hover {
  color: var(--base-color);
  background-color: var(--color-white);
}
.c-btn .material-symbols-outlined {
  font-size: 1.8rem;
}
.c-btn.is-white {
  color: var(--base-color);
  background-color: var(--color-white);
  border: 2px solid var(--primary-color);
}
.c-btn.is-white:hover {
  color: var(--color-white);
  background-color: var(--primary-color);
}
.c-btn.is-blue {
  color: var(--color-white);
  background-color: var(--blue01);
  border: 2px solid var(--blue01);
}
.c-btn.is-blue:hover {
  color: var(--base-color);
  background-color: var(--color-white);
}
.c-btn.is-yellow {
  color: var(--color-white);
  background-color: var(--yellow02);
  border: 2px solid var(--yellow02);
}
.c-btn.is-yellow:hover {
  color: var(--base-color);
  background-color: var(--color-white);
}
.c-btn.is-yellow--reverse {
  color: var(--base-color);
  background-color: var(--color-white);
  border: 2px solid var(--yellow02);
}
.c-btn.is-yellow--reverse:hover {
  color: var(--color-white);
  background-color: var(--yellow02);
}
.c-btn.is-pink--reverse {
  color: var(--base-color);
  background-color: var(--color-white);
  border: 2px solid var(--pink02);
}
.c-btn.is-pink--reverse:hover {
  color: var(--color-white);
  background-color: var(--pink02);
}
.c-btn.is-allWhite {
  color: var(--pink02);
  background-color: var(--color-white);
  border: 2px solid var(--color-white);
}
.c-btn.is-allWhite:hover {
  color: var(--color-white);
  background-color: var(--pink02);
  border: 2px solid var(--pink02);
}
.c-btn--gray {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  background-color: #d9d9d9;
  border: 2px solid #d9d9d9;
  min-width: 30rem;
  width: fit-content;
  border-radius: 999px;
  padding: 1.5rem;
  line-height: 1;
  margin: 0 auto;
  transition: all 0.3s ease;
  margin-bottom: 3.2rem;
}

.c-sec-title {
  padding-bottom: 3.2rem;
  text-align: center;
}
.c-sec-title--en {
  font-family: var(--font-inter);
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 1.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 520px) {
  .c-sec-title--en {
    font-size: 1.8rem;
  }
}
.c-sec-title--ja {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 9%;
  line-height: 1.5;
}
@media screen and (max-width: 520px) {
  .c-sec-title--ja {
    font-size: 2.8rem;
  }
}
.c-sec-title--ja.is-insta {
  font-family: "Tiro Devanagari Marathi", serif;
}
.c-sec-title.is-white .c-sec-title--ja {
  text-shadow: 0 0 10px rgb(255, 255, 255), 0 5px 10px rgba(255, 255, 255, 0.2), 5px 0 10px rgba(255, 255, 255, 0.2), 0 -5px 10px rgba(255, 255, 255, 0.2), -5px 0 10px rgba(255, 255, 255, 0.2);
}
.c-sec-title.is-white .c-sec-title--en {
  color: var(--color-white) !important;
}

.js-image img {
  opacity: 0;
  transform: scale(1.1); /* 初期状態を少し大きくしておく */
  transition: transform 0.3s ease;
}

.js-image figure {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.js-image figure::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #1f5b6c;
}

.js-image.move figure::before {
  animation: barAnime forwards 1.5s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s normal;
}

.js-image figure img {
  opacity: 0;
  transform: scale(1.1);
}

.js-image.move figure img {
  animation: photoAnime forwards 1.5s 1 cubic-bezier(0.165, 0.84, 0.44, 1) 0.7s normal;
}

@keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes photoAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-title .line {
  overflow: hidden;
}

.js-concept-detail {
  opacity: 0; /* 完全に非表示に設定 */
  transform: translateY(20px); /* 下に少しずらして非表示にする */
}

.c-psItem {
  background-color: var(--color-white);
  padding: 1.6rem 2rem 2rem 4.5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 520px) {
  .c-psItem {
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: 3.7rem 2rem;
  }
}
.c-psItem__title {
  font-family: var(--font-noto-san);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  padding: 2rem 0 2.4rem;
}
@media screen and (max-width: 520px) {
  .c-psItem__title {
    padding: 0 0 2.4rem;
  }
}
.c-psItem__text {
  font-family: var(--font-noto-san);
  padding-bottom: 2.4rem;
}
.c-psItem__list {
  display: grid;
  grid-template-columns: repeat(2, 16rem);
  gap: 0 3rem;
}
@media screen and (max-width: 520px) {
  .c-psItem__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-psItem__list-item {
  font-family: var(--font-noto-san);
}
.c-psItem__list-item::before {
  content: "●";
  padding-right: 0.2em;
}
.c-psItem__list-head {
  background-color: var(--primary-color);
  color: var(--color-white);
  padding: 0 1.5em;
  width: fit-content;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.c-psItem__image {
  max-width: 36.8rem;
  padding: 1.2rem 2rem;
  background-color: #dcebda;
}
.c-psItem--r {
  display: flex;
  justify-content: center;
  align-items: center;
}

.js-ac-btn {
  --ac-width: 4rem;
  --rotate: 90deg;
}
@media screen and (max-width: 767px) {
  .js-ac-btn {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: block;
    width: var(--ac-width);
    height: var(--ac-width);
    border-radius: 999px;
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  .js-ac-btn span {
    display: block;
    width: 40%;
    height: 0.25rem;
    background-color: var(--base-color);
    grid-area: 1/1/-1/-1;
    transition: all 0.3s ease;
  }
  .js-ac-btn span:nth-of-type(1) {
    rotate: calc(var(--rotate) * -1);
  }
}
.js-ac-btn.is-open {
  --rotate: 0deg;
}

.js-ac-content {
  overflow: hidden;
  transition: all 1s ease;
  height: 0;
}

.c-sec-top {
  display: flex;
  justify-content: end;
}
.c-sec-top a {
  display: block;
  width: 5.6rem;
  aspect-ratio: 1;
  background-color: #333333;
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.c-sec-top a i {
  color: #fff;
  font-size: 3rem;
}
@media screen and (max-width: 520px) {
  .c-sec-top.--center {
    justify-content: center;
  }
}

.c-fixedLink {
  position: fixed;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-fixedLink {
    width: 100%;
  }
}
.c-fixedLink__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 17.5rem;
  background-color: #ff6200;
  writing-mode: vertical-rl;
  color: var(--color-white);
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 1.4rem;
  gap: 1rem;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.c-fixedLink__contact::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.6rem;
  background-image: url(/wp/wp-content/themes/genkikan/assets/images/common/icon-contact.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-fixedLink__contact:hover {
  opacity: 0.8;
}
.c-fixedLink__top {
  width: 6rem;
  height: 6rem;
  display: grid;
  place-items: center;
  background-color: #000000;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.c-fixedLink__top img {
  width: 40%;
}
.c-fixedLink__top:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .c-fixedLink .c-fixedLink__contact {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    writing-mode: unset;
    font-size: 14px;
  }
  .c-fixedLink .c-fixedLink__top {
    position: absolute;
    bottom: 10rem;
    width: 36px;
    height: 36px;
    right: 2rem;
  }
}

.c-page-head {
  padding: 5rem 0;
  position: relative;
}
.c-page-head__image {
  overflow: hidden;
}
.c-page-head img {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .c-page-head {
    padding: 0 0 5rem;
    overflow: hidden;
  }
  .c-page-head img {
    height: 40rem;
    object-fit: cover;
  }
}
@media screen and (max-width: 520px) {
  .c-page-head img {
    height: 20rem;
  }
}
.c-page-head__title {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 700;
  width: max-content;
  text-shadow: 0 0 10px rgb(255, 255, 255), 0 5px 10px rgba(255, 255, 255, 0.7), 5px 0 10px rgba(255, 255, 255, 0.7), 0 -5px 10px rgba(255, 255, 255, 0.7), -5px 0 10px rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .c-page-head__title {
    text-align: center;
  }
}
@media screen and (max-width: 520px) {
  .c-page-head__title {
    font-size: 3rem;
    width: 100%;
    text-align: center;
    top: 50%;
  }
}

.c-contact {
  padding-top: 6.4rem;
}
.c-contact .c-sec-title--en {
  color: var(--pink02) !important;
}
.c-contact__lead {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 520px) {
  .c-contact__lead {
    font-size: 1.8rem;
    padding-bottom: 4rem;
  }
}
.c-contact__btn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.8rem;
}
@media screen and (max-width: 767px) {
  .c-contact__btn {
    grid-template-columns: 1fr;
  }
}
.c-contact__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 0;
  border-radius: 20px;
  background-color: var(--color-white);
  border: 4px solid var(--primary-color);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
@media screen and (max-width: 520px) {
  .c-contact__btn a {
    height: 9rem;
    font-size: 1.8rem;
  }
}
.c-contact__btn a:nth-of-type(1)::before {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background-color: var(--primary-color);
  margin-right: 1rem;
  mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/icon-contact.svg"); /*マスクレイヤーとして使用する画像*/
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/icon-contact.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 520px) {
  .c-contact__btn a:nth-of-type(1)::before {
    width: 3.2rem;
    height: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-contact__btn a:nth-of-type(1) {
    margin-bottom: 14rem;
  }
}
@media screen and (max-width: 520px) {
  .c-contact__btn a:nth-of-type(1) {
    margin-bottom: 12rem;
  }
}
.c-contact__btn a:hover {
  background-color: var(--primary-color);
  color: var(--color-white);
}
.c-contact__btn a:hover:nth-of-type(1)::before {
  background-color: var(--color-white);
}
.c-contact__btn a.is-genkikan, .c-contact__btn a.is-happy {
  flex-direction: column;
  line-height: 1.2;
}
.c-contact__btn a.is-genkikan .c-in-tel, .c-contact__btn a.is-happy .c-in-tel {
  padding-bottom: 0.25rem;
  font-family: var(--font-inter);
}
.c-contact__btn a.is-genkikan .c-in-tel span, .c-contact__btn a.is-happy .c-in-tel span {
  font-size: 1.6rem;
}
@media screen and (max-width: 520px) {
  .c-contact__btn a.is-genkikan .c-in-tel span, .c-contact__btn a.is-happy .c-in-tel span {
    font-size: 1.4rem;
  }
}
.c-contact__btn a.is-genkikan .c-in-time, .c-contact__btn a.is-happy .c-in-time {
  font-size: 1.2rem;
  color: var(--base-color);
}
.c-contact__btn a.is-genkikan {
  border: 4px solid var(--secondary-color);
  color: var(--secondary-color);
}
.c-contact__btn a.is-genkikan:hover {
  background-color: var(--secondary-color);
  color: var(--color-white);
}
.c-contact__btn a.is-happy {
  position: relative;
}
.c-contact__btn a.is-happy::after {
  position: absolute;
  right: -10rem;
  top: -20rem;
  z-index: -1;
  content: "";
  width: 26rem;
  height: 26rem;
  background: url("/wp/wp-content//themes/genkikan/assets/images/common/contact-kappa.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-contact__btn a.is-happy::after {
    width: 20rem;
    height: 20rem;
    top: -30.5rem;
    right: 1rem;
  }
}
@media screen and (max-width: 520px) {
  .c-contact__btn a.is-happy::after {
    width: 20rem;
    height: 20rem;
    top: -28.5rem;
    right: 1rem;
  }
}
.c-contact__message {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.8rem;
  background-color: var(--color-white);
  padding: 5rem 0;
  transform: translateY(5rem);
  mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/contact-mask.svg"); /*マスクレイヤーとして使用する画像*/
  mask-repeat: no-repeat;
  mask-size: auto 100%;
  mask-position: center;
  -webkit-mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/contact-mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 100%;
  -webkit-mask-position: center;
}
@media screen and (max-width: 767px) {
  .c-contact__message {
    mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/contact-mask--tab.svg"); /*マスクレイヤーとして使用する画像*/
    mask-repeat: no-repeat;
    mask-size: auto 100%;
    mask-position: center;
    -webkit-mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/contact-mask--tab.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: auto 100%;
    -webkit-mask-position: center;
  }
}
@media screen and (max-width: 520px) {
  .c-contact__message {
    mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/contact-mask--sp.svg"); /*マスクレイヤーとして使用する画像*/
    mask-repeat: no-repeat;
    mask-size: auto 100%;
    mask-position: center;
    -webkit-mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/contact-mask--sp.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: auto 100%;
    -webkit-mask-position: center;
  }
}
.c-contact__message h3 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .c-contact__message h3 {
    text-align: center;
  }
}
@media screen and (max-width: 520px) {
  .c-contact__message h3 {
    font-size: 2.4rem;
  }
}
.c-contact__message p {
  max-width: 79rem;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-contact__message p {
    max-width: 50rem;
  }
}
@media screen and (max-width: 520px) {
  .c-contact__message p {
    font-size: 1.8rem;
    max-width: 24.6rem;
    line-height: 1.8;
  }
}
.c-contact__message p:nth-last-of-type(1) {
  position: relative;
  font-size: 3.2rem;
  padding: 0 3rem;
  --contact-deco: 40deg;
}
@media screen and (max-width: 767px) {
  .c-contact__message p:nth-last-of-type(1) {
    text-align: center;
    --contact-deco: 20deg;
  }
}
@media screen and (max-width: 520px) {
  .c-contact__message p:nth-last-of-type(1) {
    width: 100%;
    font-size: 2.4rem;
    text-align: center;
    word-break: keep-all;
    line-height: 1.25;
    --contact-deco: 20deg;
  }
}
.c-contact__message p:nth-last-of-type(1)::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 2px;
  height: 6.5192rem;
  background-color: var(--primary-color);
  rotate: calc(var(--contact-deco) * -1);
}
@media screen and (max-width: 767px) {
  .c-contact__message p:nth-last-of-type(1)::before {
    top: auto;
    bottom: 0;
  }
}
.c-contact__message p:nth-last-of-type(1)::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 2px;
  height: 6.5192rem;
  background-color: var(--primary-color);
  rotate: calc(var(--contact-deco) * 1);
}
@media screen and (max-width: 767px) {
  .c-contact__message p:nth-last-of-type(1)::after {
    top: auto;
    bottom: 0;
  }
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  margin-top: 3.2rem;
}
.c-pagination span,
.c-pagination a {
  min-width: 5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 0.5rem;
  border: 2px solid var(--pink02);
  background: var(--color-white);
  color: var(--pink02);
}
.c-pagination .page-numbers.current {
  background: var(--pink02);
  color: var(--color-white);
}
.c-pagination .next,
.c-pagination .prev {
  color: var(--pink02);
  border: none;
  background: transparent;
}

.p-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
  opacity: 1;
  transition: top 1s ease, opacity 1s ease;
}
.p-header.is-scroll {
  position: fixed;
  transform: translateY(-30rem);
  background-color: var(--bg-color);
  top: 0;
  left: 0;
  opacity: 0;
}
.p-header.is-scroll .p-header__logo {
  background: none;
  height: 12rem;
}
.p-header.is-scroll .p-header__logo h1 {
  top: 0;
}
.p-header.is-scroll .p-header__logo a {
  width: 22.8rem;
}
.p-header.is-scroll .p-header__logo a.is-defo {
  display: none;
}
.p-header.is-scroll .p-header__logo a.is-fix {
  display: block;
}
.p-header.is-fix {
  position: fixed;
  top: 30rem;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  transform: translateY(-30rem);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-header.is-fix {
    height: 16vw;
  }
}
.p-header.is-fix .p-header__logo {
  background: none;
  height: 12rem;
}
.p-header.is-fix .p-header__logo h1 {
  top: 0;
}
.p-header.is-fix .p-header__logo a {
  width: 22.8rem;
}
@media screen and (max-width: 520px) {
  .p-header.is-fix .p-header__logo a {
    width: 11rem;
  }
}
.p-header.is-fix .p-header__logo a.is-defo {
  display: none;
}
.p-header.is-fix .p-header__logo a.is-fix {
  display: block;
}
.p-header__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 35.7rem;
  height: 40rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/logo_bg.png) no-repeat;
  background-size: 35.7rem 40rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 20rem;
    height: 22.4rem;
    background-size: 20rem 22.4rem;
  }
}
@media screen and (max-width: 520px) {
  .p-header__logo {
    max-width: 10rem;
    height: 11.2rem;
    background-size: 10rem 11.2rem;
  }
}
.p-header__logo h1,
.p-header__logo div {
  position: absolute;
  top: 3rem;
  left: 12%;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-header__logo h1,
  .p-header__logo div {
    top: 2rem;
    left: 15%;
  }
}
@media screen and (max-width: 520px) {
  .p-header__logo h1,
  .p-header__logo div {
    top: 1rem;
    left: 15%;
  }
}
.p-header__logo a {
  display: block;
  width: 17rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    width: 10rem;
  }
}
@media screen and (max-width: 520px) {
  .p-header__logo a {
    width: 5rem;
  }
}
.p-header__logo a.is-fix {
  display: none;
}
.p-header__menu {
  padding: 1.4rem 22rem 1.4rem 35.7rem;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-header__menu {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: calc(100dvh - 10rem);
    padding: 0 2rem;
    background: var(--bg-color);
    transition: all 0.3s ease;
    overflow-y: scroll;
  }
}
.p-header__menu.is-active {
  opacity: 1;
  visibility: visible;
  top: 0;
  left: 0;
}
.p-header__menu-list {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-header__menu-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 25rem;
  }
}
@media screen and (max-width: 520px) {
  .p-header__menu-list {
    padding-top: 12rem;
  }
}
.p-header__menu-list-item {
  position: relative;
  width: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-header__menu-list-item {
    width: 100%;
    border-bottom: 1px solid var(--base-color);
    padding: 1.6rem 2rem;
  }
}
.p-header__menu-list-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__menu-list-item a {
    flex-direction: row;
    justify-content: start;
    width: 100%;
    gap: 2rem;
  }
}
.p-header__menu-list-item a:has(.js-ac-btn) {
  position: relative;
}
.p-header__menu-icon {
  --wh: 3.5rem;
  width: var(--wh);
  height: var(--wh);
  margin-bottom: 0.8rem;
}
.p-header__menu-text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-header__menu-text {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}
.p-header__menu-text--ja {
  font-size: 1.6rem;
  font-weight: 700;
}
.p-header__menu-text--en {
  font-family: var(--font-inter);
  font-size: 1.4rem;
}
.p-header__subMenu-list {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 200%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  background-color: var(--color-white);
  padding: 1em;
  border-radius: 10px;
}
.p-header__subMenu-list-item {
  font-weight: 700;
  padding: 0.5em 0;
}
@media screen and (max-width: 767px) {
  .p-header__subMenu-list {
    opacity: 1;
    visibility: visible;
    position: relative;
    width: 100%;
    background-color: unset;
  }
}
.p-header__contact {
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 21rem;
  background-color: var(--primary-color);
  border-radius: 0 0 0 2.4rem;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .p-header__contact {
    display: none;
  }
}
.p-header__contact a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
}
.p-header__contact-icon {
  position: relative;
  width: 4rem;
  padding-bottom: 2.7rem;
}
.p-header__contact-icon:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 10rem;
  background-color: var(--color-white);
  bottom: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
}
.p-header__contact--ja {
  font-size: 1.6rem;
  font-weight: 700;
}
.p-header__contact--en {
  font-family: var(--font-inter);
  font-size: 1.2rem;
  font-weight: 700;
}
.p-header__contact-num {
  font-family: var(--font-inter);
  font-size: 1.7rem;
  font-weight: 700;
}
.p-header__contact-time {
  font-family: var(--font-inter);
  font-size: 1.2rem;
  font-weight: 700;
}

.p-header__menu-list-item:nth-of-type(1) .p-header__menu-icon {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/icon-service.png) no-repeat;
  background-size: cover;
}
.p-header__menu-list-item:nth-of-type(2) .p-header__menu-icon {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/icon-facility.png) no-repeat;
  background-size: cover;
}
.p-header__menu-list-item:nth-of-type(3) .p-header__menu-icon {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/icon-outline.png) no-repeat;
  background-size: cover;
}
.p-header__menu-list-item:nth-of-type(4) .p-header__menu-icon {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/icon-access.png) no-repeat;
  background-size: cover;
}
.p-header__menu-list-item:nth-of-type(5) .p-header__menu-icon {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/icon-availability.png) no-repeat;
  background-size: cover;
}
.p-header__menu-list-item:nth-of-type(6) .p-header__menu-icon {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/icon-recruit.png) no-repeat;
  background-size: cover;
}
.p-header__menu-list-item:nth-of-type(7) .p-header__menu-icon {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/icon-news.png) no-repeat;
  background-size: cover;
}

.p-header__menu-list-item a {
  transition: all 0.3s ease;
}
.p-header__menu-list-item a .p-header__menu-icon {
  transition: all 0.3s ease;
}
.p-header__menu-list-item a:hover {
  color: var(--primary-color);
}
.p-header__menu-list-item a:hover .p-header__menu-icon {
  transform: scale(0.85);
}
.p-header__menu-list-item a:hover .p-header__subMenu-list {
  opacity: 1;
  visibility: visible;
}

.p-header__menu-list-item:hover .p-header__subMenu-list {
  opacity: 1;
  visibility: visible;
}

.p-footer {
  position: relative;
  padding: 3.2rem 6.4rem;
  background-color: var(--color-white);
  display: flex;
  justify-content: space-between;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 3.2rem 2rem;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}
.p-footer::before {
  position: absolute;
  top: -3.385vw;
  left: 0;
  content: "";
  width: 100%;
  height: 3.385vw;
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/wave-white.svg) no-repeat;
  background-size: cover;
}
.p-footer__btn {
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.p-footer__btn-item {
  height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  color: var(--color-white);
}
.p-footer__btn-item:nth-of-type(1), .p-footer__btn-item:nth-of-type(3) {
  background: var(--primary-color);
}
.p-footer__btn-item:nth-of-type(2) {
  background: var(--secondary-color);
}
.p-footer__btn-item-icon {
  max-width: 3.6rem;
}
.p-footer__image {
  max-height: 52rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-footer__image {
    overflow: hidden;
  }
  .p-footer__image img {
    height: 30rem;
    object-fit: cover;
    object-position: center;
  }
}
@media screen and (max-width: 520px) {
  .p-footer__image img {
    height: 20rem;
  }
}
.p-footer__facility {
  display: flex;
  gap: 3.2rem;
  flex: 1;
}
@media screen and (max-width: 520px) {
  .p-footer__facility {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__facility-item {
    width: max-content;
  }
}
.p-footer__facility-item .p-in-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.p-footer__facility-item .p-in-name span {
  font-size: 1.8rem;
  display: block;
}
.p-footer__facility-item address {
  font-size: 1.2rem;
}
.p-footer__facility-item a {
  margin-bottom: 1rem;
  font-weight: 700;
}
.p-footer__facility-item a span {
  font-size: 3rem;
}
.p-footer__facility-item a.is-genkikan {
  color: var(--secondary-color);
}
.p-footer__facility-item a.is-happy {
  color: var(--primary-color);
}
.p-footer__facility-item .p-in-detail {
  display: grid;
  gap: 0.7rem;
}
.p-footer__facility-item .p-in-detail .p-in-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.p-footer__facility-item .p-in-detail .p-in-wrap dt {
  min-width: 6.2rem;
  color: var(--color-white);
  background-color: #d9d9d9;
  text-align: center;
  border-radius: 999px;
  height: 2rem;
}
.p-footer__nav {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    display: none;
  }
}
.p-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
}
.p-footer__nav-list-item {
  font-weight: 700;
}
.p-footer__nav-list-item a {
  display: block;
  margin-bottom: 1.8rem;
}
.p-footer__nav-list-item ul {
  display: grid;
  gap: 1.2rem;
  font-size: 1.2rem;
}
.p-footer__nav-list-item ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.p-footer__nav-list-item ul li::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary-color);
  border-radius: 999px;
}
.p-footer__nav-list-item ul li a {
  margin-bottom: 0;
}
.p-footer__copyright {
  background-color: var(--primary-color);
  color: var(--color-white);
  font-size: 1.2rem;
  text-align: center;
  height: 3.2rem;
  display: grid;
  place-items: center;
}

.p-header__hamburger {
  --opacity: 1;
  --rotate: 0;
  --translate: 2vw;
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.666vw;
  height: 20vw;
  border-radius: 0 0 0 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
}
.p-header__hamburger.is-active {
  --opacity: 0;
  --rotate: 45deg;
  --translate: 0;
}
.p-header__hamburger-icon {
  display: grid;
  place-items: center;
  width: 35%;
  aspect-ratio: 1;
  margin-bottom: 0.2rem;
}
.p-header__hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background-color: var(--color-white);
  grid-area: 1/1/-1/-1;
  transition: all 0.3s ease;
}
.p-header__hamburger-icon span:nth-child(1) {
  opacity: var(--opacity);
}
.p-header__hamburger-icon span:nth-child(2) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.p-header__hamburger-icon span:nth-child(3) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}
@media screen and (max-width: 520px) {
  .p-header__hamburger-icon span {
    height: 2px;
  }
}
.p-header__hamburger p {
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
@media screen and (max-width: 520px) {
  .p-header__hamburger p {
    font-size: 1.3rem;
  }
}

.p-mv {
  padding-bottom: var(--sec-padding);
  position: relative;
  z-index: 10;
}
.p-mv::before {
  position: absolute;
  top: 15rem;
  left: 0;
  content: "";
  width: 50rem;
  height: 41rem;
  display: block;
  background: url(/wp/wp-content/themes/genkikan/assets/images/top/mv-deco01.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-mv::before {
    width: 25rem;
    height: 20rem;
    top: 10rem;
  }
}
@media screen and (max-width: 520px) {
  .p-mv::before {
    width: 10rem;
    height: 10rem;
    top: 4rem;
  }
}
.p-mv::after {
  position: absolute;
  z-index: 2;
  bottom: 5rem;
  right: 0;
  content: "";
  display: block;
  width: 20.151rem;
  height: 28.5rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/top/mv-deco02.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-mv::after {
    bottom: 2.5rem;
    width: 13.434rem;
    height: 19rem;
  }
}
@media screen and (max-width: 520px) {
  .p-mv::after {
    bottom: -2rem;
    width: 10.0755rem;
    height: 14.25rem;
  }
}
.p-mv__slider {
  position: relative;
  z-index: -1;
  max-width: 90%;
  margin: 0 auto;
  mask-image: url("/wp/wp-content/themes/genkikan/assets/images/top/mv-mask.svg"); /*マスクレイヤーとして使用する画像*/
  mask-repeat: no-repeat;
  mask-size: auto 100%;
  mask-position: center;
  -webkit-mask-image: url("/wp/wp-content//themes/genkikan/assets/images/top/mv-mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 100%;
  -webkit-mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-mv__slider {
    max-width: 100%;
    mask-image: url("/wp/wp-content/themes/genkikan/assets/images/top/mv-mask--sp.svg"); /*マスクレイヤーとして使用する画像*/
    -webkit-mask-image: url("/wp/wp-content//themes/genkikan/assets/images/top/mv-mask--sp.svg");
  }
}
.p-mv__message {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 67rem;
}
@media screen and (max-width: 767px) {
  .p-mv__message {
    max-width: 90%;
    width: 100%;
    top: 65%;
  }
}

.p-top-news {
  display: flex;
  justify-content: space-between;
  padding: var(--sec-padding);
}
@media screen and (max-width: 767px) {
  .p-top-news {
    flex-direction: column;
  }
  .p-top-news .c-sec-title {
    padding-bottom: 0;
  }
}
.p-top-news__list {
  padding: 4rem 7.2rem;
  background-color: var(--color-white);
  width: 100%;
  max-width: 86rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    padding: 2rem 4rem;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-top-news__list {
    padding: 2rem 1.2rem;
  }
}
.p-top-news__list-item {
  border-bottom: 1px dashed var(--base-color);
  padding: 1.2rem 3.2rem;
}
@media screen and (max-width: 520px) {
  .p-top-news__list-item {
    padding: 1.2rem;
  }
}
.p-top-news__list-item a {
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 520px) {
  .p-top-news__list-item a {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 1.2rem;
  }
}
.p-top-news__date {
  font-weight: 700;
}
.p-top-news__category {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  border-radius: 999px;
  padding: 0.1rem 1em;
  min-width: 7.2rem;
  text-align: center;
}
.p-top-news__category.-genkikan {
  background-color: var(--secondary-color);
}
.p-top-news__category.-happy {
  background-color: var(--primary-color);
}
@media screen and (max-width: 520px) {
  .p-top-news__category {
    width: fit-content;
  }
}
.p-top-news__title {
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .p-top-news__title {
    grid-column: span 2;
  }
}
.p-top-news__btn {
  color: var(--color-white);
  background-color: var(--primary-color);
  display: grid;
  place-items: center;
  padding: 2.2rem;
  border-radius: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .p-top-news__btn {
    padding: 1.2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-top-news .c-sec-title {
    text-align: center !important;
  }
}

.p-top-open {
  background-color: var(--color-white);
  padding: 4rem;
  border-radius: 1rem;
}
.p-top-open__title {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  padding-bottom: 4rem;
}
@media screen and (max-width: 520px) {
  .p-top-open__title {
    font-size: 2.8rem;
  }
}
.p-top-open__btn {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  padding: 0.5rem;
  transition: all 0.3s ease;
}
.p-top-open__btn-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 87.6rem;
  margin: 0 auto;
  gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-open__btn-wrap {
    max-width: 100%;
    gap: 2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-top-open__btn-wrap {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-top-open__btn {
    font-size: 1.8rem;
  }
}
.p-top-open__btn:nth-of-type(1) {
  background-color: var(--blue01);
  border: 2px solid var(--blue01);
}
.p-top-open__btn:nth-of-type(2) {
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
.p-top-open__btn:nth-of-type(3) {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.p-top-open__btn::after {
  font: var(--fa-font-solid);
  content: "\f061";
  position: absolute;
  right: 2rem;
}
.p-top-open__btn:hover {
  background-color: #fff;
}
.p-top-open__btn:hover:nth-of-type(1) {
  color: var(--blue01);
}
.p-top-open__btn:hover:nth-of-type(2) {
  color: var(--secondary-color);
}
.p-top-open__btn:hover:nth-of-type(3) {
  color: var(--primary-color);
}

.p-top-about {
  padding: 14rem 0 22rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 520px) {
  .p-top-about {
    padding: 6.4rem 0 22rem;
  }
}
.p-top-about .c-sec-title {
  position: relative;
  z-index: 1;
}
.p-top-about::after {
  position: absolute;
  z-index: 2;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(/wp/wp-content/themes/genkikan/assets/images/top/top-about-deco.webp) no-repeat;
  background-position: bottom;
  background-size: 100%;
  bottom: -1px;
}
.p-top-about__contents {
  position: relative;
  width: 100%;
  max-width: 77.7rem;
  margin: 0 auto;
  padding: 12rem 0 12rem;
}
.p-top-about__contents::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  min-height: 58.6rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/top/about-bg.svg) no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .p-top-about__contents::before {
    background: url(/wp/wp-content/themes/genkikan/assets/images/top//about-bg--sp.svg) no-repeat;
    background-size: cover;
  }
}
.p-top-about__txt {
  position: relative;
  font-size: 2rem;
  max-width: 50rem;
  margin: 0 auto;
  font-weight: 500;
  z-index: 1;
}
@media screen and (max-width: 520px) {
  .p-top-about__txt {
    max-width: 24.6rem;
  }
}
.p-top-about__txt::before {
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  width: 13.05rem;
  height: 12.2rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/top/about-happy.png) no-repeat;
  background-size: cover;
  top: 0;
  left: -20rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__txt::before {
    top: -12rem;
    left: -4rem;
    width: 9.7875rem;
    height: 9.15rem;
  }
}
@media screen and (max-width: 520px) {
  .p-top-about__txt::before {
    top: -21rem;
    left: -6rem;
    width: 9.7875rem;
    height: 9.15rem;
  }
}
.p-top-about__txt::after {
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  width: 13.7rem;
  height: 13.1rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/top/about-genkikan.png) no-repeat;
  background-size: cover;
  top: 7rem;
  right: -20rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__txt::after {
    top: -12rem;
    right: -6rem;
    width: 10.275rem;
    height: 9.825rem;
  }
}
@media screen and (max-width: 520px) {
  .p-top-about__txt::after {
    top: auto;
    bottom: -8rem;
    right: 0;
    width: 10.275rem;
    height: 9.825rem;
  }
}
.p-top-about__deco {
  position: absolute;
  z-index: 5;
  bottom: 0;
  right: -32rem;
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__deco {
    right: 2rem;
    width: 28rem;
    bottom: -18rem;
  }
}

.p-top-service {
  padding: var(--sec-padding);
}
.p-top-service__contents {
  position: relative;
  padding-bottom: 12.8rem;
}
.p-top-service__contents::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 4.8vw;
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/big-wave-orange.svg) no-repeat;
  background-size: 100%;
  background-position: bottom;
  bottom: 0;
  left: 0;
}
.p-top-service__contents-item {
  display: flex;
  align-items: end;
  gap: 6.4rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__contents-item {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 520px) {
  .p-top-service__contents-item {
    gap: 3.2rem;
  }
}
.p-top-service__contents-item:nth-last-of-type(1) {
  padding-bottom: 0;
}
.p-top-service__contents-item:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-top-service__contents-item:nth-of-type(2) {
    flex-direction: column;
    align-items: center;
  }
}
.p-top-service__contents-item:nth-of-type(2) .p-top-service__image {
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__contents-item:nth-of-type(2) .p-top-service__image {
    border-radius: 2rem;
  }
}
.p-top-service__contents-item .p-top-service__image {
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-service__contents-item .p-top-service__image {
    border-radius: 2rem;
  }
}
.p-top-service__image {
  width: 100%;
  max-width: 62.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__image {
    max-width: 100%;
  }
}
.p-top-service__detail {
  max-width: 45.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__detail {
    max-width: 100%;
  }
}
.p-top-service__title {
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__title {
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  .p-top-service__title {
    font-size: 2.4rem;
    margin: 0;
    padding-bottom: 1.6rem;
  }
}
.p-top-service__title::before {
  position: absolute;
  content: "";
  display: block;
  --wh: 8.8rem;
  width: var(--wh);
  height: var(--wh);
  background-color: #feefb3;
  border-radius: 999px;
  z-index: -1;
  top: calc(var(--wh) / -2);
  left: calc(var(--wh) / -2);
}
@media screen and (max-width: 520px) {
  .p-top-service__title::before {
    --wh: 6.4rem;
    left: 0;
    top: calc(var(--wh) / -3);
  }
}
.p-top-service__text {
  font-weight: 500;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 520px) {
  .p-top-service__text {
    font-size: 1.4rem;
  }
}
.p-top-service__day {
  background-color: var(--color-orange);
  position: relative;
  padding-bottom: 12.8rem;
}
@media screen and (max-width: 520px) {
  .p-top-service__day {
    padding: 3.2rem 0;
  }
}
.p-top-service__day::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 8.3rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/wave-beige.svg) no-repeat;
  background-size: 100%;
  background-position: bottom;
  bottom: -3px;
  left: 0;
}
.p-top-service__day-title {
  color: var(--color-white);
  font-size: 3.2rem;
  font-weight: 700;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__day-title {
    text-align: center;
  }
}
@media screen and (max-width: 520px) {
  .p-top-service__day-title {
    font-size: 2.8rem;
  }
}
.p-top-service__day-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-service__day-col {
    flex-direction: column;
    gap: 6.4rem;
  }
}
.p-top-service__day-col-item {
  max-width: 48.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__day-col-item {
    max-width: 100%;
  }
}
.p-top-service__day-col-item .p-in-image {
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 1.6rem;
}
.p-top-service__day-col-item .p-in-name {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.8rem;
}
.p-top-service__day-col-item .p-in-text {
  color: var(--color-white);
  font-weight: 500;
  padding-bottom: 1em;
}
.p-top-service__day-col-line {
  background-color: var(--color-white);
  position: relative;
  width: 1px;
  height: 40rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__day-col-line {
    display: none;
  }
}

.p-top-facility {
  padding: var(--sec-padding);
  position: relative;
}
.p-top-facility::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 8.3rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/wave-white.svg) no-repeat;
  background-size: 100%;
  background-position: bottom;
  bottom: -1px;
  left: 0;
}
.p-top-facility__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-facility__contents {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 3.2rem;
  }
}
.p-top-facility__title {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 14rem;
  height: 5rem;
  z-index: 10;
  background-color: #fefaf4;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 0 2rem 0 0;
}
.p-top-facility__slide {
  position: relative;
  margin-bottom: 2rem;
}
.p-top-facility__slide .swiper-slide {
  border-radius: 2rem 2rem 2rem 0;
  overflow: hidden;
}

.swiper-pagination {
  position: static !important;
  padding: 0.5em 0;
}

.swiper-pagination-bullet {
  width: 1.6rem !important;
  height: 1.6rem !important;
  margin: 0 0 0 10px !important;
  background: var(--primary-color) !important;
}

.p-top-letter {
  padding: var(--sec-padding);
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.p-top-letter__image {
  overflow: hidden;
}
.p-top-letter__image img {
  transition: all 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 767px) {
  .p-top-letter__contents {
    padding: 0 2rem;
  }
}
.p-top-letter__list {
  max-width: min(137rem, 100% - 4rem);
  display: grid;
  grid-template-columns: repeat(4, 32rem);
  gap: 3rem;
  margin: 0 auto;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-letter__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-top-letter__list {
    margin-bottom: 3.2rem;
  }
}
.p-top-letter__list-item {
  max-width: 32rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-letter__list-item {
    max-width: 100%;
  }
}
.p-top-letter__list-item:hover .p-top-letter__image img {
  transform: scale(1.05);
}
.p-top-letter__date {
  font-weight: 500;
  text-align: center;
}
.p-top-letter__title {
  margin-top: 1.6rem;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .p-top-letter__title {
    font-size: 1.6rem;
    margin-top: 0.5em;
  }
}
.p-top-letter__facility {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  background: var(--pink02);
  width: fit-content;
  color: var(--color-white);
  padding: 0.2em 2em;
  border-radius: 999px;
  margin: 1rem auto 0;
}
.p-top-letter__facility.is-genkikan {
  background: var(--yellow02);
}
.p-top-letter__facility.is-happy {
  background: var(--pink02);
}

.p-top-insta {
  padding: 6.4rem 0 0 0;
}
.p-top-insta .c-sec-title {
  padding-bottom: 4.8vw;
}
.p-top-insta__container {
  position: relative;
  z-index: 5;
  padding-bottom: 4.8vw;
}
@media screen and (max-width: 520px) {
  .p-top-insta__container {
    padding-bottom: 3.2rem;
  }
}
.p-top-insta__container.is-happy {
  background-color: #fbd6ba;
}
.p-top-insta__container.is-happy::before {
  position: absolute;
  top: -4.8vw;
  content: "";
  display: block;
  width: 100%;
  height: 4.8vw;
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/big-wave-lightOrange.svg) no-repeat;
  background-size: cover;
  background-position: bottom;
}
.p-top-insta__container.is-happy .p-top-insta__list-item::after {
  background-color: #feefb3;
}
.p-top-insta__container.is-genkikan {
  background-color: #feefb3;
}
.p-top-insta__container.is-genkikan::before {
  position: absolute;
  top: -4.8vw;
  content: "";
  display: block;
  width: 100%;
  height: 4.8vw;
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/big-wave-yellow.svg) no-repeat;
  background-size: cover;
  background-position: bottom;
}
.p-top-insta__container.is-genkikan .p-top-insta__list-item::after {
  background-color: #fbd6ba;
}
.p-top-insta .is-genkikan #sb_instagram #sbi_images > div::after {
  background-color: #fbd6ba;
}
.p-top-insta #sb_instagram {
  max-width: min(137rem, 100% - 4rem);
}
.p-top-insta #sb_instagram .sb_instagram_header .sbi_header_text,
.p-top-insta #sb_instagram .sb_instagram_header .sbi_header_text {
  flex-direction: column;
  gap: 1rem;
}
.p-top-insta #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,
.p-top-insta #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3 {
  font-weight: 700;
}
.p-top-insta #sb_instagram #sbi_images > div {
  position: relative;
  height: fit-content;
  border-radius: 2.4rem;
}
@media screen and (max-width: 520px) {
  .p-top-insta #sb_instagram #sbi_images > div {
    border-radius: 1.2rem;
  }
}
.p-top-insta #sb_instagram #sbi_images > div:nth-of-type(2n - 1) {
  margin-top: 3rem !important;
}
@media screen and (max-width: 520px) {
  .p-top-insta #sb_instagram #sbi_images > div:nth-of-type(2n - 1) {
    margin: 0 !important;
  }
}
.p-top-insta #sb_instagram #sbi_images > div::after {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2.4rem;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .p-top-insta #sb_instagram #sbi_images > div::after {
    bottom: -0.5rem;
    right: -0.5rem;
    border-radius: 1.2rem;
  }
}
.p-top-insta__profile-icon {
  max-width: 6rem;
  aspect-ratio: 1;
  border-radius: 999px;
  margin: 0 auto;
}
.p-top-insta__profile-id {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .p-top-insta__profile {
    padding: 2.4rem 0;
  }
}
.p-top-insta__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-insta__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 520px) {
  .p-top-insta__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 2rem;
    gap: 2rem;
    margin-bottom: 3.2rem;
  }
}
.p-top-insta__list-item {
  position: relative;
  z-index: 1;
}
.p-top-insta__list-item img {
  max-width: 32rem;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2.4rem;
}
@media screen and (max-width: 520px) {
  .p-top-insta__list-item img {
    border-radius: 1.2rem;
  }
}
.p-top-insta__list-item:nth-of-type(2n - 1) {
  margin-top: 3rem;
}
@media screen and (max-width: 520px) {
  .p-top-insta__list-item:nth-of-type(2n - 1) {
    margin: 0;
  }
}
.p-top-insta__list-item::after {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2.4rem;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  .p-top-insta__list-item::after {
    bottom: -0.5rem;
    right: -0.5rem;
    border-radius: 1.2rem;
  }
}

.p-top-recruit {
  background-color: var(--bg-color);
  position: relative;
  margin-top: 4.8;
}
@media screen and (max-width: 520px) {
  .p-top-recruit {
    margin-top: 6.4rem;
  }
}
.p-top-recruit::before {
  position: absolute;
  top: -4.8vw;
  content: "";
  display: block;
  width: 100%;
  height: 4.8vw;
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/big-wave-beige.svg) no-repeat;
  background-size: cover;
  background-position: bottom;
}
.p-top-recruit__image {
  outline: 1rem solid #fff;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .p-top-recruit__image {
    outline: 0.5rem solid #fff;
  }
}
.p-top-recruit__image img {
  transition: all 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-top-recruit__container {
  display: block;
  cursor: pointer;
  transform: translateY(8.8rem);
  position: relative;
  transition: all 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 520px) {
  .p-top-recruit__container {
    transform: translateY(2rem);
  }
}
.p-top-recruit__container:hover {
  transform: translateY(6.8rem);
}
@media screen and (max-width: 520px) {
  .p-top-recruit__container:hover {
    transform: translateY(0rem);
  }
}
.p-top-recruit__container:hover .p-top-recruit__image img {
  transform: scale(1.05);
}
.p-top-recruit__title--pc {
  position: absolute;
  top: 5.3rem;
  left: 4.6rem;
}
@media screen and (max-width: 520px) {
  .p-top-recruit__title--pc {
    display: none;
  }
}
.p-top-recruit__title--sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .p-top-recruit__title--sp {
    display: block;
  }
}
.p-top-recruit__title--sp .c-sec-title {
  padding: 0;
}
.p-top-recruit__text {
  position: absolute;
  bottom: 6.6rem;
  left: 4.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
}
@media screen and (max-width: 520px) {
  .p-top-recruit__text {
    font-size: 1.2rem;
    width: 100%;
    left: 1rem;
    bottom: 1rem;
  }
}
.p-top-recruit__text p {
  display: grid;
  gap: 1rem;
}
.p-top-recruit__text span {
  display: grid;
  place-items: center;
  background-color: var(--color-white);
  border-radius: 0.7rem;
  width: fit-content;
  height: 5.5rem;
  padding: 0 1em;
}
@media screen and (max-width: 520px) {
  .p-top-recruit__text span {
    height: 3rem;
  }
}

.bg-deco01 {
  position: absolute;
  top: 75vw;
  left: 0;
  display: block;
  width: 15rem;
  z-index: 1;
  height: calc(100% - 75vw);
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .bg-deco01 {
    width: 7.5rem;
  }
}

.bg-deco02 {
  position: absolute;
  top: 75vw;
  right: 0;
  display: block;
  width: 15rem;
  z-index: 1;
  height: calc(100% - 75vw);
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .bg-deco02 {
    width: 7.5rem;
  }
}

#yellow {
  --pageColor: var(--yellow02);
}
#yellow .c-sec-title--en {
  color: var(--pageColor);
}
#yellow .p-page-service__list-item {
  background: var(--yellow01);
}
#yellow .p-page-target {
  background: var(--yellow01);
}
#yellow .p-page-schedule__table::before {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/clock--yellow.webp) no-repeat center center/contain;
}
#yellow .c-wave {
  background: var(--yellow01);
}
#yellow .c-wave--small {
  background: var(--yellow01);
}

#pink {
  --pageColor: var(--pink02);
}
#pink .c-sec-title--en {
  color: var(--pageColor);
}
#pink .p-page-service__list-item {
  background: var(--pink01);
}
#pink .p-page-target {
  background: var(--pink01);
}
#pink .p-page-schedule__table::before {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/clock--pink.webp) no-repeat center center/contain;
}
#pink .c-wave {
  background: var(--pink01);
}
#pink .c-wave--small {
  background: var(--pink01);
}

#blue {
  --pageColor: var(--blue01);
}
#blue .c-sec-title--en {
  color: var(--blue01);
}
#blue .p-page-schedule__table {
  background-color: rgba(172, 226, 226, 0.16);
}
#blue .p-page-target {
  background: var(--blue02);
}
#blue .p-page-schedule__table::before {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/clock--blue.webp) no-repeat center center/contain;
}
#blue .c-wave {
  background: var(--blue02);
}
#blue .c-wave--small {
  background: var(--blue02);
}

#blue03 {
  --pageColor: var(--blue03);
}
#blue03 .c-sec-title--en {
  color: var(--blue03);
}
#blue03 .p-page-target {
  background: var(--blue04);
}
#blue03 .c-wave {
  background: var(--blue04);
}
#blue03 .c-wave--small {
  background: var(--blue04);
}

#common {
  --pageColor: var(--primary-color);
}
#common .c-sec-title--en {
  color: var(--primary-color);
}
#common .p-page-target {
  background: var(--orange01);
}
#common .c-wave {
  background: var(--orange01);
}
#common .c-wave--small {
  background: var(--orange01);
}
#common .p-page-service__list-item {
  background: var(--orange01);
}

.p-page-about {
  position: relative;
  padding-bottom: 4.8rem;
}
.p-page-about__text {
  width: 100%;
  max-width: 79rem;
  margin: 0 auto;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-page-about__text {
    max-width: 49.2rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 520px) {
  .p-page-about__text {
    max-width: 24.6rem;
    font-size: 1.8rem;
  }
}
.p-page-about__wrap {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 520px) {
  .p-page-about__wrap {
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
  }
}
.p-page-about__bg {
  pointer-events: none;
}
@media screen and (max-width: 520px) {
  .p-page-about__bg {
    display: none;
  }
}
.p-page-about__pdf {
  margin-bottom: 6.4rem;
}

.c-wave {
  display: block;
  width: 100%;
  height: 4.8vw;
  mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/big-wave-mask.svg"); /*マスクレイヤーとして使用する画像*/
  mask-repeat: no-repeat;
  mask-size: auto 100%;
  mask-position: center;
  -webkit-mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/big-wave-mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 100%;
  -webkit-mask-position: center;
  background-color: var(--pageColor);
}
.c-wave--small {
  display: block;
  width: 100%;
  height: 3.5vw;
  mask-repeat: no-repeat;
  mask-size: auto 100%;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 100%;
  -webkit-mask-position: center;
  background-color: var(--pageColor);
}
.c-wave--small.-top {
  mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/wave-mask--top.svg"); /*マスクレイヤーとして使用する画像*/
  -webkit-mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/wave-mask--top.svg");
}
.c-wave--small.-bottom {
  mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/wave-mask--bottom.svg"); /*マスクレイヤーとして使用する画像*/
  -webkit-mask-image: url("/wp/wp-content//themes/genkikan/assets/images/common/wave-mask--bottom.svg");
}
.c-wave--small.-white {
  background-color: var(--color-white) !important;
}

.p-page-target {
  position: relative;
  padding: 6.4rem 0 12.8rem;
  background-color: var(--pageColor);
}
@media screen and (max-width: 520px) {
  .p-page-target {
    padding: 6.4rem 0;
  }
}
.p-page-target__container {
  background-color: #fff;
  padding: 4.8rem 0;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .p-page-target__container {
    padding: 4rem 3.2rem;
  }
}
.p-page-target__container h2 {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.2rem;
  color: var(--pageColor);
}
@media screen and (max-width: 767px) {
  .p-page-target__container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
.p-page-target__list {
  width: fit-content;
  margin: 0 auto;
}
.p-page-target__list-item {
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-page-target__list-item {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-target__list-item {
    font-size: 1.8rem;
    padding-bottom: 0.5em;
  }
}
.p-page-target__list-item::before {
  content: "●";
  padding-right: 0.2em;
}

.p-page-schedule {
  padding: var(--sec-padding);
}
@media screen and (max-width: 520px) {
  .p-page-schedule {
    padding: 6.4rem 0 12.8rem;
  }
}
.p-page-schedule__title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: var(--pageColor);
  margin-bottom: 3.2rem;
}
.p-page-schedule__table {
  position: relative;
  width: 100%;
  display: block;
  background-color: #fef3e0;
  border-radius: 2rem;
  padding: 7rem 0;
  line-height: 4.3rem;
}
@media screen and (max-width: 520px) {
  .p-page-schedule__table {
    padding: 4rem 0;
    line-height: 1.8;
  }
}
.p-page-schedule__table::before {
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  width: 8.8rem;
  height: 8.8rem;
  top: 7rem;
  right: 16rem;
}
@media screen and (max-width: 520px) {
  .p-page-schedule__table::before {
    top: 4rem;
    right: 3rem;
    width: 6rem;
    height: 6rem;
  }
}
.p-page-schedule__table::after {
  content: "";
  width: 18rem;
  height: 22.2rem;
  display: block;
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/kappy_pointer.webp) no-repeat center center/contain;
  position: absolute;
  bottom: -10rem;
  left: -8rem;
}
@media screen and (max-width: 767px) {
  .p-page-schedule__table::after {
    left: 0;
    bottom: -12rem;
  }
}
@media screen and (max-width: 520px) {
  .p-page-schedule__table::after {
    width: 15.2rem;
    height: 18.6rem;
  }
}
.p-page-schedule__table.is-island::after {
  content: "";
  width: 18rem;
  height: 22.2rem;
  display: block;
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/kappy_pointerLeft.webp) no-repeat center center/contain;
  position: absolute;
  bottom: 0rem;
  left: auto;
  right: 15rem;
}
@media screen and (max-width: 520px) {
  .p-page-schedule__table.is-island::after {
    width: 15.2rem;
    height: 18.6rem;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-page-schedule__table tr {
    display: grid;
    position: relative;
    padding-bottom: 6rem;
  }
  .p-page-schedule__table tr::before {
    position: absolute;
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background-color: var(--pageColor);
    border-radius: 999px;
    top: 60%;
    left: 4.3rem;
    transform: translateY(-50%);
  }
  .p-page-schedule__table tr:nth-last-of-type(1)::before {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .p-page-schedule__table tr {
    padding-bottom: 3rem;
  }
  .p-page-schedule__table tr::before {
    top: 2.6rem;
    left: 2.6rem;
    transform: none;
  }
  .p-page-schedule__table tr:nth-last-of-type(1)::before {
    display: none;
  }
}
.p-page-schedule__table th {
  font-size: 3.2rem;
  color: var(--pageColor);
  padding: 1.4rem 8rem;
  border-right: 2px solid var(--pageColor);
  text-align: end;
  vertical-align: middle;
  font-family: din-2014-narrow, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-page-schedule__table th {
    position: relative;
    text-align: start;
    padding: 0 0 0 10rem;
    border: 0;
    font-size: 3.2rem;
  }
  .p-page-schedule__table th::before {
    position: absolute;
    content: "";
    display: block;
    width: 2.5rem;
    aspect-ratio: 1;
    background-color: var(--pageColor);
    border-radius: 999px;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 520px) {
  .p-page-schedule__table th {
    padding: 0 0 0 5rem;
    font-size: 2.8rem;
  }
  .p-page-schedule__table th::before {
    width: 1.5rem;
    top: 50%;
    left: 2rem;
  }
}
.p-page-schedule__table td {
  padding: 1.4rem 0;
  padding-left: 4rem;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-page-schedule__table td {
    text-align: start;
    padding: 0 0 0 10rem;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 520px) {
  .p-page-schedule__table td {
    text-align: start;
    padding: 0 0 0 5rem;
    font-size: 1.8rem;
  }
}

.p-page-service {
  padding: var(--sec-padding);
}
.p-page-service .p-in-col {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-page-service .p-in-col {
    flex-direction: column;
    gap: 6.4rem;
  }
}
.p-page-service .p-in-col .p-in-image {
  justify-content: center;
}
.p-page-service .p-in-col p {
  max-width: 46rem;
}
@media screen and (max-width: 767px) {
  .p-page-service .p-in-col p {
    max-width: 100%;
  }
}
.p-page-service__contents {
  display: grid;
  gap: 6.4rem;
}
.p-page-service__col {
  display: flex;
  align-items: start;
  justify-content: space-between;
  max-width: 101.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-page-service__col {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.p-page-service__col-item {
  max-width: 43rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-page-service__col-item {
    max-width: 100%;
  }
}
.p-page-service__col .p-in-line {
  display: block;
  width: 2px;
  height: 24rem;
  border-right: 2px dashed var(--pageColor);
  margin: 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-page-service__col .p-in-line {
    display: none;
  }
}
.p-page-service__container {
  width: 100%;
  position: relative;
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 3.2rem 2rem 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-page-service__container {
    padding: 2.4rem 2rem;
  }
}
.p-page-service__container h3 {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 520px) {
  .p-page-service__container h3 {
    font-size: 2.8rem;
    padding-bottom: 1.4rem;
  }
}
.p-page-service__container .p-in-num {
  position: absolute;
  left: 2.6rem;
  top: -3.2rem;
  z-index: 2;
  font-family: var(--font-inter);
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--pageColor);
}
@media screen and (max-width: 520px) {
  .p-page-service__container .p-in-num {
    font-size: 4.5rem;
    top: -2.4rem;
  }
}
.p-page-service__container .p-in-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 101.8rem;
  margin: 0 auto;
  padding-bottom: 3.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-page-service__container .p-in-image {
    max-width: 100%;
  }
}
.p-page-service__container .p-in-image figure {
  position: relative;
}
.p-page-service__container .p-in-image figure img {
  max-width: 43rem;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-page-service__container .p-in-image figure img {
    max-width: 100%;
  }
}
.p-page-service__container .p-in-image figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-white);
  height: 5rem;
  display: flex;
  align-items: center;
  padding: 0 1em 0 0.5em;
  border-radius: 0 20px 0 0;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--pageColor);
}
@media screen and (max-width: 520px) {
  .p-page-service__container .p-in-image figcaption {
    height: 4.4rem;
    font-size: 2.2rem;
  }
}
.p-page-service__container .p-in-image .p-in-line {
  display: block;
  width: 2px;
  height: 24rem;
  border-right: 2px dashed var(--pageColor);
}
.p-page-service__container .p-in-image .swiper-button-prev,
.p-page-service__container .p-in-image .swiper-button-next {
  width: 6rem;
  height: 6rem;
  top: auto;
  bottom: -3rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 520px) {
  .p-page-service__container .p-in-image .swiper-button-prev,
  .p-page-service__container .p-in-image .swiper-button-next {
    width: 4rem;
    height: 4rem;
    bottom: -2rem;
  }
}
.p-page-service__container .p-in-image .swiper-button-prev::after,
.p-page-service__container .p-in-image .swiper-button-next::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.p-page-service__container .p-in-image .swiper-button-prev.is-blue::after, .p-page-service__container .p-in-image .swiper-button-prev.is-blue::after,
.p-page-service__container .p-in-image .swiper-button-next.is-blue::after,
.p-page-service__container .p-in-image .swiper-button-next.is-blue::after {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/swiper-arrow--blue.webp) no-repeat center center/contain;
}
.p-page-service__container .p-in-image .swiper-button-prev.is-pink::after, .p-page-service__container .p-in-image .swiper-button-prev.is-pink::after,
.p-page-service__container .p-in-image .swiper-button-next.is-pink::after,
.p-page-service__container .p-in-image .swiper-button-next.is-pink::after {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/swiper-arrow--pink.webp) no-repeat center center/contain;
}
.p-page-service__container .p-in-image .swiper-button-prev.is-yellow::after, .p-page-service__container .p-in-image .swiper-button-prev.is-yellow::after,
.p-page-service__container .p-in-image .swiper-button-next.is-yellow::after,
.p-page-service__container .p-in-image .swiper-button-next.is-yellow::after {
  background: url(/wp/wp-content/themes/genkikan/assets/images/common/swiper-arrow--yellow.webp) no-repeat center center/contain;
}
.p-page-service__container .p-in-image .swiper-button-prev::after {
  transform: rotate(180deg);
}
.p-page-service__container .p-in-image .swiper-button-prev {
  left: -4rem;
}
@media screen and (max-width: 520px) {
  .p-page-service__container .p-in-image .swiper-button-prev {
    left: -3rem;
  }
}
.p-page-service__container .p-in-image .swiper-button-next {
  right: -4rem;
}
@media screen and (max-width: 520px) {
  .p-page-service__container .p-in-image .swiper-button-next {
    right: -3rem;
  }
}
.p-page-service__container p {
  font-weight: 500;
  max-width: 101.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-page-service__container p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.p-page-service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 0.5rem;
  padding: 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-page-service__list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
}
@media screen and (max-width: 520px) {
  .p-page-service__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-page-service__list-item {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 1rem;
  background-color: var(--pageColor);
  border-radius: 20px;
  padding: 1.6rem 2.4rem 3.2rem;
}
@media screen and (max-width: 520px) {
  .p-page-service__list-item {
    padding: 2.4rem 2rem;
  }
}
.p-page-service__list-item .p-in-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
@media screen and (max-width: 520px) {
  .p-page-service__list-item .p-in-title {
    font-size: 2.4rem;
  }
}
.p-page-service__list-item .p-in-list {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
}
@media screen and (max-width: 520px) {
  .p-page-service__list-item .p-in-list {
    font-size: 1.8rem;
  }
}
.p-page-service__list-item .p-in-list li::before {
  content: "・";
  color: var(--color-white);
}
.p-page-service__list-item .p-in-image {
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}
.p-page-service__list-item .p-in-image.is-absol {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 85%;
}
.p-page-service__list-item .p-in-image.is-commingsoon {
  position: relative;
}
.p-page-service__list-item .p-in-image.is-commingsoon::after {
  content: "comming soon";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.p-page-service__list-item .p-in-image.is-commingsoon img {
  filter: blur(4px) brightness(0.75);
  pointer-events: none;
}

.p-day-flow {
  background-color: #fff;
  padding: var(--sec-padding);
  position: relative;
}
.p-day-flow.bg-white::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  transform: translateY(-100%);
  width: 100%;
  height: 5rem;
  background: var(--color-white);
}
.p-day-flow__list {
  display: grid;
  max-width: 70rem;
  margin: 0 auto;
}
.p-day-flow__list-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 7.4rem 1fr;
  gap: 5.5rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 520px) {
  .p-day-flow__list-item {
    grid-template-columns: 5.2rem 1fr;
    gap: 1.6rem;
  }
}
.p-day-flow__list-item .p-in-num {
  font-family: var(--font-inter);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--pageColor);
  width: 7.4rem;
  height: 7.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  line-height: 1;
}
@media screen and (max-width: 520px) {
  .p-day-flow__list-item .p-in-num {
    font-size: 2.2rem;
    width: 5.2rem;
    height: 5.2rem;
  }
}
.p-day-flow__list-item .p-in-num::after {
  position: absolute;
  z-index: -1;
  top: 0;
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: var(--pageColor);
}
.p-day-flow__list-item:nth-last-of-type(1) .p-in-num::after {
  display: none;
}
.p-day-flow__list-item .p-in-detail {
  padding-top: 1rem;
}
@media screen and (max-width: 520px) {
  .p-day-flow__list-item .p-in-detail {
    padding-top: 0.5rem;
  }
}
.p-day-flow__list-item .p-in-detail h3 {
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .p-day-flow__list-item .p-in-detail h3 {
    font-size: 2.4rem;
  }
}
.p-day-flow__list-item .p-in-detail p {
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .p-day-flow__list-item .p-in-detail p {
    font-size: 1.8rem;
  }
}

#day-service .p-day-service {
  background: var(--orange01);
  padding: var(--sec-padding);
}
#day-service .p-day-service__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 8rem;
}
@media screen and (max-width: 767px) {
  #day-service .p-day-service__container {
    grid-template-columns: 1fr;
    gap: 8rem 0;
  }
}
@media screen and (max-width: 520px) {
  #day-service .p-day-service__container {
    gap: 3.2rem;
  }
}
#day-service .p-day-service__content {
  position: relative;
  background: var(--color-white);
  border-radius: 2rem;
  overflow: hidden;
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  transition: all 0.6s ease;
}
@media screen and (max-width: 767px) {
  #day-service .p-day-service__content {
    gap: 0;
  }
}
#day-service .p-day-service__content:nth-of-type(1) h2 {
  color: var(--yellow01);
}
#day-service .p-day-service__content:nth-of-type(1) address {
  border-top: 1px dashed var(--yellow01);
}
#day-service .p-day-service__content:nth-of-type(1)::after {
  background: var(--yellow01);
}
#day-service .p-day-service__content:nth-of-type(2) h2 {
  color: var(--pink01);
}
#day-service .p-day-service__content:nth-of-type(2) address {
  border-top: 1px dashed var(--pink01);
}
#day-service .p-day-service__content:nth-of-type(2)::after {
  background: var(--pink01);
}
#day-service .p-day-service__content::after {
  content: "\f061";
  font: var(--fa-font-solid);
  display: block;
  width: 8.8rem;
  height: 8.8rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--color-white);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  #day-service .p-day-service__content::after {
    width: 5rem;
    height: 6rem;
    aspect-ratio: auto;
  }
}
#day-service .p-day-service__content:hover {
  scale: 1.05;
}
#day-service .p-day-service__content:hover .p-day-service__image img {
  scale: 1.05;
}
#day-service .p-day-service__image {
  overflow: hidden;
}
#day-service .p-day-service__image img {
  transition: all 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#day-service .p-day-service h2 {
  font-size: 2.8rem;
  text-align: center;
  font-weight: 700;
  margin-top: 2rem;
  padding: 2rem;
  margin: 0 2rem;
}
@media screen and (max-width: 520px) {
  #day-service .p-day-service h2 {
    font-size: 2rem;
    padding: 2rem 0;
  }
}
#day-service .p-day-service p {
  margin-top: 2rem;
  font-size: 2.2rem;
  font-weight: 500;
  padding: 0 2rem 2rem 2rem;
  margin: 0 2rem;
}
@media screen and (max-width: 520px) {
  #day-service .p-day-service p {
    font-size: 1.4rem;
    padding: 0 0 2rem;
  }
}
#day-service .p-day-service address {
  font-size: 2.2rem;
  font-weight: 500;
  padding: 2rem;
  margin: 0 2rem;
  height: 8.8rem;
}
@media screen and (max-width: 520px) {
  #day-service .p-day-service address {
    font-size: 1.4rem;
    height: 6rem;
    padding: 2rem 0;
  }
}

.p-homecare {
  position: relative;
  background: var(--blue04);
  padding: var(--sec-padding);
}
.p-homecare::after {
  content: "";
  display: block;
  width: 36.9rem;
  height: 29.4rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/homecare/homecare-kappy.webp) no-repeat center center/contain;
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: -8rem;
}
@media screen and (max-width: 767px) {
  .p-homecare::after {
    position: relative;
    right: -17rem;
    bottom: 0;
  }
}
@media screen and (max-width: 520px) {
  .p-homecare::after {
    width: 70%;
    margin: 0 auto;
    right: auto;
  }
}
.p-homecare__container {
  position: relative;
  background: var(--color-white);
  border-radius: 2rem;
  padding: 4.8rem;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-homecare__container {
    margin-bottom: 0;
  }
}
.p-homecare__container::before {
  content: "";
  width: 10rem;
  height: 10rem;
  display: block;
  position: absolute;
  background: url(/wp/wp-content/themes/genkikan/assets/images/homecare/homecare-deco.webp) no-repeat center center/contain;
  top: 4rem;
  right: 4rem;
}
@media screen and (max-width: 767px) {
  .p-homecare__container::before {
    display: none;
  }
}

.p-homecare-service__list {
  max-width: 87rem;
  margin: 0 auto;
  position: relative;
}
.p-homecare-service__list dt {
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue03);
}
.p-homecare-service__list dt::before {
  content: "●";
  padding-right: 0.2em;
}
@media screen and (max-width: 520px) {
  .p-homecare-service__list dt {
    font-size: 2.4rem;
  }
}
.p-homecare-service__list dd {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 3.2rem;
}
.p-homecare-service__list dd:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 520px) {
  .p-homecare-service__list dd {
    font-size: 1.8rem;
  }
}

.p-settlement__list {
  display: grid;
  gap: 1.2rem;
}
.p-settlement__list-item a {
  position: relative;
  display: block;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 0.9rem;
  font-size: 1.8rem;
  font-weight: 500;
  width: 100%;
  transition: all 0.3s ease;
}
.p-settlement__list-item a:hover {
  color: var(--primary-color);
}
.p-settlement__list-item a:hover::after {
  transform: translate(5px, -50%);
}
@media screen and (max-width: 767px) {
  .p-settlement__list-item a {
    padding: 2rem 4rem 2rem 2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-settlement__list-item a {
    font-size: 1.6rem;
  }
}
.p-settlement__list-item a::before {
  content: "●";
  color: var(--primary-color);
  margin-right: 0.5em;
}
.p-settlement__list-item a::after {
  content: "\f054";
  font: var(--fa-font-solid);
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}

.p-privacyPolicy {
  padding: var(--sec-padding);
}
.p-privacyPolicy__lead {
  max-width: 79rem;
  margin: 0 auto 8rem;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__lead {
    font-size: 2rem;
  }
}
.p-privacyPolicy__title {
  margin-top: 4.8rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  background: var(--color-white);
  padding: 0.8rem 1.4rem;
  border-radius: 0.9rem;
  border: 1px solid var(--primary-color);
  text-indent: -1em;
  padding-left: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__title {
    font-size: 2.4rem;
  }
}
.p-privacyPolicy__text {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__text {
    font-size: 1.8rem;
  }
}
.p-privacyPolicy__list {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__list {
    font-size: 1.8rem;
  }
}
.p-privacyPolicy__list li::before {
  content: "・";
  margin-right: 0.5em;
}

.p-policyContact {
  padding: var(--sec-padding);
  background: var(--color-white);
}
.p-policyContact__lead {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-policyContact__lead {
    font-size: 1.8rem;
  }
}
.p-policyContact__content {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-policyContact__content {
    width: 100%;
  }
}
.p-policyContact__content address {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  border: 1px solid var(--primary-color);
  width: fit-content;
  padding: 4.2rem 6rem;
  margin: 8rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-policyContact__content address {
    width: 100%;
    font-size: 1.8rem;
    padding: 2rem 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-policyContact__content address span {
    display: none;
  }
}
.p-policyContact__content h2 {
  position: absolute;
  background: var(--color-white);
  left: 50%;
  transform: translateX(-50%);
  top: -2rem;
  font-size: 2.4rem;
  font-weight: 700;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .p-policyContact__content h2 {
    font-size: 2rem;
  }
}

.p-access {
  padding: var(--sec-padding);
}
.p-access__container {
  display: grid;
  gap: 10rem;
}
.p-access__content.is-genkikan {
  --yellow: var(--yellow02);
}
.p-access__content.is-genkikan .p-access__detailItem.is-car h4 {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.p-access__content.is-genkikan .p-access__detailItem.is-car h4::before {
  content: "";
  display: block;
  width: 3.664rem;
  height: 2.793rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/access/icon-car--yellow.webp) no-repeat center center/contain;
}
.p-access__content.is-genkikan .p-access__detailItem.is-train h4 {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.p-access__content.is-genkikan .p-access__detailItem.is-train h4::before {
  content: "";
  display: block;
  width: 3.664rem;
  height: 3.524rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/access/icon-train--yellow.webp) no-repeat center center/contain;
}
.p-access__content.is-genkikan .p-access__parkingDetail h4 {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.p-access__content.is-genkikan .p-access__parkingDetail h4::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/access/icon-parking--yellow.webp) no-repeat center center/contain;
}
.p-access__content.is-happy {
  --yellow: var(--pink02);
}
.p-access__content.is-happy .p-access__detailItem.is-car h4 {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.p-access__content.is-happy .p-access__detailItem.is-car h4::before {
  content: "";
  display: block;
  width: 3.664rem;
  height: 2.793rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/access/icon-car--pink.webp) no-repeat center center/contain;
}
.p-access__content.is-happy .p-access__detailItem.is-train h4 {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.p-access__content.is-happy .p-access__detailItem.is-train h4::before {
  content: "";
  display: block;
  width: 3.664rem;
  height: 3.524rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/access/icon-train--pink.webp) no-repeat center center/contain;
}
.p-access__content.is-happy .p-access__parkingDetail h4 {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.p-access__content.is-happy .p-access__parkingDetail h4::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/access/icon-parking--pink.webp) no-repeat center center/contain;
}
.p-access__content {
  position: relative;
  border: 3px solid var(--yellow);
  background: var(--color-white);
  border-radius: 2rem;
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .p-access__content {
    padding: 2rem;
  }
}
.p-access__contentBox {
  position: relative;
  display: grid;
  gap: 3.2rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 5rem 0;
  border-top: 2px dashed var(--yellow);
}
@media screen and (max-width: 767px) {
  .p-access__contentBox {
    grid-template-columns: 1fr;
    padding: 3.2rem 0;
  }
}
.p-access__contentBox:nth-of-type(1) {
  border-top: none;
}
.p-access__title {
  position: absolute;
  top: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--yellow);
  width: 30rem;
  height: fit-content;
  text-align: center;
  border-radius: 1.6rem;
}
@media screen and (max-width: 520px) {
  .p-access__title {
    font-size: 2.4rem;
  }
}
.p-access__mapIframe iframe {
  width: 100%;
  height: 39rem;
}
@media screen and (max-width: 520px) {
  .p-access__mapIframe iframe {
    height: 20rem;
  }
}
.p-access__mapInfo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 2rem;
}
@media screen and (max-width: 520px) {
  .p-access__mapInfo {
    font-size: 1.6rem;
  }
}
.p-access__mapInfo a::after {
  content: "▶︎";
  color: var(--yellow);
}
.p-access__detailItem {
  margin-bottom: 2.4rem;
}
.p-access__detailItem:nth-last-of-type(1) {
  margin-bottom: 0;
}
.p-access__detailItem h4 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 520px) {
  .p-access__detailItem h4 {
    font-size: 1.8rem;
  }
}
.p-access__detailItem p {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .p-access__detailItem p {
    font-size: 1.6rem;
  }
}
.p-access__detailItem p:nth-last-of-type(1)::after {
  content: none;
}
.p-access__detailItem p::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 1.9rem;
  background: var(--yellow);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin: 1.5rem;
}
.p-access__parkingDetail h4 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 520px) {
  .p-access__parkingDetail h4 {
    font-size: 1.8rem;
  }
}
.p-access__parkingDetail p {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .p-access__parkingDetail p {
    font-size: 1.6rem;
  }
}

.p-about {
  padding: var(--sec-padding);
}
.p-about__content {
  padding: 10rem 0;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-about__content {
    padding: 6.4rem 0;
  }
}
.p-about__content.is-bg01 {
  background: url(/wp/wp-content/themes/genkikan/assets/images/about/aboutBg01.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-about__content.is-bg01 {
    background: url(/wp/wp-content/themes/genkikan/assets/images/about/aboutBg01--tab.svg) no-repeat center center/contain;
  }
}
@media screen and (max-width: 520px) {
  .p-about__content.is-bg01 {
    background: url(/wp/wp-content/themes/genkikan/assets/images/about/aboutBg01--sp.svg) no-repeat center center/contain;
  }
}
.p-about__content.is-bg02 {
  background: url(/wp/wp-content/themes/genkikan/assets/images/about/aboutBg02.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-about__content.is-bg02 {
    background: url(/wp/wp-content/themes/genkikan/assets/images/about/aboutBg02--tab.svg) no-repeat center center/contain;
  }
}
@media screen and (max-width: 520px) {
  .p-about__content.is-bg02 {
    background: url(/wp/wp-content/themes/genkikan/assets/images/about/aboutBg02--sp.svg) no-repeat center center/contain;
  }
}
.p-about__content.is-bg03 {
  background: url(/wp/wp-content/themes/genkikan/assets/images/about/aboutBg03.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-about__content.is-bg03 {
    background: url(/wp/wp-content/themes/genkikan/assets/images/about/aboutBg03--tab.svg) no-repeat center center/contain;
  }
}
@media screen and (max-width: 520px) {
  .p-about__content.is-bg03 {
    background: url(/wp/wp-content/themes/genkikan/assets/images/about/aboutBg03--sp.svg) no-repeat center center/contain;
  }
}
.p-about__contentBox {
  max-width: 83rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-about__contentBox {
    max-width: 80%;
    margin: 0 auto;
  }
}
.p-about__title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 520px) {
  .p-about__title {
    font-size: 2.4rem;
  }
}
.p-about__text {
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .p-about__text {
    font-size: 1.8rem;
  }
}
.p-about__list {
  font-size: 2.2rem;
  font-weight: 700;
  display: grid;
  gap: 1em;
}
@media screen and (max-width: 520px) {
  .p-about__list {
    font-size: 1.8rem;
  }
}
.p-about__list-item {
  display: flex;
  align-items: start;
  gap: 2.4rem;
}
.p-about__list-item::before {
  color: var(--pink02);
  font-size: 3rem;
  transform: translateY(-0.75rem);
}
.p-about__list-item:nth-of-type(1)::before {
  content: "1";
}
.p-about__list-item:nth-of-type(2)::before {
  content: "2";
}
.p-about__list-item:nth-of-type(3)::before {
  content: "3";
}
.p-about__logo {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-about__logo {
    flex-direction: column;
    align-items: center;
  }
}
.p-about__logoImage {
  max-width: 18rem;
  width: 100%;
  flex-basis: 18rem;
}
.p-about__logoText {
  flex: 1;
}

.p-greeting {
  padding: var(--sec-padding);
}
.p-greeting__content {
  padding: 10rem 0;
  background: url(/wp/wp-content/themes/genkikan/assets/images/about/aboutBg04.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-greeting__content {
    background: url(/wp/wp-content/themes/genkikan/assets/images/about/aboutBg04--tab.svg) no-repeat center center/contain;
  }
}
@media screen and (max-width: 520px) {
  .p-greeting__content {
    background: url(/wp/wp-content/themes/genkikan/assets/images/about/aboutBg04--sp.svg) no-repeat center center/contain;
  }
}
.p-greeting__contentBox {
  max-width: 83rem;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .p-greeting__contentBox {
    max-width: 80%;
    margin: 0 auto;
    flex-direction: column;
    gap: 3.2rem;
  }
}
.p-greeting__detail {
  flex-basis: 62rem;
}
@media screen and (max-width: 767px) {
  .p-greeting__detail {
    flex-basis: auto;
  }
}
.p-greeting__image {
  flex-basis: 24.6rem;
}
@media screen and (max-width: 767px) {
  .p-greeting__image {
    max-width: 60%;
    margin: 0 auto;
    flex-basis: auto;
  }
}
.p-greeting__image figure figcaption {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  margin-top: 2.4rem;
}
.p-greeting__image figure figcaption span {
  font-size: 3rem;
}
.p-greeting__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-greeting__title {
    text-align: center;
  }
}
@media screen and (max-width: 520px) {
  .p-greeting__title {
    font-size: 2.4rem;
    text-align: center;
  }
}
.p-greeting__text {
  font-size: 2.2rem;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .p-greeting__text {
    font-size: 1.8rem;
  }
}

.p-company {
  padding: var(--sec-padding);
}
.p-company__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-company__container {
    grid-template-columns: 1fr;
    gap: 6.4rem;
  }
}
.p-company__content {
  padding: 6rem;
  background: var(--color-white);
  border-radius: 2rem;
  position: relative;
}
@media screen and (max-width: 520px) {
  .p-company__content {
    padding: 4.2rem 2rem;
  }
}
.p-company__image {
  max-width: 39rem;
  margin: 0 auto;
}
.p-company__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .p-company__title {
    font-size: 2.4rem;
  }
}
.p-company__table {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-company__table {
    width: 100%;
  }
}
.p-company__table th,
.p-company__table td {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.5em 0;
}
.p-company__table th {
  min-width: 4em;
  text-align-last: justify;
}
.p-company__table td {
  padding-left: 2em;
}

.p-company__content.is-genkikan {
  border: 3px solid var(--yellow02);
}
.p-company__content.is-genkikan .p-company__title {
  background: var(--yellow02);
  color: var(--color-white);
  width: 25rem;
  border-radius: 1.6rem;
  padding: 0.25em 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -3.2rem;
}
.p-company__content.is-genkikan .p-company__table th,
.p-company__content.is-genkikan .p-company__table td {
  border-bottom: 1px solid var(--yellow02);
}

.p-company__content.is-happy {
  border: 3px solid var(--pink02);
}
.p-company__content.is-happy .p-company__title {
  background: var(--pink02);
  color: var(--color-white);
  width: 25rem;
  border-radius: 1.6rem;
  padding: 0.25em 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -3.2rem;
}
.p-company__content.is-happy .p-company__table th,
.p-company__content.is-happy .p-company__table td {
  border-bottom: 1px solid var(--pink02);
}

.p-report {
  padding: var(--sec-padding);
  background: var(--orange);
}
.p-report__btn {
  margin-top: 3.2rem;
}

.p-recruitLead {
  padding: var(--sec-padding);
  position: relative;
  z-index: 2;
}
.p-recruitLead__content {
  display: grid;
  grid-template-columns: 15vw 87rem 15vw;
  justify-content: center;
  gap: 4rem;
  margin: 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruitLead__content {
    grid-template-columns: 1fr;
  }
}
.p-recruitLead__text {
  background: url(/wp/wp-content/themes/genkikan/assets/images/recruit/recruitLead-bg.svg) no-repeat center center/contain;
  padding: 10rem 0;
}
@media screen and (max-width: 520px) {
  .p-recruitLead__text {
    background: url(/wp/wp-content/themes/genkikan/assets/images/recruit/recruitLead-bg--sp.svg) no-repeat center center/cover;
  }
}
.p-recruitLead__text p {
  font-size: 2.2rem;
  font-weight: 700;
  max-width: 68rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-recruitLead__text p {
    font-size: 1.8rem;
    max-width: 24rem;
  }
}
.p-recruitLead__btn {
  margin-top: 3.2rem;
}
.p-recruitLead__image.is-01 {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruitLead__image.is-01 {
    display: none;
  }
}
.p-recruitLead__image.is-02 {
  margin-top: 30rem;
}
@media screen and (max-width: 767px) {
  .p-recruitLead__image.is-02 {
    display: none;
  }
}

.p-environment {
  padding: var(--sec-padding);
  background: var(--orange);
}
.p-environment__container {
  padding: 4.8rem;
  background: var(--color-white);
  border-radius: 2rem;
}
@media screen and (max-width: 520px) {
  .p-environment__container {
    padding: 4.8rem 2rem;
  }
}
.p-environment__list {
  max-width: 90rem;
  margin: 0 auto;
}
.p-environment__list dt {
  font-size: 3rem;
  font-weight: 700;
  color: var(--pink02);
}
@media screen and (max-width: 520px) {
  .p-environment__list dt {
    font-size: 2.4rem;
    text-indent: -1em;
    padding-left: 1.5em;
  }
}
.p-environment__list dd {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 520px) {
  .p-environment__list dd {
    font-size: 1.8rem;
  }
}

.p-occupation {
  padding: var(--sec-padding);
}
.p-occupation__contents {
  position: relative;
}
.p-occupation__content {
  position: relative;
  z-index: 1;
  padding: 3.2rem;
  opacity: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-occupation__content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 520px) {
  .p-occupation__content {
    padding: 3.2rem 1rem;
  }
}
.p-occupation__content-left, .p-occupation__content-right {
  display: grid;
  gap: 3.2rem;
}
.p-occupation__content.is-active {
  opacity: 1;
  display: grid;
  z-index: 2;
}
.p-occupation__content.is-genkikan {
  --tableColor: var(--yellow02);
  background-color: #feeed6;
}
.p-occupation__content.is-happy {
  --tableColor: var(--pink02);
  background-color: #fedfd7;
  position: absolute;
  top: 0;
  left: 0;
}
.p-occupation__tab {
  display: flex;
  justify-content: center;
  gap: 13rem;
}
@media screen and (max-width: 767px) {
  .p-occupation__tab {
    gap: 4rem;
  }
}
@media screen and (max-width: 520px) {
  .p-occupation__tab {
    gap: 2rem;
  }
}
.p-occupation__tab-btn {
  width: 40rem;
  height: 9rem;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  font-weight: 700;
  border-radius: 2rem 2rem 0 0;
}
@media screen and (max-width: 520px) {
  .p-occupation__tab-btn {
    font-size: 1.6rem;
    height: 4.6rem;
  }
}
.p-occupation__tab-btn.is-genkikan {
  background-color: #feeed6;
}
.p-occupation__tab-btn.is-happy {
  background-color: #fedfd7;
}
.p-occupation__title {
  border-left: 0.8rem solid var(--tableColor);
  font-size: 2.2rem;
  font-weight: 700;
  padding-left: 0.5em;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 520px) {
  .p-occupation__title {
    font-size: 1.8rem;
  }
}
.p-occupation__box {
  width: 100%;
  height: fit-content;
}
.p-occupation__table {
  width: 100%;
  table-layout: fixed;
}
.p-occupation__table thead th {
  background: var(--tableColor);
  font-size: 2rem;
  font-weight: 500;
  padding: 0.8rem 0;
  border-right: 1px solid var(--color-white);
  text-align: center;
}
@media screen and (max-width: 520px) {
  .p-occupation__table thead th {
    font-size: 1.6rem;
  }
}
.p-occupation__table thead th:nth-of-type(1) {
  width: 21rem;
}
@media screen and (max-width: 520px) {
  .p-occupation__table thead th:nth-of-type(1) {
    width: 16rem;
  }
}
.p-occupation__table thead th:nth-last-of-type(1) {
  border: none;
}
.p-occupation__table tbody td {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  background: var(--color-white);
  text-align: center;
  border-right: 1px solid var(--tableColor);
  padding: 0.8rem 0;
  overflow: hidden;
}
.p-occupation__table tbody td:nth-last-of-type(1) {
  border: none;
}
@media screen and (max-width: 520px) {
  .p-occupation__table tbody td {
    font-size: 1.6rem;
  }
}
.p-occupation__table tbody td .false {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: calc(100% + 4rem);
  height: 1px;
  background: var(--tableColor);
  transform: translate(-50%, -50%) rotate(-24deg);
}
@media screen and (max-width: 767px) {
  .p-occupation__table tbody td .false {
    transform: translate(-50%, -50%) rotate(-18.5deg);
  }
}
@media screen and (max-width: 520px) {
  .p-occupation__table tbody td .false {
    transform: translate(-50%, -50%) rotate(-41deg);
  }
}
.p-occupation__table tbody tr {
  border-bottom: 1px solid var(--tableColor);
}
.p-occupation__table tbody tr:nth-last-of-type(1) {
  border: none;
}

#guidelines .c-wave--small {
  background: var(--color-white) !important;
}

.p-guidelines {
  padding: var(--sec-padding);
  background: var(--color-white);
}
.p-guidelines__tab {
  display: flex;
  justify-content: center;
  gap: 13rem;
}
@media screen and (max-width: 767px) {
  .p-guidelines__tab {
    gap: 4rem;
  }
}
@media screen and (max-width: 520px) {
  .p-guidelines__tab {
    gap: 2rem;
  }
}
.p-guidelines__tab-btn {
  width: 40rem;
  height: 9rem;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  font-weight: 700;
  border-radius: 2rem 2rem 0 0;
}
@media screen and (max-width: 520px) {
  .p-guidelines__tab-btn {
    font-size: 1.6rem;
    height: 4.6rem;
  }
}
.p-guidelines__tab-btn.is-genkikan {
  background-color: #feeed6;
}
.p-guidelines__tab-btn.is-happy {
  background-color: #fedfd7;
}
.p-guidelines__contents {
  position: relative;
}
.p-guidelines__content {
  position: relative;
  padding: 3.2rem;
  gap: 2.4rem;
  display: none;
}
@media screen and (max-width: 520px) {
  .p-guidelines__content {
    padding: 3.2rem 1rem;
    gap: 1.6rem;
  }
}
.p-guidelines__content.is-active {
  display: grid;
}
.p-guidelines__content.is-genkikan {
  --tableColor: var(--yellow02);
  background-color: #feeed6;
}
.p-guidelines__content.is-genkikan .p-guidelines__kappy-text {
  background: url(/wp/wp-content/themes/genkikan/assets/images/recruit/recruit-guideline-fukidashi--genkikan.svg) no-repeat center center/contain;
}
@media screen and (max-width: 520px) {
  .p-guidelines__content.is-genkikan .p-guidelines__kappy-text {
    background: url(/wp/wp-content/themes/genkikan/assets/images/recruit/recruit-guideline-fukidashi--genkikan-sp.svg) no-repeat center center/contain;
  }
}
.p-guidelines__content.is-happy {
  --tableColor: var(--pink02);
  background-color: #fedfd7;
}
.p-guidelines__content.is-happy .p-guidelines__kappy-text {
  background: url(/wp/wp-content/themes/genkikan/assets/images/recruit/recruit-guideline-fukidashi--happy.svg) no-repeat center center/contain;
}
@media screen and (max-width: 520px) {
  .p-guidelines__content.is-happy .p-guidelines__kappy-text {
    background: url(/wp/wp-content/themes/genkikan/assets/images/recruit/recruit-guideline-fukidashi--happy-sp.svg) no-repeat center center/contain;
  }
}
.p-guidelines__box {
  background: var(--color-white);
  border-radius: 2rem;
}
.p-guidelines__box.is-open .p-guidelines__title::after {
  content: "\f107";
  font: var(--fa-font-solid);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
}
.p-guidelines__box-head {
  padding: 2rem 5rem;
  cursor: pointer;
}
@media screen and (max-width: 520px) {
  .p-guidelines__box-head {
    padding: 2rem;
  }
}
.p-guidelines__box-main {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.p-guidelines__box-main-inner {
  padding: 2rem 5rem 3.2rem;
}
@media screen and (max-width: 520px) {
  .p-guidelines__box-main-inner {
    padding: 2rem 1rem;
  }
}
.p-guidelines__title {
  position: relative;
  width: 100%;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .p-guidelines__title {
    font-size: 2rem;
  }
}
.p-guidelines__title::before {
  content: "●";
  margin-right: 0.25em;
  color: var(--tableColor);
}
.p-guidelines__title::after {
  content: "\f107";
  font: var(--fa-font-solid);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.p-guidelines__col {
  display: grid;
  grid-template-columns: 44rem 1fr;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-guidelines__col {
    grid-template-columns: 1fr;
  }
}
.p-guidelines__job {
  font-size: 1.8rem;
}
.p-guidelines__job-title {
  font-weight: 700;
}
.p-guidelines__job-text {
  font-weight: 500;
}
.p-guidelines__job-list {
  font-weight: 500;
}
.p-guidelines__job-list-item {
  text-indent: -1em;
  padding-left: 1em;
}
.p-guidelines__job-list-item::before {
  content: "・";
}
.p-guidelines__kappy {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-guidelines__kappy {
    justify-content: center;
  }
}
@media screen and (max-width: 520px) {
  .p-guidelines__kappy {
    flex-direction: column;
    align-items: center;
  }
}
.p-guidelines__kappy-image {
  position: relative;
  max-width: 16.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 520px) {
  .p-guidelines__kappy-image {
    width: 100%;
    max-width: 100%;
  }
}
.p-guidelines__kappy-image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-guidelines__kappy-image img {
    max-width: 13.8rem;
  }
}
.p-guidelines__kappy-image figcaption {
  position: absolute;
  bottom: -4rem;
  font-size: 2rem;
  font-weight: 500;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .p-guidelines__kappy-image figcaption {
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 1.6rem;
    text-align: center;
  }
}
.p-guidelines__kappy-text {
  height: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 6rem;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 520px) {
  .p-guidelines__kappy-text {
    padding: 6rem;
    font-size: 1.4rem;
  }
}
.p-guidelines__kappy-text p {
  max-width: 29rem;
  width: 100%;
}
.p-guidelines__table {
  width: 100%;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-guidelines__table {
    margin-top: 3.2rem;
  }
}
.p-guidelines__table tr:nth-last-of-type(1) th {
  border-bottom: 1px solid var(--tableColor);
}
@media screen and (max-width: 520px) {
  .p-guidelines__table tr:nth-last-of-type(1) th {
    border-bottom: none;
  }
}
.p-guidelines__table tr:nth-of-type(1) th {
  border-top: 1px solid var(--tableColor);
}
@media screen and (max-width: 520px) {
  .p-guidelines__table tr:nth-of-type(1) th {
    border-bottom: none;
  }
}
.p-guidelines__table tr:nth-of-type(1) td {
  border-top: 1px solid #bfbfbf;
}
@media screen and (max-width: 520px) {
  .p-guidelines__table tr:nth-of-type(1) td {
    border-bottom: none;
  }
}
@media screen and (max-width: 520px) {
  .p-guidelines__table tr {
    display: flex;
    flex-direction: column;
  }
}
.p-guidelines__table th {
  background: var(--tableColor);
  color: var(--color-white);
  min-width: 20rem;
  text-align: center;
  padding: 1.4rem;
  font-size: 1.8rem;
  border-bottom: 1px solid var(--color-white);
}
@media screen and (max-width: 520px) {
  .p-guidelines__table th {
    padding: 0.5rem;
    border-bottom: none;
  }
}
.p-guidelines__table td {
  padding: 1.4rem 2rem;
  font-size: 1.8rem;
  border-bottom: 1px solid #bfbfbf;
}
@media screen and (max-width: 520px) {
  .p-guidelines__table td {
    padding: 1rem;
    border-bottom: none;
  }
}
.p-guidelines__btn {
  margin-top: 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-guidelines__btn {
    margin-top: 3.2rem;
  }
}

#training {
  background: var(--color-white);
}

.p-training {
  padding: var(--sec-padding);
  background: var(--orange);
}
.p-training__lead {
  max-width: 83rem;
  width: 100%;
  margin: 0 auto;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .p-training__lead {
    font-size: 1.8rem;
  }
}
.p-training__content {
  background: var(--color-white);
  padding: 6rem;
  border-radius: 2rem;
  margin-top: 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-training__content {
    padding: 3.2rem 2rem;
  }
}
.p-training__subTitle {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
}
.p-training__table {
  max-width: 83rem;
  width: 100%;
  margin: 0 auto;
}
.p-training__table thead th {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  background: var(--pink01);
  padding: 1.4rem;
  border-right: 2px solid var(--color-white);
}
@media screen and (max-width: 520px) {
  .p-training__table thead th {
    padding: 1rem;
  }
}
.p-training__table tbody tr:nth-last-of-type(1) th,
.p-training__table tbody tr:nth-last-of-type(1) td {
  border-bottom: none;
}
.p-training__table tbody th {
  min-width: 8rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 1.4rem;
  border-bottom: 1px solid var(--base-color);
  border-right: 1px solid var(--base-color);
}
@media screen and (max-width: 520px) {
  .p-training__table tbody th {
    padding: 1rem;
  }
}
.p-training__table tbody td {
  padding: 1.4rem;
  border-bottom: 1px solid var(--base-color);
}
@media screen and (max-width: 520px) {
  .p-training__table tbody td {
    padding: 1rem;
  }
}

.p-career {
  padding: var(--sec-padding);
}
.p-career__lead {
  max-width: 83rem;
  width: 100%;
  margin: 0 auto;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .p-career__lead {
    font-size: 1.8rem;
  }
}
.p-career__step {
  margin-top: 6.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2.4rem;
}
@media screen and (max-width: 520px) {
  .p-career__step {
    grid-template-columns: 1fr;
    gap: 3.2rem 0;
  }
}
.p-career__step-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
@media screen and (max-width: 520px) {
  .p-career__step-item {
    gap: 0;
  }
}
.p-career__step-image {
  place-self: end;
  margin-bottom: 1.2rem;
}
.p-career__step-text {
  border-bottom: 2px dashed var(--color-white);
  font-weight: 500;
  background: #fdddc3;
  padding: 3.2rem 3.2rem 1.6rem;
}
@media screen and (max-width: 520px) {
  .p-career__step-text {
    font-size: 1.4rem;
  }
}
.p-career__step-list {
  background: #fdddc3;
  padding: 1.6rem 3.2rem 3.2rem;
}
.p-career__step-list dt {
  color: var(--pink02);
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .p-career__step-list dt {
    font-size: 1.4rem;
  }
}
.p-career__step-list dd {
  font-weight: 500;
  display: flex;
  align-items: start;
  gap: 0.5rem;
}
@media screen and (max-width: 520px) {
  .p-career__step-list dd {
    font-size: 1.4rem;
  }
}
.p-career__step-list dd::before {
  content: "\f111";
  font: var(--fa-font-solid);
  color: var(--pink02);
  font-size: 0.7rem;
  display: grid;
  place-items: center;
  width: fit-content;
  height: 2.72rem;
}

.p-welfare {
  padding: var(--sec-padding);
}
.p-welfare__container {
  position: relative;
  background: var(--color-white);
  border-radius: 2rem;
  padding: 6.4rem 2rem;
  max-width: 76rem;
  margin: 0 auto;
}
.p-welfare__container::after {
  content: "";
  display: block;
  width: 17.5rem;
  height: 23rem;
  background: url(/wp/wp-content/themes/genkikan/assets/images/recruit/recruit-kappy.webp) no-repeat center center/contain;
  position: absolute;
  bottom: 0;
  left: -8rem;
}
@media screen and (max-width: 520px) {
  .p-welfare__container::after {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 2.4rem;
  }
}
.p-welfare__content {
  max-width: 53rem;
  margin: 0 auto;
  display: grid;
  gap: 6.4rem;
}
.p-welfare__list dt {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .p-welfare__list dt {
    font-size: 1.6rem;
  }
}
.p-welfare__list dt::before {
  content: "\f0c8";
  font: var(--fa-font-solid);
  color: var(--pink02);
  margin-right: 0.5em;
}
.p-welfare__list dd {
  font-size: 2rem;
  font-weight: 500;
  margin-left: 1em;
}
@media screen and (max-width: 520px) {
  .p-welfare__list dd {
    font-size: 1.6rem;
  }
}
.p-welfare__list dd::before {
  content: "・";
}

.p-faq {
  padding: var(--sec-padding);
}
.p-faq__container {
  display: grid;
  gap: 1.2rem;
}
.p-faq__content {
  border-radius: 0.9rem;
  overflow: hidden;
}
.p-faq__content.is-open .p-faq__q span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-faq__head {
  padding: 1.6rem 2.4rem;
  background: var(--color-white);
  cursor: pointer;
}
@media screen and (max-width: 520px) {
  .p-faq__head {
    padding: 1.6rem;
  }
}
.p-faq__main {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.p-faq__q {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: start;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
}
@media screen and (max-width: 520px) {
  .p-faq__q {
    padding-right: 3.2rem;
  }
}
.p-faq__q span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.7rem;
  height: 2px;
  background: var(--pink02);
  border-radius: 999px;
}
@media screen and (max-width: 520px) {
  .p-faq__q span {
    width: 1.6rem;
  }
}
.p-faq__q span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  display: block;
  width: 100%;
  height: 100%;
  background: var(--pink02);
  transition: all 0.4s ease;
}
.p-faq__q::before {
  content: "Q";
  font-family: var(--font-inter);
  color: var(--pink02);
  font-size: 2.7rem;
  font-weight: 700;
  margin-right: 0.5em;
}
.p-faq__a {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: start;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5em;
  padding: 1.6rem 2.4rem 1.6rem 5.2rem;
  background: var(--color-white);
}
@media screen and (max-width: 520px) {
  .p-faq__a {
    font-size: 1.6rem;
  }
}
.p-faq__a::before {
  content: "A";
  font-family: var(--font-inter);
  color: var(--yellow02);
  font-size: 2.7rem;
  font-weight: 700;
  margin-top: -0.25em;
}
.p-faq__btn {
  margin-top: 6.4rem;
}
@media screen and (max-width: 520px) {
  .p-faq__btn {
    margin-top: 3.2rem;
  }
}

.p-facility__slide {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-facility__slide {
    max-width: 85%;
  }
}
.p-facility__slide .facilitySwiper {
  position: relative;
  max-width: 54rem;
  width: 100%;
  margin: 0 auto;
  padding: 6.4rem 0;
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .p-facility__slide .facilitySwiper {
    padding: 3.2rem 0;
  }
}
.p-facility__btns {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  padding: 3.2rem 0;
}
@media screen and (max-width: 767px) {
  .p-facility__btns {
    flex-direction: column;
    align-items: center;
  }
}
.p-facility__btns a {
  margin: 0;
}
.p-facility__container {
  padding: 3.2rem 0;
}
.p-facility__container.is-genkikan .p-facility__content {
  position: relative;
  padding: 3.2rem;
  background: var(--color-white);
  border-radius: 2.4rem;
  border: 3px solid var(--yellow02);
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__content {
    padding: 2rem;
  }
}
.p-facility__container.is-genkikan .p-facility__title {
  position: absolute;
  top: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--yellow02);
  width: 30rem;
  height: fit-content;
  text-align: center;
  border-radius: 1.6rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__title {
    font-size: 2.4rem;
  }
}
.p-facility__container.is-genkikan .p-facility__kappy {
  max-width: 36.2rem;
  position: absolute;
  top: 17rem;
  left: -10rem;
}
@media screen and (max-width: 767px) {
  .p-facility__container.is-genkikan .p-facility__kappy {
    display: none;
  }
}
.p-facility__container.is-genkikan .p-facility__map {
  margin: 6.4rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-facility__container.is-genkikan .p-facility__map-image {
    width: 113rem;
  }
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-image {
    width: 80rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-wrap {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-facility__container.is-genkikan .p-facility__map-wrap {
    overflow-x: scroll;
    display: block;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon {
  position: absolute;
  max-width: 11.8rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon {
    max-width: 6rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon.is-06 {
  top: 43.5rem;
  left: 4rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon.is-06 {
    top: 30rem;
    left: 3.5rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon.is-01 {
  top: -4rem;
  left: 69rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon.is-01 {
    top: 0rem;
    left: 50rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon.is-02 {
  top: 9rem;
  left: 85rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon.is-02 {
    top: 8rem;
    left: 60rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon.is-03 {
  top: 27rem;
  left: 85rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon.is-03 {
    top: 12rem;
    left: 51rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon.is-04 {
  top: 3rem;
  left: 78rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon.is-04 {
    top: 5rem;
    left: 56rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon.is-05 {
  top: 47rem;
  left: 63rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon.is-05 {
    top: 34rem;
    left: 45rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon.is-07 {
  top: 78rem;
  left: 93rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon.is-07 {
    top: 57rem;
    left: 66rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon.is-08 {
  top: 98rem;
  left: 98rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon.is-08 {
    top: 69rem;
    left: 68rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon.is-09 {
  top: 101rem;
  left: 62rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon.is-09 {
    top: 71rem;
    left: 46rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon.is-10 {
  top: 110rem;
  left: 43rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon.is-10 {
    top: 78rem;
    left: 32rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon.is-11 {
  top: 103rem;
  left: 34rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon.is-11 {
    top: 73rem;
    left: 26rem;
  }
}
.p-facility__container.is-genkikan .p-facility__map-icon.is-12 {
  top: 73rem;
  left: 83rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__map-icon.is-12 {
    top: 54rem;
    left: 59rem;
  }
}
.p-facility__container.is-genkikan .p-facility__slide .swiper-button-prev {
  width: 1.9rem;
  height: 2.2rem;
  left: -6rem;
  background: var(--yellow02);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.p-facility__container.is-genkikan .p-facility__slide .swiper-button-prev::after {
  content: none;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__slide .swiper-button-prev {
    width: 1.425rem;
    height: 1.65rem;
    left: -3rem;
  }
}
.p-facility__container.is-genkikan .p-facility__slide .swiper-button-next {
  width: 1.9rem;
  height: 2.2rem;
  right: -6rem;
  background: var(--yellow02);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.p-facility__container.is-genkikan .p-facility__slide .swiper-button-next::after {
  content: none;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-genkikan .p-facility__slide .swiper-button-next {
    width: 1.425rem;
    height: 1.65rem;
    right: -3rem;
  }
}
.p-facility__container.is-happy .p-facility__content {
  position: relative;
  padding: 3.2rem;
  background: var(--color-white);
  border-radius: 2.4rem;
  border: 3px solid var(--pink02);
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__content {
    padding: 2rem;
  }
}
.p-facility__container.is-happy .p-facility__title {
  position: absolute;
  top: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--pink02);
  width: 30rem;
  height: fit-content;
  text-align: center;
  border-radius: 1.6rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__title {
    font-size: 2.4rem;
  }
}
.p-facility__container.is-happy .p-facility__kappy {
  max-width: 36.2rem;
  position: absolute;
  top: 17rem;
  right: -10rem;
}
@media screen and (max-width: 767px) {
  .p-facility__container.is-happy .p-facility__kappy {
    display: none;
  }
}
.p-facility__container.is-happy .p-facility__map {
  margin: 6.4rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-facility__container.is-happy .p-facility__map-image {
    width: 113rem;
    margin: 12rem 0;
  }
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__map-image {
    width: 80rem;
    margin: 12rem 0;
  }
}
.p-facility__container.is-happy .p-facility__map-wrap {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-facility__container.is-happy .p-facility__map-wrap {
    overflow-x: scroll;
    display: block;
    height: auto;
  }
}
.p-facility__container.is-happy .p-facility__map-icon {
  position: absolute;
  max-width: 11.8rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__map-icon {
    max-width: 6rem;
  }
}
.p-facility__container.is-happy .p-facility__map-icon.is-19 {
  top: 4rem;
  left: 36rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__map-icon.is-19 {
    top: 5rem;
    left: 26rem;
  }
}
.p-facility__container.is-happy .p-facility__map-icon.is-18 {
  top: -4rem;
  left: 61rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__map-icon.is-18 {
    top: -1rem;
    left: 44rem;
  }
}
.p-facility__container.is-happy .p-facility__map-icon.is-16 {
  top: -11rem;
  left: 92rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__map-icon.is-16 {
    top: -5rem;
    left: 66rem;
  }
}
.p-facility__container.is-happy .p-facility__map-icon.is-17 {
  top: 6rem;
  left: 84rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__map-icon.is-17 {
    top: 6rem;
    left: 60.5rem;
  }
}
.p-facility__container.is-happy .p-facility__map-icon.is-15 {
  top: 3rem;
  left: 100rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__map-icon.is-15 {
    top: 5rem;
    left: 73rem;
  }
}
.p-facility__container.is-happy .p-facility__map-icon.is-14 {
  top: 35rem;
  left: 98rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__map-icon.is-14 {
    top: 26rem;
    left: 71rem;
  }
}
.p-facility__container.is-happy .p-facility__map-icon.is-13 {
  top: 42rem;
  left: 77rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__map-icon.is-13 {
    top: 29rem;
    left: 55rem;
  }
}
.p-facility__container.is-happy .p-facility__map-icon.is-20 {
  top: 40rem;
  left: 56rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__map-icon.is-20 {
    top: 30rem;
    left: 40rem;
  }
}
.p-facility__container.is-happy .p-facility__map-icon.is-21 {
  top: 54rem;
  left: 20rem;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__map-icon.is-21 {
    top: 39rem;
    left: 16rem;
  }
}
.p-facility__container.is-happy .p-facility__slide .swiper-button-prev {
  width: 1.9rem;
  height: 2.2rem;
  left: -6rem;
  background: var(--pink02);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.p-facility__container.is-happy .p-facility__slide .swiper-button-prev::after {
  content: none;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__slide .swiper-button-prev {
    width: 1.425rem;
    height: 1.65rem;
    left: -3rem;
  }
}
.p-facility__container.is-happy .p-facility__slide .swiper-button-next {
  width: 1.9rem;
  height: 2.2rem;
  right: -6rem;
  background: var(--pink02);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.p-facility__container.is-happy .p-facility__slide .swiper-button-next::after {
  content: none;
}
@media screen and (max-width: 520px) {
  .p-facility__container.is-happy .p-facility__slide .swiper-button-next {
    width: 1.425rem;
    height: 1.65rem;
    right: -3rem;
  }
}

.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.p-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.p-modal.is-13 .p-modal__dialog, .p-modal.is-14 .p-modal__dialog, .p-modal.is-15 .p-modal__dialog, .p-modal.is-16 .p-modal__dialog, .p-modal.is-17 .p-modal__dialog, .p-modal.is-18 .p-modal__dialog, .p-modal.is-19 .p-modal__dialog, .p-modal.is-20 .p-modal__dialog, .p-modal.is-21 .p-modal__dialog {
  border: 3px solid var(--pink02);
}
.p-modal__overlay {
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85);
}
.p-modal__dialog {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 76.8rem;
  padding: 3.2rem;
  background: var(--color-white);
  border-radius: 2.4rem;
  border: 3px solid var(--yellow02);
}
@media screen and (max-width: 520px) {
  .p-modal__dialog {
    max-width: 90vw;
    width: 100%;
    padding: 2rem;
  }
}
.p-modal__close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  font-size: 3.2rem;
  font-weight: 700;
  height: fit-content;
  line-height: 1;
}
.p-modal__caption {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 520px) {
  .p-modal__caption {
    font-size: 1.8rem;
  }
}

.availabilitySwiper {
  overflow: hidden;
  max-width: 90rem;
  margin: 0 auto;
}
.availabilitySwiper .swiper-button-next {
  display: block;
  width: 2.9rem;
  height: 3.3rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: var(--blue01);
}
.availabilitySwiper .swiper-button-next::after {
  content: none;
}
.availabilitySwiper .swiper-button-prev {
  display: block;
  width: 2.9rem;
  height: 3.3rem;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  background: var(--blue01);
}
.availabilitySwiper .swiper-button-prev::after {
  content: none;
}

#availabilityShortstay .p-shortstay {
  padding: var(--sec-padding);
}
#availabilityShortstay .p-shortstay__title {
  color: var(--blue01);
  font-weight: 700;
  font-size: 3.2rem;
  text-align: center;
  background: var(--color-white);
  max-width: 58rem;
  border: 3px solid var(--blue01);
  border-radius: 1.6rem;
  letter-spacing: 0.2em;
  padding: 0.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  #availabilityShortstay .p-shortstay__title {
    font-size: 2.4rem;
  }
}
#availabilityShortstay .p-shortstay__slide {
  margin-top: 6.4rem;
}
#availabilityShortstay .p-shortstay__note {
  max-width: 90rem;
  margin: 0 auto;
  margin-top: 2.4rem;
  font-size: 2.2rem;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  #availabilityShortstay .p-shortstay__note {
    font-size: 1.4rem;
  }
}
#availabilityShortstay .p-shortstay__btn {
  margin-top: 6.4rem;
}
@media screen and (max-width: 520px) {
  #availabilityShortstay .p-shortstay__btn {
    margin-top: 3.2rem;
  }
}

#availabilityDayservice .p-ad {
  background: var(--orange);
  padding: var(--sec-padding);
}
#availabilityDayservice .p-ad .is-genkikan {
  --color: var(--yellow02);
}
#availabilityDayservice .p-ad .is-happy {
  --color: var(--pink02);
}
#availabilityDayservice .p-ad__container {
  max-width: 90rem;
  margin: 0 auto;
  display: grid;
  gap: 6.4rem;
  margin-top: 6.4rem;
}
@media screen and (max-width: 520px) {
  #availabilityDayservice .p-ad__container {
    margin-top: 3.2rem;
  }
}
#availabilityDayservice .p-ad__title {
  color: var(--pink02);
  font-weight: 700;
  font-size: 3.2rem;
  text-align: center;
  background: var(--color-white);
  max-width: 58rem;
  border: 3px solid var(--pink02);
  border-radius: 1.6rem;
  letter-spacing: 0.2em;
  padding: 0.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  #availabilityDayservice .p-ad__title {
    font-size: 2.4rem;
  }
}
#availabilityDayservice .p-ad__subTitle {
  font-size: 3.2rem;
  font-weight: 700;
  background: var(--color-white);
  max-width: 31.6rem;
  width: 100%;
  text-align: center;
  border-radius: 1.6rem;
  border: 3px solid var(--color);
  color: var(--color);
}
@media screen and (max-width: 520px) {
  #availabilityDayservice .p-ad__subTitle {
    font-size: 2rem;
    text-align: start;
    width: fit-content;
    padding: 0 2em;
  }
}
#availabilityDayservice .p-ad__table {
  margin-top: 3.2rem;
  width: 100%;
  table-layout: fixed;
}
@media screen and (max-width: 520px) {
  #availabilityDayservice .p-ad__table {
    margin-top: 1.6rem;
  }
}
#availabilityDayservice .p-ad__table thead {
  background: var(--color);
}
#availabilityDayservice .p-ad__table thead th {
  text-align: center;
  font-size: 2.4rem;
  padding: 1rem;
  width: 18rem;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  #availabilityDayservice .p-ad__table thead th {
    width: 10rem;
    font-size: 1.8rem;
    padding: 0.5em;
  }
}
#availabilityDayservice .p-ad__table thead td {
  text-align: center;
  color: var(--color-white);
  font-size: 2.4rem;
  padding: 1rem;
  font-weight: 500;
  border-left: 1px solid var(--color-white);
}
@media screen and (max-width: 520px) {
  #availabilityDayservice .p-ad__table thead td {
    font-size: 1.8rem;
    padding: 0.5em;
  }
}
#availabilityDayservice .p-ad__table tbody {
  background: var(--color-white);
}
#availabilityDayservice .p-ad__table tbody th {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  padding: 1rem;
  padding: 0.75em;
  vertical-align: middle;
}
@media screen and (max-width: 520px) {
  #availabilityDayservice .p-ad__table tbody th {
    font-size: 1.8rem;
    padding: 0.5em;
  }
}
#availabilityDayservice .p-ad__table tbody td {
  text-align: center;
  color: var(--color);
  font-size: 2.4rem;
  padding: 1rem;
  font-weight: 500;
  border-left: 1px solid var(--color);
  font-size: 3.5rem;
  line-height: 1;
  padding: 0.75em;
  vertical-align: middle;
}
@media screen and (max-width: 520px) {
  #availabilityDayservice .p-ad__table tbody td {
    font-size: 1.8rem;
    padding: 0.5em;
  }
}
#availabilityDayservice .p-ad__btn {
  margin-top: 3.2rem;
}
#availabilityDayservice .p-ad__note {
  max-width: fit-content;
  width: 100%;
  margin: 0 auto;
  margin-top: 6.4rem;
  font-size: 2.2rem;
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 520px) {
  #availabilityDayservice .p-ad__note {
    font-size: 1.4rem;
    margin-top: 3.2rem;
  }
}

#contactPhone .is-genkikan {
  --color: var(--yellow02);
}
#contactPhone .is-happy {
  --color: var(--pink02);
}
#contactPhone .p-cp {
  padding: var(--sec-padding);
}
#contactPhone .p-cp__container {
  max-width: 90rem;
  margin: 0 auto;
  display: grid;
  gap: 6.4rem;
}
#contactPhone .p-cp__content {
  padding: 0 6.4rem;
  background: var(--color-white);
  border-radius: 2rem;
  border: 3px solid var(--color);
}
@media screen and (max-width: 520px) {
  #contactPhone .p-cp__content {
    padding: 0 2rem;
  }
}
#contactPhone .p-cp__tel {
  padding: 3.2rem 0;
  border-bottom: 1px solid var(--color);
  display: flex;
  gap: 5.4rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #contactPhone .p-cp__tel {
    flex-direction: column;
    gap: 2.4rem;
  }
}
#contactPhone .p-cp__tel-title {
  max-width: 31.6rem;
  width: 100%;
  background: var(--color);
  text-align: center;
  color: var(--color-white);
  font-size: 3.2rem;
  font-weight: 700;
  border-radius: 1.6rem;
  padding: 0.5rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 520px) {
  #contactPhone .p-cp__tel-title {
    font-size: 2.4rem;
  }
}
#contactPhone .p-cp__tel-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#contactPhone .p-cp__tel-num {
  font-family: var(--font-din);
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--color);
}
@media screen and (max-width: 520px) {
  #contactPhone .p-cp__tel-num {
    font-size: 4rem;
  }
}
#contactPhone .p-cp__tel-num span {
  font-size: 3rem;
}
@media screen and (max-width: 520px) {
  #contactPhone .p-cp__tel-num span {
    font-size: 2rem;
  }
}
#contactPhone .p-cp__tel-time {
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  #contactPhone .p-cp__tel-time {
    font-size: 1.6rem;
  }
}
#contactPhone .p-cp__fax {
  padding: 3.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 520px) {
  #contactPhone .p-cp__fax {
    flex-direction: column;
    gap: 1rem;
  }
}
#contactPhone .p-cp__fax-text {
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  #contactPhone .p-cp__fax-text {
    font-size: 1.6rem;
  }
}
#contactPhone .p-cp__fax-num {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color);
  line-height: 1;
}
#contactPhone .p-cp__fax-num span {
  font-size: 3rem;
}
@media screen and (max-width: 520px) {
  #contactPhone .p-cp__fax-num span {
    font-size: 2rem;
  }
}
#contactPhone .p-cp__fax .fa-angles-right {
  font-size: 2.2rem;
  color: var(--color);
}
@media screen and (max-width: 520px) {
  #contactPhone .p-cp__fax .fa-angles-right {
    transform: rotate(90deg);
  }
}

#contactMail .p-cm {
  background: var(--orange);
  padding: var(--sec-padding);
}
#contactMail .p-cm.is-white {
  background: transparent;
}
#contactMail .p-cm__content {
  background: var(--color-white);
  border-radius: 2rem;
  padding: 6.4rem;
}
@media screen and (max-width: 520px) {
  #contactMail .p-cm__content {
    padding: 2rem;
  }
}
#contactMail .p-cm__form {
  display: grid;
  gap: 4.4rem;
}
@media screen and (max-width: 520px) {
  #contactMail .p-cm__form {
    gap: 2.4rem;
  }
}
#contactMail .p-cm__group {
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  #contactMail .p-cm__group {
    grid-template-columns: 1fr;
  }
}
#contactMail .p-cm__label {
  font-size: 2.4rem;
  font-weight: 700;
  padding: 1.2rem 0;
}
@media screen and (max-width: 520px) {
  #contactMail .p-cm__label {
    font-size: 1.8rem;
  }
}
#contactMail .p-cm__required {
  background: var(--pink02);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.25em 0.5em;
  border-radius: 4px;
}
@media screen and (max-width: 520px) {
  #contactMail .p-cm__required {
    font-size: 1.4rem;
  }
}
#contactMail .p-cm__radio-button {
  appearance: none;
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--base-color);
  border-radius: 9999px;
  cursor: pointer;
}
#contactMail .p-cm__radio-button:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 999px;
  background-color: var(--pink02);
  aspect-ratio: 1;
}
#contactMail .p-cm__input, #contactMail .p-cm__textarea {
  background: #f6f5f4;
  border-radius: 1.6rem;
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid transparent;
  transition: box-shadow 0.2s, border-color 0.2s;
  font-size: 2.2rem;
  font-weight: 500;
  padding: 1rem;
  width: 100%;
}
#contactMail .p-cm__input:focus, #contactMail .p-cm__textarea:focus, #contactMail .p-cm__radio input:focus + span {
  outline: none;
  box-shadow: 0 0 0 2px var(--pink02); /* お好みでフォーカスリング */
}

.wpcf7-list-item > label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  width: 100%;
  line-height: 1;
  cursor: pointer;
  background: #f6f5f4;
  padding: 2.4rem 3.2rem;
  font-size: 2.2rem;
  font-weight: 500;
  border-radius: 1.6rem;
  height: fit-content;
  margin: 0;
}
@media screen and (max-width: 520px) {
  .wpcf7-list-item > label {
    font-size: 1.6rem;
  }
}

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

.wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-radio {
    grid-template-columns: 1fr;
  }
}
.wpcf7-radio input {
  appearance: none;
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--base-color);
  border-radius: 9999px;
  cursor: pointer;
}
.wpcf7-radio input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 999px;
  background-color: var(--pink02);
  aspect-ratio: 1;
}

.p-cm__confirm {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .p-cm__confirm {
    font-size: 1.8rem;
  }
}

.p-ct__btn {
  margin-top: 6.4rem;
}

.p-ct p {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 1em;
}
.p-ct p:nth-of-type(1) {
  margin-top: 0;
}
@media screen and (max-width: 520px) {
  .p-ct p {
    font-size: 1.6rem;
  }
}

.p-ct p a {
  color: var(--pink02);
}

.p-news__category {
  font-weight: 700;
}

#news .p-news {
  padding: var(--sec-padding);
}
#news .p-news__container {
  display: grid;
  grid-template-columns: 90rem 1fr;
  gap: 5.5rem;
}
@media screen and (max-width: 767px) {
  #news .p-news__container {
    grid-template-columns: 1fr;
  }
}
#news .p-news__list {
  display: grid;
  gap: 3.2rem;
}
#news .p-news__list-item.is-genkikan {
  --color: var(--yellow02);
}
#news .p-news__list-item.is-happy {
  --color: var(--pink02);
}
#news .p-news__list-item a {
  display: grid;
  grid-template-columns: 1fr 8.5rem;
  align-items: center;
  background: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #news .p-news__list-item a {
    grid-template-columns: 1fr 6.4rem;
  }
}
#news .p-news__list-item a::after {
  content: "\f054";
  font: var(--fa-font-solid);
  color: var(--color-white);
  width: 4.5rem;
  margin: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--color);
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  #news .p-news__list-item a::after {
    width: 3.2rem;
    margin: 1.6rem;
  }
}
#news .p-news__list-item a:hover {
  transform: translateX(5px);
}
#news .p-news__cat {
  background: var(--color);
  min-width: 30rem;
  width: fit-content;
  text-align: center;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  #news .p-news__cat {
    min-width: 15rem;
    font-size: 1.8rem;
  }
}
#news .p-news__detail {
  padding: 1.6rem 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  display: grid;
  grid-template-columns: 12.5rem 1fr;
}
@media screen and (max-width: 520px) {
  #news .p-news__detail {
    grid-template-columns: 1fr;
  }
}
#news .p-news__side {
  display: grid;
  gap: 2.4rem;
  height: fit-content;
  background: var(--color-white);
  border-radius: 1rem;
  padding: 2.4rem;
}
#news .p-news__side-title {
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 1px dashed var(--pink02);
  padding: 1rem 0.5em;
  width: 100%;
}
#news .p-news__side-list {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 1rem;
}
#news .p-news__side-list-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0 1em;
  transition: all 0.3s ease;
}
#news .p-news__side-list-item::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: var(--color);
}
#news .p-news__side-list-item.is-news {
  --color: #30c8a7;
}
#news .p-news__side-list-item.is-event {
  --color: #f88a93;
}
#news .p-news__side-list-item.is-recruit {
  --color: #4b8cd4;
}
#news .p-news__side-list-item.is-genkikan {
  --color: var(--yellow02);
}
#news .p-news__side-list-item.is-happy {
  --color: var(--pink02);
}
#news .p-news__side-list-item.is-archive::before {
  content: ">";
  width: auto;
  height: auto;
  line-height: 1;
}
#news .p-news__side-list-item:hover {
  color: var(--pink02);
}

.p-newsSingle {
  background: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
}
.p-newsSingle__cat {
  width: 100%;
  background: var(--color);
  text-align: center;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
}
.p-newsSingle__cat.is-genkikan {
  --color: var(--yellow02);
}
.p-newsSingle__cat.is-happy {
  --color: var(--pink02);
}
.p-newsSingle__content {
  padding: 3.2rem 2rem;
}
.p-newsSingle__date {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .p-newsSingle__date {
    font-size: 1.6rem;
  }
}
.p-newsSingle__title {
  font-size: 2.4rem;
  font-weight: 700;
  border-bottom: 1px solid #d9d9d9;
  padding: 0.25em 0;
}
@media screen and (max-width: 520px) {
  .p-newsSingle__title {
    font-size: 1.8rem;
  }
}
.p-newsSingle__box {
  padding: 2.4rem 0;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  .p-newsSingle__box {
    font-size: 1.6rem;
  }
}
.p-newsSingle__box p {
  margin-bottom: 1em;
}
.p-newsSingle__box img {
  width: auto;
}
.p-newsSingle__box h1 {
  font-size: 2.4rem;
  font-weight: 700;
}
.p-newsSingle__box h2 {
  font-size: 2.4rem;
  font-weight: 700;
  border-left: 0.5rem solid var(--pink02);
  padding-left: 0.5em;
  margin: 1em 0 0.5em 0;
}
.p-newsSingle__box h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1em;
}
.p-newsSingle__box h3::before {
  content: "\f0da";
  font: var(--fa-font-solid);
  color: var(--pink02);
  margin-right: 0.5em;
}

.p-error__image {
  max-width: 60rem;
  margin: 0 auto;
}
.p-error__text {
  font-weight: 500;
  margin-top: 6.4rem;
}
.p-error__btn {
  margin-top: 6.4rem;
}

.commonSwiper {
  position: relative;
  padding: var(--sec-padding);
  overflow: hidden;
}
.commonSwiper .swiper-button-prev,
.commonSwiper .swiper-button-next {
  background: url(/wp/wp-content/themes/genkikan/assets/images/about/about-swiper-arrow.webp) no-repeat center center/contain;
  width: 7rem;
  height: 7rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 520px) {
  .commonSwiper .swiper-button-prev,
  .commonSwiper .swiper-button-next {
    width: 2.6rem;
    height: 2.6rem;
  }
}
.commonSwiper .swiper-button-prev::after,
.commonSwiper .swiper-button-next::after {
  content: none;
}
.commonSwiper .swiper-button-prev {
  left: 6.4rem;
}
@media screen and (max-width: 520px) {
  .commonSwiper .swiper-button-prev {
    left: 3.2rem;
  }
}
.commonSwiper .swiper-button-next {
  transform: translateY(-50%) rotate(-180deg);
  right: 6.4rem;
}
@media screen and (max-width: 520px) {
  .commonSwiper .swiper-button-next {
    right: 3.2rem;
  }
}
.commonSwiper .swiper-pagination {
  padding: 3.2rem 0 0;
}
.commonSwiper .swiper-pagination-bullet {
  width: 1rem !important;
  height: 1rem !important;
}

.u-yellow {
  color: var(--yellow01);
}

.u-pink {
  color: var(--color-white);
}

.u-blue01 {
  color: var(--blue01) !important;
}

.u-pb--0 {
  padding-bottom: 0;
}

.u-txt-center {
  text-align: center;
}

.u-txt-start {
  text-align: start;
}

.u-txt-end {
  text-align: end;
}

.u-border {
  border-bottom: 1px solid var(--primary-color);
}

.u-btn-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 520px) {
  .u-btn-col {
    flex-direction: column;
    gap: 3.2rem;
  }
}