@charset "UTF-8";
/* ==========================================================================
// ベースのスタイルを定義
// ========================================================================*/
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023.999px) {
  body {
    max-width: 1024px;
  }
  body.is-fixed {
    overflow-y: hidden;
  }
}

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

p {
  color: #666767;
}

img {
  width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

ul {
  list-style: none;
}

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

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

:root {
  --animate-delay: 0.5s;
}

/* ==========================================================================
// レイアウトの定義
// ========================================================================*/
.l-inner {
  max-width: 980px;
  margin-inline: auto;
}
@media screen and (max-width: 1023.999px) {
  .l-inner {
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 540px) {
  .l-inner {
    max-width: 100%;
    margin-inline: 30px;
  }
}

.l-2cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "col1 col2";
  margin-bottom: 58px;
}
.l-2cols > img, .l-2cols > picture {
  max-width: calc(50vw - 80px);
  grid-area: col2;
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .l-2cols {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "col2" "col1";
  }
  .l-2cols > img, .l-2cols > picture {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 25px;
  }
}
.l-2cols--reverse {
  grid-template-areas: "col2 col1";
}
@media screen and (max-width: 1023.999px) {
  .l-2cols--reverse {
    grid-template-areas: "col2" "col1";
  }
}
.l-2cols--grid {
  grid-template-areas: "title image" "text image";
}
.l-2cols--grid--reverse {
  grid-template-areas: "image title" "image text" "image -";
}
.l-2cols--grid--reverse img,
.l-2cols--grid--reverse picture {
  margin-left: 0;
}
@media screen and (max-width: 1023.999px) {
  .l-2cols--grid {
    grid-template-areas: "title" "image" "text";
  }
}
.l-2cols--grid img,
.l-2cols--grid picture {
  grid-area: image;
}
@media screen and (max-width: 1023.999px) {
  .l-2cols--grid img,
  .l-2cols--grid picture {
    height: auto;
    border-radius: 20px;
    aspect-ratio: 3/2;
  }
}

.l-buttons_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1023.999px) {
  .l-buttons_area {
    flex-direction: column;
    align-items: center;
    gap: 17px;
    margin-bottom: 60px;
  }
}
.l-buttons_area p {
  flex: 100%;
  color: #517C5C;
  font-weight: bold;
  text-align: center;
}

.l-middle {
  max-width: 650px;
  margin-inline: auto;
}

/* ==========================================================================
// ヘッダー
// ========================================================================*/
/* ------------------------
// PCヘッダー
// ----------------------*/
.c-header {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  height: 90px;
  z-index: 100000;
}
.c-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 90px;
  background: linear-gradient(#fff 50%, rgba(255, 255, 255, 0.8) 86%, transparent 100%);
  scale: 1 0;
  transition: scale 0.3s ease-in-out;
  transform-origin: top;
  z-index: -1;
}
@media screen and (max-width: 1023.999px) {
  .c-header {
    display: none;
  }
}
.c-header__logo {
  margin-left: 30px;
}
.c-header__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(230, 125, 173);
  margin-right: 46px;
  border-radius: 0 0 20px 20px;
  padding: 21px 50px 23px;
  color: #fff;
  font-size: 18px;
  transition: background-color 0.3s ease-in-out;
}
.c-header__contact img {
  width: max-content;
}
.c-header__contact:hover {
  background-color: #43A55B;
}
@media screen and (max-width: 1100px) and (min-width: 1025px) {
  .c-header__contact {
    margin-right: 25px;
    padding: 21px 20px 23px;
  }
}
.c-header.is-active::after {
  scale: 1;
}

.c-header_nav {
  flex: 1;
  max-width: 780px;
  margin-inline: 40px;
}
.c-header_nav__list {
  display: flex;
  justify-content: space-between;
  color: #666767;
  line-height: 12px;
}
.c-header_nav__item a {
  position: relative;
  display: block;
}
.c-header_nav__item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #707070;
  transition: all 0.3s ease-in-out;
  scale: 0;
  transform-origin: left;
}
.c-header_nav__item a:hover::after {
  scale: 1;
}

/* ------------------------
// SP メニュー周り
// ----------------------*/
.c-sp_nav {
  position: fixed;
  width: 100vw;
  height: 100%;
  background-color: #FAF5EC;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 10000;
}
.c-sp_nav.is-open {
  opacity: 1;
  visibility: visible;
}
.c-sp_nav nav {
  width: 100vw;
  height: 100vh;
  padding: 70px 30px;
  font-weight: bold;
  color: #666767;
  overflow-y: scroll;
}
.c-sp_nav__list {
  border-top: 1px solid #C4C4C4;
}
.c-sp_nav__parent {
  position: relative;
  padding-block: 15px;
  border-bottom: 1px solid #C4C4C4;
  line-height: 25px;
}
.c-sp_nav__parent .js-toggle_button::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 15px;
  display: block;
  width: 5px;
  height: 10px;
  background: url(../images/links_triangle.svg) center center/contain no-repeat;
  transition: rotate 0.3s ease-in-out;
}
.c-sp_nav__parent .js-toggle_button.is-open::after {
  rotate: 90deg;
}
.c-sp_nav__parent .js-toggle_content {
  display: block;
  opacity: 0;
  height: 0;
  visibility: hidden;
  transform-origin: top;
  transition: all 0.3s ease-in-out;
}
.c-sp_nav__parent .js-toggle_content.is-open {
  padding-top: 10px;
  opacity: 1;
  height: 100%;
  visibility: visible;
}
.c-sp_nav__child {
  line-height: 30px;
}
.c-sp_nav__child::before {
  content: "- ";
}
.c-sp_nav__child--third {
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
}
.c-sp_nav__child--third:not(:last-child) {
  margin-right: 0.8em;
}

/* ------------------------
// SP ハンバーガーナビ
// ----------------------*/
.c-hamburger {
  position: fixed;
  right: 20px;
  top: 19px;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 100000;
  transition: all 0.2s ease-in-out;
}
.c-hamburger.is-open {
  width: 27px;
  height: 16px;
}
.c-hamburger.is-open .c-hamburger_border--top {
  transform: rotate(30deg);
}
.c-hamburger.is-open .c-hamburger_border--center {
  width: 0;
  left: 50%;
}
.c-hamburger.is-open .c-hamburger_border--bottom {
  transform: rotate(-26deg);
}

.c-hamburger_border {
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #666767;
  transform-origin: 0;
  transition: all 0.3s ease-in-out;
}
.c-hamburger_border--top {
  top: 0;
}
.c-hamburger_border--center {
  top: 9px;
}
.c-hamburger_border--bottom {
  bottom: 0;
}

/* ==========================================================================
// フッター
// ========================================================================*/
.c-footer {
  position: relative;
  padding-top: 56px;
  background-color: #fff;
}
.c-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 9px;
  background: url(../images/footer_bg.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 1023.999px) {
  .c-footer {
    padding-top: 40px;
  }
  .c-footer::before {
    background: url(../images/footer_bg_sp.jpg) center center/cover no-repeat;
  }
}

.c-footer__logo {
  margin-inline: auto;
  margin-bottom: 37px;
  width: 278px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .c-footer__logo {
    margin-bottom: 42px;
  }
  .c-footer__logo img {
    width: 234px;
    height: auto;
  }
}

.c-footer_nav {
  max-width: 980px;
  margin-inline: auto;
  color: #666767;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.c-footer_nav__menu:last-child li {
  list-style: none;
}
@media screen and (max-width: 1023.999px) {
  .c-footer_nav {
    flex-direction: column;
    width: calc(100vw - 60px);
    border-top: 1px solid #C4C4C4;
    margin-inline: 30px;
  }
  .c-footer_nav li a {
    position: relative;
    display: block;
    padding-block: 13px 16px;
    border-bottom: 1px solid #C4C4C4;
  }
  .c-footer_nav li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    display: block;
    width: 9px;
    height: 9px;
    background: url(../images/arrow_triangle.svg) center center/contain no-repeat;
    transform: translateY(-50%);
    rotate: 90deg;
    transform-origin: top;
  }
}

.c-footer_nav__index {
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: bold;
  line-height: 25px;
}
@media screen and (max-width: 1023.999px) {
  .c-footer_nav__index {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: bold;
  }
}

.c-footer_nav__item {
  list-style: "- " inside;
  font-size: 12px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (max-width: 1023.999px) {
  .c-footer_nav__item {
    list-style: none;
    font-size: 16px;
    text-indent: 1rem;
  }
}

.c-footer_nav__index a,
.c-footer_nav__item a {
  transition: all 0.2s linear;
}
.c-footer_nav__index a:hover,
.c-footer_nav__item a:hover {
  opacity: 0.7;
}

.c-footer__copyright {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  margin-top: 67px;
  height: 53px;
  background-color: #FAF5EC;
  color: #666767;
  font-size: 12px;
  line-height: 53px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .c-footer__copyright {
    margin-top: 45px;
  }
}

@media screen and (max-width: 1023.999px) {
  .js-toggle_button.is-open a::after {
    rotate: 180deg;
  }
  .js-toggle_content {
    display: none;
  }
  .js-toggle_content.is-open {
    display: block;
  }
}
/* ==========================================================================
// ボタンのスタイル
// ========================================================================*/
.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 69px;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}
.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  margin-top: -5px;
  margin-right: 20px;
  width: 17px;
  height: 10px;
  background: url(../images/links_arrow--white.svg) center center/contain no-repeat;
}
.c-button:hover {
  transition: all 0.2s ease-in-out;
}

.c-button--default {
  margin-inline: auto;
  background-color: #517C5C;
  width: 325px;
  transition: background-color 0.3s ease-in-out;
}
.c-button--default:hover {
  background-color: #43A55B;
}
@media screen and (max-width: 1023.999px) {
  .c-button--default {
    width: calc(100vw - 60px);
    max-width: 480px;
  }
}

.c-button--important {
  background-color: rgb(230, 125, 173);
  font-size: 20px;
  transition: background-color 0.3s ease-in-out;
}
.c-button--important:hover {
  background-color: #E69EBF;
}

.c-button--small {
  justify-content: flex-start;
  border-radius: 0;
  width: 277px;
  color: #666767;
  font-weight: bold;
  border-bottom: dashed 1px #707070;
}
.c-button--small::after {
  background: url(../images/links_arrow.svg) center center/contain no-repeat;
  transition: all 0.2s ease-in-out;
}
.c-button--small:hover::after {
  margin-right: 10px;
}
@media screen and (max-width: 1023.999px) {
  .c-button--small:hover::after {
    margin-right: 20px;
  }
}

.c-button--prev::after {
  right: auto;
  left: 0;
  rotate: 180deg;
  margin-left: 20px;
}

/* ==========================================================================
// CMS使用ページ　構成要素のスタイル
// ========================================================================*/
.c-cms_date {
  font-size: 12px;
  line-height: 30px;
  color: #666767;
}

.c-cms_category {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(230, 125, 173);
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

/* ==========================================================================
// タイトルに関するスタイル
// ========================================================================*/
.c-child_title {
  height: 473px;
  padding-top: 221px;
  background: url(../images/about_fv_bg.jpg) center center/cover no-repeat;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 1023.999px) {
  .c-child_title {
    height: 218px;
    background: url(../images/about_fv_bg_sp.jpg) center center/cover no-repeat;
    padding-top: 83px;
  }
}
.c-child_title .c-text_en {
  margin-bottom: 18px;
  color: #666767;
}
@media screen and (max-width: 1023.999px) {
  .c-child_title .c-text_en {
    margin-bottom: 8px;
    line-height: 1;
  }
}
.c-child_title__heading {
  color: #666767;
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
}
@media screen and (max-width: 1023.999px) {
  .c-child_title__heading {
    line-height: 1;
    font-size: 30px;
  }
}

/* ==========================================================================
// コンテンツ内のテキストに関するスタイル
// ========================================================================*/
.c-text_en {
  display: inline-block;
  margin-bottom: 3px;
  color: rgb(230, 125, 173);
  font-weight: bold;
}

.c-text_h2 {
  margin-bottom: 50px;
  color: #666767;
  font-size: 35px;
  font-weight: 500;
  line-height: 55px;
}
@media screen and (max-width: 1023.999px) {
  .c-text_h2 {
    margin-bottom: 35px;
    font-size: 25px;
    line-height: 35px;
  }
}

.c-text_sentence {
  color: #666767;
  line-height: 30px;
  font-size: 16px;
  font-weight: 400;
}

/* ==========================================================================
// 下層ページ　構成要素のスタイル
// ========================================================================*/
@media screen and (max-width: 1023.999px) {
  .c-point__heading {
    text-align: center;
  }
}
.c-point__heading, .c-point__text {
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .c-point__heading, .c-point__text {
    margin-left: 0;
  }
}
.c-point__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .c-point__title {
    line-height: 35px;
  }
}

.c-pick_up {
  background-color: #FAF5EC;
  padding-block: 100px;
}
@media screen and (max-width: 1023.999px) {
  .c-pick_up {
    padding-block: 60px;
  }
}
.c-pick_up__boxes {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1023.999px) {
  .c-pick_up__boxes {
    flex-direction: column;
    gap: 60px;
  }
}
.c-pick_up__box {
  flex: 1;
}
.c-pick_up img {
  margin-bottom: 25px;
  border-radius: 20px;
}
@media screen and (max-width: 1023.999px) {
  .c-pick_up img {
    margin-bottom: 35px;
    height: auto;
  }
}
.c-pick_up__title {
  margin-bottom: 25px;
  color: #666767;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
}

/* ==========================================================================
// CMS周りのスタイル
// ========================================================================*/
.p-front_firstview {
  position: relative;
  background: url(../images/front_firstview_bg.jpg) 0 0/cover no-repeat;
  height: 800px;
  padding-top: 252px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_firstview {
    height: 217vw;
    max-height: 1300px;
    padding: 100px 30px 423px;
    background: url(../images/front_firstview_bg_sp.jpg) 0 0/cover no-repeat;
  }
}
.p-front_firstview__title {
  width: 26vw;
  margin-left: 131px;
}
.p-front_firstview__title img {
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_firstview__title {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}
.p-front_firstview__image {
  margin-bottom: -97px;
  width: 100%;
  object-fit: cover;
  border-radius: 100px 0 0 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_firstview__image {
    position: absolute;
    right: 0;
    left: 30px;
    bottom: 0;
    top: 0;
    max-width: calc(100vw - 30px);
  }
}
@media screen and (max-width: 1023.999px) and (max-width: 540px) {
  .p-front_firstview__image {
    height: 100%;
  }
}
.p-front_firstview__slide__wrapper {
  position: absolute;
  bottom: 0;
  top: 132px;
  right: 0;
  left: auto;
  width: 100%;
}
@media screen and (max-width: 1023.999px) {
  .p-front_firstview__slide__wrapper {
    top: auto;
    bottom: -96px;
  }
}
@media screen and (max-width: 1023.999px) and (min-width: 540.001px) {
  .p-front_firstview__slide__wrapper {
    max-width: 680px;
    max-height: 710px;
  }
}
.p-front_firstview .splide__track {
  width: 56vw;
  margin-left: auto;
}
@media screen and (max-width: 1023.999px) {
  .p-front_firstview .splide__track {
    width: 100%;
  }
}
.p-front_firstview .splide__arrow {
  display: none;
}
.p-front_firstview .splide__pagination {
  gap: 25px;
  top: 244px;
  bottom: auto;
  left: 29px;
  padding: 0;
  right: auto;
  width: 7px;
}
.p-front_firstview .splide__pagination li {
  height: 7px;
  line-height: 7px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_firstview .splide__pagination {
    display: none;
  }
}
.p-front_firstview .splide__pagination__page {
  width: 7px;
  height: 7px;
  margin: 0;
  opacity: 1;
}
.p-front_firstview .splide__pagination__page.is-active {
  transform: scale(1);
  background: #43A55B;
}

.p-front_summary {
  padding-top: 213px;
  background: url(../images/front_summary_bg.jpg) 0 0/cover no-repeat;
}
@media screen and (max-width: 1023.999px) {
  .p-front_summary {
    background: url(../images/front_summary_bg_sp.jpg) 0 0/cover no-repeat;
  }
}

.p-front_movie {
  text-align: center;
}
.p-front_movie iframe {
  margin-inline: auto;
  max-width: 992px;
  width: calc(100vw - 60px);
  height: auto;
  aspect-ratio: 1.7/1;
}

.p-front_catch {
  height: 784px;
  text-align: center;
  overflow: hidden;
}
.p-front_catch__inner {
  position: relative;
  width: fit-content;
  margin: 148px auto 0;
}
@media screen and (max-width: 1023.999px) {
  .p-front_catch__inner {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-front_catch {
    height: 1215px;
    padding: 356px 30px 0;
  }
}
@media screen and (max-width: 1023.999px) and (min-width: 540.001px) {
  .p-front_catch {
    height: 110vw;
    min-height: 1100px;
    padding: 280px 30px 0;
  }
}
.p-front_catch__title {
  margin-bottom: 57px;
  font-size: 35px;
  line-height: 55px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_catch__title {
    margin-bottom: 27px;
    font-size: 25px;
    line-height: 38px;
  }
}
.p-front_catch__text {
  line-height: 40px;
  font-weight: 500;
}
@media screen and (max-width: 1023.999px) {
  .p-front_catch__text {
    line-height: 30px;
    text-align: left;
  }
}
.p-front_catch__image--01 {
  position: absolute;
  top: -52px;
  left: -354px;
  width: 288px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_catch__image--01 {
    width: 124px;
    height: 124px;
    top: -184px;
    left: 0;
  }
}
@media screen and (max-width: 1023.999px) and (min-width: 540.001px) {
  .p-front_catch__image--01 {
    width: 164px;
    height: 164px;
    top: -134px;
    left: -20vw;
  }
}
.p-front_catch__image--02 {
  position: absolute;
  bottom: -65px;
  left: -236px;
  width: 180px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_catch__image--02 {
    top: -300px;
    bottom: auto;
    left: auto;
    right: 0;
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 1023.999px) and (min-width: 540.001px) {
  .p-front_catch__image--02 {
    top: -250px;
    bottom: auto;
    left: auto;
    right: -17vw;
    width: 210px;
    height: 210px;
  }
}
.p-front_catch__image--03 {
  position: absolute;
  top: 68px;
  right: -356px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_catch__image--03 {
    width: 330px;
    top: calc(100% + 60px);
    left: 50%;
    right: 0;
    transform: translateX(-50%);
  }
  .p-front_catch__image--03 img {
    height: auto;
  }
}
@media screen and (max-width: 1023.999px) and (min-width: 540.001px) {
  .p-front_catch__image--03 {
    width: 330px;
    top: calc(100% + 60px);
    left: 50%;
    right: 0;
    transform: translateX(-50%);
  }
}

.p-front_about,
.p-front_have_fun {
  max-width: 980px;
  margin-inline: auto;
}
.p-front_about__inner,
.p-front_have_fun__inner {
  display: flex;
  flex-direction: row-reverse;
}
.p-front_about__inner > *,
.p-front_have_fun__inner > * {
  flex: 1;
}
.p-front_about__inner picture,
.p-front_have_fun__inner picture {
  position: relative;
}
.p-front_about__inner img,
.p-front_have_fun__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  object-fit: contain;
}
@media screen and (max-width: 1023.999px) {
  .p-front_about__inner,
  .p-front_have_fun__inner {
    display: block;
    margin-inline: auto;
  }
  .p-front_about__inner img,
  .p-front_have_fun__inner img {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 60px;
  }
}
.p-front_about__contents > *,
.p-front_have_fun__contents > * {
  max-width: 404px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_about__contents > *,
  .p-front_have_fun__contents > * {
    max-width: 100%;
    margin-inline: 30px;
  }
}
.p-front_about__title,
.p-front_have_fun__title {
  margin-bottom: 23px;
  font-size: 35px;
  line-height: 55px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_about__title,
  .p-front_have_fun__title {
    font-size: 30px;
  }
}
.p-front_about__text,
.p-front_have_fun__text {
  margin-bottom: 60px;
  font-weight: 400;
}
.p-front_about__links,
.p-front_have_fun__links {
  border-top: 1px dashed #707070;
}
.p-front_about__links li a,
.p-front_have_fun__links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-block: 20px;
  border-bottom: 1px dashed #707070;
  color: #666767;
  font-weight: bold;
}
.p-front_about__links li a::after,
.p-front_have_fun__links li a::after {
  content: "";
  display: block;
  width: 17px;
  height: 10px;
  margin-right: 16px;
  background: url(../images/links_arrow.svg) center center/contain no-repeat;
  transition: all 0.2s ease-in-out;
}
.p-front_about__links li a:hover::after,
.p-front_have_fun__links li a:hover::after {
  margin-right: 0;
}

.p-front_about {
  margin-bottom: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_about {
    margin-bottom: 59px;
  }
  .p-front_about__text {
    margin-bottom: 59px;
  }
}

.p-front_have_fun {
  padding-bottom: 127px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_have_fun {
    padding-bottom: 98px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-front_have_fun__text {
    margin-left: 0;
    margin-bottom: 35px;
  }
}
.p-front_have_fun__contents > * {
  display: block;
  margin-left: auto;
}
@media screen and (max-width: 1023.999px) {
  .p-front_have_fun__contents > * {
    margin-inline: 30px;
  }
}
.p-front_have_fun__inner {
  flex-direction: row;
}
.p-front_have_fun__inner img {
  position: absolute;
  top: 0;
  left: calc(-1 * (50vw - 490px));
}
@media screen and (max-width: 1023.999px) {
  .p-front_have_fun__inner img {
    position: relative;
    left: 0;
  }
}

.p-front_service {
  position: relative;
  padding-block: 100px;
  background-color: #FAF5EC;
  overflow-x: hidden;
}
@media screen and (max-width: 1023.999px) {
  .p-front_service {
    padding-block: 61px 58px;
    overflow: visible;
  }
}
.p-front_service__inner {
  max-width: 980px;
  margin-inline: auto;
}
.p-front_service__en {
  display: block;
  margin-bottom: 12px;
  color: rgb(230, 125, 173);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-front_service__en {
    margin-bottom: 11px;
  }
}
.p-front_service__title {
  margin-bottom: 21px;
  font-size: 35px;
  line-height: 55px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-front_service__title {
    margin-bottom: 23px;
    font-size: 30px;
  }
}
.p-front_service__text {
  margin-bottom: 127px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-front_service__text {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-front_service__slide__wrapper {
    visibility: visible;
  }
}
.p-front_service__slide {
  margin-bottom: 100px;
  gap: 64px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_service__slide {
    gap: 81px;
    flex-direction: column;
    width: calc(100vw - 60px);
    max-width: 500px;
    margin-inline: auto !important;
    padding-bottom: 51px !important;
  }
}
.p-front_service__slide__item {
  width: 498px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_service__slide__item {
    width: 100%;
  }
}
.p-front_service__slide__box {
  position: relative;
  height: 395px;
  padding: 36px 25px 64px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_service__slide__box {
    height: 336px;
    padding: 26px 18px 35px;
  }
}
.p-front_service__slide h3 {
  margin-bottom: 16px;
  font-size: 25px;
  color: #517C5C;
  line-height: 45px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_service__slide h3 {
    margin-bottom: 14px;
    font-size: 18px;
  }
}
.p-front_service__slide img {
  width: 100%;
  height: 216px;
  margin-bottom: 14px;
  border-radius: 20px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_service__slide img {
    height: 157px;
  }
}
.p-front_service__slide p {
  color: #666767;
  font-weight: 400;
}
.p-front_service__slide .c-button {
  position: absolute;
  top: 100%;
  bottom: 0;
  left: auto;
  right: 41px;
  width: 217px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023.999px) {
  .p-front_service__slide .c-button {
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
  }
}
.p-front_service .splide__arrow {
  display: none;
}
.p-front_service .splide__pagination {
  display: none;
}
.p-front_service__bg_text {
  position: absolute;
  top: 366px;
  left: 0;
  right: 0;
  font-size: 162px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1023.999px) {
  .p-front_service__bg_text {
    top: 0;
    font-size: 53px;
    line-height: 72px;
    transform: translate(-0.5rem, -77%);
    overflow: hidden;
  }
}
.p-front_service .c-button--important {
  width: 623px;
  margin: 100px auto 0;
}
@media screen and (max-width: 1023.999px) {
  .p-front_service .c-button--important {
    width: calc(100vw - 60px);
    max-width: 500px;
    margin: 53px auto 0;
  }
}

.p-front_recruit {
  background: url(../images/front_recruit_bg.jpg) center center/cover no-repeat;
  padding: 104px 0 127px;
}
.p-front_recruit > * {
  margin-left: calc(50vw - 490px);
}
@media screen and (max-width: 1023.999px) {
  .p-front_recruit > * {
    margin-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .p-front_recruit {
    padding: 60px 30px 0;
    height: 823px;
    background: url(../images/front_recruit_bg_sp.jpg) center bottom/cover no-repeat;
    color: #666767;
  }
  .p-front_recruit > * {
    margin-left: 0;
  }
}
.p-front_recruit__en {
  display: block;
  margin-bottom: 8px;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .p-front_recruit__en {
    display: none;
  }
}
.p-front_recruit__title {
  margin-bottom: 30px;
  font-size: 35px;
  color: #fff;
  line-height: 45px;
}
@media screen and (max-width: 600px) {
  .p-front_recruit__title {
    margin-bottom: 23px;
    color: #666767;
    font-size: 30px;
  }
}
.p-front_recruit__text {
  margin-bottom: 58px;
  max-width: 490px;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .p-front_recruit__text {
    width: 100%;
    margin-bottom: 23px;
    color: #666767;
  }
}
.p-front_recruit .c-button {
  width: 217px;
  margin-left: 0;
}
@media screen and (max-width: 600px) {
  .p-front_recruit .c-button {
    margin-inline: auto;
  }
}

.p-front_info {
  padding-block: 150px 114px;
  background: url(../images/front_info_bg.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 1023.999px) {
  .p-front_info {
    padding-block: 58px;
    background: url(../images/front_info_bg_sp.jpg) center center/cover no-repeat;
  }
}

.p-front_news {
  position: relative;
  display: flex;
  width: calc(50vw + 490px);
  margin-left: calc(50vw - 490px);
  padding: 72px 0 76px 60px;
  background-color: #fff;
  border-radius: 70px 0 0 70px;
  color: #666767;
}
@media screen and (max-width: 1023.999px) {
  .p-front_news {
    flex-direction: column;
    width: calc(100vw - 30px);
    margin-left: 30px;
    padding: 62px 0 79px 37px;
    border-radius: 50px 0 0 50px;
  }
}
@media screen and (max-width: 1023.999px) and (min-width: 540.001px) {
  .p-front_news {
    margin-left: calc(50vw - 250px - 37px);
    max-width: calc(50vw + 250px + 37px);
  }
}
.p-front_news__title {
  margin-right: 51px;
  font-size: 35px;
  line-height: 55px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_news__title {
    margin-right: 0;
    margin-bottom: 26px;
    font-size: 30px;
  }
}
.p-front_news__item a {
  display: grid;
  grid-template-columns: 60px 101px 1fr;
  grid-template-areas: "date category text";
  gap: 15px;
  margin-bottom: 20px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.p-front_news__item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023.999px) {
  .p-front_news__item a {
    grid-template-columns: 60px 1fr;
    grid-template-areas: "date category" "text text";
    gap: 11px 16px;
    margin-bottom: 26px;
    padding-right: 30px;
  }
}
.p-front_news__item .c-cms_date {
  grid-area: date;
}
.p-front_news__item .c-cms_category {
  grid-area: category;
}
@media screen and (max-width: 1023.999px) {
  .p-front_news__item .c-cms_category {
    width: 101px;
  }
}
.p-front_news__text {
  grid-area: text;
  font-weight: 400;
  text-overflow: ellipsis;
}
.p-front_news .c-button {
  position: absolute;
  bottom: -35px;
  right: calc(50vw - 490px);
  width: 217px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_news .c-button {
    right: 30px;
  }
}

.p-front_contact {
  margin-top: 126px;
  margin-left: calc(50vw - 490px);
}
@media screen and (max-width: 1023.999px) {
  .p-front_contact {
    margin-top: 58px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1023.999px) and (max-width: 540px) {
  .p-front_contact {
    margin-inline: 30px;
  }
}
.p-front_contact__title {
  margin-bottom: 12px;
  font-size: 35px;
  line-height: 55px;
}
@media screen and (max-width: 1023.999px) {
  .p-front_contact__title {
    margin-bottom: 23px;
    font-size: 30px;
  }
}
.p-front_contact__text {
  margin-bottom: 24px;
  font-weight: 400;
}
@media screen and (max-width: 1023.999px) {
  .p-front_contact__text {
    margin-bottom: 21px;
  }
}
.p-front_contact .c-button {
  width: 217px;
  margin-left: 0;
}
@media screen and (max-width: 1023.999px) {
  .p-front_contact .c-button {
    margin-inline: auto;
  }
}

/* ==========================================================================
// Page - About
// ========================================================================*/
/* ------------------------
// 晩成園を知る
// ----------------------*/
.p-page_about .c-button {
  width: 325px;
  margin-inline: auto;
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .c-button {
    width: calc(100vw - 60px);
  }
}
.p-page_about .p-about_what {
  text-align: center;
}
.p-page_about .p-about_what__inner {
  max-width: 980px;
  margin-inline: auto;
  padding-block: 104px 98px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_what__inner {
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 540px) {
  .p-page_about .p-about_what__inner {
    max-width: 100%;
    margin-inline: 30px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_what__inner {
    padding-block: 58px 60px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_what .c-text_sentence {
    text-align: left;
  }
}
.p-page_about .p-about_what__boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 58px 24px;
  color: #fff;
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_what__boxes {
    grid-template-columns: repeat(2, 1fr);
    margin: 29px 0 35px;
    gap: 18px 19px;
    font-weight: 400;
    line-height: 20px;
  }
}
.p-page_about .p-about_what__box {
  display: flex;
  justify-content: center;
  height: 116px;
  align-items: center;
  border-radius: 20px;
}
.p-page_about .p-about_what__box:nth-child(odd) {
  background-color: rgb(230, 125, 173);
}
.p-page_about .p-about_what__box:nth-child(even) {
  background: rgba(230, 125, 173, 0.6);
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_what__box {
    height: 62px;
  }
}
.p-page_about .p-about_what .c-button {
  margin: 58px auto 0;
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_what .c-button {
    margin: 30px 0 0;
  }
}
.p-page_about .p-about_history {
  background-color: #FAF5EC;
  text-align: center;
}
.p-page_about .p-about_history__inner {
  max-width: 980px;
  margin-inline: auto;
  padding-block: 103px 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_history__inner {
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 540px) {
  .p-page_about .p-about_history__inner {
    max-width: 100%;
    margin-inline: 30px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_history__inner {
    padding-block: 60px 58px;
  }
}
.p-page_about .p-about_history__inner > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "text image";
  margin-bottom: 58px;
}
.p-page_about .p-about_history__inner > div p {
  grid-area: text;
}
.p-page_about .p-about_history__inner > div img {
  grid-area: image;
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_history__inner > div img {
    margin-left: 0;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_history__inner > div {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "image" "text";
    margin-bottom: 33px;
  }
}
.p-page_about .p-about_history .c-text_sentence {
  text-align: left;
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_history .c-text_sentence {
    margin-top: 35px;
  }
}
.p-page_about .p-about_future {
  text-align: center;
}
.p-page_about .p-about_future__inner {
  max-width: 980px;
  margin-inline: auto;
  padding-block: 100px 97px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_future__inner {
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 540px) {
  .p-page_about .p-about_future__inner {
    max-width: 100%;
    margin-inline: 30px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_future__inner {
    padding-block: 60px;
  }
}
.p-page_about .p-about_future__list {
  display: flex;
  gap: 59px;
  margin-block: 58px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_future__list {
    gap: 35px;
    flex-direction: column;
    margin-block: 35px;
  }
}
.p-page_about .p-about_future__item {
  flex: 1;
}
.p-page_about .p-about_future__item p {
  margin-top: 20px;
  color: #666767;
  font-weight: bold;
  line-height: 25px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_future__item img {
    aspect-ratio: 1.47/1;
    border-radius: 20px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_about .p-about_future .c-text_sentence {
    text-align: left;
  }
}

/* ------------------------
// 音更晩成園とは
// ----------------------*/
.p-page_corporate .c-text_en,
.p-page_corporate .c-text_h2 {
  display: block;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .l-2cols {
    margin-bottom: 0;
  }
}
.p-page_corporate .p-vision {
  padding-block: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-vision {
    padding-block: 60px;
  }
}
.p-page_corporate .p-service {
  padding-block: 96px 130px;
  background-color: #FAF5EC;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-service {
    padding-block: 60px 99px;
  }
}
.p-page_corporate .p-service__boxes {
  width: 1020px;
  display: grid;
  gap: 64px 30px;
  grid-template-columns: repeat(3, 1fr);
  margin-left: -20px;
}
@media screen and (max-width: 1080px) {
  .p-page_corporate .p-service__boxes {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-service__boxes {
    gap: 66px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-page_corporate .p-service__box {
  position: relative;
  padding: 28px 10px 0;
  width: 100%;
  height: 175px;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-service__box {
    padding: 34px 20px 0;
  }
}
.p-page_corporate .p-service__box h3 {
  margin-bottom: 8px;
  font-size: 25px;
  font-weight: 400;
  color: #517C5C;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-service__box h3 {
    font-size: 18px;
  }
}
.p-page_corporate .p-service__box p {
  font-weight: 400;
}
.p-page_corporate .p-service__box .c-button {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 217px;
  transform: translate(-50%, 50%);
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-service__box .c-button {
    height: 65px;
  }
}
.p-page_corporate .p-message {
  padding-block: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-message {
    padding-block: 60px;
  }
}
.p-page_corporate .p-corporate {
  margin-bottom: 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-corporate {
    margin-bottom: 50px;
  }
}
.p-page_corporate .p-corporate__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-corporate__table {
    width: 100%;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-corporate__table tr {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 3px;
  }
  .p-page_corporate .p-corporate__table tr:first-child th {
    border-radius: 10px 10px 0 0;
  }
  .p-page_corporate .p-corporate__table tr:last-child td {
    border-radius: 0 0 10px 10px;
  }
}
.p-page_corporate .p-corporate__table th, .p-page_corporate .p-corporate__table td {
  padding: 19px 25px;
  vertical-align: middle;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-corporate__table th, .p-page_corporate .p-corporate__table td {
    padding: 0 20px;
    height: 100%;
  }
}
.p-page_corporate .p-corporate__table th {
  background-color: #87A287;
  font-weight: 500;
  text-align: center;
  color: #fff;
  width: 222px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-corporate__table th {
    width: 100%;
    height: 44px;
    line-height: 44px;
    text-align: left;
  }
}
.p-page_corporate .p-corporate__table td {
  background-color: #F7F7F7;
  font-weight: 400;
  color: #666767;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-corporate__table td {
    padding: 10px 20px;
    text-align: left;
  }
}
.p-page_corporate .p-corporate__table__round--tl {
  border-top-left-radius: 10px;
}
.p-page_corporate .p-corporate__table__round--tr {
  border-top-right-radius: 10px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-corporate__table__round--tr {
    border-radius: 0;
  }
}
.p-page_corporate .p-corporate__table__round--bl {
  border-bottom-left-radius: 10px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_corporate .p-corporate__table__round--bl {
    border-radius: 0;
  }
}
.p-page_corporate .p-corporate__table__round--br {
  border-bottom-right-radius: 10px;
}

/* ------------------------
// これまでの歩み
// ----------------------*/
.p-page_history .p-history01 {
  padding-top: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_history .p-history01 {
    padding-top: 60px;
  }
}
.p-page_history .p-history01,
.p-page_history .p-history02 {
  margin-bottom: 90px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_history .p-history01,
  .p-page_history .p-history02 {
    margin-bottom: 60px;
  }
}
.p-page_history .p-history__heading, .p-page_history .p-history__text {
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_history .p-history__heading, .p-page_history .p-history__text {
    margin-left: 0;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_history .p-history__heading {
    display: block;
    text-align: center;
  }
}
.p-page_history .p-history__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
.p-page_history .p-chronology {
  padding-top: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_history .p-chronology {
    padding-top: 0;
  }
}
.p-page_history .p-chronology__en, .p-page_history .p-chronology__title {
  display: block;
  text-align: center;
}
.p-page_history .p-timeline {
  margin-left: 12px;
  padding-left: 31px;
  padding-bottom: 30px;
  border-left: 3px solid #87A287;
}
.p-page_history .p-timeline__era {
  position: relative;
  margin-bottom: 2px;
  color: #87A287;
  font-size: 25px;
  font-weight: 500;
}
.p-page_history .p-timeline__era::before {
  content: "";
  position: absolute;
  left: -47px;
  top: 0;
  display: block;
  width: 30px;
  height: 30px;
  background-color: #87A287;
  border-radius: 100px;
}
.p-page_history .p-timeline__era::after {
  content: "";
  position: absolute;
  left: -38px;
  top: 9px;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 100px;
}
.p-page_history .p-timeline__event {
  margin-top: 30px;
  line-height: 35px;
  font-weight: 400;
}
.p-page_history .p-timeline__event + .p-timeline__era {
  margin-top: 33px;
}
.p-page_history .l-buttons_area {
  margin-top: 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_history .l-buttons_area {
    margin-top: 40px;
  }
}

/* ------------------------
// これからの晩成園
// ----------------------*/
.p-page_future .p-future01,
.p-page_future .p-future02,
.p-page_future .p-future03 {
  padding-block: 96px 100px;
}
.p-page_future .p-future01__en, .p-page_future .p-future01__title,
.p-page_future .p-future02__en,
.p-page_future .p-future02__title,
.p-page_future .p-future03__en,
.p-page_future .p-future03__title {
  display: block;
  text-align: center;
}
.p-page_future .p-future01 .l-2cols img,
.p-page_future .p-future02 .l-2cols img,
.p-page_future .p-future03 .l-2cols img {
  grid-area: col2;
}
@media screen and (max-width: 1023.999px) {
  .p-page_future .p-future01,
  .p-page_future .p-future02,
  .p-page_future .p-future03 {
    padding-block: 58px 60px;
  }
}
.p-page_future .p-future02 {
  background-color: #FAF5EC;
}

/* ==========================================================================
// Page - Interview
// ========================================================================*/
/* ------------------------
// 社員インタビュー
// ----------------------*/
.p-page_staff_interview {
  position: relative;
}
.p-page_staff_interview .p-interview_fv {
  position: relative;
  padding-left: calc(50vw - 490px);
  height: 547px;
  padding-top: 210px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_fv {
    position: relative;
    background: url(../images/interview_fv_bg_sp01.jpg) center top/contain no-repeat;
    height: 120vw;
    padding-top: 68vw;
    padding-left: 30px;
  }
  .p-page_staff_interview .p-interview_fv::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 300px;
    background: url(../images/interview_fv_bg_sp02.jpg) center bottom/cover no-repeat;
    z-index: -10;
  }
}
.p-page_staff_interview .p-interview_fv img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 547px;
  z-index: -10;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_fv .c-text_en {
    margin-bottom: 7px;
  }
}
.p-page_staff_interview .p-interview_fv__heading {
  margin-bottom: 21px;
  color: #666767;
  font-size: 25px;
  font-weight: 500;
  line-height: 45px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_fv__heading {
    margin-bottom: 9px;
    font-size: 20px;
    line-height: 35px;
  }
}
.p-page_staff_interview .p-interview_fv__position {
  color: #666767;
  font-weight: 400;
}
.p-page_staff_interview .c-button {
  width: 325px;
  margin-inline: auto;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .c-button {
    width: calc(100vw - 60px);
  }
}
.p-page_staff_interview .p-interview_article__inner {
  display: flex;
  margin-inline: auto;
  max-width: 980px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_article__inner {
    display: block;
    margin-inline: 30px;
  }
}
.p-page_staff_interview .p-interview_questions {
  display: flex;
  width: 100%;
  padding-top: 18vh;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_questions {
    display: block;
    padding-top: 0;
  }
}
.p-page_staff_interview .p-interview_questions__images {
  flex: 1;
  position: sticky;
  top: 18vh;
  left: 0;
  width: 100%;
  height: 586px;
}
.p-page_staff_interview .p-interview_questions__images picture {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s ease-in-out;
}
.p-page_staff_interview .p-interview_questions__images picture:not(:first-child) {
  opacity: 0;
}
.p-page_staff_interview .p-interview_questions__images.second picture {
  opacity: 1;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_questions__images {
    position: relative;
    top: 0;
    height: auto;
    aspect-ratio: 8/11;
  }
}
.p-page_staff_interview .p-interview_questions__contents {
  flex: 1;
  padding-block: 100px 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_questions__contents {
    padding-block: 0;
  }
}
.p-page_staff_interview .p-interview_questions__contents .p-interview_question {
  margin-left: 97px;
}
.p-page_staff_interview .p-interview_questions__contents .p-interview_question:not(:first-child) {
  margin-top: 150px;
}
.p-page_staff_interview .p-interview_questions__contents .p-interview_question__title {
  margin-bottom: 23px;
  color: #666767;
  font-size: 25px;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_questions__contents .p-interview_question__title {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 32px;
  }
}
.p-page_staff_interview .p-interview_questions__contents .p-interview_question__text {
  color: #666767;
  font-weight: 400;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_questions__contents .p-interview_question {
    margin-left: 0;
  }
  .p-page_staff_interview .p-interview_questions__contents .p-interview_question:not(:first-child) {
    margin-top: 0;
  }
}
.p-page_staff_interview .p-interview_list {
  background: url(../images/interview_list_bg.jpg) center center/cover no-repeat;
  margin-top: 100px;
  padding-block: 100px 82px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_list {
    background: url(../images/interview_list_bg_sp.jpg) center center/cover no-repeat;
    margin-top: 50px;
    padding-block: 58px 38px;
  }
}
.p-page_staff_interview .p-interview_list__inner {
  max-width: 980px;
  margin-inline: auto;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_list__inner {
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 540px) {
  .p-page_staff_interview .p-interview_list__inner {
    max-width: 100%;
    margin-inline: 30px;
  }
}
.p-page_staff_interview .p-interview_list__list {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-block: 58px 50px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_list__list {
    flex-direction: column;
    gap: 38px;
  }
}
.p-page_staff_interview .p-interview_list__item a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease-in-out;
}
.p-page_staff_interview .p-interview_list__item a:hover {
  opacity: 0.7;
}
.p-page_staff_interview .p-interview_list__item p {
  margin-top: 20px;
  font-weight: 400;
  color: #666767;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_list__item p {
    line-height: 20px;
  }
}
.p-page_staff_interview .p-interview_list__image {
  clip-path: circle();
  overflow: hidden;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_list__image img {
    width: 56vw;
  }
}
.p-page_staff_interview .p-interview_list .c-button::after {
  rotate: 180deg;
  right: auto;
  left: 24px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff_interview .p-interview_list .c-text_h2 {
    font-size: 25px;
  }
}

/* ==========================================================================
// Page - Information
// ========================================================================*/
/* ------------------------
// 情報公開
// ----------------------*/
.p-page_information .p-information_section {
  padding-block: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_information .p-information_section {
    padding-block: 60px;
  }
}
.p-page_information .p-information_section--bg_color {
  background-color: #FAF5EC;
}
.p-page_information .p-information_section .l-inner {
  margin-inline: auto;
  width: 650px;
  max-width: calc(100vw - 60px);
}
.p-page_information .p-information_section p {
  margin-bottom: 25px;
  font-weight: 400;
}

/* ------------------------
// 各種情報公開
// ----------------------*/
.p-page_more .p-more_section {
  padding-block: 100px 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_more .p-more_section {
    padding-block: 70px 60px;
  }
}
.p-page_more .p-more_box p {
  position: relative;
  padding: 21px 0 21px 103px;
  background-color: #87A287;
  border-radius: 20px 20px 0 0;
  color: #fff;
  font-size: 25px;
}
.p-page_more .p-more_box p::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 28px;
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 100px;
  transform: translateY(-50%);
}
.p-page_more .p-more_box p::after {
  content: "＋";
  position: absolute;
  top: 50%;
  left: 40px;
  width: 16px;
  height: 16px;
  color: #666767;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  transform: translateY(-50%);
}
.p-page_more .p-more_lists {
  display: grid;
  grid-template-columns: repeat(4, 210px);
  background-color: #F7F7F7;
  padding: 25px 37px 29px;
  border-radius: 0 0 20px 20px;
  color: #3B4043;
  font-weight: 400;
}
@media screen and (max-width: 1023.999px) {
  .p-page_more .p-more_lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 4px;
  }
}
.p-page_more .c-button {
  margin: 90px auto 0;
}
@media screen and (max-width: 1023.999px) {
  .p-page_more .c-button {
    margin-top: 50px;
  }
}
.p-page_more .l-inner > *:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_more .l-inner > *:not(:last-child) {
    margin-bottom: 35px;
  }
}

/* ------------------------
// プライバシーポリシー
// ----------------------*/
.p-page_privacy_policy {
  color: #666767;
}
.p-page_privacy_policy .c-child_title p {
  margin-top: 12px;
  font-size: 25px;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_privacy_policy .c-child_title p {
    margin-top: 0;
    font-size: 16px;
    line-height: 30px;
  }
}
.p-page_privacy_policy .p-privacy__inner {
  max-width: 980px;
  margin-inline: auto;
}
@media screen and (max-width: 1023.999px) {
  .p-page_privacy_policy .p-privacy__inner {
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 540px) {
  .p-page_privacy_policy .p-privacy__inner {
    max-width: 100%;
    margin-inline: 30px;
  }
}
.p-page_privacy_policy .p-privacy__date {
  margin-top: 30px;
  text-align: right;
  font-weight: 400;
}
.p-page_privacy_policy .p-privacy__title {
  margin-top: 56px;
  text-align: center;
  font-weight: 400;
}
.p-page_privacy_policy .p-privacy ol {
  margin-block: 102px 60px;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 1023.999px) {
  .p-page_privacy_policy .p-privacy ol {
    margin-block: 60px 30px;
  }
}
.p-page_privacy_policy .p-privacy ol li {
  position: relative;
  padding: 25px 0 25px 2em;
  list-style-position: inside;
  font-weight: 400;
  text-indent: -2em;
}
@media screen and (max-width: 1023.999px) {
  .p-page_privacy_policy .p-privacy ol li {
    text-indent: -1.7em;
  }
}
.p-page_privacy_policy .p-privacy ol li::marker {
  font-size: 25px;
  font-weight: 500;
}
.p-page_privacy_policy .p-privacy ol li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 1px;
  width: 980px;
  background-color: #707070;
}
@media screen and (max-width: 1023.999px) {
  .p-page_privacy_policy .p-privacy ol li::after {
    width: 100%;
    max-width: calc(100vw - 60px);
  }
}
.p-page_privacy_policy .p-privacy__name {
  font-size: 25px;
  line-height: 40px;
  text-align: right;
}
@media screen and (max-width: 1023.999px) {
  .p-page_privacy_policy .p-privacy__name {
    font-size: 16px;
    line-height: 30px;
  }
}
.p-page_privacy_policy .p-privacy .c-button {
  margin: 90px auto 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_privacy_policy .p-privacy .c-button {
    margin: 40px auto 60px;
  }
}

/* ==========================================================================
// Page - Concept
// ========================================================================*/
/* ------------------------
// コンセプト
// ----------------------*/
.p-page_concept .p-catch {
  padding-block: 97px 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-catch {
    padding-block: 53px 49px;
  }
}
.p-page_concept .p-catch__en, .p-page_concept .p-catch__title, .p-page_concept .p-catch__text {
  display: block;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-catch__text {
    max-width: 980px;
    margin-inline: auto;
    margin-bottom: 25px;
    text-align: left;
  }
}
@media screen and (max-width: 1023.999px) and (max-width: 1023.999px) {
  .p-page_concept .p-catch__text {
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1023.999px) and (max-width: 540px) {
  .p-page_concept .p-catch__text {
    max-width: 100%;
    margin-inline: 30px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-catch__flex {
    display: flex;
    flex-direction: column-reverse;
  }
}
.p-page_concept .p-concept__slide__wrapper {
  margin-block: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-concept__slide__wrapper {
    margin-block: 0 25px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-concept__slide img {
    height: 100%;
  }
}
.p-page_concept .splide__pagination {
  display: none;
}
.p-page_concept .p-outline {
  padding-block: 100px;
  background: url(../images/concept_bg.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-outline {
    padding-block: 60px;
    background: url(../images/concept_bg_sp.jpg) center center/cover no-repeat;
  }
}
.p-page_concept .p-user:not(:last-child) {
  margin-bottom: 135px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-user:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-user .l-2cols {
    margin-bottom: 0;
  }
}
.p-page_concept .p-user__image {
  grid-area: col2;
  position: relative;
}
.p-page_concept .p-user__image img {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  margin-inline: 0;
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-user__image img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
}
.p-page_concept .p-user__box {
  position: relative;
  margin-top: 190px;
  padding: 60px;
  width: 550px;
  background-color: #fff;
  border-radius: 20px;
  z-index: 1000;
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-user__box {
    margin-top: 0;
    padding: 0;
    width: 100%;
    background: none;
    border-radius: 0;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-user__box__text {
    margin-block: 25px 35px;
  }
}
.p-page_concept .p-user__box__title {
  margin-bottom: 25px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-user__box__title {
    margin-bottom: 35px;
    text-align: center;
  }
}
.p-page_concept .p-user__box .c-button {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -37px;
  transform: translateX(-50%);
}
@media screen and (max-width: 1023.999px) {
  .p-page_concept .p-user__box .c-button {
    position: relative;
    left: 0;
    bottom: auto;
    transform: none;
  }
}
.p-page_concept .l-2cols--reverse .p-user__image img {
  left: 0;
  right: auto;
}

/* ------------------------
// 今日は、もっと楽しもう
// ----------------------*/
.p-page_enjoy .p-message {
  padding-block: 96px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .p-message {
    padding-block: 60px;
  }
  .p-page_enjoy .p-message__text {
    text-align: left;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .c-point01__heading,
  .p-page_enjoy .c-point02__heading {
    text-align: center;
  }
}
.p-page_enjoy .c-point01__heading, .p-page_enjoy .c-point01__text,
.p-page_enjoy .c-point02__heading,
.p-page_enjoy .c-point02__text {
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .c-point01__heading, .p-page_enjoy .c-point01__text,
  .p-page_enjoy .c-point02__heading,
  .p-page_enjoy .c-point02__text {
    margin-left: 0;
  }
}
.p-page_enjoy .c-point01__title,
.p-page_enjoy .c-point02__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .c-point01__title,
  .p-page_enjoy .c-point02__title {
    line-height: 35px;
  }
}
.p-page_enjoy .c-point01 {
  margin-bottom: 90px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .c-point01 {
    margin-bottom: 60px;
  }
}
.p-page_enjoy .l-buttons_area {
  margin-top: 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .l-buttons_area {
    margin-top: 40px;
  }
}
.p-page_enjoy .p-activity {
  padding-block: 96px 100px;
  background-color: #FAF5EC;
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .p-activity {
    padding-block: 60px;
  }
}
.p-page_enjoy .p-activity__en, .p-page_enjoy .p-activity__title {
  display: block;
  text-align: center;
}
.p-page_enjoy .p-activity__boxes {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .p-activity__boxes {
    flex-direction: column;
  }
}
.p-page_enjoy .p-activity__box {
  flex: 1;
}
.p-page_enjoy .p-activity__box img {
  margin-bottom: 25px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .p-activity__box img {
    margin-bottom: 35px;
    height: auto;
    border-radius: 20px;
    aspect-ratio: 3/2;
  }
}
.p-page_enjoy .p-activity__box h3 {
  margin-bottom: 25px;
  color: #666767;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .p-activity__box h3 {
    line-height: 35px;
  }
}
.p-page_enjoy .p-activity + .l-buttons_area {
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .p-activity + .l-buttons_area {
    gap: 20px;
  }
}
.p-page_enjoy .p-activity + .l-buttons_area p {
  flex: 100%;
  color: #517C5C;
  font-weight: bold;
  text-align: center;
}
.p-page_enjoy .p-activity + .l-buttons_area .c-button:nth-child(2) {
  margin-left: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .p-activity + .l-buttons_area .c-button:nth-child(2) {
    margin-left: 0;
  }
}
.p-page_enjoy .p-activity + .l-buttons_area .c-button:nth-child(3) {
  margin-bottom: 60px;
  margin-right: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_enjoy .p-activity + .l-buttons_area .c-button:nth-child(3) {
    margin-right: 0;
  }
}

/* ------------------------
// 毎日の「楽しもう」
// ----------------------*/
.p-page_everyday .p-message {
  padding-block: 96px 100px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_everyday .p-message {
    padding-block: 60px;
  }
  .p-page_everyday .p-message__text {
    text-align: left;
  }
}
.p-page_everyday .c-point__heading, .p-page_everyday .c-point__text {
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_everyday .c-point__heading, .p-page_everyday .c-point__text {
    margin-left: 0;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_everyday .c-point__heading {
    text-align: center;
  }
}
.p-page_everyday .c-point__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
.p-page_everyday .c-point01,
.p-page_everyday .c-point02,
.p-page_everyday .c-point03,
.p-page_everyday .c-point04 {
  margin-bottom: 90px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_everyday .c-point01,
  .p-page_everyday .c-point02,
  .p-page_everyday .c-point03,
  .p-page_everyday .c-point04 {
    margin-bottom: 60px;
  }
}
.p-page_everyday .l-buttons_area {
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_everyday .l-buttons_area {
    gap: 20px;
  }
}
.p-page_everyday .l-buttons_area p {
  flex: 100%;
  color: #517C5C;
  font-weight: bold;
  text-align: center;
}
.p-page_everyday .l-buttons_area .c-button:nth-child(2) {
  margin-inline: 200px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_everyday .l-buttons_area .c-button:nth-child(2) {
    margin-inline: 0;
  }
}

/* ------------------------
// 毎日の「楽しもう」
// ----------------------*/
.p-page_event .p-message {
  padding-block: 96px 100px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_event .p-message {
    padding-block: 60px;
  }
  .p-page_event .p-message__text {
    text-align: left;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_event .c-point01,
  .p-page_event .c-point02 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_event .c-point01__heading,
  .p-page_event .c-point02__heading,
  .p-page_event .c-point03__heading {
    text-align: center;
  }
}
.p-page_event .c-point01__heading, .p-page_event .c-point01__text,
.p-page_event .c-point02__heading,
.p-page_event .c-point02__text,
.p-page_event .c-point03__heading,
.p-page_event .c-point03__text {
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_event .c-point01__heading, .p-page_event .c-point01__text,
  .p-page_event .c-point02__heading,
  .p-page_event .c-point02__text,
  .p-page_event .c-point03__heading,
  .p-page_event .c-point03__text {
    margin-left: 0;
  }
}
.p-page_event .c-point01__title,
.p-page_event .c-point02__title,
.p-page_event .c-point03__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_event .c-point01__title,
  .p-page_event .c-point02__title,
  .p-page_event .c-point03__title {
    line-height: 35px;
  }
}
.p-page_event .p-works {
  padding-block: 96px 100px;
  background-color: #FAF5EC;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_event .p-works {
    padding-block: 60px;
  }
  .p-page_event .p-works .l-inner {
    width: calc(100vw - 90px);
    margin-inline: auto;
  }
}
.p-page_event .p-works__images {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_event .p-works__images {
    display: block;
  }
}
.p-page_event .p-works__images img {
  margin-bottom: 25px;
  border-radius: 20px;
}
.p-page_event .p-works__image {
  width: 300px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_event .p-works__image {
    width: 100%;
    margin-top: 35px;
  }
}
.p-page_event .l-buttons_area {
  flex-wrap: wrap;
  margin-top: 100px;
}
.p-page_event .l-buttons_area :nth-child(2) {
  margin-inline: 200px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_event .l-buttons_area :nth-child(2) {
    margin-inline: auto;
    margin-bottom: 60px;
  }
}

/* ------------------------
// ギャラリー
// ----------------------*/
.p-page_gallery .p-gallery {
  padding-block: 0 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_gallery .p-gallery {
    padding-block: 10px 60px;
  }
}
.p-page_gallery .p-gallery__title {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_gallery .p-gallery__title {
    margin-top: 50px;
  }
}
.p-page_gallery .p-gallery__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_gallery .p-gallery__images {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
}
.p-page_gallery .p-gallery img {
  height: auto;
}

/* ------------------------
// 利用者の「楽しもう」
// ----------------------*/
.p-page_user .c-points__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "point01 point01" "point02 point03" "point04 point04";
  gap: 96px 60px;
  padding-block: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_user .c-points__inner {
    padding-block: 60px 96px;
    display: block;
  }
}
.p-page_user .c-point:not(:last-child) {
  margin-bottom: 60px;
}
.p-page_user .c-point__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_user .c-point__title {
    margin-bottom: 35px;
    line-height: 35px;
  }
}
.p-page_user .c-point .c-button {
  width: 217px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_user .c-point .c-button {
    width: 200px;
  }
}
.p-page_user .c-point img {
  border-radius: 20px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_user .c-point img {
    height: auto;
    aspect-ratio: 3/2;
  }
}
.p-page_user .c-point01 {
  grid-area: point01;
}
.p-page_user .c-point01 .c-point__heading,
.p-page_user .c-point01 .c-point__text {
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_user .c-point01 .c-point__heading,
  .p-page_user .c-point01 .c-point__text {
    margin-left: 0;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_user .c-point01 .c-point__heading {
    text-align: center;
  }
}
.p-page_user .c-point01 .l-2cols {
  margin-bottom: 0;
}
.p-page_user .c-point02 {
  grid-area: point02;
}
.p-page_user .c-point02 img {
  margin-bottom: 25px;
}
.p-page_user .c-point02 .c-point__text {
  margin-bottom: 50px;
}
.p-page_user .c-point03 {
  grid-area: point03;
}
.p-page_user .c-point03 img {
  margin-bottom: 25px;
}
.p-page_user .c-point03 .c-point__text {
  margin-bottom: 50px;
}
.p-page_user .c-point04 {
  grid-area: point04;
  text-align: center;
}
.p-page_user .c-point04 img {
  margin-bottom: 25px;
}
.p-page_user .c-point04 .c-point__title {
  margin-bottom: 40px;
}
.p-page_user .c-point04 .c-button {
  margin-inline: auto;
}
.p-page_user .p-voice {
  padding-block: 100px;
  background-color: #FAF5EC;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_user .p-voice {
    padding-block: 60px;
  }
}
.p-page_user .p-voice__boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_user .p-voice__boxes {
    display: block;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_user .p-voice__box:not(:last-child) {
    margin-bottom: 60px;
  }
}
.p-page_user .p-voice__box img {
  height: auto;
  aspect-ratio: 23/16;
  border-radius: 20px;
}
.p-page_user .p-voice__box p {
  margin-block: 25px 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_user .p-voice__box p {
    margin-bottom: 35px;
  }
}
.p-page_user .p-voice .c-button {
  width: 217px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_user .p-voice .c-button {
    width: 200px;
  }
}
.p-page_user .l-buttons_area {
  margin-top: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_user .l-buttons_area {
    margin-top: 40px;
  }
}

/* ------------------------
// ご家族の声
// ----------------------*/
.p-page_family_voice_single .l-inner {
  padding-block: 84px 100px;
}
.p-page_family_voice_single .p-heading {
  display: flex;
  gap: 35px;
  padding: 40px 40px 44px 52px;
  border-radius: 20px;
  background-color: #FAF5EC;
}
@media screen and (max-width: 1023.999px) {
  .p-page_family_voice_single .p-heading {
    flex-direction: column;
    gap: 25px;
    padding: 28px 28px 32px;
  }
}
.p-page_family_voice_single .p-heading img {
  border-radius: 20px;
  height: auto;
  width: 200px;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 1023.999px) {
  .p-page_family_voice_single .p-heading img {
    width: 100%;
    aspect-ratio: 5/4;
  }
}
.p-page_family_voice_single .p-heading > div {
  flex: 1;
}
.p-page_family_voice_single .p-heading__title {
  margin-bottom: 25px;
  color: #666767;
  font-size: 35px;
  font-weight: 500;
  line-height: 55px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_family_voice_single .p-heading__title {
    font-size: 25px;
    line-height: 35px;
  }
}
.p-page_family_voice_single article h2,
.p-page_family_voice_single article h3,
.p-page_family_voice_single article h4,
.p-page_family_voice_single article h5,
.p-page_family_voice_single article h6,
.p-page_family_voice_single article p {
  max-width: 650px;
  margin-inline: auto;
}
.p-page_family_voice_single article h3 {
  margin-block: 60px 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgb(230, 125, 173);
  color: #666767;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_family_voice_single article h3 {
    font-size: 20px;
    line-height: 32px;
  }
}
.p-page_family_voice_single article p {
  font-weight: 400;
}
@media screen and (max-width: 1023.999px) {
  .p-page_family_voice_single article p {
    margin-left: 9px;
  }
}
.p-page_family_voice_single .c-button--prev {
  margin-bottom: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_family_voice_single .c-button--prev {
    margin-bottom: 60px;
  }
}
.p-page_family_voice_single .l-buttons_area {
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 100px;
  margin-inline: auto;
  max-width: 742px;
}
.p-page_family_voice_single .l-buttons_area .c-button {
  width: 351px;
  padding-right: 45px;
  padding-bottom: 19px;
  font-size: 16px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_family_voice_single .l-buttons_area {
    width: 100%;
  }
}

/* ------------------------
// 職員の「楽しもう」
// ----------------------*/
.p-page_staff .c-point01 {
  padding-top: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff .c-point01 {
    padding-top: 60px;
  }
}
.p-page_staff .c-point01 .c-point__heading,
.p-page_staff .c-point01 .c-point__text {
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff .c-point01 .c-point__heading,
  .p-page_staff .c-point01 .c-point__text {
    margin-left: 0;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff .c-point01 .c-point__heading {
    text-align: center;
  }
}
.p-page_staff .c-point01 .c-point__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff .c-point01 .c-point__title {
    line-height: 35px;
  }
}
.p-page_staff .c-point01 .l-2cols {
  margin-bottom: 0;
}
.p-page_staff .p-have_fun {
  padding-top: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff .p-have_fun {
    padding-top: 60px;
  }
}
.p-page_staff .p-have_fun__en, .p-page_staff .p-have_fun__title {
  display: block;
  text-align: center;
}
.p-page_staff .p-have_fun__text {
  margin-block: 25px 50px;
}
.p-page_staff .p-have_fun img {
  border-radius: 20px;
}
.p-page_staff .p-interview {
  padding-block: 96px 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff .p-interview {
    padding-block: 60px 40px;
  }
}
.p-page_staff .p-interview__en, .p-page_staff .p-interview__title {
  display: block;
  text-align: center;
}
.p-page_staff .p-interview__images {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_staff .p-interview__images {
    flex-direction: column;
    gap: 15px;
  }
  .p-page_staff .p-interview__images img {
    height: auto;
    aspect-ratio: 3/2;
  }
}
.p-page_staff .p-interview__text {
  margin-block: 25px 50px;
}
/* ------------------------
// 利用者と共に「楽しもう」
// ----------------------*/
.p-page_with .p-message {
  padding-block: 96px 100px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_with .p-message {
    padding-block: 60px;
  }
  .p-page_with .p-message__text {
    text-align: left;
  }
}
.p-page_with .l-2cols {
  margin-bottom: 0;
}
.p-page_with .c-point01 {
  margin-bottom: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_with .c-point01 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_with .c-point01,
  .p-page_with .c-point02 {
    margin-bottom: 60px;
  }
}
.p-page_with .c-point02 {
  margin-block: 96px 98px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_with .c-point02 {
    margin-block: 60px;
  }
}
.p-page_with .c-point03 {
  margin-block: 96px 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_with .c-point03 {
    margin-block: 60px 40px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_with .c-point01__heading,
  .p-page_with .c-point02__heading,
  .p-page_with .c-point03__heading,
  .p-page_with .p-approach__heading {
    text-align: center;
  }
}
.p-page_with .c-point01__heading, .p-page_with .c-point01__text,
.p-page_with .c-point02__heading,
.p-page_with .c-point02__text,
.p-page_with .c-point03__heading,
.p-page_with .c-point03__text,
.p-page_with .p-approach__heading,
.p-page_with .p-approach__text {
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_with .c-point01__heading, .p-page_with .c-point01__text,
  .p-page_with .c-point02__heading,
  .p-page_with .c-point02__text,
  .p-page_with .c-point03__heading,
  .p-page_with .c-point03__text,
  .p-page_with .p-approach__heading,
  .p-page_with .p-approach__text {
    margin-left: 0;
  }
}
.p-page_with .c-point01__title,
.p-page_with .c-point02__title,
.p-page_with .c-point03__title,
.p-page_with .p-approach__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_with .c-point01__title,
  .p-page_with .c-point02__title,
  .p-page_with .c-point03__title,
  .p-page_with .p-approach__title {
    line-height: 35px;
  }
}
.p-page_with .c-pick_up,
.p-page_with .p-approach {
  padding-block: 100px 100px;
  background-color: #FAF5EC;
}
@media screen and (max-width: 1023.999px) {
  .p-page_with .c-pick_up,
  .p-page_with .p-approach {
    padding-block: 60px;
  }
}
.p-page_with .c-pick_up__wrapper {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_with .c-pick_up__wrapper {
    flex-direction: column;
    gap: 60px;
  }
}
.p-page_with .c-pick_up__box {
  flex: 1;
}
.p-page_with .c-pick_up img {
  margin-bottom: 25px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_with .c-pick_up img {
    margin-bottom: 35px;
    height: auto;
  }
}
.p-page_with .c-pick_up__title {
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 35px;
}
.p-page_with .l-buttons_area .c-button:first-child {
  margin-inline: 200px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_with .l-buttons_area .c-button:first-child {
    margin-inline: auto;
    margin-bottom: 30px;
  }
}

/* ------------------------
// 職員インタビュー
// ----------------------*/
.p-page_interview .p-movie {
  margin-inline: auto;
  padding-block: 96px 100px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_interview .p-movie {
    padding-block: 60px;
    margin-inline: 30px;
  }
}
.p-page_interview .p-movie iframe {
  width: 640px;
  max-width: 100%;
}
@media screen and (max-width: 1023.999px) {
  .p-page_interview .p-movie iframe {
    height: auto;
    aspect-ratio: 1.8/1;
  }
}
.p-page_interview .p-interview {
  padding-block: 96px 100px;
  background-color: #FAF5EC;
}
@media screen and (max-width: 1023.999px) {
  .p-page_interview .p-interview {
    padding-block: 60px;
  }
}
.p-page_interview .p-interview__en, .p-page_interview .p-interview__title {
  display: block;
  text-align: center;
}
.p-page_interview .p-interview__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_interview .p-interview__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }
}
.p-page_interview .p-interview__item {
  text-align: center;
}
.p-page_interview .p-interview__item__position {
  margin-block: 25px 13px;
  color: #666767;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  text-decoration: underline;
}
@media screen and (max-width: 1023.999px) {
  .p-page_interview .p-interview__item__position {
    margin-top: 35px;
  }
}
.p-page_interview .p-interview__item__title {
  font-weight: 400;
}
.p-page_interview .p-interview__item img {
  height: auto;
  border-radius: 20px;
}
.p-page_interview .l-buttons_area {
  margin-top: 80px;
  max-width: 594px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_interview .l-buttons_area {
    margin-top: 40px;
  }
}
.p-page_interview .l-buttons_area .c-button {
  width: 277px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_interview .l-buttons_area .c-button {
    width: 100%;
  }
}

/* ------------------------
// 地域で「楽しもう」
// ----------------------*/
.p-page_region .p-support {
  margin-block: 100px 58px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_region .p-support {
    margin-block: 53px 51px;
  }
}
.p-page_region .p-support__heading {
  grid-area: title;
  margin-right: 86px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_region .p-support__heading {
    margin-right: 0;
    text-align: center;
  }
}
.p-page_region .p-support__en {
  font-weight: bold;
}
.p-page_region .p-support__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
.p-page_region .p-support__text {
  grid-area: text;
  margin-right: 86px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_region .p-support__text {
    margin-right: 0;
  }
}
.p-page_region .p-nature {
  margin-bottom: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_region .p-nature {
    margin-bottom: 51px;
  }
}
.p-page_region .p-nature .l-2cols {
  grid-template-areas: "image title" "image text";
}
@media screen and (max-width: 1023.999px) {
  .p-page_region .p-nature .l-2cols {
    grid-template-areas: "title" "image" "text";
  }
}
.p-page_region .p-nature .l-2cols img {
  grid-area: image;
}
@media screen and (max-width: 1023.999px) {
  .p-page_region .p-nature .l-2cols img {
    aspect-ratio: 3/2;
    border-radius: 20px;
  }
}
.p-page_region .p-nature__heading {
  grid-area: title;
  margin-left: 86px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_region .p-nature__heading {
    margin-left: 0;
    text-align: center;
  }
}
.p-page_region .p-nature__en {
  font-weight: bold;
}
.p-page_region .p-nature__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
.p-page_region .p-nature__text_area {
  grid-area: text;
  margin-left: 86px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_region .p-nature__text_area {
    margin-left: 0;
  }
}
.p-page_region .p-nature__text {
  margin-bottom: 56px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_region .p-nature__text {
    margin-bottom: 25px;
  }
}
.p-page_region .p-community {
  margin-bottom: 76px;
  padding-block: 96px 100px;
  background-color: #FAF5EC;
}
@media screen and (max-width: 1023.999px) {
  .p-page_region .p-community {
    padding-block: 62px 60px;
  }
}
.p-page_region .p-community__en, .p-page_region .p-community__title {
  display: block;
  text-align: center;
}
.p-page_region .p-community__flex {
  display: flex;
  gap: 60px;
  margin-top: 25px;
}
.p-page_region .p-community__flex p {
  flex: 1;
}
.p-page_region .p-community__flex .c-button {
  align-self: flex-end;
}
@media screen and (max-width: 1023.999px) {
  .p-page_region .p-community__flex {
    flex-direction: column;
    gap: 25px;
  }
}

/* ------------------------
// 音更町の自然, 音更町のコミュニティ
// ----------------------*/
.p-page_nature .c-points__intro,
.p-page_community .c-points__intro {
  grid-area: intro;
  margin: 100px auto 97px;
  max-width: 650px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_nature .c-points__intro,
  .p-page_community .c-points__intro {
    margin: 51px auto 62px;
  }
}
.p-page_nature .c-points__point01, .p-page_nature .c-points__point02, .p-page_nature .c-points__point03,
.p-page_community .c-points__point01,
.p-page_community .c-points__point02,
.p-page_community .c-points__point03 {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-areas: "image" "title" "point";
}
.p-page_nature .c-points__point01 img, .p-page_nature .c-points__point02 img, .p-page_nature .c-points__point03 img,
.p-page_community .c-points__point01 img,
.p-page_community .c-points__point02 img,
.p-page_community .c-points__point03 img {
  grid-area: image;
  margin-bottom: 25px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_nature .c-points__point01, .p-page_nature .c-points__point02, .p-page_nature .c-points__point03,
  .p-page_community .c-points__point01,
  .p-page_community .c-points__point02,
  .p-page_community .c-points__point03 {
    grid-template-areas: "title" "image" "point";
  }
}
.p-page_nature .c-points__point02, .p-page_nature .c-points__point03,
.p-page_community .c-points__point02,
.p-page_community .c-points__point03 {
  flex: 1;
}
.p-page_nature .c-points__titles,
.p-page_community .c-points__titles {
  grid-area: title;
}
@media screen and (max-width: 1023.999px) {
  .p-page_nature .c-points__titles,
  .p-page_community .c-points__titles {
    display: block;
    text-align: center;
  }
}
.p-page_nature .c-points__title,
.p-page_community .c-points__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
.p-page_nature .c-points__point01 .c-text_sentence,
.p-page_community .c-points__point01 .c-text_sentence {
  grid-area: point;
  max-width: 650px;
  margin-inline: auto;
}
.p-page_nature .c-points__point01 .c-points__titles,
.p-page_community .c-points__point01 .c-points__titles {
  width: 100%;
  max-width: 650px;
  margin-inline: auto;
}
.p-page_nature .c-points__flex,
.p-page_community .c-points__flex {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_nature .c-points__flex,
  .p-page_community .c-points__flex {
    flex-direction: column;
    gap: 62px;
  }
}

/* ==========================================================================
// Page - User Guide
// ========================================================================*/
/* ------------------------
// ご利用案内
// ----------------------*/
.p-page_guide .c-text_en,
.p-page_guide .c-text_h2 {
  display: block;
  text-align: center;
}
.p-page_guide .p-usage {
  padding-block: 85px 76px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-usage {
    padding-block: 53px 51px;
  }
}
.p-page_guide .p-usage__list {
  margin-block: 25px;
  font-weight: bold;
  border-top: 1px dashed #707070;
  color: #666767;
}
.p-page_guide .p-usage__list li {
  padding-block: 20px;
  border-bottom: 1px dashed #707070;
}
.p-page_guide .p-usage .c-button {
  margin-top: 60px;
  margin-left: 0;
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-usage .c-button {
    margin-top: 25px;
  }
}
.p-page_guide .p-usage .l-2cols {
  margin-bottom: 0;
}
.p-page_guide .p-usage .l-2cols img {
  margin-left: 0;
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-usage .l-2cols img {
    aspect-ratio: 3/2;
    border-radius: 20px;
  }
}
.p-page_guide .p-usage .l-2cols > div {
  margin-left: 86px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-usage .l-2cols > div {
    margin-left: 0;
  }
}
.p-page_guide .p-access {
  background: url(../images/user_guide_bg.jpg) center center/cover no-repeat;
  padding-block: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-access {
    padding-block: 62px 60px;
    background: url(../images/user_guide_bg_sp.jpg) center center/cover no-repeat;
  }
}
.p-page_guide .p-access .l-2cols img {
  margin-left: 0;
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-access .l-2cols img {
    aspect-ratio: 3/2;
    border-radius: 20px;
  }
}
.p-page_guide .p-access .l-2cols > div {
  margin-right: 86px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-access .l-2cols > div {
    margin-right: 0;
  }
}
.p-page_guide .p-access__list {
  border-top: 1px dashed #707070;
}
.p-page_guide .p-access__list li {
  border-bottom: 1px dashed #707070;
  padding-block: 20px;
}
.p-page_guide .p-access__name {
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-access__name {
    margin-bottom: 15px;
  }
}
.p-page_guide .p-access__address {
  font-weight: 400;
}
.p-page_guide .p-access .c-button {
  margin-top: 60px;
  margin-left: 0;
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-access .c-button {
    margin-top: 30px;
  }
}
.p-page_guide .p-faq {
  padding-block: 76px 92px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-faq {
    padding-block: 51px 57px;
  }
}
.p-page_guide .p-faq__boxes {
  display: flex;
  gap: 30px;
  justify-content: space-around;
  margin-bottom: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-faq__boxes {
    display: block;
    width: fit-content;
    margin-inline: auto;
  }
}
.p-page_guide .p-faq__boxes li {
  flex: 1;
}
.p-page_guide .p-faq__boxes li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 116px;
  background-color: rgb(230, 125, 173);
  border-radius: 20px;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-faq__boxes li a {
    display: block;
    height: auto;
    background: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #666767;
    text-align: left;
  }
  .p-page_guide .p-faq__boxes li a::before {
    content: "●";
    display: inline-block;
    margin-right: 0.5em;
    color: #F0B1CE;
    font-weight: 500;
  }
}
.p-page_guide .p-faq__boxes li:nth-child(2) a {
  background-color: rgba(230, 125, 173, 0.6);
}
@media screen and (max-width: 1023.999px) {
  .p-page_guide .p-faq__boxes li:nth-child(2) a {
    background: none;
  }
}

/* ------------------------
// ご利用にあたって
// ----------------------*/
.p-page_fees .p-heading {
  padding-block: 100px 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-heading {
    padding-block: 60px 53px;
  }
}
.p-page_fees .p-heading__text {
  max-width: 650px;
  margin-inline: auto;
  font-weight: 400;
}
.p-page_fees .p-heading__buttons {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-block: 60px 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-heading__buttons {
    display: block;
    margin-block: 30px 60px;
  }
}
.p-page_fees .p-heading__buttons .c-button {
  flex: 1;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-heading__buttons .c-button {
    height: 72px;
    font-size: 16px;
  }
  .p-page_fees .p-heading__buttons .c-button:not(:last-child) {
    margin-bottom: 25px;
  }
}
.p-page_fees .p-heading img {
  margin-bottom: 25px;
}
.p-page_fees .p-usage_menu {
  background-color: #FAF5EC;
  padding-block: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage_menu {
    padding-block: 60px;
  }
}
.p-page_fees .p-usage_menu__title {
  margin-bottom: 60px;
  text-align: center;
}
.p-page_fees .p-usage_menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 685px;
  margin-inline: auto;
}
.p-page_fees .p-usage_menu__list li > a {
  position: relative;
  width: 100%;
  height: 72px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 36px;
  border: 1px dashed #707070;
  color: #666767;
  line-height: 24px;
  transition: all 0.3s ease-in-out;
}
.p-page_fees .p-usage_menu__list li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  right: 22px;
  width: 17px;
  height: 10px;
  background: url(../images/links_arrow.svg) center center/contain no-repeat;
  transform: translateY(-50%);
  rotate: 90deg;
  transform-origin: top;
  transition: all 0.3s ease-in-out;
}
.p-page_fees .p-usage_menu__list li > a:hover {
  background-color: #517C5C;
  border: none;
  color: #fff;
}
.p-page_fees .p-usage_menu__list li > a:hover::after {
  background: url(../images/links_arrow--white.svg) center center/contain no-repeat;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage_menu__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-page_fees .p-usage {
  padding-block: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage {
    padding-block: 50px;
  }
}
.p-page_fees .p-usage--bg_color {
  background-color: #FAF5EC;
}
.p-page_fees .p-usage--bg_color .p-usage__table td {
  background-color: #fff;
}
.p-page_fees .p-usage__title {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__title {
    text-align: left;
  }
}
.p-page_fees .p-usage__categories {
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__categories {
    gap: 13px 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.p-page_fees .p-usage__category {
  display: inline-block;
  padding: 2px 20px 4px;
  background-color: rgb(230, 125, 173);
  border-radius: 30px;
  color: #fff;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__category {
    white-space: nowrap;
  }
}
.p-page_fees .p-usage__sub_title {
  margin-block: 60px 25px;
  font-size: 25px;
  line-height: 40px;
  color: #666767;
  font-weight: 500;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__sub_title {
    margin-top: 37px;
    font-size: 20px;
    line-height: 32px;
  }
}
.p-page_fees .p-usage__sub_title span {
  display: block;
  margin-bottom: 13px;
  color: rgb(230, 125, 173);
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__sub_title span {
    margin-bottom: 7px;
  }
}
.p-page_fees .p-usage h4 {
  margin-bottom: 15px;
  color: #666767;
  font-weight: bold;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage h4 {
    font-weight: 500;
  }
}
.p-page_fees .p-usage__text {
  font-weight: 400;
}
.p-page_fees .p-usage__text:not(:last-child) {
  margin-bottom: 25px;
}
.p-page_fees .p-usage__text .u-underline {
  font-weight: 500;
}
.p-page_fees .p-usage__text--small {
  max-width: 600px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__text_list {
    display: inline-block;
    margin-left: 1em;
    text-indent: -1em;
  }
}
.p-page_fees .p-usage__text_list::before {
  content: "●";
  margin-right: 0.2em;
  color: #87A287;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__text_list::before {
    list-style-position: outside;
  }
}
.p-page_fees .p-usage__table {
  width: 490px;
  margin-bottom: 15px;
  border-collapse: separate;
  border-spacing: 3px;
  border-radius: 10px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__table {
    width: 100%;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__table thead {
    display: none;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__table tr {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
  }
}
.p-page_fees .p-usage__table th, .p-page_fees .p-usage__table td {
  height: 62px;
  vertical-align: middle;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__table th, .p-page_fees .p-usage__table td {
    height: 100%;
  }
}
.p-page_fees .p-usage__table th {
  background-color: #87A287;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.p-page_fees .p-usage__table th:first-child {
  width: 180px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__table th {
    height: 44px;
    line-height: 44px;
    border-radius: 10px 10px 0 0;
  }
  .p-page_fees .p-usage__table th:first-child {
    width: 100%;
  }
}
.p-page_fees .p-usage__table td {
  padding: 24px 20px 23px 25px;
  background-color: #F7F7F7;
  font-weight: 400;
  color: #666767;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__table td {
    padding: 10px 20px;
    line-height: 25px;
    text-align: center;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__table td:last-child {
    border-radius: 0 0 10px 10px;
  }
}
.p-page_fees .p-usage__table--large {
  width: 100%;
}
.p-page_fees .p-usage__table--large th:first-child {
  width: 222px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__table--large th:first-child {
    width: 100%;
  }
}
.p-page_fees .p-usage__table--large td:last-child {
  width: 272px;
  padding-right: 32px;
  text-align: right;
}
@media screen and (max-width: 1023.999px) {
  .p-page_fees .p-usage__table--large td:last-child {
    width: 100%;
    padding-right: 20px;
    text-align: center;
  }
}
.p-page_fees .p-usage__table--middle {
  width: 100%;
}
.p-page_fees .p-usage__table__round--tl {
  border-top-left-radius: 10px;
}
.p-page_fees .p-usage__table__round--tr {
  border-top-right-radius: 10px;
}
.p-page_fees .p-usage__table__round--bl {
  border-bottom-left-radius: 10px;
}
.p-page_fees .p-usage__table__round--br {
  border-bottom-right-radius: 10px;
}
.p-page_fees .p-usage__table__green {
  color: #517C5C;
}
.p-page_fees .l-buttons_area {
  margin-top: 50px;
}

/* ------------------------
// アクセス
// ----------------------*/
.p-page_access .p-access__inner {
  padding-block: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_access .p-access__inner {
    padding-block: 60px 0;
  }
}
.p-page_access .p-access .l-2cols {
  grid-template-columns: auto;
  margin-bottom: 100px;
}
.p-page_access .p-access .l-2cols > img {
  margin-left: 0;
  padding-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_access .p-access .l-2cols {
    grid-template-areas: "col1" "col2";
    gap: 25px;
  }
  .p-page_access .p-access .l-2cols img {
    padding-left: 0;
  }
}
.p-page_access .p-access__contents {
  max-width: 400px;
  color: #666767;
}
.p-page_access .p-access__name {
  padding-bottom: 25px;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
  border-bottom: 1px dashed #707070;
}
@media screen and (max-width: 1023.999px) {
  .p-page_access .p-access__name {
    font-size: 20px;
    line-height: 30px;
  }
}
.p-page_access .p-access__address {
  padding-block: 20px;
  border-bottom: 1px dashed #707070;
}
.p-page_access .p-access__address h4 {
  margin-bottom: 10px;
  color: #3B4043;
  font-weight: 500;
}
.p-page_access .p-access__address p {
  font-weight: 400;
}
.p-page_access .p-access__address__list {
  color: #F4D9DC;
}

/* ------------------------
// FAQ
// ----------------------*/
.p-page_faq .p-faq__en {
  display: block;
  margin-top: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_faq .p-faq__en {
    margin-top: 60px;
    text-align: center;
  }
}
.p-page_faq .p-faq__title {
  margin-bottom: 0;
}
@media screen and (max-width: 1023.999px) {
  .p-page_faq .p-faq__title {
    text-align: center;
  }
}
.p-page_faq .p-faq__question {
  position: relative;
  margin-block: 60px 25px;
  padding-inline: 70px 91px;
  padding-bottom: 29px;
  border-bottom: solid 1px #DDDDDD;
  color: #666767;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
  user-select: none;
  cursor: pointer;
}
@media screen and (max-width: 1023.999px) {
  .p-page_faq .p-faq__question {
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 25px;
    padding-inline: 53px 35px;
  }
}
.p-page_faq .p-faq__question::before {
  content: "";
  position: absolute;
  top: calc((100% - 25px) / 2);
  left: 0;
  display: block;
  width: 45px;
  height: 45px;
  background: url(../images/question_index_icon.svg) center/contain no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023.999px) {
  .p-page_faq .p-faq__question::before {
    width: 38px;
    height: 38px;
  }
}
.p-page_faq .p-faq__question::after {
  content: "";
  position: absolute;
  top: calc((100% - 25px) / 2);
  right: 21px;
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/question_icon_closed.svg) center/contain no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023.999px) {
  .p-page_faq .p-faq__question::after {
    right: 0;
    width: 20px;
    height: 20px;
  }
}
.p-page_faq .p-faq__question.is-opened::after {
  background: url(../images/question_icon_opened.svg) center/contain no-repeat;
}
.p-page_faq .p-faq__answer {
  margin-left: 76px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_faq .p-faq__answer {
    margin-left: 0;
  }
}
.p-page_faq .l-buttons_area {
  margin-top: 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_faq .l-buttons_area {
    margin-top: 40px;
  }
}

/* ==========================================================================
// Page - News
// ========================================================================*/
/* ------------------------
// お知らせ - 一覧ページ
// ----------------------*/
.p-page_news .p-news {
  padding-block: 100px 192px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_news .p-news {
    padding-block: 60px;
  }
}
.p-page_news .p-news .c-text_h2 {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_news .p-news .c-text_h2 {
    margin-bottom: 60px;
  }
}
.p-page_news .p-news__wrapper {
  display: grid;
  grid-template-columns: 694px 226px;
  justify-content: space-between;
}
@media screen and (max-width: 1023.999px) {
  .p-page_news .p-news__wrapper {
    display: block;
  }
}
.p-page_news .p-archive_box {
  position: relative;
  margin-bottom: 25px;
  color: #666767;
}
@media screen and (max-width: 1023.999px) {
  .p-page_news .p-archive_box {
    height: 100%;
  }
}
.p-page_news .p-archive_box a {
  display: block;
  width: 100%;
  padding: 30px;
  height: 230px;
  background-color: #F7F7F7;
  border-radius: 15px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_news .p-archive_box a {
    height: 100%;
    padding: 17px 18px 24px;
  }
}
.p-page_news .p-archive_box img {
  display: none;
}
@media screen and (max-width: 1023.999px) {
  .p-page_news .p-archive_box img {
    display: block;
    margin-bottom: 20px;
    height: auto;
    border-radius: 20px;
    aspect-ratio: 1.6/1;
  }
}
.p-page_news .p-archive_box__category {
  display: inline-block;
  margin-right: 10px;
  padding-inline: 11px;
  background-color: #517C5C;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 1023.999px) {
  .p-page_news .p-archive_box__category {
    margin-bottom: 5px;
  }
}
.p-page_news .p-archive_box__date {
  display: inline-block;
  color: rgb(230, 125, 173);
  font-weight: bold;
}
.p-page_news .p-archive_box__title {
  margin-block: 5px 15px;
  font-size: 25px;
  line-height: 40px;
  font-weight: 500;
}
@media screen and (max-width: 1023.999px) {
  .p-page_news .p-archive_box__title {
    margin-block: 2px 10px;
    font-size: 20px;
  }
}
.p-page_news .p-archive_box__excerpt p {
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 1023.999px) {
  .p-page_news .p-archive_box__excerpt p {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    max-height: 6em;
    white-space: wrap;
  }
}
.p-page_news .p-archive_box__link {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: block;
  padding-bottom: 3.5px;
  border-bottom: 1px solid #707070;
  font-weight: 400;
}
.p-page_news .p-side_nav nav:not(:last-child) {
  margin-bottom: 30px;
}
.p-page_news .p-side_nav__title {
  margin-bottom: 15px;
  color: rgb(230, 125, 173);
  font-weight: bold;
}
.p-page_news .p-side_nav__list {
  padding-block: 15px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.p-page_news .p-side_nav__list li {
  color: #666767;
  font-weight: 400;
  list-style: "- ";
  list-style-position: inside;
}

/* ------------------------
// お知らせ - 詳細ページ
// ----------------------*/
.p-page_news_single .c-child_title {
  padding-top: 204px;
}
.p-page_news_single .c-child_title__category {
  display: inline-block;
  padding-inline: 11px;
  background-color: #517C5C;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.p-page_news_single .c-child_title__category + .p-page_news_single .c-child_title__category {
  margin-left: 10px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_news_single .c-child_title__category {
    margin-bottom: 5px;
  }
}
.p-page_news_single .c-child_title__heading {
  margin-bottom: 20px;
  font-size: 35px;
  line-height: 55px;
}
.p-page_news_single .c-child_title__sub_heading {
  color: #666767;
}
.p-page_news_single article {
  padding-block: 100px;
  color: #666767;
}
@media screen and (max-width: 1023.999px) {
  .p-page_news_single article {
    padding-block: 60px;
  }
}
.p-page_news_single article p {
  margin-bottom: 1rem;
  font-weight: 400;
}
.p-page_news_single article h2, .p-page_news_single article h3, .p-page_news_single article h4 {
  margin-bottom: 20px;
}
.p-page_news_single article img {
  margin-bottom: 20px;
}
.p-page_news_single .c-button {
  margin-bottom: 78px;
}

/* ==========================================================================
// お問い合わせページのスタイル
// ========================================================================*/
.p-page_contact .c-child_title {
  padding-top: 214px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .c-child_title {
    padding-top: 83px;
  }
}
.p-page_contact .c-child_title .c-text_en {
  margin-bottom: 8px;
}
.p-page_contact .p-contact {
  margin-block: 100px;
  letter-spacing: 0.07em;
  color: #666767;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact {
    margin-block: 60px 74px;
  }
}
.p-page_contact .p-contact__lead {
  margin-bottom: 107px;
  font-weight: 400;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact__lead {
    margin-bottom: 60px;
    text-align: center;
  }
}
.p-page_contact .p-contact__parts {
  display: flex;
  gap: 30px;
  padding-block: 24px;
  font-weight: 400;
}
.p-page_contact .p-contact__parts:nth-child(-n+8) {
  border-bottom: 1px dashed #707070;
}
.p-page_contact .p-contact__parts__required {
  padding-inline: 14px;
  background-color: rgb(230, 125, 173);
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  color: #fff;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact__parts__required {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact__parts {
    display: block;
    padding-block: 35px;
  }
}
.p-page_contact .p-contact__labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 290px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact__labels {
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
  }
}
.p-page_contact .p-contact label {
  user-select: none;
}
.p-page_contact .p-contact__inputs {
  width: 100%;
}
.p-page_contact .p-contact__inputs input {
  padding-inline: 1em;
  border: 1px solid #707070;
  appearance: none;
}
.p-page_contact .p-contact__inputs input[type=text],
.p-page_contact .p-contact__inputs input[type=tel],
.p-page_contact .p-contact__inputs input[type=email],
.p-page_contact .p-contact__inputs input[type=date] {
  width: 398px;
  height: 51px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact__inputs input[type=text],
  .p-page_contact .p-contact__inputs input[type=tel],
  .p-page_contact .p-contact__inputs input[type=email],
  .p-page_contact .p-contact__inputs input[type=date] {
    width: 100%;
  }
}
.p-page_contact .p-contact__inputs input[name=postal-code] {
  width: 247px;
  margin-top: 12px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact__inputs input[name=postal-code] {
    width: 100%;
    margin-block: 15px;
  }
}
.p-page_contact .p-contact__inputs input[name=address] {
  width: 100%;
  margin-top: 12px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact__inputs input[name=address] {
    margin-top: 15px;
  }
}
.p-page_contact .p-contact__inputs textarea {
  width: 100%;
  height: 237px;
  padding: 1em;
  appearance: none;
}
.p-page_contact .p-contact__inputs__type {
  display: flex;
  gap: 28px;
}
.p-page_contact .p-contact input[type=checkbox] {
  position: relative;
  margin: 0 9px 3px 0;
  padding: 0;
  width: 17px;
  height: 18px;
  border: none;
  border: 1px solid #707070;
}
.p-page_contact .p-contact input[type=checkbox]::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  top: 50%;
  left: 3px;
  border-right: 3px solid rgb(230, 125, 173);
  border-bottom: 3px solid rgb(230, 125, 173);
  height: 14px;
  margin-top: -9px;
  transform: rotate(45deg);
  width: 8px;
  visibility: hidden;
}
.p-page_contact .p-contact input[type=checkbox]:checked::before {
  visibility: visible;
}
.p-page_contact .p-contact__agree {
  line-height: 1;
  display: flex;
  justify-content: center;
  margin-block: 93px 40px;
  height: 22px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact__agree {
    display: block;
    margin-block: 25px 60px;
  }
}
.p-page_contact .p-contact__agree label {
  height: 22px;
  color: #666767;
  font-weight: 400;
}
.p-page_contact .p-contact__agree input {
  width: 22px;
  height: 22px;
  border: 1px solid #707070;
  margin: 0 10px 0 0;
  appearance: none;
}
.p-page_contact .p-contact__bold {
  font-weight: bold;
}
.p-page_contact .p-contact__subtitle {
  margin-bottom: 62px;
  color: #666767;
  font-size: 35px;
  font-weight: 500;
  line-height: 35px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact__subtitle {
    margin-bottom: 60px;
    font-size: 20px;
    line-height: 32px;
  }
}
.p-page_contact .c-button {
  border: none;
  cursor: pointer;
}
.p-page_contact .p-contact--thanks {
  font-weight: 400;
  line-height: 35px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact--thanks {
    line-height: 30px;
  }
}
.p-page_contact .p-contact--thanks .l-inner {
  max-width: min(800px, 100% - 60px);
  margin-inline: auto;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact--thanks .l-inner {
    padding-block: 58px 60px;
  }
}
.p-page_contact .p-contact--thanks p + p {
  margin-top: 50px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_contact .p-contact--thanks p + p {
    margin-top: 60px;
  }
}
.p-page_contact .p-contact--confirm .c-button {
  width: 100%;
  max-width: 460px;
  margin: 75px auto 0;
  font-size: 16px;
}

/* ==========================================================================
// Page - Service
// ========================================================================*/
/* ------------------------
// 施設紹介
// ----------------------*/
@media screen and (max-width: 1023.999px) {
  .p-page_service .l-inner {
    margin-inline: auto;
  }
}
.p-page_service .p-service {
  padding-block: 100px;
  color: #666767;
}
@media screen and (max-width: 1023.999px) {
  .p-page_service .p-service {
    padding-block: 60px 0;
  }
}
.p-page_service .p-service__lead {
  margin: 0 auto 25px;
  width: max-content;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_service .p-service__lead {
    width: calc(100% - 60px);
    font-size: 20px;
    line-height: 32px;
  }
}
.p-page_service .p-service__sentence {
  margin: 0 auto 60px;
  max-width: 650px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_service .p-service__sentence {
    margin-bottom: 47px;
    width: calc(100% - 60px);
  }
}
.p-page_service .p-service_box {
  position: relative;
  padding: 28px 30px 0;
  height: 574px;
  background-color: #FAF5EC;
  border-radius: 20px;
  color: #666767;
}
@media screen and (max-width: 1023.999px) {
  .p-page_service .p-service_box {
    margin-bottom: 71px;
    padding: 40px 30px 0;
    border-radius: 0;
  }
  .p-page_service .p-service_box:not(:last-child) {
    height: 600px;
  }
}
.p-page_service .p-service_box__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 99px 64px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_service .p-service_box__wrapper {
    display: block;
  }
}
.p-page_service .p-service_box__title {
  margin-bottom: 5px;
  font-size: 35px;
  font-weight: 500;
  line-height: 55px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_service .p-service_box__title {
    font-size: 25px;
    line-height: 35px;
  }
  .p-page_service .p-service_box__title--no_table {
    font-size: 35px;
    line-height: 55px;
  }
}
.p-page_service .p-service_box__type {
  display: block;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_service .p-service_box__type {
    font-size: 16px;
  }
}
.p-page_service .p-service_box__table {
  margin-bottom: 25px;
  border-collapse: separate;
}
.p-page_service .p-service_box__table tr {
  background-color: #fff;
}
.p-page_service .p-service_box__table tr:first-child th {
  padding-top: 13px;
  border-bottom: none;
  border-radius: 20px 0 0 0;
}
.p-page_service .p-service_box__table tr:first-child td {
  padding: 15px 16px;
  border-radius: 0 20px 0 0;
  border-bottom: none;
}
.p-page_service .p-service_box__table tr:nth-child(2) th {
  padding-top: 2px;
  border-bottom: none;
}
.p-page_service .p-service_box__table tr:nth-child(2) td {
  padding: 0 16px 10px;
  border-bottom: none;
}
.p-page_service .p-service_box__table tr:last-child th {
  padding-top: 10px;
  border-radius: 0 0 0 20px;
}
.p-page_service .p-service_box__table tr:last-child td {
  padding: 10px 16px 16px;
  border-radius: 0 0 20px 0;
}
.p-page_service .p-service_box__table th, .p-page_service .p-service_box__table td {
  border: 1px solid #707070;
}
.p-page_service .p-service_box__table th {
  width: 90px;
  border-right: none;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_service .p-service_box__table th {
    width: 75px;
  }
}
.p-page_service .p-service_box__table td {
  font-weight: 400;
  line-height: 20px;
}
.p-page_service .p-service_box__sub_title {
  margin-block: 20px 5px;
  font-weight: bold;
}
.p-page_service .p-service_box .c-button {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 50%;
}

/* ------------------------
// 各施設
// ----------------------*/
.p-page_banseigakuen img,
.p-page_ryokuyousou img,
.p-page_life img,
.p-page_daycenter img,
.p-page_circle img,
.p-page_consultation img {
  border-radius: 20px;
}
.p-page_banseigakuen .c-child_title__sub_heading,
.p-page_ryokuyousou .c-child_title__sub_heading,
.p-page_life .c-child_title__sub_heading,
.p-page_daycenter .c-child_title__sub_heading,
.p-page_circle .c-child_title__sub_heading,
.p-page_consultation .c-child_title__sub_heading {
  display: block;
  color: #666767;
  font-weight: bold;
}
@media screen and (max-width: 1023.999px) {
  .p-page_banseigakuen .c-child_title__sub_heading,
  .p-page_ryokuyousou .c-child_title__sub_heading,
  .p-page_life .c-child_title__sub_heading,
  .p-page_daycenter .c-child_title__sub_heading,
  .p-page_circle .c-child_title__sub_heading,
  .p-page_consultation .c-child_title__sub_heading {
    margin-top: 15px;
    font-weight: 400;
  }
}
.p-page_banseigakuen .c-text_en,
.p-page_banseigakuen .c-text_h2,
.p-page_ryokuyousou .c-text_en,
.p-page_ryokuyousou .c-text_h2,
.p-page_life .c-text_en,
.p-page_life .c-text_h2,
.p-page_daycenter .c-text_en,
.p-page_daycenter .c-text_h2,
.p-page_circle .c-text_en,
.p-page_circle .c-text_h2,
.p-page_consultation .c-text_en,
.p-page_consultation .c-text_h2 {
  display: block;
  text-align: center;
}
.p-page_banseigakuen .p-message,
.p-page_ryokuyousou .p-message,
.p-page_life .p-message,
.p-page_daycenter .p-message,
.p-page_circle .p-message,
.p-page_consultation .p-message {
  padding-block: 97px 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_banseigakuen .p-message,
  .p-page_ryokuyousou .p-message,
  .p-page_life .p-message,
  .p-page_daycenter .p-message,
  .p-page_circle .p-message,
  .p-page_consultation .p-message {
    padding-block: 68px 59px;
  }
}
.p-page_banseigakuen .p-overview,
.p-page_ryokuyousou .p-overview,
.p-page_life .p-overview,
.p-page_daycenter .p-overview,
.p-page_circle .p-overview,
.p-page_consultation .p-overview {
  padding-block: 100px;
  background-color: #FAF5EC;
}
@media screen and (max-width: 1023.999px) {
  .p-page_banseigakuen .p-overview,
  .p-page_ryokuyousou .p-overview,
  .p-page_life .p-overview,
  .p-page_daycenter .p-overview,
  .p-page_circle .p-overview,
  .p-page_consultation .p-overview {
    padding-block: 65px 60px;
  }
  .p-page_banseigakuen .p-overview .l-2cols,
  .p-page_ryokuyousou .p-overview .l-2cols,
  .p-page_life .p-overview .l-2cols,
  .p-page_daycenter .p-overview .l-2cols,
  .p-page_circle .p-overview .l-2cols,
  .p-page_consultation .p-overview .l-2cols {
    margin-bottom: 0;
  }
}
.p-page_banseigakuen .p-activity,
.p-page_ryokuyousou .p-activity,
.p-page_life .p-activity,
.p-page_daycenter .p-activity,
.p-page_circle .p-activity,
.p-page_consultation .p-activity {
  padding-block: 100px 117px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_banseigakuen .p-activity,
  .p-page_ryokuyousou .p-activity,
  .p-page_life .p-activity,
  .p-page_daycenter .p-activity,
  .p-page_circle .p-activity,
  .p-page_consultation .p-activity {
    padding-block: 60px;
  }
}
.p-page_banseigakuen .p-activity__items,
.p-page_ryokuyousou .p-activity__items,
.p-page_life .p-activity__items,
.p-page_daycenter .p-activity__items,
.p-page_circle .p-activity__items,
.p-page_consultation .p-activity__items {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_banseigakuen .p-activity__items,
  .p-page_ryokuyousou .p-activity__items,
  .p-page_life .p-activity__items,
  .p-page_daycenter .p-activity__items,
  .p-page_circle .p-activity__items,
  .p-page_consultation .p-activity__items {
    flex-direction: column;
    gap: 35px;
  }
}
.p-page_banseigakuen .p-activity__item,
.p-page_ryokuyousou .p-activity__item,
.p-page_life .p-activity__item,
.p-page_daycenter .p-activity__item,
.p-page_circle .p-activity__item,
.p-page_consultation .p-activity__item {
  flex: 1;
}
.p-page_banseigakuen .p-activity__item img,
.p-page_ryokuyousou .p-activity__item img,
.p-page_life .p-activity__item img,
.p-page_daycenter .p-activity__item img,
.p-page_circle .p-activity__item img,
.p-page_consultation .p-activity__item img {
  margin-bottom: 25px;
  height: auto;
}
.p-page_banseigakuen .p-activity__item__title,
.p-page_ryokuyousou .p-activity__item__title,
.p-page_life .p-activity__item__title,
.p-page_daycenter .p-activity__item__title,
.p-page_circle .p-activity__item__title,
.p-page_consultation .p-activity__item__title {
  margin-bottom: 35px;
  color: #666767;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_banseigakuen .p-activity__item__title,
  .p-page_ryokuyousou .p-activity__item__title,
  .p-page_life .p-activity__item__title,
  .p-page_daycenter .p-activity__item__title,
  .p-page_circle .p-activity__item__title,
  .p-page_consultation .p-activity__item__title {
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 32px;
  }
}
.p-page_banseigakuen .p-voice,
.p-page_ryokuyousou .p-voice,
.p-page_life .p-voice,
.p-page_daycenter .p-voice,
.p-page_circle .p-voice,
.p-page_consultation .p-voice {
  padding-block: 100px;
  background-color: #FAF5EC;
}
@media screen and (max-width: 1023.999px) {
  .p-page_banseigakuen .p-voice,
  .p-page_ryokuyousou .p-voice,
  .p-page_life .p-voice,
  .p-page_daycenter .p-voice,
  .p-page_circle .p-voice,
  .p-page_consultation .p-voice {
    padding-block: 60px;
  }
}
.p-page_banseigakuen .p-information,
.p-page_ryokuyousou .p-information,
.p-page_life .p-information,
.p-page_daycenter .p-information,
.p-page_circle .p-information,
.p-page_consultation .p-information {
  padding-block: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_banseigakuen .p-information,
  .p-page_ryokuyousou .p-information,
  .p-page_life .p-information,
  .p-page_daycenter .p-information,
  .p-page_circle .p-information,
  .p-page_consultation .p-information {
    padding-block: 60px;
  }
}
.p-page_banseigakuen .p-information img,
.p-page_ryokuyousou .p-information img,
.p-page_life .p-information img,
.p-page_daycenter .p-information img,
.p-page_circle .p-information img,
.p-page_consultation .p-information img {
  margin-left: 0;
}
@media screen and (max-width: 1023.999px) {
  .p-page_banseigakuen .p-information img,
  .p-page_ryokuyousou .p-information img,
  .p-page_life .p-information img,
  .p-page_daycenter .p-information img,
  .p-page_circle .p-information img,
  .p-page_consultation .p-information img {
    margin-bottom: 35px;
  }
}
.p-page_banseigakuen .p-information__text,
.p-page_ryokuyousou .p-information__text,
.p-page_life .p-information__text,
.p-page_daycenter .p-information__text,
.p-page_circle .p-information__text,
.p-page_consultation .p-information__text {
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_banseigakuen .p-information__text,
  .p-page_ryokuyousou .p-information__text,
  .p-page_life .p-information__text,
  .p-page_daycenter .p-information__text,
  .p-page_circle .p-information__text,
  .p-page_consultation .p-information__text {
    margin-left: 0;
  }
}
.p-page_banseigakuen .p-information__buttons,
.p-page_ryokuyousou .p-information__buttons,
.p-page_life .p-information__buttons,
.p-page_daycenter .p-information__buttons,
.p-page_circle .p-information__buttons,
.p-page_consultation .p-information__buttons {
  display: flex;
  justify-content: space-around;
  gap: 60px;
  max-width: 710px;
  margin-inline: auto;
}
@media screen and (max-width: 1023.999px) {
  .p-page_banseigakuen .p-information__buttons,
  .p-page_ryokuyousou .p-information__buttons,
  .p-page_life .p-information__buttons,
  .p-page_daycenter .p-information__buttons,
  .p-page_circle .p-information__buttons,
  .p-page_consultation .p-information__buttons {
    flex-direction: column;
    gap: 37px;
  }
  .p-page_banseigakuen .p-information__buttons .c-button,
  .p-page_ryokuyousou .p-information__buttons .c-button,
  .p-page_life .p-information__buttons .c-button,
  .p-page_daycenter .p-information__buttons .c-button,
  .p-page_circle .p-information__buttons .c-button,
  .p-page_consultation .p-information__buttons .c-button {
    height: 72px;
  }
}
.p-page_banseigakuen .l-buttons_area,
.p-page_ryokuyousou .l-buttons_area,
.p-page_life .l-buttons_area,
.p-page_daycenter .l-buttons_area,
.p-page_circle .l-buttons_area,
.p-page_consultation .l-buttons_area {
  flex-wrap: wrap;
}
/* ==========================================================================
// Page - Recruit
// ========================================================================*/
/* ------------------------
// 採用情報TOP
// ----------------------*/
.p-page_recruit img {
  border-radius: 20px;
}
.p-page_recruit .c-text_en,
.p-page_recruit .c-text_h2 {
  display: block;
  text-align: center;
}
.p-page_recruit .p-lead {
  width: max-content;
  margin-inline: auto;
  padding-top: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_recruit .p-lead {
    width: 100%;
    padding-top: 60px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_recruit .p-lead__title {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 32px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_recruit .p-lead .l-2cols {
    margin-bottom: 0;
  }
}
.p-page_recruit .p-environment,
.p-page_recruit .p-occupation,
.p-page_recruit .p-person,
.p-page_recruit .p-requirements {
  padding-block: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_recruit .p-environment,
  .p-page_recruit .p-occupation,
  .p-page_recruit .p-person,
  .p-page_recruit .p-requirements {
    padding-block: 62px 60px;
  }
}
.p-page_recruit .p-environment__text,
.p-page_recruit .p-occupation__text,
.p-page_recruit .p-person__text,
.p-page_recruit .p-requirements__text {
  margin-block: 50px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_recruit .p-environment__text,
  .p-page_recruit .p-occupation__text,
  .p-page_recruit .p-person__text,
  .p-page_recruit .p-requirements__text {
    margin-block: 35px;
  }
}
.p-page_recruit .p-occupation,
.p-page_recruit .p-requirements {
  background-color: #FAF5EC;
}

/* ------------------------
// 福利厚生
// ----------------------*/
.p-page_welfare .p-message {
  padding-block: 96px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .p-message {
    padding-block: 60px;
  }
  .p-page_welfare .p-message__text {
    text-align: left;
  }
}
.p-page_welfare .l-2cols {
  margin-bottom: 0;
}
.p-page_welfare .c-point01 {
  padding-bottom: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .c-point01 {
    padding-bottom: 60px;
  }
}
.p-page_welfare .c-point02 {
  padding-top: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .c-point02 {
    padding-top: 60px;
  }
}
.p-page_welfare .p-support {
  padding-block: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .p-support {
    padding-block: 60px;
  }
}
.p-page_welfare .p-support__en, .p-page_welfare .p-support__title {
  display: block;
  text-align: center;
}
.p-page_welfare .p-support__text {
  margin-bottom: 58px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .p-support__text {
    text-align: left;
  }
}
.p-page_welfare .p-support__table {
  width: 828px;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 3px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .p-support__table {
    width: 100%;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .p-support__table thead {
    display: none;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .p-support__table tr {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
  }
}
.p-page_welfare .p-support__table tr:first-child th {
  padding-block: 19px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .p-support__table tr:first-child th {
    padding: 0;
  }
}
.p-page_welfare .p-support__table th, .p-page_welfare .p-support__table td {
  vertical-align: middle;
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .p-support__table th, .p-page_welfare .p-support__table td {
    height: 100%;
  }
}
.p-page_welfare .p-support__table th {
  background-color: #87A287;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.p-page_welfare .p-support__table th:first-child {
  width: 70px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .p-support__table th {
    height: 44px;
    line-height: 44px;
    border-radius: 10px 10px 0 0;
  }
  .p-page_welfare .p-support__table th:first-child {
    width: 100%;
  }
}
.p-page_welfare .p-support__table td {
  padding: 19px 25px 19px 19px;
  background-color: #F7F7F7;
  font-weight: 400;
  color: #666767;
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .p-support__table td {
    padding: 10px 20px;
    line-height: 25px;
    text-align: center;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .p-support__table td:last-child {
    border-radius: 0 0 10px 10px;
  }
}
.p-page_welfare .p-support__table__round--tl {
  border-top-left-radius: 10px;
}
.p-page_welfare .p-support__table__round--tr {
  border-top-right-radius: 10px;
}
.p-page_welfare .p-support__table__round--bl {
  border-bottom-left-radius: 10px;
}
.p-page_welfare .p-support__table__round--br {
  border-bottom-right-radius: 10px;
}
.p-page_welfare .p-support__table__green {
  color: #517C5C;
}
.p-page_welfare .l-buttons_area {
  margin-top: 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .l-buttons_area {
    margin-top: 40px;
  }
}
.p-page_welfare .l-buttons_area .c-button:nth-child(2) {
  margin-inline: 200px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_welfare .l-buttons_area .c-button:nth-child(2) {
    margin-inline: auto;
    margin-bottom: 30px;
  }
}

/* ------------------------
// 職種
// ----------------------*/
.p-page_environment .c-point01 {
  padding-top: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_environment .c-point01 {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_environment .c-point01__heading {
    text-align: center;
  }
}
.p-page_environment .c-point01__heading, .p-page_environment .c-point01__text {
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_environment .c-point01__heading, .p-page_environment .c-point01__text {
    margin-left: 0;
  }
}
.p-page_environment .c-point01__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_environment .c-point01__title {
    line-height: 35px;
  }
}
.p-page_environment .c-point01 .l-2cols {
  margin-bottom: 0;
}
.p-page_environment .p-pick_up_link {
  margin-top: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_environment .p-pick_up_link {
    margin-top: 60px;
  }
}
.p-page_environment .p-pick_up_link__text {
  margin-top: 25px;
}
.p-page_environment .p-pick_up_link img {
  height: auto;
}
.p-page_environment .p-pick_up_link__link {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.p-page_environment .p-pick_up_link__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023.999px) {
  .p-page_environment .p-pick_up_link__link {
    transition: none;
  }
}
.p-page_environment .l-buttons_area {
  margin-top: 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_environment .l-buttons_area {
    margin-top: 40px;
  }
}

/* ------------------------
// 働く環境
// ----------------------*/
.p-page_question .p-question__inner {
  padding-block: 36px 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_question .p-question__inner {
    padding-block: 0 40px;
  }
}
.p-page_question .p-question__index {
  position: relative;
  margin-block: 60px 25px;
  padding-inline: 70px 91px;
  padding-bottom: 25px;
  border-bottom: solid 1px #DDDDDD;
  color: #666767;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
  user-select: none;
  cursor: pointer;
}
@media screen and (max-width: 1023.999px) {
  .p-page_question .p-question__index {
    font-size: 16px;
    line-height: 30px;
    padding-inline: 53px 35px;
  }
}
.p-page_question .p-question__index::before {
  content: "";
  position: absolute;
  top: calc((100% - 25px) / 2);
  left: 0;
  display: block;
  width: 45px;
  height: 45px;
  background: url(../images/question_index_icon.svg) center/contain no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023.999px) {
  .p-page_question .p-question__index::before {
    width: 38px;
    height: 38px;
  }
}
.p-page_question .p-question__index::after {
  content: "";
  position: absolute;
  top: calc((100% - 25px) / 2);
  right: 21px;
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/question_icon_closed.svg) center/contain no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023.999px) {
  .p-page_question .p-question__index::after {
    right: 0;
    width: 20px;
    height: 20px;
  }
}
.p-page_question .p-question__index.is-opened::after {
  background: url(../images/question_icon_opened.svg) center/contain no-repeat;
}
.p-page_question .p-answer {
  margin-left: 72px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_question .p-answer {
    margin-left: 0;
  }
}
.p-page_question .p-answer__title {
  margin-bottom: 35px;
  color: #666767;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
}
.p-page_question .p-answer__title:nth-child(n+2) {
  margin-top: 50px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_question .p-answer__title {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
  }
}
.p-page_question .p-answer__comment_box {
  display: flex;
  gap: 26px;
}
.p-page_question .p-answer__comment_box:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_question .p-answer__comment_box:not(:last-child) {
    margin-bottom: 25px;
  }
}
.p-page_question .p-answer__comment_box img {
  flex: 1;
}
@media screen and (max-width: 1023.999px) {
  .p-page_question .p-answer__comment_box img {
    display: block;
    margin-inline: auto;
    width: 73px;
    height: 73px;
    margin-bottom: 19px;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_question .p-answer__comment_box {
    display: block;
  }
}
.p-page_question .p-answer__text {
  position: relative;
  width: 100%;
  padding: 25px;
  background-color: #F7F7F7;
  border-radius: 20px;
}
.p-page_question .p-answer__text::before {
  content: "";
  position: absolute;
  top: 16px;
  left: -17px;
  display: block;
  width: 38px;
  height: 40px;
  background: url(../images/question_triangle.svg) center/contain no-repeat;
}
@media screen and (max-width: 1023.999px) {
  .p-page_question .p-answer__text {
    padding: 18px 20px;
  }
  .p-page_question .p-answer__text::before {
    top: -10px;
    left: 50%;
    translate: -50% 0;
    rotate: 60deg;
  }
}
.p-page_question .l-buttons_area .c-button:first-child {
  margin-inline: 200px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_question .l-buttons_area .c-button:first-child {
    margin-inline: auto;
    margin-bottom: 40px;
  }
}

/* ------------------------
// キャリア支援
// ----------------------*/
.p-page_career .p-message {
  padding-top: 96px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_career .p-message {
    padding-top: 60px;
  }
  .p-page_career .p-message__text {
    text-align: left;
  }
}
.p-page_career .l-2cols {
  margin-bottom: 0;
}
.p-page_career .c-point {
  padding-block: 96px 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_career .c-point {
    padding-block: 60px;
  }
}

/* ------------------------
// 職種
// ----------------------*/
.p-page_job .c-point01,
.p-page_job .c-point02,
.p-page_job .c-point03 {
  padding-top: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_job .c-point01,
  .p-page_job .c-point02,
  .p-page_job .c-point03 {
    padding-top: 60px;
  }
}
.p-page_job .c-point01 .l-2cols,
.p-page_job .c-point02 .l-2cols,
.p-page_job .c-point03 .l-2cols {
  margin-bottom: 0;
}
.p-page_job .c-point01__heading,
.p-page_job .c-point02__heading,
.p-page_job .c-point03__heading {
  grid-area: title;
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_job .c-point01__heading,
  .p-page_job .c-point02__heading,
  .p-page_job .c-point03__heading {
    margin-left: 0;
  }
}
.p-page_job .c-point01__textarea,
.p-page_job .c-point02__textarea,
.p-page_job .c-point03__textarea {
  grid-area: text;
  margin-left: 60px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_job .c-point01__textarea,
  .p-page_job .c-point02__textarea,
  .p-page_job .c-point03__textarea {
    margin-left: 0;
  }
}
.p-page_job .c-point01__text,
.p-page_job .c-point02__text,
.p-page_job .c-point03__text {
  grid-area: unset;
}
@media screen and (max-width: 1023.999px) {
  .p-page_job .c-point01__text,
  .p-page_job .c-point02__text,
  .p-page_job .c-point03__text {
    margin-bottom: 25px;
  }
}
.p-page_job .c-point01 .c-button,
.p-page_job .c-point02 .c-button,
.p-page_job .c-point03 .c-button {
  width: 330px;
  margin-top: 50px;
  margin-inline: 0;
}
@media screen and (max-width: 1023.999px) {
  .p-page_job .c-point01 .c-button,
  .p-page_job .c-point02 .c-button,
  .p-page_job .c-point03 .c-button {
    width: 100%;
    margin-top: 35px;
  }
}
.p-page_job .c-point01__title,
.p-page_job .c-point02__title,
.p-page_job .c-point03__title {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 40px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_job .c-point01__title,
  .p-page_job .c-point02__title,
  .p-page_job .c-point03__title {
    margin-bottom: 35px;
    line-height: 35px;
  }
}
.p-page_job .l-buttons_area {
  margin-top: 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_job .l-buttons_area {
    margin-top: 40px;
  }
}

/* ------------------------
// 生活支援員
// ----------------------*/
.p-page_support .l-2cols {
  margin-bottom: 0;
}
.p-page_support .c-point {
  margin-top: 90px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .c-point {
    margin-top: 60px;
  }
}
.p-page_support .c-point__inner {
  padding-top: 10px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .c-point__inner {
    padding-top: 0;
  }
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .c-point__heading {
    text-align: left;
  }
}
.p-page_support .c-point img {
  height: auto;
  border-radius: 20px;
  aspect-ratio: 1.4/1;
}
.p-page_support .c-point01 .c-point__heading,
.p-page_support .c-point01 .c-point__text {
  margin-left: 0;
}
.p-page_support .c-point02 {
  margin-bottom: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .c-point02 {
    margin-top: 35px;
    margin-bottom: 54px;
  }
}
.p-page_support .c-point02 img {
  margin-left: 0;
}
.p-page_support .c-point02 .c-point__text {
  margin-left: 0;
}
.p-page_support .p-flow {
  padding-block: 100px;
  background-color: #FAF5EC;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .p-flow {
    padding-block: 62px 60px;
  }
}
.p-page_support .p-flow__en, .p-page_support .p-flow__title {
  display: block;
  text-align: center;
}
.p-page_support .p-flow__title {
  margin-bottom: 67px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .p-flow__title {
    margin-bottom: 39px;
  }
}
.p-page_support .p-timeline:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .p-timeline:not(:last-child) {
    margin-bottom: 60px;
  }
}
.p-page_support .p-timeline__index {
  height: 68px;
  background-color: #517C5C;
  border-radius: 20px 20px 0 0;
  text-align: center;
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  line-height: 68px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .p-timeline__index {
    height: 44px;
    font-size: 20px;
    line-height: 44px;
  }
}
.p-page_support .p-timeline__contents {
  padding: 0 77px 60px;
  background-color: #fff;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .p-timeline__contents {
    padding: 0 21px 35px;
  }
}
.p-page_support .p-timeline__contents h4 {
  margin-bottom: 30px;
  padding-block: 60px 7px;
  color: #666767;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
  border-bottom: 2px solid rgb(230, 125, 173);
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .p-timeline__contents h4 {
    margin-bottom: 25px;
    padding-block: 35px 7px;
    font-size: 20px;
    line-height: 32px;
  }
}
.p-page_support .p-timeline__contents table {
  width: 100%;
  color: #666767;
}
.p-page_support .p-timeline__contents table tr:not(:last-child) {
  border-bottom: 1px dotted #707070;
}
.p-page_support .p-timeline__contents table tr:first-child td {
  padding-top: 0;
}
.p-page_support .p-timeline__contents table tr:last-child td {
  padding-bottom: 0;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .p-timeline__contents table tr {
    display: flex;
    flex-direction: column;
  }
  .p-page_support .p-timeline__contents table tr:first-child th {
    padding-top: 0;
  }
  .p-page_support .p-timeline__contents table tr:last-child td {
    padding-bottom: 0;
  }
}
.p-page_support .p-timeline__contents table th {
  width: 138px;
  border-right: 1px solid #707070;
  text-align: left;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .p-timeline__contents table th {
    width: 100%;
    padding-top: 1em;
    border-right: none;
  }
}
.p-page_support .p-timeline__contents table td {
  padding: 1em 0 1em 47px;
  font-weight: 400;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .p-timeline__contents table td {
    padding: 0 0 1em;
  }
}
.p-page_support .p-timeline__button {
  height: 44px;
  background-color: #87A287;
  border-radius: 0 0 20px 20px;
  color: #fff;
  font-weight: bold;
  line-height: 44px;
  text-align: center;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .p-timeline__button {
    height: 30px;
    line-height: 30px;
    font-weight: 500;
  }
}
.p-page_support .l-buttons_area {
  margin-top: 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_support .l-buttons_area {
    margin-top: 40px;
  }
}

/* ------------------------
// 働く人
// ----------------------*/
.p-page_people .c-point01 {
  padding-top: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_people .c-point01 {
    padding-top: 60px;
  }
}
.p-page_people .c-point01 .l-2cols {
  margin-bottom: 0;
}
.p-page_people .p-pick_up_link {
  padding-top: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_people .p-pick_up_link {
    padding-top: 60px;
  }
}
.p-page_people .p-pick_up_link img {
  height: auto;
}
.p-page_people .p-pick_up_link__text {
  margin-top: 25px;
}
.p-page_people .p-pick_up_link__link {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.p-page_people .p-pick_up_link__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023.999px) {
  .p-page_people .p-pick_up_link__link:hover {
    opacity: 1;
  }
}
.p-page_people .l-buttons_area {
  margin-top: 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_people .l-buttons_area {
    margin-top: 40px;
  }
}

/* ------------------------
// 募集要項
// ----------------------*/
.p-page_recruitment .p-pick_up_link {
  margin-top: 96px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_recruitment .p-pick_up_link {
    margin-top: 60px;
  }
}
.p-page_recruitment .p-pick_up_link__text {
  margin-top: 25px;
}
.p-page_recruitment .p-pick_up_link img {
  height: auto;
}
.p-page_recruitment .p-pick_up_link__link {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.p-page_recruitment .p-pick_up_link__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023.999px) {
  .p-page_recruitment .p-pick_up_link__link {
    transition: none;
  }
}
.p-page_recruitment .l-buttons_area {
  margin-top: 80px;
}
@media screen and (max-width: 1023.999px) {
  .p-page_recruitment .l-buttons_area {
    margin-top: 40px;
  }
}

.u-hover {
  opacity: 1;
  transition: opacity 0.3s;
}
.u-hover:hover {
  opacity: 0.7;
}

.u-underline {
  text-decoration: underline;
}