@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Quicksand:wght@300..700&family=Zen+Maru+Gothic:wght@400;700;900&display=swap");
@font-face {
  font-family: "Crayon";
  src: url("../fonts/crayon_1-1.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ボックスサイズ初期化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* html / body 初期化 */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* 各要素の余白をリセット */
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* テキスト要素のフォント系リセット */
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リストのデフォルトスタイルを削除 */
ul, ol {
  list-style: none;
}

ul::marker,
ol::marker {
  content: none;
  display: none;
}

/* テーブルの見た目を初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* フォーム要素をフラットに＆継承設定 */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* テキストエリアは縦リサイズ可 */
textarea {
  resize: vertical;
  display: block;
}

/* チェックボックスやラジオボタンはデザイン前提で非表示に */
input[type=checkbox],
input[type=radio] {
  display: none;
}

/* 操作可能な要素にカーソル */
button,
label,
select,
input[type=submit],
input[type=button] {
  cursor: pointer;
}

/* select の三角形を非表示（モダンブラウザ） */
select::-ms-expand {
  display: none;
}

/* aタグの初期スタイルを削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* imgタグの余白・幅の制御 */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* SVGもblockで扱いやすく */
svg {
  display: block;
}

/* mainタグをblockに（IE対応不要なら削除してOK） */
main {
  display: block;
}

/* なめらかなフォント表示（Mac用） */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #F9F9F9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #4C3E31;
  line-height: normal;
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

body.page {
  padding-block: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .button {
    gap: 8px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button:hover .button-icon {
    transform: translateX(4px);
  }
}

.button-text {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .button-text {
    font-size: 1rem;
  }
  .button-text span {
    display: none;
  }
}

.button-icon {
  width: 35px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button-icon {
    margin-top: 2px;
    width: 24px;
  }
}

.button--white {
  padding: 13px 24px;
  background-color: #FFFEFC;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.button--white .button-text {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .button--white {
    padding-block: 10px;
    gap: 8px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button--white:hover .button-icon {
    transform: translateX(4px);
  }
}

.button-contact {
  margin-inline: auto;
  padding: 15px 30px;
  min-width: 306px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #F8B5C1;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.1607843137);
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 1px;
  color: #FFFEFC;
}
@media screen and (max-width: 767px) {
  .button-contact {
    min-width: 335px;
    padding-block: 12px;
    font-size: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button-contact:hover .button-contact__icon {
    transform: translateX(4px);
  }
}

.button-contact__text {
  display: inline-block;
  text-align: center;
  min-width: 186px;
}

.button-contact__icon {
  margin-top: 2px;
  width: 25px;
  aspect-ratio: 1/1;
  transition: transform 0.3s;
}

.button-qa {
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #EECE58;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.1607843137);
  border-radius: 45px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 700;
  color: #FFFEFC;
}
@media (hover: hover) and (pointer: fine) {
  .button-qa:hover .button-contact__icon {
    transform: translateX(4px);
  }
}

.button-contact__icon {
  width: 25px;
  aspect-ratio: 1/1;
  transition: transform 0.3s;
}

.top-section-head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.top-section-head.is-column {
  flex-direction: column;
  gap: 8px;
}
.top-section-head.is-column .top-section-head__title {
  writing-mode: vertical-rl;
}
.top-section-head.is-column .top-section-head__icon {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .top-section-head.is-column {
    flex-direction: row;
  }
  .top-section-head.is-column .top-section-head__title {
    writing-mode: horizontal-tb;
  }
}

.top-section-head__icon {
  width: 30px;
  margin-top: 3px;
}
.top-section-head__icon img {
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .top-section-head__icon {
    width: 24px;
  }
}

.top-section-head__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width: 1023px) {
  .top-section-head__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .top-section-head__title {
    font-size: 1.5rem;
  }
}

.news-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.news-item {
  width: 100%;
  padding-block: 16px 15px;
  border-bottom: 1px solid rgba(76, 62, 49, 0.35);
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 40px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.news-item:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 1023px) {
  .news-item {
    flex-direction: column;
    align-items: start;
    padding-block: 14px 13px;
    gap: 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-item:hover {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

.news-item__head {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 258px;
  flex-shrink: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.news-item__date {
  color: #459D5E;
}

.news-item__label {
  margin-top: 2px;
  font-size: 0.75rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 15px;
  border: 1px solid #4C3E31;
  border-radius: 20px;
}

.news-item__body {
  flex-grow: 1;
}

.news-item__title {
  font-weight: 500;
  letter-spacing: 0.3px;
}

.site-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.site-title.is-footer {
  color: #FFFEFC;
}

.site-title__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .site-title__link {
    gap: 2px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .site-title__link:hover {
    opacity: 0.6;
  }
}

.site-title__sub {
  font-size: 0.8125rem;
}
@media screen and (max-width: 1279px) {
  .site-title__sub {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .site-title__sub {
    font-size: 0.5rem;
  }
}

.site-title__main {
  font-size: 2.6875rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 1279px) {
  .site-title__main {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 1023px) {
  .site-title__main {
    font-size: 1.5625rem;
    line-height: 1;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.pagination-item {
  display: block;
  padding: 5px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #7B7B7B;
}
@media screen and (max-width: 767px) {
  .pagination-item {
    font-size: 1rem;
  }
}

.pagination-prev,
.pagination-next {
  display: block;
  width: 31px;
  height: 31px;
  position: relative;
}
.pagination-prev::before,
.pagination-next::before {
  content: "";
  margin-top: 3px;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .pagination-prev::before,
  .pagination-next::before {
    margin-top: 1px;
  }
}

.pagination-prev::before {
  background-image: url("../images/components/arrow-icon-prev.svg");
}

.pagination-next::before {
  background-image: url("../images/components/arrow-icon-next.svg");
}

.pagination-active {
  border-bottom: 1px solid currentColor;
  color: #4C3E31;
}

/* ★ ダミー枠は矢印を消す・クリック不可にする */
.pagination-prev.is-dummy::before,
.pagination-next.is-dummy::before {
  content: none;
}

.pagination-prev.is-dummy,
.pagination-next.is-dummy {
  pointer-events: none;
}

.page {
  padding-block: 40px 127px;
}
@media screen and (max-width: 767px) {
  .page {
    padding-block: 20px 60px;
  }
}

.page-inner {
  padding-inline: 40px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page-inner {
    padding-inline: 20px;
  }
}

.page-content {
  margin-top: 107px;
  margin-inline: auto;
  max-width: 1040px;
}
@media screen and (max-width: 767px) {
  .page-content {
    margin-top: 40px;
  }
}

.page-title {
  display: grid;
  place-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.page-title::before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 214px;
  height: 43px;
  background: url("../images/components/page-title-decoration.webp") no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 1.625rem;
  }
}

.page-button__wrapper {
  position: fixed;
  top: 200px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  z-index: 70;
}
@media screen and (max-width: 1023px) {
  .page-button__wrapper {
    display: none;
  }
}

.page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 40px 12px 20px;
  border-radius: 20px 0 0 20px;
  writing-mode: vertical-lr;
  color: #FFFEFC;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
}
.page-button:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.page-button.is-contact {
  background-color: #056CB5;
}
.page-button.is-contact::before {
  background-image: url("../images/components/page-button-icon-contact.svg");
}
.page-button.is-blog {
  background-color: #F7A87A;
}
.page-button.is-blog::before {
  background-image: url("../images/components/page-button-icon-blog.svg");
}
.page-button.is-recruit {
  background-color: #EECE58;
}
.page-button.is-recruit::before {
  background-image: url("../images/components/page-button-icon-recruit.svg");
}
@media screen and (max-width: 1279px) {
  .page-button {
    padding: 12px 30px 20px 15px;
  }
}
@media screen and (max-width: 1023px) {
  .page-button {
    padding-inline: 12px;
    max-width: 255px;
    width: 100%;
    height: 41px;
    border-radius: 25px;
    background-color: transparent;
    color: #FFFEFC;
    writing-mode: horizontal-tb;
    letter-spacing: 0.2px;
  }
}
@media screen and (max-width: 767px) {
  .page-button {
    padding: 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .page-button:hover {
    transform: translateX(-10px);
    filter: brightness(1.1);
  }
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(to right, black 80%, transparent);
    scrollbar-width: none;
  }
  .breadcrumb::-webkit-scrollbar {
    display: none;
  }
}

.breadcrumb__list {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.breadcrumb__list li:nth-child(n+2) {
  display: flex;
  align-items: center;
}
.breadcrumb__list li:nth-child(n+2):before {
  content: "";
  margin-inline: 8px;
  display: inline-block;
  width: 8px;
  height: 1px;
  background-color: #4C3E31;
}
.breadcrumb__list a,
.breadcrumb__list span {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2px;
}

.page-kv {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .page-kv {
    padding-top: 24px;
  }
}

.page-kv-inner {
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .page-kv-inner {
    padding-inline: 20px;
  }
}

.page-kv-title {
  margin-top: 100px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 1px;
  font-weight: 700;
  position: relative;
  z-index: 5;
}
.page-kv-title::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 43px;
  background: url(../images/components/page-title-decoration.webp) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-kv-title {
    margin-top: 60px;
    font-size: 1.5rem;
  }
}

.page-kv-image {
  margin-top: 77px;
  width: 100%;
}
.page-kv-image img {
  object-fit: cover;
  aspect-ratio: 1440/550;
}
@media screen and (max-width: 767px) {
  .page-kv-image {
    margin-top: 34px;
  }
}

.page-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-section-title__en {
  font-family: "Quicksand", sans-serif;
  line-height: 1.7;
  letter-spacing: 2px;
  font-weight: 700;
  color: #459D5E;
  position: relative;
}
.page-section-title__en::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background-color: currentColor;
}
@media screen and (max-width: 767px) {
  .page-section-title__en {
    font-size: 0.625rem;
  }
}

.page-section-title__jp {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 8px;
}
@media screen and (max-width: 767px) {
  .page-section-title__jp {
    font-size: 1.125rem;
    letter-spacing: 6px;
  }
}

.access {
  padding-block: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .access {
    padding-block: 80px;
  }
}

.access-map {
  margin-top: 64px;
  border-radius: 35px;
  overflow: hidden;
}
.access-map iframe {
  width: 100%;
  aspect-ratio: 1040/400;
  border-radius: 35px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .access-map {
    margin-top: 40px;
    border-radius: 10px;
  }
  .access-map iframe {
    border-radius: 10px;
    aspect-ratio: 767/700;
  }
}

.access-info {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
}
@media screen and (max-width: 1279px) {
  .access-info {
    gap: 80px;
  }
}
@media screen and (max-width: 1023px) {
  .access-info {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 539px) {
  .access-info {
    margin-top: 40px;
  }
}

.access-address {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 13px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}
@media screen and (max-width: 1023px) {
  .access-address {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .access-address {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 539px) {
  .access-address {
    flex-direction: column;
  }
}

.access-contact-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 130px;
}
@media screen and (max-width: 1279px) {
  .access-contact-group {
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .access-contact-group {
    gap: 36px;
  }
}
@media screen and (max-width: 539px) {
  .access-contact-group {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
}

.access-tel .access-item__body {
  gap: 15px;
}
.access-tel .access-item__text {
  display: flex;
  align-items: center;
  gap: 9px;
}

.access-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.access-item__icon {
  width: 24px;
}

.access-item__body {
  padding-left: 12px;
  border-left: 1px solid #4C3E31;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  min-height: 78px;
}

.access-item__text {
  font-weight: 500;
  letter-spacing: 1px;
}

.access-train .access-item__body {
  gap: 10px;
}

.about-us-content {
  padding: 60px 40px;
  background-color: #fffefc;
  border-radius: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .about-us-content {
    grid-template-columns: repeat(1, 1fr);
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-us-content {
    padding: 20px;
    gap: 20px;
  }
}

.about-us-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media screen and (max-width: 1023px) {
  .about-us-list {
    gap: 20px;
  }
}

.about-us-item {
  padding-block: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px dashed #EECE58;
}

.about-us-item__head {
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2px;
}

.about-us-item__body {
  line-height: 1.7;
  letter-spacing: 1px;
}

.faq-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .faq-list {
    margin-top: 24px;
    gap: 16px;
  }
}

.faq-item {
  width: 100%;
  padding-block: 16px;
  background-color: #FFFEFC;
  border-radius: 8px;
}
.faq-item.is-open .faq-item__question::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .faq-item {
    padding-block: 8px 12px;
  }
}

.faq-item__question {
  width: 100%;
  padding-inline: 42px 64px;
  display: flex;
  align-items: start;
  gap: 20px;
  position: relative;
}
.faq-item__question::before, .faq-item__question::after {
  content: "";
  width: 33px;
  height: 2px;
  background-color: #EECE58;
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.faq-item__question::after {
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 1023px) {
  .faq-item__question {
    padding-inline: 32px;
  }
  .faq-item__question::before, .faq-item__question::after {
    right: 32px;
    width: 24px;
  }
}
@media screen and (max-width: 767px) {
  .faq-item__question {
    padding-inline: 24px 16px;
    gap: 14px;
  }
  .faq-item__question::before, .faq-item__question::after {
    right: 16px;
    width: 18px;
  }
}

.faq-item__question-icon {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
  color: #FFFEFC;
  position: relative;
  z-index: 5;
  isolation: isolate;
}
.faq-item__question-icon::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 47px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background-color: #EECE58;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .faq-item__question-icon {
    font-size: 1.75rem;
  }
  .faq-item__question-icon::before {
    top: 5px;
    width: 44px;
  }
}
@media screen and (max-width: 767px) {
  .faq-item__question-icon {
    font-size: 1.375rem;
  }
  .faq-item__question-icon::before {
    top: 4px;
    width: 36px;
  }
}

.faq-item__question-text,
.faq-item__answer-text {
  margin-top: 8px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  text-align: left;
}
@media screen and (max-width: 1279px) {
  .faq-item__question-text,
  .faq-item__answer-text {
    margin-top: 12px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .faq-item__question-text,
  .faq-item__answer-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .faq-item__question-text,
  .faq-item__answer-text {
    margin-top: 6px;
    letter-spacing: normal;
  }
}

.faq-item__question-text {
  max-width: calc(100% - 100px);
}
@media screen and (max-width: 1023px) {
  .faq-item__question-text {
    max-width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767px) {
  .faq-item__question-text {
    max-width: calc(100% - 60px);
  }
}

.faq-item__answer {
  display: none;
}

.faq-item__answer-inner {
  padding-top: 8px;
  padding-inline: 42px 32px;
  display: flex;
  align-items: start;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .faq-item__answer-inner {
    padding-inline: 32px;
  }
}
@media screen and (max-width: 767px) {
  .faq-item__answer-inner {
    padding-inline: 24px 16px;
  }
}

.faq-item__answer-icon {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
  color: #EECE58;
  position: relative;
  z-index: 5;
  isolation: isolate;
}
.faq-item__answer-icon::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 47px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  border: 1px solid #EECE58;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .faq-item__answer-icon {
    font-size: 1.75rem;
  }
  .faq-item__answer-icon::before {
    top: 5px;
    width: 44px;
  }
}
@media screen and (max-width: 767px) {
  .faq-item__answer-icon {
    font-size: 1.375rem;
  }
  .faq-item__answer-icon::before {
    top: 4px;
    width: 36px;
  }
}

.faq-card__button {
  margin-top: 36px;
  margin-inline: auto;
  width: fit-content;
  padding: 16px 32px;
  background-color: #EECE58;
  border-radius: 45px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  color: #FFFEFC;
  font-weight: 700;
  line-height: 1.7;
}
.faq-card__button::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .faq-card__button:hover::after {
    transform: translateX(3px) rotate(45deg);
  }
}

.page-faq {
  position: relative;
  z-index: 0;
}
.page-faq::before, .page-faq::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
}
.page-faq::before {
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.page-faq.is-admission::before {
  background-image: url(../images/components/page-qa-admission.webp);
}
.page-faq.is-extended-care::before {
  background-image: url(../images/components/page-qa-extended-care.webp);
}
.page-faq.is-bus::before {
  background-image: url(../images/components/page-qa-bus.webp);
}
.page-faq::after {
  background: rgba(255, 254, 252, 0.7);
  z-index: 5;
}
.page-faq .page-section-title,
.page-faq .page-faq-content {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1279px) {
  .page-faq::before {
    background-size: auto 100%;
  }
}

.page-faq-button-wrapper {
  margin-top: 32px;
  text-align: center;
}

.main-container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.main-container.is-visible {
  opacity: 1;
  visibility: visible;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  padding-top: 18px;
  background-color: #F9F9F9;
  z-index: 99;
}
@media screen and (max-width: 1023px) {
  .header {
    height: 60px;
    padding-block: 10px;
  }
}

.header-inner {
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1440px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding-inline: 20px;
  }
}

.header-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .header-title {
    gap: 2px;
  }
}

.header-title__sub {
  font-size: 0.8125rem;
}
@media screen and (max-width: 1279px) {
  .header-title__sub {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .header-title__sub {
    font-size: 0.5rem;
  }
}

.header-title__main {
  font-size: 2.6875rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 1279px) {
  .header-title__main {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 1023px) {
  .header-title__main {
    font-size: 1.5625rem;
    line-height: 1;
  }
}

.header-drawer__button {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header-drawer__button {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
  }
  .header-drawer__button.is-checked .header-drawer__bar:nth-of-type(1), .header-drawer__button.is-checked .header-drawer__bar:nth-of-type(2) {
    top: 4.5px;
  }
  .header-drawer__button.is-checked .header-drawer__bar:nth-of-type(1) {
    transform: rotate(18deg);
  }
  .header-drawer__button.is-checked .header-drawer__bar:nth-of-type(2) {
    transform: rotate(-18deg);
  }
}

.header-drawer__icon {
  display: block;
  width: 26px;
  height: 9px;
  position: relative;
}

.header-drawer__bar {
  position: absolute;
  height: 1.5px;
  width: 100%;
  background-color: #4C3E31;
  left: 0;
  transition: transform 0.3s ease;
}
.header-drawer__bar:nth-of-type(1) {
  top: 0;
}
.header-drawer__bar:nth-of-type(2) {
  bottom: 1.5px;
}

.header-drawer__text {
  font-size: 0.625rem;
  line-height: 1.5;
}

.header-nav {
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .header-nav {
    position: fixed;
    right: 0;
    top: 59px;
    width: 375px;
    height: calc(100vh - 59px);
    padding-bottom: 100px;
    background-color: #F9F9F9;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .header-nav.is-checked {
    transform: translateX(0);
  }
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 1279px) {
  .header-nav__list {
    gap: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .header-nav__list {
    flex-direction: column;
    gap: 0;
  }
}

.header-nav__item {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .header-nav__item {
    width: 100%;
    border-bottom: 1px solid rgba(76, 62, 49, 0.35);
    display: grid;
    place-items: center;
  }
  .header-nav__item.is-open {
    border-bottom: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-nav__item:hover .header-dropdown__wrapper,
  .header-nav__item:hover .header-dropdown__wrapper:hover {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.header-nav__link, .header-dropdown__button {
  padding-block: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
@media screen and (max-width: 1023px) {
  .header-nav__link, .header-dropdown__button {
    width: 100%;
    padding-block: 10px;
    gap: 4px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-nav__link:hover .header-nav__link-icon, .header-dropdown__button:hover .header-nav__link-icon, .header-nav__link:hover .header-dropdown__icon, .header-dropdown__button:hover .header-dropdown__icon {
    transform: scale(1.2);
  }
}

.header-nav__link-icon, .header-dropdown__icon {
  width: 24px;
  aspect-ratio: 1/1;
  transition: transform 0.3s ease;
}

.header-dropdown__wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -40px);
  transform-origin: top;
  background-color: transparent;
  width: 190px;
  padding: 28px 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-dropdown__wrapper.is-about {
  background-color: #EECE58;
}
.header-dropdown__wrapper.is-support {
  background-color: #056CB5;
}
.header-dropdown__wrapper.is-bus {
  background-color: #D6A6EE;
}
.header-dropdown__wrapper.is-information {
  background-color: #F8B5C1;
}
.header-dropdown__wrapper.is-faq {
  background-color: #F37D63;
}
.header-nav__item.is-open .header-dropdown__wrapper {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 1023px) {
  .header-dropdown__wrapper {
    width: 100%;
    padding: 0;
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header-nav__item.is-open .header-dropdown__wrapper {
    display: block;
    transform: none;
  }
}

.header-dropdown__list {
  color: #FFFEFC;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: fit-content;
  margin: 0 auto;
  gap: 16px;
}
@media screen and (max-width: 1023px) {
  .header-dropdown__list {
    width: 100%;
    align-items: center;
    gap: 0;
    margin: 0;
  }
}

@media screen and (max-width: 1023px) {
  .header-dropdown__item {
    border-bottom: 1px solid #FFFEFC;
    width: 100%;
    text-align: center;
  }
}

.header-dropdown__link {
  display: inline-block;
  padding-block: 4px;
  border-bottom: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .header-dropdown__link {
    padding-block: 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-dropdown__link:hover {
    opacity: 0.8;
    border-color: #FFFEFC;
  }
}

.header__button-wrapper {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header__button-wrapper {
    margin-top: 27px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

.footer {
  padding-block: 80px 30px;
  border-radius: 100px 100px 0 0;
  overflow: hidden;
  background: url("../images/footer/footer-background.webp") no-repeat center/cover;
  color: #FFFEFC;
  position: relative;
}
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(76, 140, 87, 0.85);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footer {
    background-position: left center;
    padding-block: 60px 20px;
    border-radius: 30px 30px 0 0;
  }
}

.footer-inner {
  position: relative;
  z-index: 2;
}

.footer-top__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .footer-top__head {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer-top__head {
    flex-direction: column;
    align-items: start;
  }
}

.footer__button-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .footer__button-wrapper {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer__button-wrapper {
    justify-content: space-between;
    width: 100%;
    gap: 30px;
  }
}
@media screen and (max-width: 539px) {
  .footer__button-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 180px;
  height: 40px;
  padding-inline: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease;
}
.footer-button:before {
  content: "";
  margin-top: 2px;
  display: block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footer-button.is-contact {
  background-color: #056CB5;
}
.footer-button.is-contact::before {
  background-image: url("../images/components/page-button-icon-contact.svg");
}
.footer-button.is-blog {
  background-color: #F7A87A;
}
.footer-button.is-blog::before {
  background-image: url("../images/components/page-button-icon-blog.svg");
}
.footer-button.is-recruit {
  background-color: #EECE58;
}
.footer-button.is-recruit::before {
  background-image: url("../images/components/page-button-icon-recruit.svg");
}
@media screen and (max-width: 1023px) {
  .footer-button {
    padding-inline: 4px;
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .footer-button {
    width: 100%;
    min-width: 140px;
    max-width: 180px;
  }
}
@media screen and (max-width: 539px) {
  .footer-button {
    width: 100%;
    min-width: initial;
    max-width: initial;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-button:hover {
    transform: translateY(2px);
  }
}

.footer-top__nav {
  margin-top: 52px;
}

.footer-nav {
  display: flex;
  gap: 74px;
}
@media screen and (max-width: 1279px) {
  .footer-nav {
    gap: 54px;
  }
}
@media screen and (max-width: 1023px) {
  .footer-nav {
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 539px) {
  .footer-nav {
    flex-direction: column;
  }
}

.footer-nav__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 74px;
}
@media screen and (max-width: 1279px) {
  .footer-nav__list {
    gap: 54px;
  }
}
@media screen and (max-width: 1023px) {
  .footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 74px;
    row-gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav__list {
    gap: 32px;
  }
}
@media screen and (max-width: 539px) {
  .footer-nav__list {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}

.footer-nav__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .footer-nav__item {
    width: calc((100% - 148px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .footer-nav__item {
    width: calc((100% - 64px) / 3);
  }
}
@media screen and (max-width: 539px) {
  .footer-nav__item {
    width: 100%;
  }
}

.footer-nav__item-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed transparent;
}
.footer-nav__item-head.is-about {
  color: #EECE58;
  border-color: currentColor;
}
.footer-nav__item-head.is-support {
  color: #056CB5;
  border-color: currentColor;
}
.footer-nav__item-head.is-bus {
  color: #D6A6EE;
  border-color: currentColor;
}
.footer-nav__item-head.is-information {
  color: #F8B5C1;
  border-color: currentColor;
}
.footer-nav__item-head.is-faq {
  color: #F37D63;
  border-color: currentColor;
}
@media screen and (max-width: 539px) {
  .footer-nav__item-head {
    flex-direction: row;
    padding-left: 10px;
  }
}

.footer-nav__item-icon {
  width: 29px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 539px) {
  .footer-nav__item-icon {
    width: 24px;
  }
}

.footer-subnav__list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .footer-subnav__list {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer-subnav__list {
    padding-left: 10px;
  }
}
@media screen and (max-width: 539px) {
  .footer-subnav__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 30px;
  }
}

.footer-subnav__link {
  display: inline-block;
  padding-block: 8px;
  padding-left: 17px;
  font-size: 14px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.footer-subnav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 1px;
  background-color: #FFFEFC;
}
.footer-subnav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background-color: #FFFEFC;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer-subnav__link {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 539px) {
  .footer-subnav__link {
    font-size: 0.875rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-subnav__link:hover::after {
    transform: translateX(0);
  }
}

.footer-bottom {
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 1023px) {
  .footer-bottom {
    margin-top: 52px;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}

.footer-sister {
  padding: 18px;
  border: 1px solid #FFFEFC;
  border-radius: 8px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.footer-sister__head {
  font: 1.125rem;
  font-weight: 700;
}

.footer-sister__body {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 8px;
}
@media screen and (max-width: 1023px) {
  .footer-sister__body {
    gap: 70px;
  }
}
@media screen and (max-width: 539px) {
  .footer-sister__body {
    gap: 20px;
    font-size: 0.75rem;
  }
}

.footer-sister__info {
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 539px) {
  .footer-sister__info {
    font-size: 0.75rem;
  }
}

.footer-sister__tel {
  margin-top: 4px;
}

.footer-sister__button {
  padding: 8px;
  border: 1px solid #FFFEFC;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.875rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.footer-sister__button::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url("../images/footer/footer-sister-button-icon.svg") no-repeat center/contain;
}
@media screen and (max-width: 539px) {
  .footer-sister__button {
    font-size: 0.75rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-sister__button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 49px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer-legal {
    font-size: 0.75rem;
    flex-direction: column-reverse;
    gap: 8px;
  }
}

.footer-legal__copyright {
  line-height: 1.8;
}

.footer-legal__privacy {
  transition: opacity 0.3s ease, text-decoration 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-legal__privacy:hover {
    opacity: 0.8;
    text-decoration: underline;
  }
}

.inner {
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1120px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-inline: 20px;
  }
}

.inner-wide {
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1360px;
}
@media screen and (max-width: 767px) {
  .inner-wide {
    padding-inline: 20px;
  }
}

.inner-narrow {
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1040px;
}
@media screen and (max-width: 767px) {
  .inner-narrow {
    padding-inline: 20px;
  }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #F9F9F9;
  /* ここ変更！ 初期は完全に非表示にする */
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

/* 初回アクセス時にJSで付ける：表示＋フェードイン */
.loader.is-show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
}

/* フェードアウト用 */
.loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-text {
  font-family: "Zen Maru Gothic", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-weight: 700;
}

.loader-text__sub {
  font-size: 0.875rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}
@media screen and (max-width: 767px) {
  .loader-text__sub {
    font-size: 0.75rem;
  }
}

.loader-text__main {
  font-size: 3rem;
}
.loader-text__main .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: charFadeUp 0.6s ease-out forwards;
}
.loader-text__main .char:nth-child(1) {
  animation-delay: 0.2s, 1s;
}
.loader-text__main .char:nth-child(2) {
  animation-delay: 0.4s, 1.2s;
}
.loader-text__main .char:nth-child(3) {
  animation-delay: 0.6s, 1.4s;
}
.loader-text__main .char:nth-child(4) {
  animation-delay: 0.8s, 1.6s;
}
.loader-text__main .char:nth-child(5) {
  animation-delay: 1s, 1.8s;
}
@media screen and (max-width: 767px) {
  .loader-text__main {
    font-size: 2rem;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loader-fadeout {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes charFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-fv .swiper,
.top-fv .swiper-wrapper,
.top-fv .swiper-slide {
  height: auto !important;
}
.top-fv .swiper-slide {
  display: flex;
}
.top-fv .swiper-slide > .top-fv-slide {
  width: 100%;
}

.top-fv-inner {
  padding-inline: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-fv-inner {
    padding-inline: 0;
  }
}

.top-fv-slider {
  position: relative;
  z-index: 1;
}

.top-fv-slide {
  overflow: hidden;
  aspect-ratio: 1361/655;
  border-radius: 60px;
}
.top-fv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .top-fv-slide {
    border-radius: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top-fv-slide {
    aspect-ratio: 375/485;
    border-radius: 0;
  }
}

.top-fv-slide.zoom-up img {
  animation: zoomUp 7s linear both !important;
}

.top-fv-slide.zoom-down img {
  animation: zoomDown 7s linear both !important;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes zoomDown {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.top-fv-lead {
  position: absolute;
  bottom: 57px;
  left: 97px;
  z-index: 2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 2.5625rem;
  line-height: 1.7;
  letter-spacing: 1px;
}
.top-fv-lead::before {
  content: "";
  position: absolute;
  inset: -28px -44px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0) 100%);
  filter: blur(10px);
  border-radius: 90px;
}
@media screen and (max-width: 1279px) {
  .top-fv-lead {
    bottom: 32px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .top-fv-lead {
    bottom: 28px;
    left: 60px;
    line-height: 1.5;
  }
  .top-fv-lead:before {
    inset: -12px -22px;
  }
}
@media screen and (max-width: 767px) {
  .top-fv-lead {
    font-size: 1.375rem;
    bottom: 80px;
    left: 40px;
  }
  .top-fv-lead::before {
    inset: -30px;
  }
}
@media screen and (max-width: 539px) {
  .top-fv-lead {
    font-size: 1.125rem;
    left: 20px;
  }
}

.top-news {
  padding-block: 105px 76px;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-block: 80px;
  }
}

.top-news-inner {
  max-width: 939px;
}
@media screen and (max-width: 767px) {
  .top-news-inner {
    max-width: 700px;
  }
}

.top-news-content {
  display: flex;
  align-items: center;
  gap: 62px;
}
@media screen and (max-width: 1023px) {
  .top-news-content {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-news-content {
    flex-direction: column;
  }
}

.top-news-head {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-news-head {
    width: 100%;
    text-align: left;
  }
}

.top-news__button-wrapper {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-news__button-wrapper {
    margin-top: 40px;
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
}

.top-about {
  padding-block: 162px 120px;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding-block: 80px 60px;
  }
}

.top-about-message__image {
  width: 55.5%;
  max-width: 800px;
  margin: 0 auto;
}
.top-about-message__image img {
  aspect-ratio: 800/600;
}
@media screen and (max-width: 767px) {
  .top-about-message__image {
    width: 86%;
    min-width: 320px;
    max-width: initial;
  }
}

.top-about-message__content {
  margin-top: 37px;
  text-align: center;
}

.top-about-message__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.6px;
}
.top-about-message__title br {
  display: none;
}
@media screen and (max-width: 767px) {
  .top-about-message__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 539px) {
  .top-about-message__title br {
    display: block;
  }
}

.top-about-message__text {
  margin-top: 29px;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.top-about__button-wrapper {
  margin-top: 37px;
}

.top-about-cards {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .top-about-cards {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-about-cards {
    margin-top: 80px;
    grid-template-columns: repeat(1, 1fr);
    max-width: 500px;
    margin-inline: auto;
    gap: 50px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-about-card:hover .top-about-card__image img {
    transform: scale(1.12);
  }
}

.top-about-card__head {
  position: relative;
}

.top-about-card__image {
  border-radius: 25px;
  overflow: hidden;
}
.top-about-card__image img {
  aspect-ratio: 340/233;
  object-fit: cover;
  border-radius: 25px;
  transition: transform 0.5s ease;
}

.top-about-card__title {
  position: absolute;
  left: 25px;
  bottom: -26px;
  padding: 12px 40px;
  background-color: #EECE58;
  border-radius: 13px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.32px;
  color: #FFFEFC;
  text-align: center;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .top-about-card__title {
    font-size: 1.125rem;
  }
}

.top-about-card__body {
  padding-top: 48px;
  padding-inline: 26px;
}

.top-about-card__text {
  line-height: 1.7;
  letter-spacing: 0.1px;
}

.top-cta-bg {
  position: absolute;
  inset: 0;
  background-color: #056CB5;
  overflow: hidden;
}

.top-cta-bg-1 {
  position: absolute;
  top: 0;
  left: -3px;
  width: 13.8%;
}
@media screen and (max-width: 1023px) {
  .top-cta-bg-1 {
    width: 20%;
  }
}

.top-cta-bg-2 {
  position: absolute;
  left: 6px;
  top: 36px;
  width: 8%;
}
@media screen and (max-width: 1023px) {
  .top-cta-bg-2 {
    width: 12%;
  }
}

.top-cta-bg-3 {
  position: absolute;
  right: 12px;
  bottom: 0;
  width: 9%;
}
@media screen and (max-width: 1023px) {
  .top-cta-bg-3 {
    width: 14%;
  }
}

.top-admission-cta__content {
  padding-block: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 103px;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.1607843137);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .top-admission-cta__content {
    flex-direction: column;
    gap: 52px;
  }
}
@media screen and (max-width: 767px) {
  .top-admission-cta__content {
    gap: 40px;
  }
}
@media screen and (max-width: 539px) {
  .top-admission-cta__content {
    gap: 32px;
  }
}

.top-admission-cta__title,
.top-admission-cta__button-wrapper {
  position: relative;
  z-index: 5;
}

.top-admission-cta__title {
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1;
  letter-spacing: 4px;
  color: #FFFEFC;
}
@media screen and (max-width: 1023px) {
  .top-admission-cta__title {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .top-admission-cta__title {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 539px) {
  .top-admission-cta__title {
    font-size: 1.375rem;
  }
}

.top-admission-cta__button-wrapper {
  color: #056CB5;
}

.top-blog {
  position: relative;
  z-index: 1;
}

.top-blog-box {
  padding: 77px 36px;
  width: 100%;
  border-radius: 50px;
  background: url("../images//components/blog.webp") no-repeat 40% center/cover;
  position: relative;
}
.top-blog-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, #FFFFFF 100%);
  opacity: 0.58;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top-blog-box {
    padding: 40px 10px;
    border-radius: 20px;
  }
}

.top-blog-content {
  width: fit-content;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.top-blog-text {
  margin-top: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.top-blog__button-wrapper {
  margin-top: 23px;
  color: #F37D63;
}

.top-intro-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 1023px) {
  .top-intro-inner {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top-intro-inner {
    max-width: 540px;
  }
}

.top-intro-image {
  width: 42.2%;
  border-radius: 25px;
  overflow: hidden;
  flex-shrink: 0;
}
.top-intro-image img {
  aspect-ratio: 439/262;
  border-radius: 25px;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .top-intro-image {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .top-intro-image {
    width: 100%;
  }
}

.top-intro-body {
  flex-grow: 1;
}

.top-intro-text {
  margin-top: 22px;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
}
@media screen and (max-width: 1023px) {
  .top-intro-text {
    font-size: 1rem;
  }
}

.top-intro__button-wrapper {
  margin-top: 28px;
}
@media screen and (max-width: 1023px) {
  .top-intro__button-wrapper {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-intro__button-wrapper {
    text-align: right;
    width: 100%;
  }
}

.top-wakuwaku {
  padding-top: 120px;
}
.top-wakuwaku .top-intro-inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-wakuwaku {
    /* ラッパの中身を並べ替えたいので、本文ラッパはフラット化 */
    /* 並び順 */
  }
  .top-wakuwaku .top-intro-inner {
    flex-direction: column;
    align-items: start;
  }
  .top-wakuwaku .top-intro-body {
    display: contents;
  }
  .top-wakuwaku .top-section-head {
    order: 1;
  }
  .top-wakuwaku .top-intro-image {
    order: 2;
  }
  .top-wakuwaku .top-intro-text {
    order: 3;
  }
  .top-wakuwaku .top-intro__button-wrapper {
    order: 4;
  }
}

.top-extended-care {
  padding-block: 111px 96px;
}
.top-extended-care .top-intro-inner {
  flex-direction: row;
}
.top-extended-care .top-intro__button-wrapper {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .top-extended-care {
    padding-block: 80px 60px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top-extended-care {
    /* ラッパの中身を並べ替えたいので、本文ラッパはフラット化 */
    /* 並び順 */
  }
  .top-extended-care .top-intro-inner {
    flex-direction: column;
    align-items: start;
  }
  .top-extended-care .top-intro-body {
    display: contents;
  }
  .top-extended-care .top-section-head {
    order: 1;
  }
  .top-extended-care .top-intro-image {
    order: 2;
  }
  .top-extended-care .top-intro-text {
    order: 3;
  }
  .top-extended-care .top-intro__button-wrapper {
    order: 4;
  }
}

.top-information {
  padding-block: 80px 22px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-information {
    padding-top: 60px;
  }
}

.top-information-text {
  margin-top: 64px;
  margin-inline: auto;
  max-width: 845px;
  width: 100%;
  text-align: left;
  line-height: 2;
  letter-spacing: 0.3px;
}
@media screen and (max-width: 1023px) {
  .top-information-text {
    margin-top: 48px;
    max-width: 583px;
  }
}

.top-information-cards {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}
@media screen and (max-width: 1023px) {
  .top-information-cards {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .top-information-cards {
    gap: 20px;
  }
}
@media screen and (max-width: 539px) {
  .top-information-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-information-card {
  padding: 35px 10px;
  background-color: #F8B5C1;
  border-radius: 20px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #FFFEFC;
}
@media screen and (max-width: 767px) {
  .top-information-card {
    justify-content: start;
  }
}
@media screen and (max-width: 539px) {
  .top-information-card {
    padding-block: 20px;
    gap: 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-information-card:hover .top-information-card__icon {
    transform: scale(1.12);
  }
}

.top-information-card__icon {
  width: auto;
  height: 80px;
  display: block;
  object-fit: contain;
  margin-inline: auto;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .top-information-card__icon {
    height: 60px;
  }
}
@media screen and (max-width: 539px) {
  .top-information-card__icon {
    height: 50px;
  }
}

.top-information-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
@media screen and (max-width: 767px) {
  .top-information-card__title {
    font-size: 1.125rem;
  }
}

.top-information__button-wrapper {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
}
@media screen and (max-width: 1023px) {
  .top-information__button-wrapper {
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .top-information__button-wrapper {
    margin-top: 64px;
    gap: 40px;
  }
}

.top-contact-cta__content {
  padding-block: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.1607843137);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .top-contact-cta__content {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-contact-cta__content {
    gap: 30px;
  }
}

.top-contact-cta__head,
.top-contact-cta__button-wrapper {
  position: relative;
  z-index: 5;
}

.top-contact-cta__head {
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  color: #FFFEFC;
}

.top-contact-cta__title {
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-contact-cta__title {
    font-size: 1.375rem;
  }
}

.top-contact-cta__text {
  margin-top: 16px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-contact-cta__text {
    line-height: 1.4;
  }
}

.top-contact-cta__button-wrapper {
  color: #056CB5;
}

.top-recruit {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .top-recruit {
    margin-top: 60px;
  }
}

.top-recruit-content {
  overflow: hidden;
  padding-inline: 120px;
  padding-block: 48px 64px;
  border-radius: 50px;
  background: url(../images/top/recruit.webp) no-repeat center -180px/cover;
  position: relative;
}
.top-recruit-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.2) 0%, #FFFFFF 100%);
  opacity: 0.58;
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .top-recruit-content {
    padding-inline: 80px;
    padding-top: 40px;
    background-position: center;
  }
}
@media screen and (max-width: 767px) {
  .top-recruit-content {
    padding-inline: 60px;
    padding-block: 30px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 539px) {
  .top-recruit-content {
    padding-inline: 40px;
  }
}

.top-recruit-title {
  margin-left: auto;
  width: fit-content;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #FFFEFC;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.top-recruit-title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  width: 280px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background-color: #54b565;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .top-recruit-title {
    font-size: 1.75rem;
  }
  .top-recruit-title::before {
    bottom: -46px;
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .top-recruit-title {
    font-size: 1.5rem;
  }
  .top-recruit-title::before {
    bottom: -46px;
    width: 160px;
  }
}
@media screen and (max-width: 539px) {
  .top-recruit-title::before {
    width: 140px;
  }
}

.top-recruit-text {
  margin-top: 146px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .top-recruit-text {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .top-recruit-text {
    margin-top: 80px;
    font-size: 1.1875rem;
  }
}

.top-recruit__button-wrapper {
  margin-top: 21px;
  width: fit-content;
  padding: 10px 20px 10px 24px;
  background-color: #FFFEFC;
  border-radius: 60px;
  color: #54b565;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-recruit__button-wrapper {
    padding: 8px 16px 8px 20px;
    border-radius: 30px;
  }
}

.news {
  max-width: 767px;
  margin-inline: auto;
}

.news-pagination {
  margin-top: 72px;
}

.news-single-head {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}

.news-single-title {
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .news-single-title {
    font-size: 1.625rem;
  }
}

.news-single-body {
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .news-single-body {
    margin-top: 52px;
  }
}

.news-single-text:nth-of-type(n + 2) {
  margin-top: 20px;
}

.news-single-pdf {
  margin-top: 65px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .news-single-pdf {
    margin-top: 52px;
  }
}

.news-single-nav {
  margin-top: 72px;
}

.news-single-nav__list {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 140px;
}
.news-single-nav__list .news-single-nav__item--prev {
  grid-auto-columns: 1;
  justify-self: end;
}
.news-single-nav__list .news-single-nav__item--back {
  grid-column: 2;
  justify-self: center;
}
.news-single-nav__list .news-single-nav__item--next {
  grid-column: 3;
  justify-self: start;
}
@media screen and (max-width: 767px) {
  .news-single-nav__list {
    gap: 40px;
  }
}
@media screen and (max-width: 539px) {
  .news-single-nav__list {
    gap: 20px;
  }
}

.news-single-nav__prev,
.news-single-nav__back,
.news-single-nav__next {
  font-size: 1.125rem;
  font-weight: 500;
  padding-block: 4px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 539px) {
  .news-single-nav__prev,
  .news-single-nav__back,
  .news-single-nav__next {
    font-size: 0.875rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-single-nav__prev:hover,
  .news-single-nav__back:hover,
  .news-single-nav__next:hover {
    opacity: 0.8;
  }
}

.news-single-nav__prev {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.news-single-nav__prev::before {
  content: "";
  margin-top: 3px;
  width: 16px;
  height: 16px;
  background: url("../images/components/arrow-icon-prev.svg") no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 539px) {
  .news-single-nav__prev {
    gap: 4px;
  }
  .news-single-nav__prev::before {
    margin-top: 2px;
    width: 14px;
    height: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-single-nav__prev:hover::before {
    transform: translateX(-4px);
  }
}

@media screen and (max-width: 539px) {
  .news-single-nav__back span {
    display: none;
  }
}

.news-single-nav__next {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.news-single-nav__next::after {
  content: "";
  margin-top: 3px;
  width: 16px;
  height: 16px;
  background: url("../images/components/arrow-icon-next.svg") no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 539px) {
  .news-single-nav__next {
    gap: 4px;
  }
  .news-single-nav__next::after {
    margin-top: 2px;
    width: 14px;
    height: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-single-nav__next:hover::after {
    transform: translateX(4px);
  }
}

.privacy-policy {
  margin-top: 35px;
}

.blog-kv {
  padding: 150px 36px;
  width: 100%;
  border-radius: 50px;
  background: url("../images//components/blog.webp") no-repeat 40% center/cover;
  position: relative;
}
.blog-kv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, #FFFFFF 100%);
  opacity: 0.58;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .blog-kv {
    padding: 40px 10px;
    border-radius: 20px;
  }
}

.blog-kv-content {
  width: fit-content;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.blog-kv-head {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.blog-kv-head__icon {
  width: 30px;
  margin-top: 3px;
}
.blog-kv-head__icon img {
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .blog-kv-head__icon {
    width: 24px;
  }
}

.blog-kv-head__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width: 1023px) {
  .blog-kv-head__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .blog-kv-head__title {
    font-size: 1.5rem;
  }
}

.blog-kv-text {
  margin-top: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.blog-main {
  padding-bottom: 32px;
}

.blog-inner {
  max-width: 1200px;
}

.blog-content {
  display: flex;
  align-items: start;
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .blog-content {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .blog-content {
    flex-direction: column;
  }
}

.blog-articles {
  width: 70%;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 767px) {
  .blog-articles {
    width: 100%;
  }
}

.blog-article {
  padding-bottom: 60px;
  padding-inline: 10px;
}
.blog-article:not(:first-child) {
  padding-top: 60px;
  border-top: 1px solid #7B7B7B;
}
@media screen and (max-width: 767px) {
  .blog-article {
    padding-bottom: 32px;
    padding-inline: 8px;
  }
  .blog-article:not(:first-child) {
    padding-top: 32px;
  }
}

.blog-article-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 258px;
  flex-shrink: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}
@media screen and (max-width: 767px) {
  .blog-article-head {
    gap: 8px;
  }
}

.blog-article-title {
  font-size: 2rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .blog-article-title {
    font-size: 1.625rem;
  }
}

.blog-article-date {
  color: #459D5E;
}

.blog-article-body {
  margin-top: 24px;
}

.blog-article-text {
  margin-top: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .blog-article-text {
    margin-top: 16px;
  }
}

.blog-article-image {
  margin-top: 20px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  justify-content: center;
}
.blog-article-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.blog-article-image:has(img:nth-child(1):last-child), .blog-article-image:has(img:nth-child(2):last-child) {
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .blog-article-image {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .blog-article-image {
    margin-top: 16px;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  }
}
@media screen and (max-width: 539px) {
  .blog-article-image {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.blog-aside {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 140px;
  width: 100%;
}

.blog-aside-box__title {
  padding: 12px 30px;
  background-color: #F7A87A;
  color: #FFFEFC;
  font-weight: 700;
}

.blog-aside-box__list {
  padding-inline: 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.blog-aside-box__item a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 16px;
}
.blog-aside-box__item a::before {
  content: "";
  width: 9px;
  height: 1px;
  background-color: #4C3E31;
}

.concept-message {
  margin-top: 100px;
  padding-block: 213px;
  background: url(../images/concept/concept-message-bg.webp) no-repeat right center/cover;
  position: relative;
}
.concept-message::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, #f9f9f9 0%, rgba(255, 255, 255, 0) 20%), linear-gradient(to top, #f9f9f9 0%, rgba(255, 255, 255, 0) 20%), linear-gradient(89.7deg, #f9f9f9 0.28%, rgba(249, 249, 249, 0.85) 45.43%, rgba(147, 147, 147, 0.49) 99.75%);
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .concept-message {
    padding-block: 140px;
  }
}
@media screen and (max-width: 767px) {
  .concept-message {
    margin-top: 60px;
    padding-block: 64px;
  }
}
@media screen and (max-width: 767px) {
  .concept-message .inner {
    max-width: 600px;
  }
}

.concept-message-body {
  margin: 0 auto;
  max-width: 850px;
  position: relative;
  z-index: 5;
}

.concept-message-lead {
  font-family: "Crayon", sans-serif;
  font-size: 3.375rem;
  line-height: 1.7;
  letter-spacing: 2px;
}
@media screen and (max-width: 1023px) {
  .concept-message-lead {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .concept-message-lead {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 539px) {
  .concept-message-lead {
    font-size: 1.3125rem;
  }
}

.concept-message-text {
  margin-top: 31px;
  font-family: "Crayon", sans-serif;
  font-size: 1.75rem;
  line-height: 2.72;
  letter-spacing: 3px;
  font-weight: 500;
}
@media screen and (max-width: 1279px) {
  .concept-message-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .concept-message-text {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 767px) {
  .concept-message-text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 1px;
  }
  .concept-message-text span {
    display: none;
  }
}
@media screen and (max-width: 539px) {
  .concept-message-text {
    font-size: 1rem;
  }
}

.concept-philosophy {
  padding-top: 100px;
  position: relative;
}

.concept-philosophy-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.concept-philosophy-bg-1 {
  position: absolute;
  top: 105px;
  left: 0;
  width: 23%;
}
.concept-philosophy-bg-1 img {
  aspect-ratio: 344/349;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .concept-philosophy-bg-1 {
    width: 26%;
  }
}
@media screen and (max-width: 767px) {
  .concept-philosophy-bg-1 {
    width: 44.2%;
    max-width: 186px;
    top: 150px;
    left: -40px;
  }
  .concept-philosophy-bg-1 img {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 539px) {
  .concept-philosophy-bg-1 {
    max-width: 166px;
  }
}

.concept-philosophy-bg-2 {
  position: absolute;
  top: 320px;
  right: calc(50% + 14px);
  width: 20%;
}
.concept-philosophy-bg-2 img {
  aspect-ratio: 292/294;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .concept-philosophy-bg-2 {
    width: 23%;
  }
}
@media screen and (max-width: 767px) {
  .concept-philosophy-bg-2 {
    width: 28.8%;
    max-width: 128px;
    top: 256px;
    right: 50%;
  }
  .concept-philosophy-bg-2 img {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 539px) {
  .concept-philosophy-bg-2 {
    max-width: 108px;
  }
}

.concept-philosophy-bg-3 {
  position: absolute;
  top: 228px;
  left: calc(50% + 80px);
  width: 16%;
}
.concept-philosophy-bg-3 img {
  aspect-ratio: 236/250;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .concept-philosophy-bg-3 {
    width: 19%;
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .concept-philosophy-bg-3 {
    width: 24.5%;
    max-width: 112px;
    top: 184px;
    left: calc(50% + 18px);
  }
  .concept-philosophy-bg-3 img {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 539px) {
  .concept-philosophy-bg-3 {
    max-width: 92px;
    left: calc(50% - 18px);
  }
}

.concept-philosophy-bg-4 {
  position: absolute;
  top: 271px;
  right: -13px;
  width: 22%;
}
.concept-philosophy-bg-4 img {
  aspect-ratio: 324/320;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .concept-philosophy-bg-4 {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .concept-philosophy-bg-4 {
    width: 34.6%;
    max-width: 150px;
    top: 234px;
    right: -17px;
  }
  .concept-philosophy-bg-4 img {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 539px) {
  .concept-philosophy-bg-4 {
    max-width: 130px;
  }
}

.concept-philosophy-bg-5 {
  position: absolute;
  bottom: 219px;
  left: -32px;
  width: 24%;
}
.concept-philosophy-bg-5 img {
  aspect-ratio: 352/344;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .concept-philosophy-bg-5 {
    width: 27%;
  }
}
@media screen and (max-width: 767px) {
  .concept-philosophy-bg-5 {
    width: 34.6%;
    max-width: 150px;
    bottom: 156px;
    left: -22px;
  }
  .concept-philosophy-bg-5 img {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 539px) {
  .concept-philosophy-bg-5 {
    max-width: 130px;
  }
}

.concept-philosophy-bg-6 {
  position: absolute;
  bottom: 8px;
  right: calc(50% + 14px);
  width: 21%;
}
.concept-philosophy-bg-6 img {
  aspect-ratio: 316/309;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .concept-philosophy-bg-6 {
    width: 24%;
  }
}
@media screen and (max-width: 767px) {
  .concept-philosophy-bg-6 {
    width: 28.8%;
    max-width: 128px;
    bottom: 48px;
    right: 50%;
  }
  .concept-philosophy-bg-6 img {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 539px) {
  .concept-philosophy-bg-6 {
    max-width: 108px;
  }
}

.concept-philosophy-bg-7 {
  position: absolute;
  bottom: 260px;
  left: calc(50% + 7px);
  width: 16%;
}
.concept-philosophy-bg-7 img {
  aspect-ratio: 240/228;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .concept-philosophy-bg-7 {
    width: 19%;
  }
}
@media screen and (max-width: 767px) {
  .concept-philosophy-bg-7 {
    width: 24.5%;
    max-width: 112px;
    bottom: 175px;
    left: calc(50% + 18px);
  }
  .concept-philosophy-bg-7 img {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 539px) {
  .concept-philosophy-bg-7 {
    max-width: 92px;
    left: calc(50% - 18px);
  }
}

.concept-philosophy-bg-8 {
  position: absolute;
  bottom: 56px;
  right: 41px;
  width: 24%;
}
.concept-philosophy-bg-8 img {
  aspect-ratio: 350/342;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .concept-philosophy-bg-8 {
    width: 27%;
  }
}
@media screen and (max-width: 767px) {
  .concept-philosophy-bg-8 {
    width: 44.2%;
    max-width: 186px;
    bottom: 48px;
    right: -17px;
  }
  .concept-philosophy-bg-8 img {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 539px) {
  .concept-philosophy-bg-8 {
    max-width: 166px;
  }
}

.concept-philosophy-catchcopy {
  padding-block: 491px 585px;
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1279px) {
  .concept-philosophy-catchcopy {
    padding-block: 431px 525px;
  }
}
@media screen and (max-width: 1023px) {
  .concept-philosophy-catchcopy {
    padding-block: 401px 505px;
  }
}
@media screen and (max-width: 767px) {
  .concept-philosophy-catchcopy {
    padding-block: 260px 340px;
    gap: 18px;
  }
}
@media screen and (max-width: 539px) {
  .concept-philosophy-catchcopy {
    padding-block: 230px 310px;
  }
}

.concept-philosophy-catchcopy__char {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.7%;
  color: #fffefc;
  position: relative;
}
.concept-philosophy-catchcopy__char:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background-color: #EECE58;
  z-index: -1;
}
.concept-philosophy-catchcopy__char:nth-of-type(1)::before, .concept-philosophy-catchcopy__char:nth-of-type(7)::before {
  background-color: rgba(5, 108, 181, 0.8);
}
.concept-philosophy-catchcopy__char:nth-of-type(2)::before, .concept-philosophy-catchcopy__char:nth-of-type(8)::before {
  background-color: rgba(214, 166, 238, 0.8);
}
.concept-philosophy-catchcopy__char:nth-of-type(3)::before, .concept-philosophy-catchcopy__char:nth-of-type(9)::before {
  background-color: rgba(248, 181, 193, 0.8);
}
.concept-philosophy-catchcopy__char:nth-of-type(4)::before {
  background: rgba(166, 216, 168, 0.8);
}
.concept-philosophy-catchcopy__char:nth-of-type(5)::before {
  background-color: rgba(243, 125, 99, 0.8);
}
.concept-philosophy-catchcopy__char:nth-of-type(6)::before {
  background-color: rgba(238, 206, 88, 0.8);
}
@media screen and (max-width: 1279px) {
  .concept-philosophy-catchcopy__char {
    font-size: 3.125rem;
  }
  .concept-philosophy-catchcopy__char::before {
    width: 100px;
  }
}
@media screen and (max-width: 1023px) {
  .concept-philosophy-catchcopy__char {
    font-size: 2.5rem;
  }
  .concept-philosophy-catchcopy__char::before {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .concept-philosophy-catchcopy__char {
    font-size: 2rem;
  }
  .concept-philosophy-catchcopy__char::before {
    width: 60px;
  }
}
@media screen and (max-width: 539px) {
  .concept-philosophy-catchcopy__char {
    font-size: 1.125rem;
  }
  .concept-philosophy-catchcopy__char::before {
    width: 38px;
  }
}

.concept-policy {
  padding-block: 153px 183px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .concept-policy {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .concept-policy {
    padding-block: 64px 154px;
  }
}

.concept-policy-bg {
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.concept-policy-bg-1,
.concept-policy-bg-2,
.concept-policy-bg-3,
.concept-policy-bg-4,
.concept-policy-bg-5,
.concept-policy-bg-6 {
  border-radius: 25px;
  overflow: hidden;
}
.concept-policy-bg-1 img,
.concept-policy-bg-2 img,
.concept-policy-bg-3 img,
.concept-policy-bg-4 img,
.concept-policy-bg-5 img,
.concept-policy-bg-6 img {
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .concept-policy-bg-1,
  .concept-policy-bg-2,
  .concept-policy-bg-3,
  .concept-policy-bg-4,
  .concept-policy-bg-5,
  .concept-policy-bg-6 {
    border-radius: 12px;
    max-width: 240px !important;
  }
}
@media screen and (max-width: 767px) {
  .concept-policy-bg-1,
  .concept-policy-bg-2,
  .concept-policy-bg-3,
  .concept-policy-bg-4,
  .concept-policy-bg-5,
  .concept-policy-bg-6 {
    max-width: 150px !important;
  }
}
@media screen and (max-width: 539px) {
  .concept-policy-bg-1,
  .concept-policy-bg-2,
  .concept-policy-bg-3,
  .concept-policy-bg-4,
  .concept-policy-bg-5,
  .concept-policy-bg-6 {
    max-width: 146px !important;
  }
}

.concept-policy-bg-1 {
  position: absolute;
  top: 231px;
  left: 39px;
  width: 17.7%;
  max-width: 255px;
}
.concept-policy-bg-1 img {
  aspect-ratio: 255/200;
}
@media screen and (max-width: 1023px) {
  .concept-policy-bg-1 {
    width: 38.9%;
    top: 190px;
    left: -23px;
  }
  .concept-policy-bg-1 img {
    aspect-ratio: 146/99;
  }
}
@media screen and (max-width: 767px) {
  .concept-policy-bg-1 {
    top: 125px;
  }
}

.concept-policy-bg-2 {
  position: absolute;
  top: 232px;
  right: 84px;
  width: 18.7%;
  max-width: 270px;
}
.concept-policy-bg-2 img {
  aspect-ratio: 270/202;
}
@media screen and (max-width: 1023px) {
  .concept-policy-bg-2 {
    width: 38.9%;
    top: 315px;
    right: -22px;
  }
  .concept-policy-bg-2 img {
    aspect-ratio: 146/100;
  }
}
@media screen and (max-width: 767px) {
  .concept-policy-bg-2 {
    top: 200px;
  }
}

.concept-policy-bg-3 {
  position: absolute;
  top: 740px;
  left: 35px;
  width: 18.2%;
  max-width: 263px;
}
.concept-policy-bg-3 img {
  aspect-ratio: 263/216;
}
@media screen and (max-width: 1279px) {
  .concept-policy-bg-3 {
    top: 650px;
  }
}
@media screen and (max-width: 1023px) {
  .concept-policy-bg-3 {
    width: 38.9%;
    top: 400px;
    left: -3px;
  }
  .concept-policy-bg-3 img {
    aspect-ratio: 146/99;
  }
}
@media screen and (max-width: 767px) {
  .concept-policy-bg-3 {
    top: 284px;
  }
}

.concept-policy-bg-4 {
  position: absolute;
  top: 716px;
  right: -81px;
  width: 27.9%;
  max-width: 403px;
}
.concept-policy-bg-4 img {
  aspect-ratio: 403/264;
}
@media screen and (max-width: 1279px) {
  .concept-policy-bg-4 {
    top: 626px;
  }
}
@media screen and (max-width: 1023px) {
  .concept-policy-bg-4 {
    width: 38.9%;
    top: 700px;
    right: -22px;
  }
  .concept-policy-bg-4 img {
    aspect-ratio: 146/100;
  }
}
@media screen and (max-width: 767px) {
  .concept-policy-bg-4 {
    top: 495px;
  }
}

.concept-policy-bg-5 {
  position: absolute;
  bottom: 73px;
  left: -22px;
  width: 26.1%;
  max-width: 376px;
}
.concept-policy-bg-5 img {
  aspect-ratio: 376/310;
}
@media screen and (max-width: 1279px) {
  .concept-policy-bg-5 {
    bottom: 163px;
  }
}
@media screen and (max-width: 1023px) {
  .concept-policy-bg-5 {
    width: 38.9%;
    bottom: 328px;
    left: 50%;
    transform: translateX(-50%);
  }
  .concept-policy-bg-5 img {
    aspect-ratio: 146/100;
  }
}
@media screen and (max-width: 767px) {
  .concept-policy-bg-5 {
    bottom: 280px;
  }
}

.concept-policy-bg-6 {
  position: absolute;
  bottom: 106px;
  right: 47px;
  width: 21.1%;
  max-width: 307px;
}
.concept-policy-bg-6 img {
  aspect-ratio: 303/237;
}
@media screen and (max-width: 1279px) {
  .concept-policy-bg-6 {
    bottom: 196px;
  }
}
@media screen and (max-width: 1023px) {
  .concept-policy-bg-6 {
    width: 38.9%;
    bottom: 10px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .concept-policy-bg-6 img {
    aspect-ratio: 146/100;
  }
}
@media screen and (max-width: 767px) {
  .concept-policy-bg-6 {
    bottom: 37px;
  }
}

.concept-policy-lead {
  margin-top: 192px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.7;
  letter-spacing: 24px;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .concept-policy-lead {
    margin-top: 160px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 1023px) {
  .concept-policy-lead {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .concept-policy-lead {
    margin-top: 91px;
    font-size: 1.125rem;
    letter-spacing: 12px;
  }
}
@media screen and (max-width: 539px) {
  .concept-policy-lead {
    font-size: 1rem;
    letter-spacing: 6px;
  }
}

.concept-policy-lead-1 {
  display: block;
}

@media screen and (max-width: 1023px) {
  .concept-policy-lead-1,
  .concept-policy-lead-2,
  .concept-policy-lead-3 {
    padding-inline: 8px;
    position: relative;
    z-index: 5;
  }
  .concept-policy-lead-1::before,
  .concept-policy-lead-2::before,
  .concept-policy-lead-3::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0) 100%);
    filter: blur(4px);
    z-index: -1;
    pointer-events: none;
  }
}

.concept-policy-message {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .concept-policy-message {
    margin-top: 110px;
    gap: 166px;
  }
}
@media screen and (max-width: 767px) {
  .concept-policy-message {
    margin-top: 90px;
    gap: 106px;
  }
}

.concept-policy-block:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .concept-policy-block:nth-of-type(2) {
    gap: 0px;
  }
  .concept-policy-block:nth-of-type(2) .concept-policy-text:nth-of-type(2) {
    margin-top: 8px;
  }
}

.concept-policy-text {
  max-width: 580px;
  line-height: 2.2;
  letter-spacing: 8px;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .concept-policy-text {
    letter-spacing: 6px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .concept-policy-text {
    letter-spacing: 1px;
  }
}

.concept-policy-text--underline {
  padding: 8px;
  border-bottom: 1px solid;
}

.highlight-nobinobi {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 8px;
}
@media screen and (max-width: 1279px) {
  .highlight-nobinobi {
    letter-spacing: 6px;
  }
}
@media screen and (max-width: 767px) {
  .highlight-nobinobi {
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 1px;
  }
}

.highlight-nobinobi__text {
  color: #acd493;
}

@media screen and (max-width: 1023px) {
  .concept-goals .inner-wide {
    max-width: 800px;
  }
}

.concept-goals-cards {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .concept-goals-cards {
    margin-top: 40px;
    gap: 40px;
  }
}

.concept-goals-card {
  padding-top: 27px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .concept-goals-card {
    padding-top: 19px;
    flex-direction: column;
    gap: 20px;
  }
}

.concept-goals-card__head {
  width: 35.3%;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .concept-goals-card__head {
    width: 100%;
  }
}

.concept-goals-card__title {
  position: absolute;
  top: -27px;
  left: 26px;
  width: fit-content;
  display: grid;
  place-items: center;
  padding: 12px 40px;
  border-radius: 13px;
  background-color: #EECE58;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.24em;
  color: #FFFEFC;
}
@media screen and (max-width: 1023px) {
  .concept-goals-card__title {
    top: -19px;
    left: 14px;
  }
}
@media screen and (max-width: 767px) {
  .concept-goals-card__title {
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.concept-goals-card.is-baby .concept-goals-card__title {
  background-color: #EECE58;
}
.concept-goals-card.is-child .concept-goals-card__title {
  background-color: #F37D63;
}

.concept-goals-card__image {
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
}
.concept-goals-card__image img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .concept-goals-card__image {
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 767px) {
  .concept-goals-card__image img {
    aspect-ratio: 335/216;
  }
}

.concept-goals-card__body {
  flex-grow: 1;
  display: grid;
  justify-content: start;
  align-content: center;
}
@media screen and (max-width: 1279px) {
  .concept-goals-card__body {
    flex-grow: 0;
  }
}

.concept-goals-card__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .concept-goals-card__list {
    padding-inline: 16px;
    gap: 24px;
  }
}

.concept-goals-card__item {
  padding-left: 57px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 1px;
  position: relative;
}
.concept-goals-card__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 31px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1279px) {
  .concept-goals-card__item {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .concept-goals-card__item {
    padding-left: 33px;
    font-size: 0.875rem;
  }
  .concept-goals-card__item::before {
    width: 25px;
  }
}

.concept-goals-card.is-baby .concept-goals-card__item::before {
  background: url(../images//concept/concept-goals-list-icon-baby.svg) no-repeat center/contain;
}
.concept-goals-card.is-child .concept-goals-card__item::before {
  background: url(../images//concept/concept-goals-list-icon-child.svg) no-repeat center/contain;
}

.faq-menu {
  margin-top: 33px;
  padding-block: 38px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .faq-menu {
    margin-top: 16px;
    padding-block: 28px;
    gap: 12px;
  }
}
@media screen and (max-width: 539px) {
  .faq-menu {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.faq-menu__button {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #EECE58;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.1607843137);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.24em;
  color: #FFFEFC;
  transition: background-color 0.3s, box-shadow 0.3s;
}
@media screen and (max-width: 767px) {
  .faq-menu__button {
    display: grid;
    place-items: center;
  }
}
@media screen and (max-width: 539px) {
  .faq-menu__button {
    width: 260px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .faq-menu__button:hover {
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.2);
  }
}

.faq-card {
  padding-block: 100px 114px;
  position: relative;
}
.faq-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 200px);
  z-index: -1;
}
.faq-card.is-admission::after {
  background-color: #fff1f4;
}
.faq-card.is-extended-care::after {
  background-color: #f7f3e2;
}
.faq-card.is-bus::after {
  background-color: #e2f3ff;
}
@media screen and (max-width: 767px) {
  .faq-card {
    padding-block: 60px 64px;
  }
}

.about-hours-content {
  padding: 60px 40px;
  border-radius: 50px;
  background-color: #FFFEFC;
}
@media screen and (max-width: 1279px) {
  .about-hours-content {
    padding: 40px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-hours-content {
    padding: 20px;
    border-radius: 24px;
  }
}

.about-hours-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .about-hours-list {
    gap: 16px;
  }
}

.about-hours-item {
  padding-block: 8px;
  display: flex;
  align-items: center;
  gap: 72px;
  border-bottom: 1px dashed #EECE58;
}
@media screen and (max-width: 1023px) {
  .about-hours-item {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-hours-item {
    flex-direction: column;
    gap: 8px;
    align-items: start;
  }
}

.about-hours-item__head {
  min-width: 200px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 4px;
}
@media screen and (max-width: 1279px) {
  .about-hours-item__head {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .about-hours-item__head {
    font-size: 1.125rem;
  }
}

.about-hours-item__body {
  line-height: 1.7;
  letter-spacing: 1px;
}
.about-hours-item__body a {
  display: inline-block;
  font-weight: 700;
  border-bottom: 1px solid;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .about-hours-item__body a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .about-hours-item__body {
    letter-spacing: normal;
  }
}

.about-inside {
  background: url(../images/about/about-inside-bg.webp) no-repeat center/cover;
}

.about-inside-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 94px;
}
@media screen and (max-width: 767px) {
  .about-inside-content {
    gap: 60px;
  }
}

.about-inside-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about-inside-card {
    gap: 0;
  }
}

.about-inside-card__image img {
  border-radius: 25px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .about-inside-card__image {
    margin-top: 28px;
  }
  .about-inside-card__image img {
    border-radius: 16px;
  }
}

.about-inside-card__title {
  margin-top: 32px;
  min-width: 164px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 0.85;
  letter-spacing: 0.24em;
  position: relative;
  z-index: 5;
}
.about-inside-card__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 22px;
  background: url(../images/about/about-inside-card-title-deco.webp) no-repeat center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about-inside-card__title {
    margin-top: 20px;
    min-width: 134px;
    font-size: 1.25rem;
  }
  .about-inside-card__title::after {
    background-position: left center;
  }
}

.about-inside-card__text {
  margin-top: 24px;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 8px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .about-inside-card__text {
    letter-spacing: 6px;
  }
}
@media screen and (max-width: 767px) {
  .about-inside-card__text {
    margin-top: 16px;
    font-size: 0.875rem;
    letter-spacing: 2px;
  }
}

.about-inside-ground__image,
.about-inside-roof__image {
  max-width: 757px;
  display: grid;
  place-items: center;
}
.about-inside-ground__image img,
.about-inside-roof__image img {
  aspect-ratio: 757/395;
}

.about-inside-room__image,
.about-inside-field__image,
.about-inside-breeding__image {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  column-gap: 36px;
  row-gap: 24px;
}
.about-inside-room__image img,
.about-inside-field__image img,
.about-inside-breeding__image img {
  aspect-ratio: 622/395;
}
@media screen and (max-width: 767px) {
  .about-inside-room__image,
  .about-inside-field__image,
  .about-inside-breeding__image {
    column-gap: 10px;
    row-gap: 8px;
  }
}

.about-inside-kitchen__image {
  width: 100%;
  display: grid;
  place-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .about-inside-kitchen__image {
    gap: 8px;
  }
}

.about-inside-kitchen__image--top {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.about-inside-kitchen__image--top img {
  aspect-ratio: 1280/395;
}

.about-inside-kitchen__image--bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.about-inside-kitchen__image--bottom img {
  aspect-ratio: 420/395;
}

@media screen and (max-width: 1023px) {
  .support-wakuwaku .inner {
    max-width: 700px;
  }
}

.support-wakuwaku-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .support-wakuwaku-content {
    gap: 40px;
  }
}

.support-wakuwaku-text {
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
  text-align: center;
}
.support-wakuwaku-text a {
  display: inline-block;
  font-weight: 700;
  border-bottom: 1px solid;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .support-wakuwaku-text a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .support-wakuwaku-text {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 1px;
  }
}

.support-wakuwaku-card {
  padding: 52px 80px;
  border-radius: 25px;
  display: flex;
  align-items: stretch;
  gap: 127px;
}
@media screen and (max-width: 1279px) {
  .support-wakuwaku-card {
    gap: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .support-wakuwaku-card {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .support-wakuwaku-card {
    padding: 24px;
    gap: 16px;
  }
}

.support-wakuwaku-card__usagi {
  background-color: #F8B5C1;
}
.support-wakuwaku-card__usagi .support-wakuwaku-card__image img {
  object-position: right center;
}

.support-wakuwaku-card__zou {
  background-color: #056CB5;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .support-wakuwaku-card__zou {
    flex-direction: column;
  }
}

.support-wakuwaku-card__body {
  width: 46.9%;
  flex-shrink: 0;
  color: #FFFEFC;
}
@media screen and (max-width: 1023px) {
  .support-wakuwaku-card__body {
    width: 100%;
  }
}

.support-wakuwaku-card__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 6px;
}
@media screen and (max-width: 767px) {
  .support-wakuwaku-card__title {
    font-size: 1.125rem;
    letter-spacing: 1px;
  }
}

.support-wakuwaku-card__text {
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 6px;
}
@media screen and (max-width: 1279px) {
  .support-wakuwaku-card__text {
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 767px) {
  .support-wakuwaku-card__text {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
  }
}

.support-wakuwaku-card__image {
  flex-shrink: 1;
  border-radius: 25px;
  overflow: hidden;
}
.support-wakuwaku-card__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 348/320;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .support-wakuwaku-card__image {
    width: 100%;
  }
  .support-wakuwaku-card__image img {
    aspect-ratio: 287/287;
  }
}

.support-cta {
  padding-block: 56px;
  background-color: #FFFEFC;
}

.support-cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

.support-cta-text__main {
  font-size: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .support-cta-text__main {
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .support-cta-text__main {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .support-cta-text__sub {
    font-size: 1rem;
  }
}

.support-cta-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .support-cta-button-wrapper {
    flex-direction: column;
    gap: 27px;
  }
}

.support-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 30px;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.1607843137);
  color: #FFFEFC;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}
.support-cta-button::after {
  content: "";
  width: 25px;
  aspect-ratio: 1/1;
  background: url(../images/support/support-cta-button-icon.svg) no-repeat center/contain;
  transition: transform 0.3s;
}
.support-cta-button.is-usagi {
  background-color: #F8B5C1;
}
.support-cta-button.is-zou {
  background-color: #056CB5;
}
@media screen and (max-width: 767px) {
  .support-cta-button {
    min-width: 317px;
    padding-inline: 32px 57px;
    position: relative;
  }
  .support-cta-button::after {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .support-cta-button:hover::after {
    transform: translateX(4px);
  }
}

.support-education .inner-wide {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.support-education-text {
  margin-top: 56px;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .support-education-text {
    margin-top: 0;
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .support-education-text {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 1px;
  }
}

.support-education-content {
  margin-top: 56px;
  display: flex;
  align-items: stretch;
  gap: 47px;
}
@media screen and (max-width: 1023px) {
  .support-education-content {
    margin-top: 0;
    display: contents;
  }
}

.support-education-image {
  width: 42%;
  flex-shrink: 0;
}
.support-education-image img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 497/499;
  border-radius: 25px;
}
@media screen and (max-width: 1023px) {
  .support-education-image {
    order: 1;
    width: 100vw;
    margin-inline: -40px;
  }
  .support-education-image img {
    border-radius: 0;
    aspect-ratio: 2/1;
  }
}
@media screen and (max-width: 767px) {
  .support-education-image {
    margin-inline: -20px;
  }
  .support-education-image img {
    aspect-ratio: 375/248;
  }
}

.support-education-body {
  flex-grow: 1;
  padding: 40px;
  background-color: #FFFEFC;
  border-radius: 25px;
}
@media screen and (max-width: 1023px) {
  .support-education-body {
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  .support-education-body {
    border-radius: 12px;
    padding-inline: 16px;
  }
}

.support-education-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.support-education-item {
  padding-block: 8px;
  border-bottom: 1px dashed #EECE58;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
  line-height: 1.7;
}

.support-education-item__head {
  font-weight: 700;
  letter-spacing: 2px;
}

.support-education-item__body {
  letter-spacing: 1px;
}

.support-ground-image {
  width: 100%;
}
.support-ground-image img {
  border-radius: 25px;
  aspect-ratio: 1280/670;
}

.support-ground-text {
  margin-top: 30px;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
  text-align: center;
}
.support-ground-text span {
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .support-ground-text {
    font-size: 1rem;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 767px) {
  .support-ground-text {
    margin-top: 40px;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 1px;
  }
}

.recruit-main {
  padding-top: 51px;
}
@media screen and (max-width: 767px) {
  .recruit-main {
    margin-top: 64px;
  }
}

.recruit-main-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .recruit-main-message {
    gap: 40px;
  }
}

.recruit-lead {
  padding: 49px 102px;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../images/recruit/recruit-main-text-bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .recruit-lead {
    padding: 0;
    background: none;
    position: relative;
  }
  .recruit-lead::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 83.8%;
    height: 100%;
    background: url(../images/recruit/recruit-main-text-bg.webp) no-repeat center/cover;
    z-index: -1;
  }
}

.recruit-lead-1,
.recruit-lead-2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .recruit-lead-1,
  .recruit-lead-2 {
    font-size: 1.375rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 539px) {
  .recruit-lead-1,
  .recruit-lead-2 {
    font-size: 1.125rem;
  }
}

.recruit-text {
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit-text {
    font-size: 0.875rem;
    letter-spacing: 1px;
  }
}

.recruit-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 56px;
}

.recruit-card {
  display: flex;
  align-items: stretch;
  gap: 48px;
}
.recruit-card:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .recruit-card {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-card {
    flex-direction: column;
    gap: 8px;
  }
  .recruit-card:nth-of-type(even) {
    flex-direction: column;
  }
}

.recruit-card__body {
  width: 53.1%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .recruit-card__body {
    width: 100%;
  }
}

.recruit-card__title {
  padding-inline: 24px;
  background-color: #FFFEFC;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.7;
  letter-spacing: 8px;
  color: #F8B5C1;
  position: relative;
}
.recruit-card__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #F8B5C1;
}
@media screen and (max-width: 1279px) {
  .recruit-card__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .recruit-card__title {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 539px) {
  .recruit-card__title {
    font-size: 1.125rem;
    letter-spacing: 1px;
  }
}

.recruit-card__text {
  margin-top: 8px;
  padding-left: 12px;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
}
@media screen and (max-width: 1023px) {
  .recruit-card__text {
    padding-left: 8px;
    font-size: 1rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-card__text {
    padding-left: 12px;
    font-size: 0.875rem;
  }
}

.recruit-card__image {
  flex-grow: 1;
  border-radius: 25px;
  overflow: hidden;
}
.recruit-card__image img {
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .recruit-card__image {
    border-radius: 12px;
  }
}

.recruit-cta {
  padding: 56px 40px;
  background-color: #F8B5C1;
  border-radius: 25px;
}
@media screen and (max-width: 767px) {
  .recruit-cta {
    padding: 24px;
  }
}

.recruit-cta-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
}
@media screen and (max-width: 1023px) {
  .recruit-cta-content {
    flex-direction: column;
    gap: 36px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-cta-content {
    gap: 16px;
  }
}

.recruit-cta-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #FFFEFC;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}

.recruit-cta-lead {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .recruit-cta-lead {
    font-size: 1.125rem;
  }
}

.recruit-cta-text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit-cta-text {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.recruit-cta-button {
  padding: 10px 24px;
  border-radius: 18px;
  background-color: #FFFEFC;
  color: #F8B5C1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}
@media (hover: hover) and (pointer: fine) {
  .recruit-cta-button:hover .recruit-cta-button__icon {
    transform: translateX(4px);
  }
}

.recruit-cta-button__text-2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.recruit-cta-button__icon {
  width: 25px;
  aspect-ratio: 1/1;
  transition: transform 0.3s;
}

.recruit-contact {
  padding-block: 80px;
  background: url(../images/recruit/recruit-contact.webp) no-repeat center -160px/cover;
  position: relative;
}
.recruit-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 254, 252, 0.7);
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .recruit-contact {
    background-position: center -100px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-contact {
    padding-block: 60px;
    background-position: center;
  }
}

.recruit-contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .recruit-contact-content {
    flex-direction: column;
    gap: 24px;
  }
}

.recruit-contact-top {
  padding-inline: 56px;
  text-align: center;
  position: relative;
}
.recruit-contact-top::before, .recruit-contact-top::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 89.3%;
  border-left: 2px dashed;
}
.recruit-contact-top::before {
  left: 0;
  transform: translateY(-50%) rotate(-30.97deg);
}
.recruit-contact-top::after {
  right: 0;
  transform: translateY(-50%) rotate(30.97deg);
}
@media screen and (max-width: 767px) {
  .recruit-contact-top {
    padding: 0;
  }
  .recruit-contact-top::before, .recruit-contact-top::after {
    top: auto;
    bottom: -25px;
    height: 55.5%;
  }
  .recruit-contact-top::before {
    left: -4px;
    transform: translateY(-50%) rotate(-18deg);
  }
  .recruit-contact-top::after {
    right: -4px;
    transform: translateY(-50%) rotate(18deg);
  }
}

.recruit-contact-title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .recruit-contact-title {
    font-size: 1.125rem;
    letter-spacing: 1px;
  }
}

.recruit-contact-text {
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .recruit-contact-text {
    font-size: 0.875rem;
    letter-spacing: 1px;
  }
}

.recruit-contact-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .recruit-contact-bottom {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

.recruit-contact-box {
  padding-inline: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.recruit-contact-box:nth-of-type(2) {
  border-left: 1px solid #4C3E31;
}
@media screen and (max-width: 767px) {
  .recruit-contact-box {
    padding-inline: 0;
    gap: 4px;
  }
  .recruit-contact-box:nth-of-type(2) {
    border: none;
  }
}

.recruit-contact-box__head {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .recruit-contact-box__head {
    font-size: 1rem;
  }
}

.recruit-contact-box__icon {
  width: 30px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .recruit-contact-box__icon {
    width: 26px;
  }
}

.admission-step-top__text {
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
  text-align: center;
}
.admission-step-top__text a {
  display: inline-block;
  color: #459D5E;
  font-weight: 700;
  border-bottom: 1px solid;
}
@media screen and (max-width: 767px) {
  .admission-step-top__text {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 1px;
  }
}

.admission-step-top__list {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
}
@media screen and (max-width: 1023px) {
  .admission-step-top__list {
    gap: 36px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-top__list {
    margin-top: 40px;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

.admission-step-top__item:not(:first-of-type) {
  position: relative;
}
.admission-step-top__item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='15' fill='none'><path fill='%23F8B5C1' d='M.918 13.615c0-.12.047-.234.132-.318L6.834 7.5 1.05 1.703a.45.45 0 0 1-.132-.318c0-.604.73-.906 1.156-.48L8.168 7a.71.71 0 0 1 0 1l-6.094 6.094a.677.677 0 0 1-1.156-.479'/></svg>") no-repeat center/contain;
}
@media screen and (max-width: 1023px) {
  .admission-step-top__item:not(:first-of-type)::before {
    left: -22px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-top__item:not(:first-of-type)::before {
    display: none;
  }
}

.admission-step-top__link {
  display: block;
  padding: 18px 24px;
  background-color: #F8B5C1;
  border-radius: 25px;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.1607843137);
  color: #FFFEFC;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .admission-step-top__link {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-top__link {
    padding-block: 12px;
    border-radius: 12px;
    font-size: 1rem;
  }
}

.admission-step-top__button-wrapper {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .admission-step-top__button-wrapper {
    text-align: center;
  }
}

.admission-step-card:first-of-type {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .admission-step-card:first-of-type {
    padding-top: 40px;
  }
}

.admission-step-card + .admission-step-card {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .admission-step-card + .admission-step-card {
    margin-top: 40px;
  }
}

.admission-step-card__title {
  padding: 4px 24px;
  background-color: #F8B5C1;
  border-radius: 13px;
  color: #FFFEFC;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 6px;
}
@media screen and (max-width: 767px) {
  .admission-step-card__title {
    border-radius: 8px;
    font-size: 1.125rem;
    letter-spacing: 1px;
  }
}

.admission-step-card__body {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .admission-step-card__body {
    margin-top: 24px;
  }
}

.admission-step-check__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .admission-step-check__lead {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 1px;
  }
}

.admission-step-check__cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .admission-step-check__cards {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-check__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }
}

.admission-step-check__card {
  padding: 34px 24px;
  background-color: #FFFEFC;
  border-radius: 25px;
  display: grid;
  align-items: start;
  gap: 16px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .admission-step-check__card {
    padding-inline: 8px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-check__card {
    padding: 24px 8px;
    border-radius: 12px;
  }
}

.admission-step-check__tag {
  position: absolute;
  left: 26px;
  top: -26px;
  width: fit-content;
  padding: 12px 40px;
  border-radius: 13px;
  color: #FFFEFC;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 4px;
  text-align: center;
}
.admission-step-check__tag.is-coral {
  background-color: #F37D63;
}
.admission-step-check__tag.is-yellow {
  background-color: #EECE58;
}
@media screen and (max-width: 1023px) {
  .admission-step-check__tag {
    padding: 8px 24px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-check__tag {
    padding: 4px 24px;
    border-radius: 8px;
    left: 27px;
    top: -15px;
    font-size: 1rem;
  }
}

.admission-step-check__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.admission-step-check__title {
  width: 100%;
  border-bottom: 1px dashed #F8B5C1;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 4px;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .admission-step-check__title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .admission-step-check__title {
    font-size: 1.125rem;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-check__title {
    letter-spacing: 4px;
  }
}

.admission-step-check__label {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 4px;
  color: #F8B5C1;
}
@media screen and (max-width: 1279px) {
  .admission-step-check__label {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1023px) {
  .admission-step-check__label {
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-check__label {
    letter-spacing: 4px;
  }
}

.admission-step-check__desc {
  line-height: 1.7;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .admission-step-check__desc {
    font-size: 0.9375rem;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-check__desc {
    font-size: 1rem;
    letter-spacing: 1px;
  }
}

.admission-step-check__box {
  padding: 32px 40px;
  background-color: #FFFEFC;
  border-radius: 25px;
}
@media screen and (max-width: 767px) {
  .admission-step-check__box {
    padding: 24px 16px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 539px) {
  .admission-step-check__box {
    padding-inline: 8px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
  }
}

.admission-step-check__box-title {
  padding-bottom: 8px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 4px;
  color: #F8B5C1;
  border-bottom: 1px dashed;
}
@media screen and (max-width: 767px) {
  .admission-step-check__box-title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 539px) {
  .admission-step-check__box-title {
    width: 100%;
    padding-bottom: 0;
    text-align: center;
  }
}

.admission-step-check__list {
  margin-top: 32px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-rows: auto;
  grid-template-rows: repeat(3, auto);
  column-gap: 160px;
  row-gap: 20px;
  max-width: fit-content;
}
@media screen and (max-width: 1279px) {
  .admission-step-check__list {
    column-gap: 125px;
  }
}
@media screen and (max-width: 1023px) {
  .admission-step-check__list {
    grid-template-rows: repeat(4, auto);
  }
}
@media screen and (max-width: 767px) {
  .admission-step-check__list {
    margin-top: 20px;
    column-gap: 60px;
  }
}
@media screen and (max-width: 539px) {
  .admission-step-check__list {
    grid-auto-flow: row;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: none;
    column-gap: 0;
    row-gap: 8px;
  }
}

.admission-step-check__item {
  padding-left: 22px;
  position: relative;
}
.admission-step-check__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 7px;
  background: url(../images/components/icon-check.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .admission-step-check__item {
    padding-left: 18px;
  }
  .admission-step-check__item::before {
    width: 8px;
    height: 5px;
  }
}

.admission-step-map {
  display: grid;
  place-items: center;
}

.admission-step-map__image {
  width: 83.4%;
  max-width: 868px;
}
.admission-step-map__image img {
  aspect-ratio: 868/511;
}
@media screen and (max-width: 767px) {
  .admission-step-map__image {
    width: 100%;
    max-width: 100%;
  }
}

.admission-step-map__desc {
  padding-block: 24px;
  width: 100%;
  background-color: #FFFEFC;
  border-radius: 25px;
  line-height: 2;
  letter-spacing: 1px;
  text-align: center;
}
.admission-step-map__desc span {
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .admission-step-map__desc {
    font-size: 0.9375rem;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-map__desc {
    padding: 24px 8px;
    border-radius: 12px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 539px) {
  .admission-step-map__desc {
    line-height: 1.7;
  }
}

.admission-step-procedure__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
  text-align: center;
}
.admission-step-procedure__lead a {
  font-weight: 700;
  color: #459D5E;
  border-bottom: 1px solid;
}
@media screen and (max-width: 767px) {
  .admission-step-procedure__lead {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 1px;
  }
}

.admission-step-procedure__steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .admission-step-procedure__steps {
    margin-top: 40px;
  }
}

.admission-step-procedure__steps-lead {
  padding-inline: 16px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
}
.admission-step-procedure__steps-lead::before, .admission-step-procedure__steps-lead::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 89.3%;
  border-left: 2px dashed;
}
.admission-step-procedure__steps-lead::before {
  left: -10px;
  transform: translateY(-50%) rotate(-20deg);
}
.admission-step-procedure__steps-lead::after {
  right: 0;
  transform: translateY(-50%) rotate(20deg);
}
@media screen and (max-width: 767px) {
  .admission-step-procedure__steps-lead {
    padding-inline: 20px;
    font-size: 1.125rem;
  }
  .admission-step-procedure__steps-lead::before {
    left: 0;
  }
}

.admission-step-procedure__cards {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media screen and (max-width: 1279px) {
  .admission-step-procedure__cards {
    gap: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .admission-step-procedure__cards {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    gap: 84px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-procedure__cards {
    margin-top: 52px;
    width: 100%;
  }
}

.admission-step-procedure__card {
  padding: 32px 20px;
  background-color: #FFFEFC;
  border-radius: 25px;
  border: 6px solid #F8B5C1;
  display: grid;
  place-items: center;
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .admission-step-procedure__card {
    padding-inline: 8px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-procedure__card {
    padding: 24px 8px;
    border-radius: 12px;
    border-width: 4px;
  }
}

.admission-step-procedure__card-head {
  width: 80px;
  position: absolute;
  top: -71px;
  left: 50%;
  transform: translateX(-50%);
}
.admission-step-procedure__card-head img {
  aspect-ratio: 80/101;
}
@media screen and (max-width: 767px) {
  .admission-step-procedure__card-head {
    width: 54px;
    top: -44px;
  }
}

.admission-step-procedure__card-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.7;
  letter-spacing: 6px;
  color: #F8B5C1;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .admission-step-procedure__card-title {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-procedure__card-title {
    font-size: 1.125rem;
    letter-spacing: 1px;
  }
}

.admission-step-procedure__card-desc {
  line-height: 1.7;
  letter-spacing: 1px;
  text-align: center;
}
.admission-step-procedure__card-desc a {
  display: inline-block;
  font-weight: 700;
  color: #F8B5C1;
  padding-inline: 4px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 1279px) {
  .admission-step-procedure__card-desc {
    font-size: 0.9375rem;
    letter-spacing: normal;
  }
}

.admission-step-bottom {
  padding: 48px 80px;
  background-color: #F8B5C1;
  border-radius: 25px;
}
@media screen and (max-width: 1023px) {
  .admission-step-bottom {
    padding-inline: 48px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-bottom {
    padding: 24px;
    border-radius: 12px;
  }
}

.admission-step-bottom__content {
  display: flex;
  align-items: center;
  gap: 127px;
}
@media screen and (max-width: 1279px) {
  .admission-step-bottom__content {
    gap: 100px;
  }
}
@media screen and (max-width: 1023px) {
  .admission-step-bottom__content {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-bottom__content {
    gap: 16px;
  }
}

.admission-step-bottom__body {
  width: 47%;
  flex-shrink: 0;
  color: #FFFEFC;
}
@media screen and (max-width: 1023px) {
  .admission-step-bottom__body {
    width: 100%;
  }
}

.admission-step-bottom__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 6px;
}
@media screen and (max-width: 1023px) {
  .admission-step-bottom__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-bottom__title {
    font-size: 1.125rem;
    letter-spacing: 1px;
  }
}

.admission-step-bottom__text {
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 6px;
}
@media screen and (max-width: 1279px) {
  .admission-step-bottom__text {
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 1023px) {
  .admission-step-bottom__text {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-bottom__text {
    font-weight: 400;
    font-size: 0.9375rem;
    letter-spacing: 1px;
  }
}

.admission-step-bottom__image {
  flex-grow: 1;
  border-radius: 25px;
  overflow: hidden;
}
.admission-step-bottom__image img {
  aspect-ratio: 348/320;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .admission-step-bottom__image img {
    aspect-ratio: 2/1;
    object-position: center bottom;
  }
}
@media screen and (max-width: 767px) {
  .admission-step-bottom__image {
    border-radius: 12px;
  }
}
@media screen and (max-width: 539px) {
  .admission-step-bottom__image img {
    aspect-ratio: 287/263;
    object-position: center;
  }
}

.admission-contact {
  padding-block: 80px;
  background: url(../images//admission/admission-contact.webp) no-repeat left center/cover;
  position: relative;
}
.admission-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 254, 252, 0.7);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .admission-contact {
    padding-block: 64px;
    background-position: center;
  }
}

.admission-contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .admission-contact-content {
    gap: 24px;
  }
}

.admission-contact-lead {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .admission-contact-lead {
    font-size: 1rem;
    letter-spacing: 1px;
  }
}

.admission-contact-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .admission-contact-button-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}

.admission-fees-content {
  padding: 60px 40px;
  background-color: #FFFEFC;
  border-radius: 25px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .admission-fees-content {
    padding: 20px;
    border-radius: 12px;
  }
}

.admission-fees-text {
  margin-top: 32px;
}
.admission-fees-text.is-caution {
  display: inline-flex;
}
.admission-fees-text.is-caution::before {
  content: "※";
}

.admission-fees-card__title {
  padding-bottom: 32px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 4px;
  color: #EECE58;
  border-bottom: 1px dashed;
}
@media screen and (max-width: 767px) {
  .admission-fees-card__title {
    padding-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 2px;
  }
}

.admission-fees-card__list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .admission-fees-card__list {
    margin-top: 20px;
    gap: 20px;
  }
}

.admission-fees-card__item {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-bottom: 32px;
  border-bottom: 1px dashed #EECE58;
}
@media screen and (max-width: 1023px) {
  .admission-fees-card__item {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .admission-fees-card__item {
    flex-direction: column;
    align-items: start;
    gap: 4px;
    padding-bottom: 20px;
  }
}

.admission-fees-card__head {
  min-width: 216px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 6px;
}
@media screen and (max-width: 1023px) {
  .admission-fees-card__head {
    min-width: 193px;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 767px) {
  .admission-fees-card__head {
    min-width: auto;
    font-size: 0.875rem;
    letter-spacing: 2px;
  }
}

.admission-fees-card__body {
  line-height: 1.7;
  letter-spacing: 1px;
}
.admission-fees-card__body a {
  font-weight: 700;
  color: #459D5E;
  border-bottom: 1px solid;
}

.admission-fees-sublist {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.admission-fees-subitem {
  display: flex;
  align-items: center;
  gap: 32px;
}

.admission-fees-subitem__head {
  display: inline-block;
  min-width: 80px;
}

.childcare-menu-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 58px;
}
@media screen and (max-width: 1023px) {
  .childcare-menu-contents {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .childcare-menu-contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
  }
}

.childcare-menu__button {
  display: inline-block;
  padding: 18px 24px;
  width: 100%;
  max-width: 308px;
  background-color: #EECE58;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.1607843137);
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #FFFEFC;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .childcare-menu__button {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .childcare-menu__button {
    width: 100%;
    max-width: 335px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .childcare-menu__button:hover {
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.2);
  }
}

.childcare-schedule {
  background-image: url("../images/childcare/childcare-schedule-bg.png");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 539px) {
  .childcare-schedule {
    background-image: url("../images/childcare/childcare-schedule-bg-sp.png");
  }
}

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

.schedule-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.schedule-item {
  padding-left: 19px;
  padding-bottom: 40px;
  position: relative;
}
.schedule-item::before, .schedule-item::after {
  content: "";
  position: absolute;
  top: 0;
}
.schedule-item::before {
  left: 7px;
  width: 1px;
  height: 100%;
  background-color: #EECE58;
}
.schedule-item::after {
  left: 0;
  width: 15px;
  aspect-ratio: 1/1;
  background: url(../images/childcare/schedule-dot.svg) no-repeat center/contain;
}
.schedule-item:last-of-type {
  padding-bottom: 0;
}
.schedule-item:last-of-type::before {
  display: none;
}

.schedule-item__time {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 0.8;
  letter-spacing: -3px;
  color: #459D5E;
}

.schedule-item__title {
  margin-top: 6px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
}

.schedule-item__text {
  margin-top: 6px;
  line-height: 1.5;
}

.schedule-item__image {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
}
.schedule-item__image img {
  aspect-ratio: 316/200;
  object-fit: cover;
}

.yearly-events {
  padding-block: 100px 230px;
}
@media screen and (max-width: 767px) {
  .yearly-events {
    padding-block: 64px;
  }
}

.yearly-events-contents {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .yearly-events-contents {
    gap: 40px;
  }
}

.yearly-events-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .yearly-events-box {
    gap: 16px;
  }
}
.yearly-events-box.is-spring .yearly-events-box__title {
  background-color: #F8B5C1;
}
.yearly-events-box.is-spring .yearly-events-box__item::before {
  background-color: #F8B5C1;
}
.yearly-events-box.is-spring .yearly-events-image {
  box-shadow: 4px 4px 0px 0px #F8B5C1;
}
.yearly-events-box.is-summer .yearly-events-box__title {
  background-color: #7ecaff;
}
.yearly-events-box.is-summer .yearly-events-box__item::before {
  background-color: #7ecaff;
}
.yearly-events-box.is-summer .yearly-events-image {
  box-shadow: 4px 4px 0px 0px #7ecaff;
}
.yearly-events-box.is-autumn .yearly-events-box__title {
  background-color: #c7650a;
}
.yearly-events-box.is-autumn .yearly-events-box__item::before {
  background-color: #c7650a;
}
.yearly-events-box.is-autumn .yearly-events-image {
  box-shadow: 4px 4px 0px 0px #c7650a;
}
.yearly-events-box.is-winter .yearly-events-box__title {
  background-color: #056CB5;
}
.yearly-events-box.is-winter .yearly-events-box__item::before {
  background-color: #056CB5;
}
.yearly-events-box.is-winter .yearly-events-image {
  box-shadow: 4px 4px 0px 0px #056CB5;
}

.yearly-events-box__head {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .yearly-events-box__head {
    flex-direction: row;
    align-items: center;
  }
}

.yearly-events-box__title {
  width: 95px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.08;
  color: #FFFEFC;
}
@media screen and (max-width: 1023px) {
  .yearly-events-box__title {
    width: 70px;
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .yearly-events-box__title {
    width: 47px;
    min-width: 47px;
    font-size: 1.125rem;
  }
}

.yearly-events-box__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 16px;
}
@media screen and (max-width: 1279px) {
  .yearly-events-box__list {
    column-gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .yearly-events-box__list {
    column-gap: 16px;
    row-gap: 12px;
  }
}

.yearly-events-box__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 4px;
}
.yearly-events-box__item::before {
  content: "";
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
}
@media screen and (max-width: 1279px) {
  .yearly-events-box__item {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .yearly-events-box__item {
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 2px;
  }
  .yearly-events-box__item::before {
    width: 8px;
  }
  .yearly-events-box__item.is-basis {
    flex-basis: 100%;
  }
}

.yearly-events-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .yearly-events-images {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .yearly-events-images {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.yearly-events-image {
  overflow: hidden;
  border-radius: 25px;
}
.yearly-events-image img {
  aspect-ratio: 406/289;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .yearly-events-image {
    border-radius: 12px;
  }
  .yearly-events-image img {
    aspect-ratio: 335/208;
  }
}

.extended-care-top-text {
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .extended-care-top-text {
    font-size: 1rem;
    letter-spacing: 1px;
  }
}

.extended-care-top-button-wrapper {
  text-align: center;
}

.extended-care-top-cards {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .extended-care-top-cards {
    margin-top: 60px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.extended-care-top-card {
  padding: 18px 24px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #FFFEFC;
}
.extended-care-top-card.is-risu {
  background-color: #459D5E;
}
.extended-care-top-card.is-kirin {
  background-color: #EECE58;
}
@media screen and (max-width: 1023px) {
  .extended-care-top-card {
    padding: 16px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .extended-care-top-card {
    flex-direction: column;
    gap: 10px;
  }
}

.extended-care-top-head {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 6px;
  flex-shrink: 0;
}
@media screen and (max-width: 1279px) {
  .extended-care-top-head {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 1023px) {
  .extended-care-top-head {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }
}

.extended-care-top-body {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.7;
  letter-spacing: 1px;
}
@media screen and (max-width: 1279px) {
  .extended-care-top-body {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .extended-care-top-body {
    font-size: 1rem;
  }
}

.extended-care-top-list {
  display: flex;
  flex-direction: column;
}

.extended-care-top-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.extended-care-top-item::before {
  content: "";
  width: 17px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background-color: #FFFEFC;
}
@media screen and (max-width: 1023px) {
  .extended-care-top-item::before {
    width: 12px;
  }
}
@media screen and (max-width: 767px) {
  .extended-care-top-item::before {
    width: 8px;
  }
}

.extended-care-bottom {
  background-color: #F7F3E2;
}

.extended-care-bottom-boxes {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.extended-care-box {
  padding-block: 80px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 56px;
}
.extended-care-box.is-risu .extended-care-box-title {
  background-color: #459D5E;
}
.extended-care-box.is-risu .extended-care-box-card:nth-of-type(even) {
  flex-direction: row-reverse;
}
.extended-care-box.is-risu .extended-care-box-card__title {
  color: #459D5E;
}
.extended-care-box.is-kirin .extended-care-box-title {
  background-color: #EECE58;
}
.extended-care-box.is-kirin .extended-care-box-card:nth-of-type(odd) {
  flex-direction: row-reverse;
}
.extended-care-box.is-kirin .extended-care-box-card__title {
  color: #EECE58;
}
@media screen and (max-width: 767px) {
  .extended-care-box {
    padding-block: 40px;
    gap: 40px;
  }
  .extended-care-box:last-of-type {
    padding-block: 40px 0;
  }
  .extended-care-box.is-risu .extended-care-box-card:nth-of-type(even) {
    flex-direction: column;
  }
  .extended-care-box.is-kirin .extended-care-box-card:nth-of-type(odd) {
    flex-direction: column;
  }
}

.extended-care-box-head {
  display: flex;
  align-items: center;
  gap: 56px;
}
@media screen and (max-width: 1023px) {
  .extended-care-box-head {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .extended-care-box-head {
    flex-direction: column;
  }
}

.extended-care-box-title {
  padding: 4px 24px;
  flex-shrink: 0;
  border-radius: 13px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 6px;
  color: #FFFEFC;
}
@media screen and (max-width: 1023px) {
  .extended-care-box-title {
    padding-inline: 10px;
    font-size: 1.375rem;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 767px) {
  .extended-care-box-title {
    width: fit-content;
  }
}

.extended-care-box-head__desc {
  flex-grow: 1;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
}
@media screen and (max-width: 1023px) {
  .extended-care-box-head__desc {
    font-size: 1rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 767px) {
  .extended-care-box-head__desc {
    text-align: center;
  }
}

.extended-care-box-button-wrapper {
  text-align: center;
}

.extended-care-box-table {
  padding: 60px 40px;
  background-color: #FFFEFC;
  border-radius: 25px;
}
@media screen and (max-width: 767px) {
  .extended-care-box-table {
    padding: 20px;
  }
}

.extended-care-box-table__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .extended-care-box-table__list {
    gap: 20px;
  }
}

.extended-care-box-table__item {
  padding-bottom: 32px;
  border-bottom: 1px dashed #EECE58;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .extended-care-box-table__item {
    padding-bottom: 20px;
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }
}

.extended-care-box-table__item-head {
  min-width: 178px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 4px;
}
@media screen and (max-width: 1023px) {
  .extended-care-box-table__item-head {
    font-size: 1rem;
  }
}

.extended-care-box-table__item-body {
  line-height: 1.7;
  letter-spacing: 1px;
}

.extended-care-box-table__sublist {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.extended-care-box-table__sublist--dot .extended-care-box-table__subitem {
  margin-left: 22px;
  display: list-item;
  list-style: disc;
}

.extended-care-box-table__subitem {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .extended-care-box-table__subitem {
    flex-direction: column;
    gap: 0;
    font-size: 0.875rem;
  }
  .extended-care-box-table__subitem span:not(:first-child) {
    font-size: 0.75rem;
  }
}

.extended-care-box-cards {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 56px;
}

.extended-care-box-card {
  display: flex;
  align-items: stretch;
  gap: 48px;
}
@media screen and (max-width: 1023px) {
  .extended-care-box-card {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .extended-care-box-card {
    flex-direction: column;
    gap: 8px;
  }
}

.extended-care-box-card__body {
  width: 53%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .extended-care-box-card__body {
    width: 100%;
  }
}

.extended-care-box-card__title {
  padding-inline: 24px;
  background-color: #FFFEFC;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.7;
  letter-spacing: 8px;
  position: relative;
}
.extended-care-box-card__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: currentColor;
}
@media screen and (max-width: 1279px) {
  .extended-care-box-card__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .extended-care-box-card__title {
    padding-inline: 16px;
    font-size: 1.375rem;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 767px) {
  .extended-care-box-card__title {
    font-size: 1.125rem;
  }
}

.extended-care-box-card__text {
  margin-top: 16px;
  padding-left: 12px;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
}
@media screen and (max-width: 1023px) {
  .extended-care-box-card__text {
    padding-left: 8px;
    font-size: 1rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 767px) {
  .extended-care-box-card__text {
    font-size: 0.875rem;
  }
}

.extended-care-box-card__image {
  flex-grow: 1;
  border-radius: 25px;
  overflow: hidden;
}
.extended-care-box-card__image img {
  object-fit: cover;
  aspect-ratio: 439/262;
}

.extended-care-box-table-group {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}

.extended-care-box-table__title {
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1px;
}

.extended-care-box-table {
  margin-top: 8px;
  line-height: 1.7;
  letter-spacing: 1px;
}
.extended-care-box-table tr:nth-of-type(odd) {
  background-color: #e7e7e7;
}
.extended-care-box-table tr:nth-of-type(even) {
  background-color: #F9F9F9;
}
.extended-care-box-table td {
  padding-block: 4px;
  padding-inline: 10px;
  width: 140px;
}
@media screen and (max-width: 767px) {
  .extended-care-box-table td {
    padding-inline: 6px;
    font-size: 0.8125rem;
    letter-spacing: 0.3px;
  }
}

.extended-care-deco {
  padding-block: 80px;
}
@media screen and (max-width: 1023px) {
  .extended-care-deco {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .extended-care-deco {
    padding-block: 40px;
  }
}
@media screen and (max-width: 539px) {
  .extended-care-deco {
    padding-top: 24px;
  }
}

.extended-care-deco-content {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .extended-care-deco-content {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .extended-care-deco-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.extended-care-deco-image {
  border-radius: 25px;
  overflow: hidden;
}
.extended-care-deco-image img {
  aspect-ratio: 301/179;
}
@media screen and (max-width: 1023px) {
  .extended-care-deco-image {
    border-radius: 13px;
  }
}

@media screen and (max-width: 1023px) {
  .bus-top .inner {
    max-width: 800px;
  }
}

.bus-top-card {
  display: flex;
  align-items: stretch;
  gap: 48px;
}
@media screen and (max-width: 1023px) {
  .bus-top-card {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .bus-top-card {
    gap: 8px;
  }
}

.bus-top-card__body {
  width: 53%;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .bus-top-card__body {
    width: 100%;
    display: contents;
  }
}

.bus-top-card__title {
  padding-inline: 24px;
  background: #FFFEFC;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.7;
  letter-spacing: 8px;
  color: #459D5E;
  position: relative;
}
.bus-top-card__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: currentColor;
}
@media screen and (max-width: 1023px) {
  .bus-top-card__title {
    font-size: 1.5rem;
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .bus-top-card__title {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 539px) {
  .bus-top-card__title {
    font-size: 1.125rem;
    letter-spacing: 1px;
  }
}

.bus-top-card__desc {
  margin-top: 8px;
  padding-left: 12px;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
}
@media screen and (max-width: 1023px) {
  .bus-top-card__desc {
    order: 3;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .bus-top-card__desc {
    font-size: 0.875rem;
    letter-spacing: 1px;
  }
}

.bus-top-card__image {
  flex-grow: 1;
  overflow: hidden;
  border-radius: 25px;
}
.bus-top-card__image img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 439/262;
}
@media screen and (max-width: 1023px) {
  .bus-top-card__image {
    border-radius: 12px;
    order: 2;
  }
}

.bus-deco-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bus-deco-image {
  width: 11%;
}
.bus-deco-image img {
  aspect-ratio: 142/107;
}
@media screen and (max-width: 767px) {
  .bus-deco-image {
    width: 14%;
  }
}
@media screen and (max-width: 539px) {
  .bus-deco-image {
    width: 18%;
    max-width: 80px;
  }
}

@media screen and (max-width: 1023px) {
  .bus-map {
    padding-block: 24px;
  }
}
@media screen and (max-width: 767px) {
  .bus-map {
    padding-block: 44px;
  }
}

.bus-map-content {
  display: flex;
  flex-direction: column;
}

.bus-map-card {
  padding-block: 80px;
  display: flex;
  gap: 103px;
}
@media screen and (max-width: 1279px) {
  .bus-map-card {
    gap: 80px;
  }
}
@media screen and (max-width: 1023px) {
  .bus-map-card {
    padding-block: 40px;
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .bus-map-card {
    padding-inline: 20px;
    gap: 16px;
  }
}

.bus-map-card__content {
  width: 47.4%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 1023px) {
  .bus-map-card__content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .bus-map-card__content {
    gap: 16px;
  }
}

.bus-map-card__head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bus-map-card__title {
  width: 168px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.24em;
  color: #FFFEFC;
}
.bus-map-card__title.is-red {
  background-color: #F37D63;
}
.bus-map-card__title.is-blue {
  background-color: #056CB5;
}
.bus-map-card__title.is-yellow {
  background-color: #EECE58;
}
.bus-map-card__title.is-green {
  background-color: #459D5E;
}
@media screen and (max-width: 767px) {
  .bus-map-card__title {
    width: 133px;
    height: 40px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 539px) {
  .bus-map-card__title {
    width: 120px;
  }
}

.bus-map-card__text {
  padding-block: 8px;
  border-bottom: 1px solid;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .bus-map-card__text {
    font-size: 1rem;
    letter-spacing: 1px;
  }
}

.bus-map-card__image {
  flex-grow: 1;
}
.bus-map-card__image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.bus-map-card__schedule-text {
  margin-top: 16px;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .bus-map-card__schedule-text {
    margin-top: 8px;
    font-size: 1rem;
    letter-spacing: 1px;
  }
}

.contact-message {
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.7;
}

.contact-text:nth-of-type(2) {
  margin-top: 8px;
}

.form {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .form {
    margin-top: 40px;
  }
}

.form-item {
  width: 100%;
  display: flex;
  align-items: start;
  gap: 40px;
}
.form-item:not(:first-of-type) {
  margin-top: 32px;
}
@media screen and (max-width: 1023px) {
  .form-item {
    flex-direction: column;
    gap: 8px;
  }
  .form-item:not(:first-of-type) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .form-item {
    gap: 6px;
  }
}

.form-item__label {
  margin-top: 8px;
  min-width: 310px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 2px;
}
@media screen and (max-width: 1023px) {
  .form-item__label {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .form-item__label {
    font-size: 1rem;
  }
}

.required {
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  color: #FFFEFC;
  background-color: #F37D63;
}
@media screen and (max-width: 767px) {
  .required {
    font-size: 0.75rem;
  }
}

.form-attention {
  text-align: center;
  line-height: 1.7;
  letter-spacing: 2px;
}
.form-attention a {
  font-weight: 700;
  color: #F37D63;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .form-attention a:hover {
    opacity: 0.8;
    border-bottom: 1px solid;
  }
}
@media screen and (max-width: 767px) {
  .form-attention {
    letter-spacing: 1px;
  }
}

.form-submit-wrapper {
  display: grid;
  place-items: center;
}

.form-submit {
  min-width: 320px;
  padding: 16px 24px;
  letter-spacing: 4px;
  background-color: #EECE58;
  border-radius: 13px;
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form-submit {
    min-width: 240px;
    padding-block: 12px;
    font-size: 1.125rem;
  }
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #7B7B7B;
  border-radius: 8px;
}
@media (hover: hover) and (pointer: fine) {
  .form-input:hover,
  .form-textarea:hover {
    border-color: #EECE58;
  }
}
.form-input:focus,
.form-textarea:focus {
  border-color: #EECE58;
}
@media screen and (max-width: 767px) {
  .form-input,
  .form-textarea {
    border-radius: 6px;
  }
}

.form-input {
  height: 44px;
}

.form-textarea {
  height: 180px;
}

.birthday {
  display: flex;
  align-items: center;
  gap: 10px;
}

.birthday-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.birthday-item .form-input {
  text-align: right;
}
@media screen and (max-width: 539px) {
  .birthday-item .form-input {
    max-width: 96px;
  }
}

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

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

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

.u-hidden-xl {
  display: block;
}
@media screen and (max-width: 1279px) {
  .u-hidden-xl {
    display: none;
  }
}

.u-hidden-lg {
  display: block;
}
@media screen and (max-width: 1023px) {
  .u-hidden-lg {
    display: none;
  }
}

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

.u-hidden-sm {
  display: block;
}
@media screen and (max-width: 539px) {
  .u-hidden-sm {
    display: none;
  }
}

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

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

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

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

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

.mt56 {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .mt56 {
    margin-top: 36px;
  }
}

.ptb100 {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .ptb100 {
    padding-block: 60px;
  }
}

.u-scroll-top {
  scroll-margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .u-scroll-top {
    scroll-margin-top: 60px;
  }
}

.u-scroll-top-lg {
  scroll-margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .u-scroll-top-lg {
    scroll-margin-top: 100px;
  }
}