@charset "UTF-8";
@charset "UTF-8";

:root {
  /* メインカラー */
  --main-color-red: #7f121a;
  --main-color-green: #576128;
  --main-color-black: #382e28;
  --main-color-beige: #e7e8e0;

  /* 背景色 */
  --bg-color-body: #f4f5f2;
  --bg-color-accent: #fff9d5;
  --bg-color-white: #fff;
  --bg-color-gray: #f7f7f7;

  /* 文字色 */
  --text-color-primary: #382e28;
  --text-color-white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color-body);
  color: var(--text-color-primary);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  max-width: 1366px;
  width: 100%;
  margin-inline: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    max-width: 100%;
  }
}
[id] {
  scroll-margin-top: 130px;
}
@media screen and (max-width: 768px) {
  [id] {
    scroll-margin-top: 100px;
  }
}

/* ============================
*  Layout
* ========================== */
.l-main {
  max-width: 1366px;
  margin: 118px 20px 0;
}
@media screen and (max-width: 768px) {
  .l-main {
    margin: 70px 0 0; /* 左右のmarginを削除 */
    padding: 0 8px; /* 代わりにpaddingで対応 */
    overflow-x: hidden;
    box-sizing: border-box;
  }
}

.l-inner {
  padding: 0 clamp(40px, 8.49vw, 116px);
  /* margin: 0 20px; */
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 3.2vw;
  }
}

.l-section-header-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-section-header-wrapper {
    width: auto;
    margin: 0 8px;
  }
}

.l-section-header-wrapper::after {
  width: 100%;
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
}

.l-section-header {
  background: linear-gradient(90deg, #576128 0%, #b1ba8a 50%, var(--main-color-beige) 100%);
  padding: clamp(8px, 2.08vh, 16px) clamp(8px, 1.76vw, 24px);
  font-family: 'Noto Serif JP', serif;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .l-section-header {
    padding: 16px 0 18px 24px;
  }
}

/* ============================
*  Component
* ========================== */
.c-title {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.c-title--en {
  font-family: 'Zen Maru Gothic', sans-serif;
  display: flex;
  align-items: center;
  font-size: 0.6875rem; /* 11px */
  gap: 11px;
  text-transform: uppercase;
  position: relative;
  font-weight: 700;
  letter-spacing: 0.088em;
}

.c-title--en::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 0.5em;
  vertical-align: middle;
}

.c-title--ja {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 2.05vw, 1.75rem);
  line-height: 1.429;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .c-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .c-title--ja {
    font-size: 1.25rem; /* 20px */
  }
}

/* リンクボタン */
.c-btn-link {
  display: flex;
  width: clamp(100px, 100%, 178px);
  height: 54px;
  padding: 0 24px;
  border: 2px solid var(--main-color-green);
  border-radius: 10000px; /* 27px (高さの半分) */
  background-color: transparent;
  color: var(--main-color-green);
  transition: all 0.3s ease;
  margin-inline: auto;
  box-sizing: border-box;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-btn-link {
    width: 100%;
    height: 48px;
  }
}

.c-btn-link__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  white-space: nowrap;
  width: 100%;
  flex-shrink: 0;
}

.c-btn-link__label::after {
  content: '';
  background-color: var(--main-color-green);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: 0.4s ease;
}

.c-btn-link:hover {
  background-color: var(--main-color-green);
}

.c-btn-link:hover .c-btn-link__label {
  color: var(--text-color-white);
}

.c-btn-link:hover .c-btn-link__label::after {
  background-color: var(--bg-color-white);
  transform: scale(1.5);
}

/* リンクボタン ラージ */
.c-btn-link--large {
  width: clamp(300px, 29.28vw, 400px);
  height: 74px;
  font-size: 1rem;
  border: none;
  background-color: var(--main-color-green);
}
@media screen and (max-width: 768px) {
  .c-btn-link--large {
    width: 290px;
    height: 58px;
  }
}

.c-btn-link--large:hover .c-btn-link__label--large::after {
  transform: scale(1.4);
}

.c-btn-link__label--large {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-color-white);
}
@media screen and (max-width: 768px) {
  .c-btn-link__label--large {
    font-size: 0.875rem;
  }
}

.c-btn-link__label--large::after {
  background-color: var(--bg-color-white);
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-btn-link__label--large::after {
    width: 8px;
    height: 8px;
  }
}

/* ============================
*  Utility
* ========================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

:lang(en) {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================
*  Swiper
* ========================== */
.swiper-buttons-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .swiper-buttons-wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    top: auto !important;
    right: 0;
    background-position: right 0;
    background-repeat: no-repeat;
    width: 100%;
    height: 66px;
    /* pointer-events: none; */
    z-index: 20 !important;
  }
}

/* ナビゲーションボタン */
.swiper-buttons {
  position: relative;
  display: flex;
  gap: 30px;
  padding-right: 25px;
  z-index: 20 !important;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 44px;
  height: 44px;
  margin: 0;
  pointer-events: auto;
  z-index: 20 !important;
}

@media screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: flex;
  }

  /* Swiperのデフォルトの位置指定を上書き */
  .swiper-button-next,
  .swiper-button-prev {
    position: relative !important;
    z-index: 20 !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin-top: 0 !important;
    pointer-events: auto;
  }
}

@media screen and (min-width: 769px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

/* デフォルトの矢印を非表示 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}

/* カスタム矢印 */
.arrow {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 3px;
  margin: 9.2px 0;
  border-radius: 9999px;
  background-color: #576128;
  transition: background-color 0.3s ease;
  z-index: 20 !important;
}

.arrow::before,
.arrow::after {
  content: '';
  position: absolute;
  top: calc(50% - 1.5px);
  width: 16px;
  height: 3px;
  border-radius: 9999px;
  background-color: #576128;
  transition: background-color 0.3s ease;
}

/* 右矢印 */
.swiper-button-next .arrow::before,
.swiper-button-next .arrow::after {
  right: 0;
  transform-origin: calc(100% - 1.5px) 50%;
}

.swiper-button-next .arrow::before {
  transform: rotate(45deg);
}

.swiper-button-next .arrow::after {
  transform: rotate(-45deg);
}

/* 左矢印 */
.swiper-button-prev .arrow::before,
.swiper-button-prev .arrow::after {
  left: 0;
  transform-origin: 1.5px 50%;
}

.swiper-button-prev .arrow::before {
  transform: rotate(-45deg);
}

.swiper-button-prev .arrow::after {
  transform: rotate(45deg);
}

/* 無効化状態 */
.swiper-button-disabled,
.swiper-button-disabled * {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 1;
}

.swiper-button-disabled .arrow,
.swiper-button-disabled .arrow::before,
.swiper-button-disabled .arrow::after {
  background-color: #c9d4da;
}

@media screen and (max-width: 768px) {
  .top-service .swiper-buttons-wrapper {
    background-image: url('../images/bg-top-facility-swiper-buttons.svg');
    bottom: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .top-voice .swiper-buttons-wrapper,
  .top-news .swiper-buttons-wrapper {
    background-image: url('../images/bg-top-voice-swiper-buttons.svg');
    bottom: 74px;
    z-index: 10;
  }
}

/* ============================
*  Header
* ========================== */
.header {
  position: fixed;
  top: 0;
  max-width: 1366px;
  width: 100%;
  height: 118px;
  padding: 0 20px 5px 2.93vw;
  z-index: 10;
  background-color: #f4f5f2;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .header {
    max-width: 100%;
    width: 100%;
    height: 70px;
    left: 0;
    right: auto;
    padding: 0;
  }
}

.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1366px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    max-width: 100%;
    padding: 0;
    height: 70px;
    width: 100%;
  }
}

.header__logo {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 20px;
  }
}

/*-------------------------
  Navigation
-------------------------*/
.header__nav {
  padding: 25px 0;
}
.header__nav-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(auto, 1fr)) auto minmax(auto, 1fr);
  gap: 1.5vw;
  width: fit-content;
  max-width: 992px;
}
@media screen and (max-width: 1024px) {
  .header__nav-list {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.header__nav-item--contact {
}
@media screen and (max-width: 1024px) {
  .header__nav-item {
    width: 100%;
    padding-bottom: 18px;
    border-bottom: 3px dotted #f2f2f2;
  }
}

.nav__item-link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .nav__item-link {
    gap: 4px;
    width: fit-content;
  }

  .nav__item-link.accordion-toggle {
    width: clamp(70%, 100%, 100%);
  }
}

.nav__item-link:hover {
  opacity: 0.6;
}

.nav__item-label--en {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.688rem; /* 11px */
}
@media screen and (max-width: 1024px) {
  .nav__item-label--en {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}

.nav__item-label--en::before {
  content: '';
  background-color: var(--main-color-green);
  width: 10px;
  height: 10px;
  clip-path: circle(50% at 50% 50%);
}
@media screen and (max-width: 1024px) {
  .nav__item-label--en::before {
    width: 7px;
    height: 7px;
  }
}

.nav__item-label--ja {
  font-size: 0.875rem;
  font-size: clamp(0.75rem, 1.02vw, 0.875rem);
  line-height: 1.429;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  white-space: nowrap;
}
.nav__item-label--ja br {
  display: block;
}
@media screen and (max-width: 1024px) {
  .header .nav__item-label--ja {
    font-size: 1rem;
    line-height: 1.438;
  }

  .header .nav__item-label--ja br {
    display: none;
  }

  .nav__item-label--ja .sp-only {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .nav__item-label--ja br {
    display: block;
  }
}
/*-------------------------
  Contact
-------------------------*/
.header__contact {
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  width: fit-content;
}

.header__contact-btns {
  height: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 138px));
  gap: 4px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .header__contact-btns {
    grid-template-columns: repeat(3, 55px);
  }
}

.header__contact-btn {
  border-radius: 0 0 10px 10px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.header__contact-btn:nth-of-type(2) {
  justify-content: flex-start;
  padding-left: 20px;
}
@media screen and (max-width: 1024px) {
  .header__contact-btn {
    padding: 8px 10px;
  }

  .header__contact-btn-label br {
    display: block;
  }
}

.header__contact-btn:hover .header__contact-btn-label {
  opacity: 0.6;
}

.header__contact-btn-label {
  display: flex;
  align-items: center;
  gap: 0.59vw;
  font-size: 0.875rem;
  font-size: clamp(0.75rem, 1.02vw, 0.875rem);
  line-height: 1.429;
  font-weight: 700;
  color: var(--text-color-white);
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
  .header__contact-btn-label {
    flex-direction: column;
    gap: 3px;
    font-size: 0.625rem;
    line-height: 1.3;
  }
}

.header__contact-btn-label::before {
  content: '';
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: center;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .header__contact-btn-label::before {
    width: 16px;
    height: 16px;
  }
}

/* お問い合わせボタン */
.header__contact-btn--inquiry {
  background-color: var(--main-color-red);
}

.header__contact-btn--inquiry .header__contact-btn-label::before {
  background-image: url(../images/icon-mail.svg);
}
@media screen and (max-width: 1024px) {
  .header__contact-btn--inquiry .header__contact-btn-label::before {
    background-image: url(../images/icon-document.svg);
  }
}
/* 採用情報ボタン */
.header__contact-btn--recruit {
  background-color: var(--main-color-green);
}

.header__contact-btn--recruit .header__contact-btn-label::before {
  background-image: url(../images/icon-user.svg);
}
@media screen and (max-width: 1024px) {
  .header__contact-btn--recruit .header__contact-btn-label::before {
    background-image: url(../images/icon-user-sp.svg);
  }
}

/* 電話 */
.header__contact-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .header__contact-tel {
    display: none;
  }
}

.header__contact-tel-number {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  font-size: clamp(1.5rem, 2.34vw, 2rem);
  line-height: 1.188;
  letter-spacing: 0.04em;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}

.header__contact-tel-number::before {
  content: '';
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url(../images/icon-tel.svg);
}

.header__contact-tel-hour {
  display: block;
  background-color: #fff;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--text-color-primary);
  border-radius: 10000px;
  width: fit-content;
  padding: 0 8px;
}

.header__contact-tel-hour time {
  font-size: 0.813rem;
  font-family: 'Outfit', sans-serif;
}

/*-------------------------
  Hamburger Menu
-------------------------*/
.hamburger-menu__wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 3.33vw;
  /* margin: 0 0 0 auto; */
}

.hamburger-menu {
  display: none;
}

/*-------------------------
  Contact Info (SP only)
-------------------------*/
.contact-info {
  display: none;
}
@media screen and (max-width: 1024px) {
  .contact-info {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background-color: var(--main-color-green);
    border-radius: 16px;
  }

  .contact-info__desc {
    font-size: 0.875rem;
    line-height: 1.429;
    color: var(--text-color-white);
    margin-bottom: 16px;
    text-align: center;
    margin-bottom: 21.5px;
  }

  .contact-info-tel {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
  }

  .contact-info-tel-number {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 1.75rem;
    line-height: 1.188;
    letter-spacing: 0.04em;
    font-family: 'Outfit', sans-serif;
    color: var(--text-color-white);
  }

  .contact-info-tel-number::before {
    content: '';
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-image: url(../images/icon-tel-green.svg);
  }

  .contact-info-tel-hour {
    display: block;
    background-color: #fff;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: var(--text-color-primary);
    border-radius: 10000px;
    width: 100%;
    padding: 0 8px;
    text-align: center;
  }

  .contact-info-tel-hour time {
    font-size: 0.813rem;
    font-family: 'Outfit', sans-serif;
  }

  .contact-info-btns {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
  }

  .contact-info-btn {
    border-radius: 8px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    background-color: #fff;
  }

  .contact-info-btn-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.875rem;
    line-height: 1.714;
    font-weight: 500;
    color: var(--main-color-black);
    letter-spacing: 0.08em;
  }
  .contact-info-btn-label::before {
    content: '';
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .contact-info-btn--inquiry-from-web .contact-info-btn-label::before {
    background-image: url(../images/icon-mail-black.svg);
  }
  .contact-info-btn--entry .contact-info-btn-label::before {
    background-image: url(../images/icon-document-black.svg);
  }
}

@media screen and (max-width: 1024px) {
  /* closed */
  .hamburger-menu__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color-body);
    position: absolute;
    opacity: 0;
    top: 70px;
    left: 0; /* ← rightではなくleftで左から配置 */
    right: auto;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: visible;
    padding: 0 8px;
    /* width: 100%; ←ここを修正 */
    max-width: 100%; /* 念のため追加 */
    overflow-x: hidden; /* 安全対策 */
  }

  .hamburger-menu__wrapper.open {
    visibility: visible;
    opacity: 1;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    z-index: 100;
  }

  .header__nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    /* z-index: 10; */
    width: 100%;
    height: fit-content;
    padding: 32px;
    margin-inline: auto;
    transition: left 0.3s ease;
    background-color: #fff;
    border-radius: 16px;
    overflow-y: scroll;
    box-sizing: border-box;
  }

  .header__nav-list {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    gap: 16px;
    width: 100%;
  }

  #drawerMenu.open .header__nav {
    left: 0;
  }

  .hamburger-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color-black);
    border-radius: 0 0 0 10px;
    padding: 12px 16px;
    gap: 8px;
  }

  .hamburger-menu__lines {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger-menu__line-img,
  .hamburger-menu__line {
    transform-origin: center center; /* 中心を基準に回転 */
  }

  .hamburger-menu__line-img {
    position: relative;
    transition: all 0.3s ease;
    width: 28px;
  }

  .hamburger-menu__line {
    width: 28px;
    height: 2px;
    background-color: #fff;
    border-radius: 100px;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .hamburger-menu__label {
    font-size: 0.625rem;
    line-height: 1.5;
    color: var(--text-color-white);
    text-transform: uppercase;
  }

  /* open状態 */
  .hamburger-menu.open .hamburger-menu__line-img {
    transform: translateY(3px) rotate(30deg);
  }

  .hamburger-menu.open .hamburger-menu__line {
    transform: translateY(-5px) rotate(-30deg);
  }
}
/*-------------------------
  Accordion Menu
-------------------------*/
.nav__item-labels--accordion {
  display: flex;
  gap: 11px;
}
@media screen and (max-width: 1024px) {
  .nav__item-labels--accordion {
    gap: 4px;
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content.is-open {
  max-height: 300px;
}

.accordion-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.accordion-list-item {
  cursor: pointer;
  /* transition: background 0.2s; */
}

.accordion-list-item:hover {
  /* background: rgba(0, 0, 0, 0.05); */
}

.accordion-list-item-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.813rem;
  line-height: 1.846;
  color: var(--text-color-primary);
}

.accordion-list-item-link::before {
  content: '';
  width: 3px;
  height: 3px;
  background-color: var(--main-color-green);
  clip-path: circle(50% at 50% 50%);
}

/* トグルボタン */
.toggle-btn {
  display: none;
}

@media screen and (max-width: 1024px) {
  .toggle-btn {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--main-color-green);
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
    flex-shrink: 0;
    z-index: 15;
  }

  .footer .toggle-btn {
    /* display: none; */
    display: block;
    width: 18px;
    height: 18px;
  }

  .toggle-btn::before,
  .toggle-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    transition: opacity 0.3s;
  }

  .toggle-btn::before {
    width: 10px;
    height: 2px;
    transform: translate(-50%, -50%);
  }

  .toggle-btn::after {
    width: 2px;
    height: 10px;
    transform: translate(-50%, -50%);
  }

  .nav__item.is-active .toggle-btn {
    background: #ccc;
  }

  .nav__item.is-active .toggle-btn::after {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer .toggle-btn {
    display: block;
    width: 18px;
    height: 18px;
  }
}

/* ============================
*  Top Page
* ========================== */
/*-------------------------
  FV
-------------------------*/
.top-fv {
  position: relative;
  width: 100%;
  margin-bottom: 42px;
  background-image: url('../images/fv-top-PC.png');
  background-repeat: no-repeat;
  aspect-ratio: 1326 / 677;
  background-size: contain;
  background-position: top center;
}
@media screen and (max-width: 650px) {
  .top-fv {
    width: 100%;
    aspect-ratio: 359 / 495;
    background-size: cover;
    margin-bottom: 8px;
    background-image: url('../images/fv-top-SP.png');
  }
}

.top-fv__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top-fv__img {
    width: 100%;
  }
}

.top-fv__logo {
  position: absolute;
  content: '';
  width: clamp(100px, 11.71vw, 160px);
  height: auto;
  aspect-ratio: 80 / 89;
  top: 112px;
  top: clamp(70px, 14.58vh, 112px);
  left: 60px;
}
@media screen and (max-width: 650px) {
  .top-fv__logo {
    width: 100px;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    aspect-ratio: 100 / 111.94;
  }
}

.top-fv__text {
  position: absolute;
  content: '';
  width: clamp(300px, 29.72vw, 406px);
  height: auto;
  aspect-ratio: 128 / 49;
  top: clamp(100px, 20.57vh, 158px);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .top-fv__text {
    width: 254px;
  }
}
@media screen and (max-width: 768px) {
  .top-fv__text {
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/*-------------------------
  About
-------------------------*/
.top-about .l-inner {
  padding-top: 98px;
  padding-bottom: 102px;
  background-color: #fff;
  border-radius: 16px 16px 0 0;
}
@media screen and (max-width: 768px) {
  .top-about .l-inner {
    padding: 63px 0 0;
  }
}

.top-about__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 49px;
}
@media screen and (max-width: 768px) {
  .top-about__title {
    align-items: flex-end;
    margin-bottom: 16px;
  }
}

.top-about__title-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 1.17vw, 16px);
  width: clamp(400px, 47.73vw, 652px);
  height: auto;
}
@media screen and (max-width: 768px) {
  .top-about__title-images {
    position: relative;
    flex-direction: column;
    gap: 16px;
    width: clamp(240px, 64vw, 300px);
  }
}

.top-about__title-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.top-about__title-text {
  font-size: clamp(1.4rem, 2.05vw, 1.75rem);
  line-height: 1.25;
  font-weight: 500;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .top-about__title-text {
    transform: translateY(34%);
    font-size: 1.5rem;
    line-height: 2.667;
  }
}

/*-------------------------
  困りごと
  .top-about__problems
-------------------------*/
.top-about__problems-wrapper {
  position: relative;
  padding-bottom: 74px;
}
@media screen and (max-width: 768px) {
  .top-about__problems-wrapper {
    padding-bottom: 45px;
  }
}

.top-about__problems-wrapper::after {
  content: '';
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  background: url('../images/icon-double-arrow-down.svg') no-repeat center;
  width: 42px;
  height: 39px;
}
@media screen and (max-width: 768px) {
  .top-about__problems-wrapper::after {
    bottom: 12px;
  }
}

.top-about__problems {
  margin-inline: auto;
  padding: 64px clamp(24px, 2vw, 64px) 29px;
  background-color: #fff9d5;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-about__problems {
    border-radius: 0;
    padding: 40px 0;
  }
}

.top-about__problems-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top-about__problems-heading {
    gap: 4px;
    align-items: end;
    margin-bottom: 17px;
  }
}

.top-about__problems-heading::before,
.top-about__problems-heading::after {
  content: '';
  width: 52px;
  height: 56px;
  flex-shrink: 0;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top-about__problems-heading::before,
  .top-about__problems-heading::after {
    width: 40px;
    height: 43px;
    margin-bottom: 4px;
  }
}

.top-about__problems-heading::before {
  background-image: url('../images/deco-top-triangle-green-left.svg');
}

.top-about__problems-heading::after {
  background-image: url('../images/deco-top-triangle-green-right.svg');
}

.top-about__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .top-about__content {
    gap: 0;
  }
}
.top-about__subtitle {
  font-size: clamp(1.5rem, 2.34vw, 2rem);
  line-height: 2;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-about__subtitle {
    text-align: center;
    font-size: 1.25em;
  }
}

.top-about__subtitle--em {
  font-size: clamp(2rem, 2.93vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .top-about__subtitle--em {
    font-size: 1.68rem;
    line-height: 1.481;
  }
}

@media screen and (max-width: 768px) {
  .top-about__problems-content {
    margin-inline: 28px;
  }
}

.top-about__problems-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: clamp(8px, 1.83vw, 25px);
}
@media screen and (max-width: 1000px) {
  .top-about__problems-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.problem-block-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.problem-block-wrapper::after {
  content: '';
  position: absolute;
  bottom: -29px;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1000px) {
  .problem-block-wrapper::after {
    bottom: 3px;
    /* right: 14px; */
  }
}

.problem-block-wrapper:has(.problem-block--family)::after {
  background-image: url('../images/illust-top-about-family.png');
  width: auto;
  height: clamp(76px, 12vh, 112px);
  aspect-ratio: 220.33 / 112;
}
@media screen and (min-width: 1919px) {
  .problem-block-wrapper:has(.problem-block--family)::after {
    right: 0;
    bottom: -28px;
  }
}
@media screen and (max-width: 1000px) {
  .problem-block-wrapper:has(.problem-block--family)::after {
    height: clamp(76px, 14vh, 112px);
  }
}
@media screen and (max-width: 768px) {
  .problem-block-wrapper:has(.problem-block--family)::after {
    width: 144.57px;
    height: 73.49px;
  }
}

.problem-block-wrapper:has(.problem-block--person)::after {
  background-image: url('../images/illust-top-about-person.png');
  width: auto;
  height: clamp(76px, 12vh, 112px);
  aspect-ratio: 98.29 / 112;
  right: 18px;
}
@media screen and (max-width: 1000px) {
  .problem-block-wrapper:has(.problem-block--person)::after {
    height: clamp(76px, 14vh, 112px);
  }
}
@media screen and (max-width: 768px) {
  .problem-block-wrapper:has(.problem-block--person)::after {
    width: 79.1px;
    height: 90.13px;
    right: 12px;
  }
}

.problem-block-wrapper:has(.problem-block--supporter)::after {
  background-image: url('../images/illust-top-about-supporter.png');
  width: auto;
  height: clamp(100px, 13vh, 121px);
  aspect-ratio: 126.91 / 121;
}
@media screen and (max-width: 768px) {
  .problem-block-wrapper:has(.problem-block--supporter)::after {
    width: 82.86px;
    height: 79px;
  }
}

.problem-block {
  background-color: var(--bg-color-white);
  border-radius: 8px 8px 16px 16px;
  padding: 0;
  box-shadow: inset 0 0 0 3px var(--main-color-green);
  height: fit-content;
}
@media screen and (max-width: 1000px) {
  .problem-block {
    border-radius: 8px;
    overflow: hidden;
  }
}

.problem-block__title {
  background-color: var(--main-color-green);
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  padding: 6px 0;
  border-radius: 8px 8px 0 0;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .problem-block__title {
    font-size: 0.875rem;
    line-height: 1.429;
    padding: 8px 0 6px;
  }
}

.problem-block__list {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1vh, 16px);
  padding: clamp(8px, 1.76vw, 24px);
}
@media screen and (max-width: 1000px) {
  .problem-block__list {
    gap: 11px;
    padding: 22px 23px 24px;
  }
}

.problem-block__list-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: clamp(0.75rem, 1.17vw, 1rem);
  color: var(--text-color-primary);
  line-height: 1.625;
}
@media screen and (max-width: 1000px) {
  .problem-block__list-item {
    font-size: 0.875rem;
    line-height: 1.714;
  }

  .problem-block__list-item br {
    display: none;
  }
}

@media screen and (max-width: 610px) {
  .problem-block__list-item br {
    display: block;
  }

  .problem-block__list-item br.pc-only {
    display: none;
  }
}

.problem-block__list-item::before {
  content: '';
  width: clamp(5px, 0.73vw, 10px);
  height: clamp(5px, 0.73vw, 10px);
  clip-path: circle(50% at 50% 50%);
  background-color: var(--main-color-red);
}
@media screen and (max-width: 768px) {
  .problem-block__list-item::before {
    width: 10px;
    height: 10px;
  }
}

/*-------------------------
  ご安心ください！
  .top-about__assurance
-------------------------*/
.top-about__assurance-wrapper {
  padding: 0 clamp(24px, 7.76vw, 106px);
}
@media screen and (max-width: 768px) {
  .top-about__assurance-wrapper {
    padding: 0 12px;
  }
}

.top-about__assurance {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr;
  justify-content: center;
  gap: 1.76vw;
}
@media screen and (max-width: 768px) {
  .top-about__assurance {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }
}

.assurance-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(130px, 13.69vw, 187px);
  height: clamp(130px, 13.69vw, 187px);
  aspect-ratio: 1/1;
  background-color: var(--main-color-red);
  border-radius: 50%;
  border: 2px solid var(--bg-color-white);
  outline: 2px solid var(--main-color-red);
  outline-offset: -6px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .assurance-badge {
    width: 140px;
    height: 140px;
  }
}

.assurance-badge::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 2px solid var(--bg-color-white);
  border-radius: 50%;
}

.assurance-badge__label {
  font-size: clamp(1.125rem, 2.12vw, 1.813rem);
  /* font-size: 1.813rem; */
  line-height: 1.379;
  font-weight: 900;
  color: var(--text-color-white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .assurance-badge__label {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.assurance-badge__label--em {
  display: block;
  font-size: clamp(2rem, 2.83vw, 2.75rem);
  /* font-size: 2.75rem; */
  line-height: 0.909;
}
@media screen and (max-width: 768px) {
  .assurance-badge__label--em {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.assurance-desc {
  font-size: clamp(0.875rem, 1.17vw, 1rem);
  line-height: 1.625;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .assurance-desc {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.assurance-desc--em {
  display: inline-block;
  font-size: clamp(1.5rem, 2.34vw, 2rem);
  line-height: 1.5;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  .assurance-desc--em {
    font-size: 1.688rem;
    line-height: 1.37;
    padding: 12px 0;
  }
}

/* ============================
*  Service
* ========================== */
.top-service .l-inner {
  background-image: url('../images/bg-top-service.png');
  background-repeat: no-repeat;
  background-size: 100% calc(100% - 118px);
  background-position: center 118px;
  width: auto;
  height: 100%;
  padding-bottom: 102px;
  background-color: var(--bg-color-white);
}
@media screen and (max-width: 768px) {
  .top-service .l-inner {
    background-image: url('../images/bg-top-service-SP.svg');
    background-position: center top -7.02vh;
    background-size: 100% auto;
    padding: 60px 0 calc(137px + 7.02vh);
    /* margin-bottom: 40px; */
  }

  .top-service .l-section-header-wrapper {
    gap: 0;
  }
}

.top-service__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 1367px) {
  .top-service__content {
    gap: 8.51vh;
  }
}
@media screen and (max-width: 1290px) {
  .top-service__content {
    gap: 3.51vh;
  }
}
@media screen and (max-width: 768px) {
  .top-service__content {
    gap: 6px;
  }
}
/*-------------------------
  top-service__intro
-------------------------*/
.top-service__intro {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 50px;
  margin-inline: auto;
  padding-bottom: 50px;
  max-width: 1176px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-service__intro {
    gap: 4.93vh;
    padding: 4.93vh 0 0;
  }
}

.top-service__intro-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .top-service__intro-text {
    gap: 40px;
    padding-left: 32px;
  }
}

.top-service__intro-title {
  width: clamp(300px, 63.17vw, 781px);
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.75rem, 3.07vw, 2.625rem);
  line-height: 1.524;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .top-service__intro-title {
    width: 100%;
    font-size: 1.688rem;
    line-height: 1.63;
  }
}

.top-service__intro-desc {
  font-size: clamp(0.875rem, 1.17vw, 1rem);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .top-service__intro-desc {
    font-size: 0.875rem;
    line-height: 1.714;
    padding-right: 32px;
    letter-spacing: normal;
  }
}

.pc-only .top-service__intro-image {
  width: clamp(280px, 41.65vw, 569px);
  height: auto;
  aspect-ratio: 569 / 324;
  flex-shrink: 0;
  margin-bottom: -50px;
  margin-left: max(-176px, -6.44vw);
  /* margin-left: auto; */
}
@media screen and (max-width: 768px) {
  .top-service__intro-image {
    width: 100%;
    margin: 0 auto;
  }
}

.sp-only .top-service__intro-image {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 3.2vw;
  margin-bottom: 40px;
}

.top-service__intro-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*-------------------------
  施設リスト
-------------------------*/
.top-service__facility-wrapper {
  overflow: hidden;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-service__facility-wrapper {
    overflow: visible;
  }
}

@media screen and (max-width: 768px) {
  .top-service__facility-slider {
    display: flex;
    fdlex-direction: column;
    gap: 40px;
  }
}

.top-service__facility-list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 24px !important;
}
@media screen and (max-width: 768px) {
  .top-service__facility-list {
    display: flex !important;
    padding-bottom: 104px;
  }
}

.top-service__facility-item {
  width: 100%;
  margin-right: 0 !important;
}
@media screen and (max-width: 768px) {
  .top-service__facility-item {
    max-width: 100%;
    width: clamp(270px, 19.77vw, 540px) !important;
    margin-right: 24px;
  }
}

.facility-card {
  width: 100%;
  max-width: 100%;
}

.facility-card__image {
  position: relative;
  width: 100%;
}

.facility-card__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.facility-card__content {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vh, 24px);
  background-color: var(--bg-color-white);
  padding: 24px;
  border-radius: 0 0 16px 16px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .facility-card__content {
    padding: 16px 16px 24px;
    gap: 16px;
  }
}

.facility-card__location {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .facility-card__location {
    font-size: 0.813rem;
  }
}

.facility-card__location::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url(../images/icon-location.svg);
}

.facility-card__title {
  /* font-size: 1.125rem; */
  font-size: clamp(1rem, 1.32vw, 1.125rem);
  line-height: 1.444;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .facility-card__title {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.facility-card__desc {
  font-size: 0.938rem;
  line-height: 1.578;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .facility-card__desc {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

/* ステータスバッジ */
.facility-card__status {
  position: absolute;
  content: '';
  top: 16px;
  right: 16px;
  width: 106px;
  height: 33px;
  padding: 0 16px;
  border-radius: 1000px;
}
@media screen and (max-width: 768px) {
  .facility-card__status {
    width: 76px;
    height: 32px;
  }
}

.facility-card__status-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ステータスバッジ 空き室あり */
.facility-card__status--available {
  background-color: var(--main-color-red);
  color: var(--text-color-white);
}

/* ステータスバッジ 満室 */
.facility-card__status--full {
  background-color: var(--bg-color-white);
  border: 2px solid var(--main-color-black);
  color: var(--main-color-black);
}

/*-------------------------
  施設リスト - ナビゲーション
-------------------------*/

/* リンクボタン */
.top-service__link-wrapper {
}
@media screen and (max-width: 768px) {
  .top-service__link-wrapper {
    margin-top: 32px;
  }
}

/* ============================
*  Voice
* ========================== */
.top-voice .l-inner {
  padding-top: 10px;
  padding-bottom: clamp(48px, 13.02vh, 100px);
  background-color: var(--bg-color-white);
}
@media screen and (max-width: 768px) {
  .top-voice .l-inner {
    padding: 0 0 56px;
  }
}

.top-voice .l-section-header-wrapper {
  margin-bottom: 49px;
}
@media screen and (max-width: 768px) {
  .top-voice .l-section-header-wrapper {
    margin: 0 3.2vw 4.93vh;
  }
}

.top-voice .l-section-header-wrapper::after {
  /* width: 38.64vw; */
  height: 119px;
  background-image: url('../images/illust-top-voice-under-title.png');
}
@media screen and (max-width: 768px) {
  .top-voice .l-section-header-wrapper::after {
    height: 75.52px;
  }
}

.top-voice__content,
.top-news__content {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-voice__content,
  .top-news__content {
    padding-left: 3.2vw !important;
  }
}

.top-voice__list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .top-voice__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .top-voice__list {
    display: flex !important;
    gap: 32px;
    row-gap: initial;
    grid-template-columns: initial;
  }
}
@media screen and (max-width: 768px) {
  .top-voice__list {
    display: flex !important;
    gap: 0;
  }
}

.top-voice__item {
  /* width: 25.48vw !important; */
  /* height: 49.74vh !important; */
}
@media screen and (max-width: 768px) {
  .top-voice__item {
    max-width: 100%;
    width: clamp(270px, 19.77vw, 540px) !important;
    flex-shrink: 0;
  }
}

.voice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background-color: var(--bg-color-gray);
  border-radius: 16px;
  padding: 40px 24px;
  height: 100%;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .voice-card {
    height: 335px;
    padding: 32px 16px;
    gap: 16px;
  }
}

.voice-card__image {
  width: 10.98vw;
  height: auto;
}
@media screen and (max-width: 500px) {
  .voice-card__image {
    width: 144px;
  }
}

.voice-card__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.voice-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.875rem;
}

.voice-card__relation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 126px;
  height: 28px;
  line-height: 1.714;
  font-weight: 700;
  background-color: #fff;
  border: 2px solid #eee;
  border-radius: 10000px;
  transition: 0.3s ease;
}

.voice-card__relation::before {
  content: '';
  width: 16px;
  height: 16px;
}

.voice-card__relation--user::before {
  background-image: url('../images/icon-voice-user.svg');
}

.voice-card__relation--relative::before {
  background-image: url('../images/icon-voice-relative.svg');
}

.voice-card__relation:hover {
  color: var(--text-color-white);
  cursor: pointer;
}

.voice-card__relation.voice-card__relation--user:hover {
  background-color: #9bcf7b;
  border: 2px solid #9bcf7b;
}

.voice-card__relation.voice-card__relation--user:hover::before {
  background-image: url('../images/icon-voice-user-hover.svg');
}

.voice-card__relation.voice-card__relation--relative:hover {
  background-color: #75c0cd;
  border: 2px solid #75c0cd;
}

.voice-card__attribute {
  font-weight: 500;
  letter-spacing: 0.08em;
}

.voice-card__desc {
  font-size: 1rem;
  line-height: 1.563;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .voice-card__desc {
    font-size: 0.875rem;
    line-height: 1.526;
  }
}

.top-voice__link-wrapper {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .top-voice__link-wrapper {
    margin-top: 40px;
  }
}

/* ============================
*  Info
* ========================== */
.top-info__bg {
  background-color: var(--bg-color-white);
  padding: clamp(48px, 13.02vh, 100px) 40px;
}
@media screen and (max-width: 768px) {
  .top-info__bg {
    padding: 0 8px;
  }
}

.top-info .l-inner {
  padding: clamp(47px, 12.24vh, 94px) clamp(32px, 5.71vw, 78px) clamp(48px, 13.02vh, 100px);
  background-color: var(--bg-color-gray);
  border-radius: 16px;
  background-image: url('../images/bg-top-support.png'), url('../images/bg-top-support-specialist.png');
  background-repeat: no-repeat;
  background-position: top 271px right, top 2489px right;
  background-size: 280px 278px, 356px 238px;
}
@media screen and (max-width: 768px) {
  .top-info .l-inner {
    padding: 4.93vh 0 2.96vh;
    margin-top: 0;
    background-position: top 38.42vh right, none;
    background-size: 47.47vw auto, none;
  }
  .top-info .l-section-header-wrapper {
    margin: 0 5.33vw;
  }
}

/*-------------------------
  section-nav
-------------------------*/
.section-nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: clamp(4px, 1.17vw, 16px);
  padding: 0 clamp(24px, 6.15vw, 84px);
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .top-info .section-nav__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    justify-content: center;
    margin-bottom: 80px;
    row-gap: 16px;
  }

  .top-news .section-nav__list {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, 1fr);
    justify-content: start;
    row-gap: 16px;
    padding: 0 8.53vw;
  }
}

.section-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 clamp(8px, 0.5vw, 32px);
  background-color: var(--bg-color-white);
  border: 2px solid #eee;
  border-radius: 10000px;
  cursor: pointer;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top-news .section-nav__item {
    width: fit-content;
    height: 35px;
    padding: 0 16px;
  }
}

.section-nav__item:hover {
  color: var(--text-color-white);
}

.section-nav__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.938rem;
  font-size: clamp(0.75rem, 1.1vw, 0.938rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .section-nav__label {
    font-size: 0.875rem;
    line-height: 1.42;
  }

  .top-info .section-nav__label .sp-only {
    display: none;
  }

  .top-news .section-nav__label {
    font-size: 0.813rem;
  }
}
@media screen and (max-width: 500px) {
  .top-info .section-nav__label .sp-only {
    display: block;
  }
}

.section-nav__label::before {
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

/* 支援・援助の内容 */
.section-nav__label--support::before {
  width: 21px;
  height: 21px;
  background-image: url('../images/icon-support.svg');
  transition: 0.3s ease;
}
.section-nav__item--support:hover {
  background-color: #fb2b3a;
  border: 2px solid #fb2b3a;
  color: var(--text-color-white);
}
.section-nav__item--support:hover .section-nav__label--support::before {
  background-image: url('../images/icon-support-hover.svg');
}

/* スタッフ情報 */
.section-nav__label--staff::before {
  width: 21px;
  height: 15px;
  background-image: url('../images/icon-staff.svg');
  transition: 0.3s ease;
}
.section-nav__item--staff:hover {
  background-color: #2c5ede;
  border: 2px solid #2c5ede;
  color: var(--text-color-white);
}
.section-nav__item--staff:hover .section-nav__label--staff::before {
  background-image: url('../images/icon-staff-hover.svg');
}

/* ご入居までの流れ */
.section-nav__label--flow::before {
  width: 15px;
  height: 15px;
  background-image: url('../images/icon-flow.svg');
  transition: 0.3s ease;
}
.section-nav__item--flow:hover {
  background-color: #79d88e;
  border: 2px solid #79d88e;
  color: var(--text-color-white);
}
.section-nav__item--flow:hover .section-nav__label--flow::before {
  background-image: url('../images/icon-flow-hover.svg');
}

/* よくある質問 */
.section-nav__label--faq::before {
  width: 21px;
  height: 21px;
  background-image: url('../images/icon-faq.svg');
  transition: 0.3s ease;
}
.section-nav__item--faq:hover {
  background-color: #faa74d;
  border: 2px solid #faa74d;
  color: var(--text-color-white);
}
.section-nav__item--faq:hover .section-nav__label--faq::before {
  background-image: url('../images/icon-faq-hover.svg');
}

/*-------------------------
  Common
-------------------------*/
.top-info__item-content-inner {
  width: 100%;
  padding: 0 40px clamp(48px, 13.02vh, 100px);
}

#faq .top-info__item-content-inner {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .top-info__item-content-inner {
    padding: 0 5.33vw 80px;
  }

  #faq .top-info__item-content-inner {
    padding: 0 5.33vw;
  }
}

/* @media screen and (max-width: 500px) {
  #flow .top-info__item-content-inner {
    padding: 0 20px 80px;
  }

  #faq .top-info__item-content-inner {
    padding: 0 20px 24px;
  }
} */

.top-info__item-title {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: clamp(24px, 6.51vh, 50px);
  font-size: clamp(1.25rem, 1.76vw, 1.5rem);
  line-height: 1.458;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .top-info__item-title {
    gap: 17px;
    margin-bottom: 4.93vh;
    font-size: 1.25em;
    line-height: 1.45;
    padding: 0 5.33vw;
  }
}

.top-info__item-title::before {
  content: '';
  width: 10px;
  height: 10px;
  clip-path: circle(50% at 50% 50%);
  background-color: var(--main-color-green);
}

.top-info__item-content {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 13.02vh, 100px);
}
@media screen and (max-width: 768px) {
  .top-info__item-content {
    gap: 9.85vh;
  }
}
/*-------------------------
  支援・援助の内容
-------------------------*/
.support__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .support__list {
    padding: 0 3.43vw;
  }
}

.support__item {
  display: grid;
  grid-template-columns: clamp(200px, 16.11vw, 220px) 1fr;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .support__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.support__item-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support__item-title {
  display: flex;
  align-items: center;
  gap: 14px;
  /* font-size: 1.125rem; */
  font-size: clamp(1rem, 1.32vw, 1.125rem);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .support__item-title {
    font-size: 1rem;
    line-height: 1.688;
  }
}

.support__item-number {
  color: var(--main-color-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.08em;
  line-height: 1.278;
  font-family: 'Outfit', sans-serif;
}

.support__item-desc {
  /* font-size: 1rem; */
  font-size: clamp(0.875rem, 1.17vw, 1rem);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .support__item-desc {
    font-size: 0.875rem;
    line-height: 1.619;
  }
}

.support__item-image {
  /* max-width: 16.11vw; */
  width: 100%;
}
@media screen and (max-width: 768px) {
  .support__item-image {
    /* max-width: 100%; */
    aspect-ratio: 295 / 215;
  }
}

.support__item-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*-------------------------
  専門スタッフ
-------------------------*/

/* 見出し */
.support__specialist-support-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  margin-bottom: 49px;
}
@media screen and (max-width: 768px) {
  .support__specialist-support {
    margin-right: -40px;
    padding-right: 40px;
  }
  .support__specialist-support-heading {
    gap: 0;
    align-items: flex-end;
    margin-bottom: 4.93vh;
    background-image: url('../images/bg-top-support-specialist.png');
    background-size: 47.47vw 100%;
    background-position: right -40px center;
    background-repeat: no-repeat;
    background-clip: padding-box;
  }
}

.support__specialist-support-heading::before,
.support__specialist-support-heading::after {
  content: '';
  width: 52px;
  height: 56px;
  flex-shrink: 0;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .support__specialist-support-heading::before,
  .support__specialist-support-heading::after {
    width: 30px;
    height: 32px;
    background-repeat: no-repeat;
    /* background-size: contain; */
  }
}

.support__specialist-support-heading::before {
  background-image: url('../images/deco-top-triangle-green-left.svg');
}

.support__specialist-support-heading::after {
  background-image: url('../images/deco-top-triangle-green-right.svg');
}

.support__specialist-support-title {
  /* font-size: 1.75rem; */
  font-size: clamp(1.4rem, 2.05vw, 1.75rem);
  line-height: 1.429;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 950px) {
  .support__specialist-support-title .sp-only {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .support__specialist-support-title {
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: -0.02em;
  }
}

/* 専門スタッフリスト */
.specialist-support__roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  max-width: 1010px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  justify-items: center;
  align-items: start;
}
@media screen and (max-width: 1100px) {
  .specialist-support__roles {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media screen and (max-width: 570px) {
  .specialist-support__roles {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* 各アイテムの配置を指定 */
/* サービス管理責任者 */
.specialist-support__servive-manager {
  grid-area: 1 / 2 / 2 / 3;
}
@media screen and (max-width: 1100px) {
  .specialist-support__servive-manager {
    grid-area: 1 / 1 / 2 / 2;
  }
}
@media screen and (max-width: 570px) {
  .specialist-support__servive-manager {
    grid-area: 1 / 1 / 2 / 2;
  }
}

/* 訪問看護 */
.specialist-support__visiting-nurse {
  grid-area: 1 / 3 / 2 / 4;
}
@media screen and (max-width: 1100px) {
  .specialist-support__visiting-nurse {
    grid-area: 1 / 2 / 2 / 3;
  }
}
@media screen and (max-width: 570px) {
  .specialist-support__visiting-nurse {
    grid-area: 2 / 1 / 3 / 2;
  }
}

/* 管理者 */
.specialist-support__manager {
  grid-area: 1 / 1 / 3 / 2;
  margin-top: 167px;
}
@media screen and (max-width: 1100px) {
  .specialist-support__manager {
    grid-area: 2 / 1 / 3 / 2;
    margin-top: 0;
  }
}
@media screen and (max-width: 570px) {
  .specialist-support__manager {
    grid-area: 3 / 1 / 4 / 2;
  }
}

/* 生活支援員 */
.specialist-support__caretaker {
  grid-area: 2 / 2 / 3 / 3;
}
@media screen and (max-width: 1100px) {
  .specialist-support__caretaker {
    grid-area: 3 / 1 / 4 / 2;
  }
}
@media screen and (max-width: 570px) {
  .specialist-support__caretaker {
    grid-area: 5 / 1 / 6 / 2;
  }
}

/* 世話人 */
.specialist-support__social-worker {
  grid-area: 1 / 4 / 3 / 5;
  margin-top: 167px;
}
@media screen and (max-width: 1100px) {
  .specialist-support__social-worker {
    grid-area: 2 / 2 / 3 / 3;
    margin-top: 0;
  }
}
@media screen and (max-width: 570px) {
  .specialist-support__social-worker {
    grid-area: 4 / 1 / 5 / 2;
  }
}

/* 夜間支援員 */
.specialist-support__night-care-worker {
  grid-area: 2 / 3 / 3 / 4;
}
@media screen and (max-width: 1100px) {
  .specialist-support__night-care-worker {
    grid-area: 3 / 2 / 4 / 3;
  }
}
@media screen and (max-width: 570px) {
  .specialist-support__night-care-worker {
    grid-area: 6 / 1 / 7 / 2;
  }
}

/* アイテム共通スタイル */
.specialist-support__role {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 260px;
}

.specialist-support__role-image {
  width: clamp(100px, 11.71vw, 160px);
  height: auto;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .specialist-support__role-image {
    width: 100px;
    height: 100px;
  }
}

.specialist-support__role-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialist-support__role-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.specialist-support__role-label {
  font-weight: 500;
  /* font-size: 1.125rem; */
  font-size: clamp(1rem, 1.32vw, 1.125rem);
}

.specialist-support__role-desc {
  font-size: clamp(0.75rem, 1.02vw, 0.875rem);
  line-height: 1.714;
  text-align: center;
  width: clamp(195px, 17.2vw, 235px);
}
@media screen and (max-width: 1100px) {
  .specialist-support__role-desc {
    font-size: 0.875rem;
    min-width: 235px;
  }
}
@media screen and (max-width: 768px) {
  .specialist-support__role-desc {
    max-width: 275px;
  }
}

/*-------------------------
  スタッフ情報 Coomon
-------------------------*/
.staff__item-inner {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .staff__item-inner {
    /* margin: 0 5.33vw; */
  }
}
.staff__item-heading {
  padding: clamp(10px, 1.46vw, 20px) clamp(20px, 2.93vw, 40px);
  background-color: var(--main-color-green);
  border-radius: 16px 16px 0 0;
  /* font-size: 1.125rem; */
  font-size: clamp(0.875rem, 1.32vw, 1.125rem);
  line-height: 1.5;
  color: var(--text-color-white);
}
@media screen and (max-width: 768px) {
  .staff__item-heading {
    font-size: 1rem;
    line-height: 1.5;
    padding: 8px 0;
    text-align: center;
  }
}

.staff__item-content {
  padding: clamp(16px, 2.93vw, 40px);
  background-color: var(--bg-color-white);
  border-radius: 0 0 16px 16px;
}
@media screen and (max-width: 500px) {
  .staff__item-content {
    padding: 16px 6.93vw;
  }

  .staff__item-content.staff-introduction__content {
    padding: 16px 4.27vw;
  }
}

.staff__list-item {
  border: 1px solid #b1ba8a;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .staff__list-item {
    border-radius: 8px;
  }
}

/*-------------------------
  在籍スタッフ
-------------------------*/
.staff-enrollment__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .staff-enrollment__heading {
    flex-direction: column;
  }
}

.staff-enrollment__total {
  font-size: 0.875rem;
}

.staff-count-number {
  font-size: clamp(1rem, 1.46vw, 1.25rem);
  padding: 0 4px;
}
@media screen and (max-width: 768px) {
  .staff-count-number {
    font-size: clamp(0.875rem, 1.32vw, 1.125rem);
    padding: 0 4px;
  }
}

.staff-enrollment__content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.93vw, 40px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .staff-enrollment__content {
    gap: 16px;
  }
}

.staff-enrollment__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: clamp(8px, 1.76vw, 24px);
}
@media screen and (max-width: 1100px) {
  .staff-enrollment__list {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 16px;
  }
}
@media screen and (max-width: 680px) {
  .staff-enrollment__list {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 8px;
  }
}

.staff-enrollment__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 64px;
  padding: 20px clamp(8px, 1.76vw, 24px);
  font-size: clamp(0.875rem, 1.17vw, 1rem);
}
@media screen and (max-width: 768px) {
  .staff-enrollment__item {
    align-items: center;
    height: 42px;
    font-size: 0.875rem;
    padding: 8px 16px;
  }
}

.staff-enrollment__item:last-of-type {
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 500px) {
  .staff-enrollment__item:last-of-type {
    white-space: unset;
  }
}

@media screen and (max-width: 1280px) {
  .staff-enrollment__item:last-of-type .staff-enrollment__term {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .staff-enrollment__item:last-of-type .staff-enrollment__term {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 500px) {
  .staff-enrollment__item:last-of-type .staff-enrollment__term {
    font-size: 0.875rem;
    white-space: unset;
  }
}
@media screen and (max-width: 400px) {
  .staff-enrollment__item:last-of-type .staff-enrollment__term br {
    display: none;
  }
  .staff-enrollment__item:last-of-type .staff-enrollment__term {
    max-width: 168px;
  }
}

.staff-enrollment__term {
  font-weight: 500;
}

.staff-enrollment__updated {
  display: block;
  text-align: right;
  font-size: clamp(0.875rem, 1.17vw, 1rem);
}
@media screen and (max-width: 768px) {
  .staff-enrollment__updated {
    font-size: 0.875rem;
  }
}

/*-------------------------
  スタッフ紹介
-------------------------*/
.staff-introduction__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  justify-content: center;
  gap: clamp(16px, 2.93vw, 40px);
}
@media screen and (max-width: 1024px) {
  .staff-introduction__list {
    grid-template-columns: 1fr;
  }
}

.staff-introduction__card {
  display: grid;
  grid-template-rows: 100px auto 44px;
  justify-content: space-between;
  row-gap: 24px;
  height: 100%;
  padding: clamp(16px, 5.21vh, 40px) clamp(10px, 2.93vw, 40px);
}
@media screen and (max-width: 768px) {
  .staff-introduction__card {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    align-items: center;
    padding: 24px 16px;
  }
}

.staff-introduction__header {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.17vw, 16px);
}

@media screen and (max-width: 768px) {
  .staff-introduction__header {
    flex-direction: column;
  }
}
.staff-introduction__catchphrase {
  font-size: clamp(0.875rem, 1.32vw, 1.125rem);
  line-height: 1.556;
  color: var(--main-color-green);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .staff-introduction__catchphrase {
    font-size: 1rem;
    text-align: center;
  }
}

.staff-introduction__desc {
  /* font-size: 1rem; */
  font-size: clamp(0.875rem, 1.17vw, 1rem);
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .staff-introduction__desc {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.staff-introduction__profile {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.staff-introduction__profile::before {
  content: '';
  width: clamp(30px, 3.22vw, 44px);
  height: clamp(30px, 3.22vw, 44px);
  background-image: url('../images/icon-staff-person.svg');
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .staff-introduction__profile::before {
    width: 32px;
    height: 32px;
  }
}

.staff-introduction__role {
  font-size: clamp(0.75rem, 1.02vw, 0.875rem);
}
@media screen and (max-width: 768px) {
  .staff-introduction__role {
    font-size: 0.75rem;
  }
}

.staff-introduction__name {
  font-size: 1rem;
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .staff-introduction__name {
    font-size: 0.875rem;
    margin-left: 0;
  }
}

/* ============================
* ご入居までの流れ
* ========================== */
#flow .l-section-header-wrapper::after {
  height: 203px;
  background-image: url('../images/illust-top-flow.png');
  margin-bottom: 49px;
}
@media screen and (max-width: 768px) {
  #flow .l-section-header-wrapper::after {
    height: 102px;
  }
}

.flow__step-heading-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .flow__step-heading-pc {
    display: none;
  }
}

.flow__step-heading-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .flow__step-heading-sp {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
/* @media screen and (max-width: 768px) and (min-width: 501px) {
  .flow__steps {
    padding: 0 2.4vw;
  }
} */
@media screen and (max-width: 768px) {
  .flow__steps {
    /* padding: 0 5.33vw; */
  }
}

.flow__step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .flow__step {
    display: flex;
    flex-direction: column;
  }
}

.flow__step-index {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #b1ba8a;
  border-radius: 50%;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: var(--text-color-white);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .flow__step-index {
    width: 56px;
    height: 56px;
    z-index: 0;
  }
}

.flow__step:not(:last-of-type) .flow__step-index::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  background-color: #b1ba8a;
  width: 2px;
  height: calc(100% + 50px);
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .flow__step:not(:last-of-type) .flow__step-index::after {
    height: calc(100% + 60px);
  }
}
@media screen and (max-width: 768px) {
  .flow__step:not(:last-of-type) .flow__step-index::after {
    display: none;
  }
}

.flow__step:last-of-type .flow__step-index {
  overflow: hidden;
}

.flow__step-index-label {
  font-size: 1rem;
  letter-spacing: 0.088em;
}
@media screen and (max-width: 768px) {
  .flow__step-index-label {
    font-size: 0.625rem;
  }
}

.flow__step-index-num {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .flow__step-index-num {
    font-size: 1.5em;
  }
}

.flow__step-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow__step-label {
  font-size: clamp(1rem, 1.46vw, 1.25rem);
  line-height: 1.35;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .flow__step-label {
    font-size: 1rem;
  }
}

.flow__step-desc {
  font-size: clamp(0.875rem, 1.17vw, 1rem);
  line-height: 1.625;
  line-height: 1.688;
}
@media screen and (max-width: 768px) {
  .flow__step-desc {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.flow__step-note {
  display: inline;
  font-size: 0.875rem;
  line-height: 1.857;
}
@media screen and (max-width: 768px) {
  .flow__step-note {
    font-size: 0.75rem;
    line-height: 2;
  }
}

.flow__step-desc-link {
  color: var(--main-color-red);
  text-decoration: underline;
}

/* ============================
*  よくある質問
* ========================== */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq__item {
  padding: 24px;
  background-color: var(--bg-color-white);
  border-radius: 8px;
}
@media screen and (max-width: 500px) {
  .faq__item {
    padding: 16px;
  }
}

.faq__item-question,
.faq__item-answer {
  display: grid;
  grid-template-columns: 18px 1fr;
  grid-template-areas: 'icon content';
  gap: 24px;
  font-size: 1rem;
}
@media screen and (max-width: 500px) {
  .faq__item-question,
  .faq__item-answer {
    align-items: flex-start;
    gap: 18px;
    font-size: 0.875rem;
  }
}

.faq__item-question {
  align-items: center;
}

.faq__item-answer {
  align-items: flex-start;
}

.faq__item-answer-content {
  grid-area: content;
}

.faq__item-question::before,
.faq__item-answer::before {
  grid-area: icon;
  content: '';
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
}

.faq__item-question::before {
  background-image: url('../images/icon-faq-label-Q.svg');
}

.faq__item-answer::before {
  background-image: url('../images/icon-faq-label-A.svg');
}

.faq__item-question {
  padding-bottom: 24px;
  border-bottom: 1px solid #d0dbde;
  line-height: 1.875;
  font-weight: 700;
}
@media screen and (max-width: 500px) {
  .faq__item-question {
    padding-bottom: 16px;
    line-height: 1.714;
  }
}

.faq__item-answer {
  padding-top: 24px;
  line-height: 1.625;
  font-weight: 500;
}
@media screen and (max-width: 500px) {
  .faq__item-answer {
    line-height: 1.714;
    padding-top: 16px;
  }
}

.faq__item-list {
  list-style: inside disc;
}

.faq__item-list-item::marker {
  font-size: 0.6em;
}

.faq__item-link {
  display: inline;
  color: var(--main-color-red);
  text-decoration: underline;
}

/* ============================
*  お知らせ・コラム News
* ========================== */
.top-news .l-inner {
  padding-bottom: 100px;
  background-color: var(--bg-color-white);
}
@media screen and (max-width: 768px) {
  .top-news .l-inner {
    padding: 191px 0 6.9vh;
  }
  .top-news .l-section-header-wrapper {
    margin: 0 8.53vw 4.93vh;
  }
}

.top-news .l-section-header-wrapper::after {
  height: 129px;
  background-image: url('../images/illust-top-news.png');
  margin-bottom: 24px;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .top-news .l-section-header-wrapper::after {
    height: 86px;
    margin-bottom: 0;
  }
}

/*-------------------------
  section-nav
-------------------------*/
@media screen and (max-width: 768px) {
  .top-news .section-nav__label::before {
    background-size: contain;
    width: 16px;
    height: 16px;
  }
}

/* すべて */
.section-nav__label--all::before {
  width: 21px;
  height: 21px;
  background-image: url('../images/icon-news-all.svg');
}
@media screen and (max-width: 500px) {
  .section-nav__label--all::before {
    width: 16px;
    height: 16px;
  }
}

.section-nav__item--all:hover {
  border: 2px solid var(--main-color-green);
  background-color: var(--main-color-green);
}

.section-nav__item--all:hover .section-nav__label--all::before {
  background-image: url('../images/icon-news-all-hover.svg');
}

/* お知らせ */
.section-nav__label--info::before {
  width: 21px;
  height: 21px;
  background-image: url('../images/icon-news-info.svg');
}
@media screen and (max-width: 500px) {
  .section-nav__label--info::before {
    width: 16px;
    height: 16px;
  }
}

.section-nav__item--info:hover,
.news-card__category--info:hover {
  border: 2px solid #9bce7b;
  background-color: #9bce7b;
}

.section-nav__item--info:hover .section-nav__label--info {
  color: var(--text-color-white);
}

.section-nav__item--info:hover .section-nav__label--info::before {
  background-image: url('../images/icon-news-info-hover.svg');
}

/* イベント */
.section-nav__label--event::before {
  width: 21px;
  height: 21px;
  background-image: url('../images/icon-news-event.svg');
}
@media screen and (max-width: 500px) {
  .section-nav__label--event::before {
    width: 16px;
    height: 16px;
  }
}

.section-nav__item--event:hover,
.news-card__category--event:hover {
  border: 2px solid #ffca2b;
  background-color: #ffca2b;
}

.section-nav__item--event:hover .section-nav__label--event {
  color: var(--text-color-white);
}

.section-nav__item--event:hover .section-nav__label--event::before {
  background-image: url('../images/icon-news-event-hover.svg');
}

/* お役立ち情報 */
.section-nav__label--useful::before {
  width: 21px;
  height: 16px;
  background-image: url('../images/icon-news-useful.svg');
  background-repeat: no-repeat;
}
@media screen and (max-width: 500px) {
  .section-nav__label--useful::before {
    width: 16px;
    height: 12px;
  }
}

.section-nav__item--useful:hover,
.news-card__category--useful:hover {
  border: 2px solid #75c0cd;
  background-color: #75c0cd;
}

.section-nav__item--useful:hover .section-nav__label--useful {
  color: var(--text-color-white);
}

.section-nav__item--useful:hover .section-nav__label--useful::before {
  background-image: url('../images/icon-news-useful-hover.svg');
}

/*-------------------------
  記事リスト
-------------------------*/
.top-news__list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 39px 24px;
  margin-top: 24px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .top-news__list {
    grid-template-columns: repeat(2, minmax(auto, 348px));
  }
}
/* @media screen and (max-width: 768px) {
  .top-news__list {
    grid-template-columns: repeat(2, minmax(auto, 348px));
  }
} */
@media screen and (max-width: 768px) {
  .top-news__list {
    display: flex !important;
    gap: 0;
  }
}

/* 記事 */
.top-news__item {
  height: 444px;
}
@media screen and (max-width: 768px) {
  .top-news__item {
    max-width: 100%;
    width: clamp(270px, 19.77vw, 540px) !important;
    /* height: 346px !important; */
  }
}

.news-card-link {
  display: flex;
  justify-content: center;
  padding: 64px 24px 40px;
  background-color: var(--bg-color-gray);
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .news-card-link {
    padding: 46px 16px 25px;
  }
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.news-card__meta {
  position: absolute;
  content: '';
  top: -85px;
  right: 0;
  display: flex;
  justify-content: flex-end;
  max-width: 213px;
  width: 100%;
  height: 60px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.064em;
  vertical-align: sub;
}
@media screen and (max-width: 768px) {
  .news-card__meta {
    top: -75px;
  }
}

.news-card__date {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  font-size: 3.75rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .news-card__date {
    font-size: 3rem;
  }
}

.news-card__date--year {
  font-size: 0.875rem;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .news-card__date--year {
    font-size: 0.75rem;
  }
}

.news-card__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .news-card__content {
    gap: 24px;
    margin-bottom: 16px;
  }
}

.news-card__title {
  font-size: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.news-card__thumbnail {
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 300 / 210;
}
@media screen and (max-width: 768px) {
  .news-card__thumbnail {
    aspect-ratio: 238 / 167;
  }
}

.news-card__thumbnail-img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.news-card-link:hover .news-card__thumbnail-img {
  transform: scale(1.1);
}

.news-card__category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 28px;
  padding: 0 16px;
  background-color: var(--bg-color-white);
  border: 2px solid #eee;
  border-radius: 1000px;
  font-size: 0.875rem;
  font-weight: 700;
}

.news-card__category:hover .news-card__category-label {
  color: var(--text-color-white);
}

.news-card__category-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-card__category-label::before {
  content: '';
  width: 16px;
  height: 16px;
}

.news-card__category--info .news-card__category-label::before {
  background: url('../images/icon-news-info-small.svg') no-repeat center;
}

.news-card__category--info:hover .news-card__category-label::before {
  background: url('../images/icon-news-info-small-hover.svg') no-repeat center;
}

.news-card__category--event .news-card__category-label::before {
  background: url('../images/icon-news-event-small.svg') no-repeat center;
}
.news-card__category--event:hover .news-card__category-label::before {
  background: url('../images/icon-news-event-small-hover.svg') no-repeat center;
}

.news-card__category--useful .news-card__category-label::before {
  background: url('../images/icon-news-useful-small.svg') no-repeat center;
}
.news-card__category--useful:hover .news-card__category-label::before {
  background: url('../images/icon-news-useful-small-hover.svg') no-repeat center;
}

/* ============================
* 採用情報
* ========================== */
.top-recruit .l-inner {
  padding: 40px 8.64vw 56px;
  background-color: var(--main-color-beige);
}
@media screen and (max-width: 830px) {
  .top-recruit .l-inner {
    position: relative;
    padding: 64px 3.2vw 40px;
  }

  .top-recruit .l-inner::before {
    position: absolute;
    content: '';
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background-image: url('../images/bg-top-recruit-sp.svg');
    background-size: cover;
  }
}

.top-recruit__block-inner {
  position: relative;
  padding: 64px 64px 24px;
  background-color: var(--bg-color-white);
  border-radius: 16px;
}
@media screen and (max-width: 830px) {
  .top-recruit__block-inner {
    padding: 40px 22px;
  }
}
@media screen and (max-width: 830px) {
  .top-recruit__block-inner::before,
  .top-recruit__block-inner::after {
    position: absolute;
    content: '';
    background-color: var(--main-color-beige);
    width: 10px;
    height: 10px;
    clip-path: circle(50% at 50% 50%);
    top: 16px;
  }

  .top-recruit__block-inner::before {
    left: 16px;
  }

  .top-recruit__block-inner::after {
    right: 16px;
  }
}

.top-recruit .l-section-header-wrapper {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top-recruit .l-section-header-wrapper {
    margin: 0;
  }
}

.top-recruit .c-btn-link--large {
  margin-inline: 0;
  margin-inline-end: auto;
}
@media screen and (max-width: 830px) {
  .top-recruit .c-btn-link--large {
    margin-top: 40px;
    margin-inline: auto;
    margin-inline-end: auto;
  }
}

.top-recruit__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 830px) {
  .top-recruit__content {
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;
    gap: 0;
  }
}

.top-recruit__content::after {
  position: absolute;
  content: '';
  bottom: 0;
  right: 0;
  width: clamp(200px, 25.26vw, 345px);
  height: auto;
  aspect-ratio: 345 / 226;
  background-image: url('../images/illust-top-recruit.png');
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 830px) {
  .top-recruit__content::after {
    position: relative;
    width: 295px;
    height: auto;
    aspect-ratio: 295 / 192.95;
    background-size: contain;
    background-position: center;
    order: 2;
  }

  .top-recruit__link {
    order: 3;
  }
}
.top-recruit__desc {
  font-size: clamp(0.875rem, 1.17vw, 1rem);
  line-height: 2;
}

/* ============================
*  画像スクロール
* ========================== */
.bg-image-swiper {
  position: relative;
  background-color: var(--main-color-beige);
  width: 100%;
  overflow: hidden;
}

.image-swiper {
  position: relative;
  width: 100%;
  z-index: 1;
}

.image-swiper::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url('../images/wave-image-swiper.svg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  z-index: 10;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .image-swiper::after {
    left: 0;
    background-image: url('../images/wave-image-swiper-SP.svg');
    height: 24px;
    z-index: 5;
    background-size: cover;
  }
}

.image-swiper-wrapper {
  display: flex;
  gap: 0 !important;
}

.image-slide {
  width: 430px !important;
  height: 430px !important;
  border-radius: 16px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .image-slide {
    width: 240px !important;
    height: 240px !important;
  }
}

.image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================
*  Footer
* ========================== */
.footer {
  position: relative;
  max-width: 1366px;
  width: 100%;
  overflow-x: hidden;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .footer {
    max-width: 100%;
    width: 100%;
    padding: 0 8px 8px;
  }
}

.footer__inner {
  position: relative;
  max-width: 1366px;
  width: 100%;
  margin: 0 0 18px;
  background-color: var(--bg-color-white);
  padding: 13.02vh clamp(64px, 10vw, 118px) 7.29vh;
  border-radius: 0 0 16px 16px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    max-width: 100%;
    gap: 40px;
    padding: 40px 0 30px;
  }
}

.footer__inner::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(500px, 58.57vw, 800px);
  height: clamp(100px, 40.49vh, 311px);
  background-image: url('../images/illust-footer.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}
@media screen and (max-width: 768px) {
  .footer__inner::after {
    bottom: 57px;
    width: 100%;
    height: 25.32vh;
    background-size: contain;
    background-position: bottom center;
  }
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .footer__content {
    gap: 40px;
  }
}

/*-------------------------
  問い合わせ
-------------------------*/
.footer__contact {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 50px clamp(24px, 5.86vw, 80px) 50px 2.93vw;
  margin-bottom: 17px;
  background-color: var(--main-color-green);
  border-radius: 16px;
}
@media screen and (max-width: 1024px) and (min-width: 501px) {
  .footer__contact {
    justify-content: center;
  }
}
@media screen and (max-width: 940px) {
  .footer__contact {
    flex-direction: column;
    align-items: center;
    padding: 40px 12px 40px;
    margin: 0 24px 59px;
    gap: 24px;
  }
}

.footer__contact::after {
  position: absolute;
  content: '';
  left: 2.93vw;
  bottom: -2.21vh;
  width: auto;
  height: clamp(100px, 18.23vh, 140px);
  aspect-ratio: 160/ 140;
  background-image: url('../images/illust-footer-contact.png');
  background-size: cover;
}
@media screen and (max-width: 940px) {
  .footer__contact::after {
    left: auto;
    right: 0;
    bottom: -59px;
  }
}

.footer__contact-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 940px) {
  .footer__contact-heading {
    align-items: center;
  }
}

.footer__contact-label--en {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.429;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #b1ba8a;
  letter-spacing: 0.088em;
}
@media screen and (max-width: 940px) {
  .footer__contact-label--en {
    font-size: 0.625rem;
    gap: 10px;
  }
}

.footer__contact-label--en::before {
  content: '';
  background-color: #b1ba8a;
  width: 10px;
  height: 10px;
  clip-path: circle(50% at 50% 50%);
}
@media screen and (max-width: 768px) {
  .footer__contact-label--en::before {
    width: 6px;
    height: 6px;
  }
}

.footer__contact-desc {
  font-size: clamp(0.875rem, 1.1vw, 0.938rem);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--text-color-white);
  white-space: nowrap;
}
@media screen and (max-width: 940px) {
  .footer__contact-desc {
    font-size: 0.875rem;
    line-height: 2.143;
    text-align: center;
  }
}

.footer__contact-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 339px));
  grid-template-rows: repeat(2, 82px);
  gap: 16px clamp(8px, 1vw, 24px);
  margin-left: auto;
}
@media screen and (max-width: 1300px) {
  .footer__contact-link-list {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}
@media screen and (max-width: 940px) {
  .footer__contact-content {
    width: 100%;
  }

  .footer__contact-link-list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 56px 56px;
    gap: 8px;
    grid-template-areas:
      'faq tel'
      'web web'
      'apply apply';
  }

  .footer__contact-link-item--faq {
    grid-area: faq;
    text-align: center;
  }
  .footer__contact-link-item--web {
    grid-area: web;
  }
  .footer__contact-link-item--tel {
    grid-area: tel;
  }
  .footer__contact-link-item--apply {
    grid-area: apply;
  }
}

.footer__contact-link-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--bg-color-white);
  border-radius: 16px;
  padding: 0 clamp(12px, 1.5vw, 32px);
  height: 100%;
}
@media screen and (max-width: 940px) {
  .footer__contact-link-item:nth {
    padding: 16px 10px;
  }

  .footer__contact-link-item--web,
  .footer__contact-link-item--apply {
    padding: 0 24px;
  }
}

.footer__contact-link-item:hover .footer__contact-link-label,
.footer__contact-link-item:hover .footer__contact-link-desc,
.footer__contact-link-item:hover .footer__contact-link-tel,
.footer__contact-link-item:hover .footer__contact-link-hours {
  color: var(--main-color-green);
}

.footer__contact-link-button {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1vh, 16px);
}
@media screen and (max-width: 940px) {
  .footer__contact-link-button--faq,
  .footer__contact-link-button--tel {
    flex-direction: column;
    gap: 8px;
  }
}

.footer__contact-link-button::before {
  content: '';
  width: auto;
  height: clamp(16px, 4.17vh, 32px);
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .footer__contact-link-button::before {
    width: 24px;
    height: 24px;
    background-size: contain;
  }
}

.footer__contact-link-button--faq::before {
  background-image: url('../images/icon-footer-contact-faq.svg');
}
.footer__contact-link-item:hover .footer__contact-link-button--faq::before {
  background-image: url('../images/icon-footer-contact-faq-hover.svg');
}

.footer__contact-link-button--web::before {
  background-image: url('../images/icon-footer-contact-web.svg');
}
.footer__contact-link-item:hover .footer__contact-link-button--web::before {
  background-image: url('../images/icon-footer-contact-web-hover.svg');
}

.footer__contact-link-button--tel::before {
  background-image: url('../images/icon-footer-contact-tel.svg');
}
.footer__contact-link-item:hover .footer__contact-link-button--tel::before {
  background-image: url('../images/icon-footer-contact-tel-hover.svg');
}

.footer__contact-link-button--apply::before {
  background-image: url('../images/icon-footer-contact-apply.svg');
}
.footer__contact-link-item:hover .footer__contact-link-button--apply::before {
  background-image: url('../images/icon-footer-contact-apply-hover.svg');
}

.footer__contact-link-label,
.footer__contact-link-tel {
  display: block;
}

.footer__contact-link-label {
  /* font-size: 1rem; */
  font-size: clamp(0.875rem, 1.17vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.714;
}
@media screen and (max-width: 768px) {
  .footer__contact-link-label {
    font-size: 0.875rem;
  }
}

.footer__contact-link-desc {
  font-size: 0.75rem;
  font-size: clamp(0.625rem, 0.88vw, 0.75rem);
}

.footer__contact-link-tel {
  /* font-size: 1.625rem; */
  font-size: clamp(1.25rem, 1.9vw, 1.625rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.269;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 940px) {
  .footer__contact-link-tel {
    margin-bottom: 12px;
    font-size: 1rem;
  }
}

.footer__contact-link-hours {
  font-size: 0.875rem;
  font-size: clamp(0.75rem, 1.02vw, 0.875rem);
  margin-top: 4px;
}

.pc-only .footer__contact-link-hours {
  /* white-space: nowrap; */
}

.footer__contact-link-hours time {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer__contact-link-tel-conent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
  }

  .footer__contact-link-hours-label {
    display: flex;
    fdlex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    width: 70px;
    height: 20px;
    border: 1px solid #382e28;
    border-radius: 1000px;
  }
}
/*-------------------------
  Navigation
-------------------------*/
.footer__nav-wrapper {
  position: relative;
  z-index: 5;
}
/* PCレイアウト */
.footer__nav--pc.footer__nav {
  display: flex;
  gap: clamp(20px, 3vw, 54px);
  justify-content: space-between;
  margin-bottom: 82px;
}
@media screen and (max-width: 1024px) {
  .footer__nav--pc.footer__nav {
    display: none;
  }
}
.footer__nav--pc .footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__nav--pc .nav__item-label--en {
  font-size: 0.75rem;
}

.footer__nav--pc .nav__item-label--ja {
  font-size: 1.125rem;
  font-size: clamp(0.875rem, 1.32vw, 1.125rem);
}
/* SPレイアウト */
.footer__nav-list--sp {
  display: none;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) and (min-width: 501px) {
  .footer__nav-list--sp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.34vw, 32px);
    justify-content: space-between;
    height: auto;
    padding-bottom: 40px;
    margin: 0 24px;
    border-bottom: 3px dotted #f2f2f2;
  }
}
@media screen and (max-width: 500px) {
  .footer__nav-list--sp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    justify-content: space-between;
    height: auto;
    padding-bottom: 40px;
    margin: 0 24px;
    border-bottom: 3px dotted #f2f2f2;
  }

  .footer__nav-list--sp .nav__item-label--en {
    font-size: 0.563rem;
  }

  .footer__nav-list--sp .nav__item-label--ja {
    font-size: 0.813rem;
  }
}

.nav__list--sub {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  list-style: disc inside;
}
@media screen and (max-width: 768px) {
  .footer .nav__list--sub {
    margin-top: 16px;
  }
}

.nav__item-link--sub {
  display: inline;
  font-size: 0.938rem;
  font-size: clamp(0.75rem, 1.1vw, 0.938rem);
  margin-left: -3px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .nav__item-link--sub {
    font-size: 0.813rem;
    margin-right: -1px;
  }
}

.nav__item-link--sub:hover {
  opacity: 0.7;
}

.nav__item--sub::marker {
  font-size: 0.6em;
}

.footer .accordion-content {
  min-height: 300px;
}
@media screen and (max-width: 1024px) {
  .footer .accordion-content {
    min-height: 0;
  }
  .footer .accordion-content.is-open {
    min-height: fit-content;
  }
}

@media screen and (min-width: 1025px) {
  .footer .accordion-content {
    min-height: fit-content;
  }
}

/*-------------------------
  会社情報
-------------------------*/
.footer__company-info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: clamp(152px, 39vh, 304px);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .footer__company-info {
    padding-top: 40px;
    margin: 0 12px 35.1vh 20px;
  }
}

.footer__company-info-logo {
  width: 320px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer__company-info-logo {
    width: 240px;
    height: auto;
  }
}

.footer__company-info-logo-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.footer__company-info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .footer__company-info-content {
    grid-template-columns: 1fr;
  }
}

.footer__company-info-item {
  display: flex;
  font-size: clamp(0.75rem, 1.02vw, 0.875rem);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.072em;
}
@media screen and (max-width: 900px) {
  .footer__company-info-item {
    font-size: 0.813rem;
    line-height: 1.846;
    letter-spacing: 0;
  }
}

.footer__company-info-label {
  display: grid;
  grid-template-columns: 1fr 1em;
  min-width: 6em;
}
.footer__company-info-label::after {
  content: '：';
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .footer__company-info-label {
    min-width: 19%;
  }
}
@media screen and (max-width: 768px) {
  .footer__company-info-label {
    min-width: 21%;
  }
}

.footer__company-info-list--ordered {
  list-style: inside decimal;
}

.footer__company-info-item-link {
  text-decoration: underline;
}

/*-------------------------
 背景装飾
-------------------------*/
.footer__bg {
  position: relative;
  z-index: 5;
}

.footer__bg::after {
  position: absolute;
  content: '';
  top: 177px;
  /* transform: translateY(-50%); */
  left: -118px;
  width: 909px;
  height: 266px;
  background-image: url('../images/bg-footer.svg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .footer__bg::after {
    top: 50%;
    transform: translate(-50%, -50%);
    /* bottom: 0; */
    left: 50%;
    width: 90vw;
    height: 74px;
  }
}

/*-------------------------
  コピーライト
-------------------------*/
.footer__copyright {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  line-height: 2.333;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding-left: 12px;
    font-size: 0.625rem;
  }
}

/* ============================
*  トップに戻るボタン
* ========================== */
.page-top {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color-red);
  width: 100px;
  height: 50px;
  right: 8.64vw;
  bottom: 97px;
  border-radius: 16px;
  z-index: 5;
  transition: transform 0.2s ease;
}
@media screen and (max-width: 768px) {
  .page-top {
    width: 65px;
    height: 33px;
    border-radius: 1000px;
    bottom: 30.91vh;
    right: 20px;
  }
}

.page-top::before {
  position: absolute;
  content: '';
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 16px;
  background-image: url('../images/arrow-page-top.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.page-top__label {
  font-family: 'Outfit', sans-serif;
  color: var(--text-color-white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.page-top:hover {
  transform: translateY(-8px);
}
