@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/* =========================
   共通
========================= */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFFFFC;
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.is-loaded {
  opacity: 1;
}

.inner {
  padding: 0 80px;
}
@media screen and (max-width: 1250px) {
  .inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 10px;
  }
}

.inner-c {
  padding-inline: 10px;
}

.section-title {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 40px;
  color: #40220F;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 20px;
    padding-top: 40px;
  }
}

.section-title::before,
.section-title::after {
  content: "";
  display: inline-block;
  width: 74px;
  height: 11px;
  background: url(../images/section-title-icon.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .section-title::before,
.section-title::after {
    width: 33px;
    height: 5px;
  }
}

.btn-wrap {
  display: flex;
  justify-content: center;
}

.btn {
  width: 330px;
  font-size: 20px;
  color: #40220F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
  border-radius: 80px;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .btn {
    width: 270px;
    font-size: 16px;
  }
}

.btn--green {
  background-color: #CCF3EE;
}

.btn--pink {
  background-color: #F5BAD3;
}

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

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

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

/* =========================
   ヘッダー外枠
========================= */
.header {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1000;
}

.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}

/* 下スクロールで隠す */
.header.is-hidden {
  transform: translateY(-100%);
}

@media (min-width: 1150px) {
  .header-sp {
    display: none;
  }
}

main {
  padding-top: 0;
}

.header.is-fixed + main {
  padding-top: 140px;
}

@media screen and (max-width: 767px) {
  .header.is-fixed + main {
    padding-top: 90px;
  }
}
/* =========================
   ヘッダー中身
========================= */
.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1250px) {
  .header__inner {
    align-items: center;
  }
}

/* =========================
   ロゴ
========================= */
.header__name {
  width: 138px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1150px) {
  .header__name {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .header__name {
    width: 54px;
  }
}

/* =========================
   ナビ
========================= */
.header__nav {
  display: flex;
}
@media screen and (max-width: 1150px) {
  .header__nav {
    display: none;
  }
}

.header__nav-items {
  display: flex;
}

.header__nav-item {
  width: 120px;
  flex: 0 0 120px;
  position: relative;
  display: flex;
  align-items: center;
}

/* hover 背景 */
.header__nav-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #F5BAD3;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.header__nav-item:hover::before {
  opacity: 1;
}

/* リンク */
.header__nav-link {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #40220F;
  padding: 15px 0;
}

.header__nav-item:hover .header__nav-link {
  color: #FFFFFC;
}

/* =========================
   施設名【sp】
========================= */
.header__facility {
  color: #40220F;
}
@media screen and (max-width: 1150px) {
  .header__facility {
    font-size: 22px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (max-width: 768px) {
  .header__facility {
    font-size: 16px;
  }
}

/* =========================
   ハンバーガーメニュー
========================= */
.header__hamburger {
  background-color: #F5BAD3;
  border: none;
  padding: 15px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    padding: 10px;
  }
}

/* CLOSE時 */
.header__drawer.is-open ~ .header__hamburger-wrap .header__hamburger {
  padding: 12px 10px 0px 10px;
}

/* 3本線 */
.header__hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header__hamburger-lines span {
  width: 20px;
  height: 2px;
  background-color: #fff;
  display: block;
}

/* MENU文字 */
.header__hamburger-text {
  position: relative;
  font-size: 10px;
  color: #fff;
}

.header__hamburger-text::before {
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 3px;
}

/* ハンバーガー（最前面） */
.header__hamburger-wrap {
  position: relative;
  z-index: 1100;
}

/* =========================
   ナビアイコン
========================= */
.header__nav-link::before {
  content: "";
  width: 50px;
  height: 50px;
  margin-bottom: 6px;
  background: url(../images/header-nav_icon-home.svg) no-repeat center/contain;
}

.header__nav-item:nth-of-type(2) .header__nav-link::before {
  background-image: url(../images/header-nav_icon-indeed.svg);
}

.header__nav-item:nth-of-type(3) .header__nav-link::before {
  background-image: url(../images/header-nav_icon-info.svg);
}

.header__nav-item:nth-of-type(4) .header__nav-link::before {
  background-image: url(../images/header-nav_icon-mail.svg);
}

.header__nav-item:nth-of-type(5) .header__nav-link::before {
  background-image: url(../images/header-nav_icon-staff.svg);
}

/* hover アイコン */
.header__nav-item:hover .header__nav-link::before {
  background-image: url(../images/header-nav_icon-home_hover.svg);
}

.header__nav-item:nth-of-type(2):hover .header__nav-link::before {
  background-image: url(../images/header-nav_icon-indeed_hover.svg);
}

.header__nav-item:nth-of-type(3):hover .header__nav-link::before {
  background-image: url(../images/header-nav_icon-info_hover.svg);
}

.header__nav-item:nth-of-type(4):hover .header__nav-link::before {
  background-image: url(../images/header-nav_icon-mail_hover.svg);
}

.header__nav-item:nth-of-type(5):hover .header__nav-link::before {
  background-image: url(../images/header-nav_icon-staff_hover.svg);
}

/* =========================
   右側インフォ
========================= */
.header__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1150px) {
  .header__info {
    display: none;
  }
}

.header__info-item {
  width: 305px;
  background-color: #FFF4F7;
  border-radius: 30px;
}

.header__info-item + .header__info-item {
  margin-top: 4px;
}

.header__info-link {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 16px;
  color: #40220F;
}

.header__info-name {
  width: 140px;
}

.header__info-telno {
  margin-left: 14px;
  position: relative;
}

.header__info-telno::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../images/icon-tel.svg) no-repeat center/contain;
  margin-right: 4px;
}

.header__info-text {
  text-align: right;
}

/* =========================
   ヘッダーハンバーガーメニュー
========================= */
.header__info--drawer {
  max-width: 300px;
  margin: 0 auto;
}

.header__info-text--drawer {
  text-align: center;
  margin-bottom: 10px;
}

.header__info-link--drawer {
  display: block;
  text-align: center;
  padding: 5px 0;
}

.header__info-telno--drawer {
  margin-left: 0;
}

.header__info-name--drawer {
  width: 100%;
}

.header__drawer-items {
  padding: 100px 10px 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.header__info-item--drawer {
  width: 100%;
}

.header__drawer-link {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 5px 0;
  color: #40220F;
}

.header__drawer-link:hover {
  background-color: #F5BAD3;
  color: #fff;
}

.header__drawer-link:hover.header__drawer-link--home::before {
  background: url(../images/header-nav_icon-home_hover.svg) no-repeat center/contain;
}

.header__drawer-link:hover.header__drawer-link--staff::before {
  background: url(../images/header-nav_icon-staff_hover.svg) no-repeat center/contain;
}

.header__drawer-link:hover.header__drawer-link--news::before {
  background: url(../images/header-nav_icon-info_hover.svg) no-repeat center/contain;
}

.header__drawer-link:hover.header__drawer-link--contact::before {
  background: url(../images/header-nav_icon-mail_hover.svg) no-repeat center/contain;
}

.header__drawer-link:hover.header__drawer-link--job::before {
  background: url(../images/header-nav_icon-indeed_hover.svg) no-repeat center/contain;
}

.header__drawer-link::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.header__drawer-link--home::before {
  background: url(../images/header-nav_icon-home.svg) no-repeat center/contain;
}

.header__drawer-link--staff::before {
  background: url(../images/header-nav_icon-staff.svg) no-repeat center/contain;
}

.header__drawer-link--news::before {
  background: url(../images/header-nav_icon-info.svg) no-repeat center/contain;
}

.header__drawer-link--contact::before {
  background: url(../images/header-nav_icon-mail.svg) no-repeat center/contain;
}

.header__drawer-link--job::before {
  background: url(../images/header-nav_icon-indeed.svg) no-repeat center/contain;
}

.header__drawer.is-open {
  transform: translateX(0);
}

.header__info-text--drawer {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header__info-text--drawer {
    font-size: 12px;
  }
}

/* ドロワーメニュー */
.header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

/* オーバーレイ（その下） */
.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.header__overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ===== ハンバーガー → クローズ変形 ===== */
.header__drawer.is-open ~ .header__hamburger-wrap .header__hamburger-lines span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.header__drawer.is-open ~ .header__hamburger-wrap .header__hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.header__drawer.is-open ~ .header__hamburger-wrap .header__hamburger-lines span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* アニメーション */
.header__hamburger-lines span {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.header__drawer.is-open ~ .header__hamburger-wrap .header__hamburger-text {
  font-size: 10px;
  color: #fff;
  visibility: hidden;
}

.header__drawer.is-open ~ .header__hamburger-wrap .header__hamburger-text::before {
  content: "CLOSE";
  visibility: visible;
}

/* =========================
   MV
========================= */
.mv__inner {
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 38px;
  position: relative;
  aspect-ratio: 1280/625;
  border-radius: 10px;
  border: 3px solid #F5BAD3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    margin-top: 20px;
    aspect-ratio: 355/294;
  }
}

/* =========================
   スライド
========================= */
.mv__picture {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-animation: mvSlide 15s infinite;
          animation: mvSlide 15s infinite;
}

.mv__picture:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.mv__picture:nth-of-type(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.mv__picture:nth-of-type(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

/* =========================
   画像
========================= */
.mv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* =========================
   フェード
========================= */
@-webkit-keyframes mvSlide {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes mvSlide {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* =========================
   MV下キャッチコピー
========================= */
.top-intro {
  text-align: center;
  padding: 64px 20px;
  background: #fff;
  /* セクション全体：ふわっと */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.top-intro.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .top-intro {
    padding: 30px 20px;
  }
}

/* =========================
   キャッチコピー
========================= */
.top-intro__catch {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #40220F;
  /* テキスト個別アニメーション初期 */
  opacity: 0;
  transform: translateY(6px);
}

/* 強調色（1単語だけ想定） */
.top-intro__accent {
  color: #F5BAD3;
}

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

/* =========================
   サブコピー
========================= */
.top-intro__sub {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #777;
  /* テキスト個別アニメーション初期 */
  opacity: 0;
  transform: translateY(6px);
}

/* =========================
   テキストアニメーション
========================= */
/* キャッチ：先に、ふわっと */
.top-intro.is-show .top-intro__catch {
  -webkit-animation: softFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: softFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

/* サブ：少し遅れて */
.top-intro.is-show .top-intro__sub {
  -webkit-animation: softFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: softFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

/* 共通アニメーション */
@-webkit-keyframes softFadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes softFadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   SP微調整
========================= */
@media screen and (max-width: 768px) {
  .top-intro__catch,
.top-intro__sub {
    transform: translateY(4px);
  }
  .top-intro__sub {
    margin-top: 20px;
    font-size: 15px;
  }
}
.facility__wrap {
  border-radius: 10px;
  border: 3px solid #F5BAD3;
  padding: 80px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1150px) {
  .facility__wrap {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .facility__wrap {
    padding: 40px 10px 40px;
  }
}

.facility__top-text {
  font-size: 20px;
  line-height: 1.35;
  color: #40220F;
}
@media screen and (max-width: 768px) {
  .facility__top-text {
    font-size: 16px;
  }
}

.facility__list {
  padding-top: 46px;
}
@media screen and (max-width: 768px) {
  .facility__list {
    padding-top: 40px;
  }
}

.facility__name {
  font-size: 30px;
  color: #F5BAD3;
  display: flex;
  align-items: center;
  /* 縦中央揃え */
  gap: 12px;
  /* アイコンと文字の間隔 */
}
@media screen and (max-width: 768px) {
  .facility__name {
    font-size: 18px;
  }
}

.facility__name--visiting::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../images/policy_icon-house.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .facility__name--visiting::before {
    width: 30px;
    height: 30px;
  }
}

.facility__name--careplan {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .facility__name--careplan {
    padding-top: 44px;
  }
}

.facility__name--careplan::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../images/policy_icon-plan.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .facility__name--careplan::before {
    width: 30px;
    height: 30px;
  }
}

.facility__text {
  font-size: 20px;
  line-height: 1.35;
  color: #40220F;
}
@media screen and (max-width: 768px) {
  .facility__text {
    font-size: 16px;
  }
}

.facility__text:nth-of-type(2) {
  padding-top: 15px;
}

/* =========================
   きずなについて
========================= */
.about__inner {
  background-color: #FFF4F7;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 10px 80px 10px;
}
@media screen and (max-width: 768px) {
  .about__inner {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .about .inner {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .about__inner .section-title::before {
    background: url(../images/secrion_title-icon-pink_sp.svg) no-repeat;
    background-size: contain;
  }
}

@media screen and (max-width: 768px) {
  .about__inner .section-title::after {
    background: url(../images/secrion_title-icon-pink_sp.svg) no-repeat;
    background-size: contain;
  }
}

.about__lead {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 10px 0 10px;
  font-size: 1rem;
  /* ← ここだけ rem */
  line-height: 1.5;
  color: #40220F;
}
@media screen and (max-width: 768px) {
  .about__lead {
    padding: 20px 10px 0 10px;
  }
}

.about__content-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .about__content-wrapper {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .about__sp-wrap {
    background-color: #fff;
    padding: 5px 5px 5px;
    border-radius: 10px;
  }
}

.about__content-title {
  font-size: 40px;
  line-height: 1.45;
  color: #fff;
  background-color: #F5BAD3;
  padding: 20px 0;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 768px) {
  .about__content-title {
    font-size: 20px;
    padding: 10px 0;
  }
}

.about__content-box {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 23px 87px 20px 87px;
}
@media screen and (max-width: 1150px) {
  .about__content-box {
    padding: 23px 30px 20px 30px;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .about__content-box {
    padding: 10px;
    flex-direction: column;
  }
}

.about__content-text {
  max-width: 637px;
  font-size: 20px;
  color: #40220F;
  line-height: 1.45;
}
@media screen and (max-width: 1150px) {
  .about__content-text {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about__content-text {
    font-size: 16px;
    width: 100%;
  }
}

.about__content-picture {
  max-width: 229px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .about__content-picture {
    max-width: 150px;
    margin: 0 auto;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .about__content-img {
    height: auto;
  }
}

.about__picture-name {
  font-size: 16px;
  color: #40220F;
  line-height: 1.5;
  text-align: center;
  display: block;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .about__picture-name {
    font-size: 12px;
  }
}

.about__text-wrapper {
  max-width: 890px;
  margin: 0 auto;
  margin-top: 40px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .about__text-wrapper {
    margin-top: 20px;
  }
}

.about__text-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about__text-box {
    flex-direction: column;
  }
}

.about__text-box + .about__text-box {
  margin-top: 20px;
}

.about__text-left {
  width: 190px;
  height: 190px;
  font-size: 30px;
  line-height: 1.2333333333;
  color: #fff;
  background-color: #F5BAD3;
  display: grid;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .about__text-left {
    font-size: 16px;
    width: 120px;
    height: 120px;
  }
}

.about__text-right {
  max-width: 660px;
  font-size: 20px;
  color: #40220F;
  line-height: 1.45;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .about__text-right {
    font-size: 16px;
    padding-top: 4px;
  }
}

.btn--about {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .btn--about {
    margin-top: 40px;
    padding: 11px 0;
  }
}

.btn--about::before {
  content: "";
  display: block;
  width: 23px;
  height: 20px;
  background: url(../images/camera-icon.svg) no-repeat center/contain;
  transform: translateX(-4px);
}
@media screen and (max-width: 768px) {
  .btn--about::before {
    width: 20px;
    height: 16px;
  }
}

.btn--about::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/arrow-icon.svg) no-repeat center/contain;
  transform: translateX(15px);
}
@media screen and (max-width: 768px) {
  .btn--about::after {
    width: 15px;
    height: 15px;
  }
}

@media screen and (max-width: 768px) {
  .about__inner .btn-wrap {
    padding-bottom: 80px;
  }
}

/* =========================
   スタッフ紹介
========================= */
.staff .inner {
  padding: 0 80px;
}
@media screen and (max-width: 1250px) {
  .staff .inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .staff .inner {
    padding: 0;
  }
}

.staff__inner {
  background-color: #FFF4F7;
  padding: 80px 10px 80px 10px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .staff__inner {
    padding: 40px 10px 40px 10px;
  }
}

.staff__wrap {
  max-width: 1120px;
  margin: 0 auto;
  background-color: #fff;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .staff__wrap {
    padding-bottom: 40px;
  }
}

.staff__cards {
  max-width: 894px;
  margin: 0 auto;
  margin-top: 40px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1150px) {
  .staff__cards {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .staff__cards {
    max-width: 400px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.staff__card {
  background-color: #FFF4F7;
  padding: 40px;
  border-radius: 10px;
}
@media screen and (max-width: 1150px) {
  .staff__card {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .staff__card {
    width: 100%;
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .staff__card--pink {
    background-color: #F5BAD3;
    text-align: center;
    padding: 60px 10px 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .staff__card-link {
    font-size: 16px;
    line-height: 1.25;
    color: #40220F;
    display: block;
  }
}

.staff__card-link::before {
  content: "";
  display: block;
  width: 30px;
  height: 37px;
  background: url(../images/staff_link-icon.svg) no-repeat center/contain;
  transform: translateY(-10px);
  width: 100%;
}

.staff__img {
  width: 149px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .staff__img {
    width: 91px;
    height: auto;
  }
}

.staff__name {
  font-size: 20px;
  line-height: 1.85;
  color: #fff;
  background-color: #F5BAD3;
  display: block;
  text-align: center;
  padding: 5px 0;
  margin-top: 10px;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .staff__name {
    font-size: 16px;
    line-height: 1.3125;
    margin-top: 4px;
    padding: 3px 0;
  }
}

.staff__text-title {
  display: block;
  text-align: center;
  font-size: 20px;
  line-height: 1.85;
  color: #fff;
  background-color: #F5BAD3;
  padding: 5px 0;
  border-radius: 40px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .staff__text-title {
    font-size: 16px;
    margin-top: 5px;
    line-height: 1.3125;
    padding: 3px 0;
  }
}

.staff__text {
  font-size: 16px;
  line-height: 1.7;
  color: #40220F;
}
@media screen and (max-width: 768px) {
  .staff__text {
    font-size: 14px;
    line-height: 1.5;
    padding-top: 5px;
  }
}

.btn--staff {
  margin-top: 40px;
}

.btn--staff::before {
  content: "";
  display: block;
  width: 23px;
  height: 20px;
  background: url(../images/staff_link-icon.svg) no-repeat center/contain;
  transform: translateX(-4px);
}

.btn--staff::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/arrow-icon.svg) no-repeat center/contain;
  transform: translateX(15px);
}

/* スライダー全体 */
.staff__picture {
  overflow: hidden;
  position: relative;
  /* フェード用の疑似要素を安定させる */
  padding-inline: 8px;
  /* 左右に少し余白 */
  margin-top: 40px;
}

/* スライドが少しだけ横に広く見える微調整 */
.staff__picture .swiper-wrapper {
  align-items: stretch;
}

/* 各スライドの比率を統一 */
.staff__picture .swiper-slide {
  aspect-ratio: 3/4;
  will-change: transform;
}

/* 画像 */
.staff__img-slide {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* hover演出（PCのみ） */
@media (hover: hover) {
  .staff__picture .swiper-slide:hover .staff__img-slide {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  }
}
.staff__picture .swiper-slide {
  transition: transform 0.4s;
}

.staff__picture .swiper-slide-active {
  transform: scale(1.06);
}

.staff__picture::before,
.staff__picture::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.staff__picture::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.staff__picture::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* =========================
   お知らせ
========================= */
.news__inner {
  background-color: #fff;
  border-radius: 10px;
  border: 3px solid #F5BAD3;
  max-width: 1440px;
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  .news__inner {
    max-width: 550px;
    margin: 0 auto;
    margin-top: 40px;
  }
}

/* リスト */
.news__list {
  max-width: 1120px;
  margin: 0 auto;
}

/* 各行 */
.news__item {
  border-bottom: 1px solid #F5BAD3;
}

/* 行全体リンク */
.news__item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 80px;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .news__item-link {
    padding: 20px 0;
  }
}

/* テキストエリア */
.news__text {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1150px) {
  .news__text {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .news__text {
    gap: 4px;
  }
}

/* 日付 */
.news__date {
  font-size: 20px;
  color: #40220F;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  .news__date {
    font-size: 16px;
  }
}

/* タイトル */
.news__title {
  font-size: 24px;
  color: #F5BAD3;
  line-height: 1.5416666667;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 16px;
  }
}

/* 矢印アイコン（常に右） */
.news__icon {
  width: 30px;
  height: 30px;
  background: url(../images/news-arrow.svg) no-repeat center/contain;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .news__icon {
    width: 16px;
    height: 16px;
  }
}

/* =========================
  もっと見る
========================= */
.news__more-wrap {
  max-width: 1120px;
  padding: 46px 80px 46px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news__more-wrap {
    padding: 20px 0 40px;
  }
}

.news__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 20px;
  color: #40220F;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .news__more {
    justify-content: center;
    font-size: 16px;
  }
}

/* もっと見る用アイコン */
.news__more::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/news-arrow.svg) no-repeat center/contain;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .news__more::after {
    width: 16px;
    height: 16px;
  }
}

/* =========================
   お問い合わせ
========================= */
.contact__inner {
  background-color: #FFF4F7;
  padding-bottom: 80px;
  max-width: 1440px;
  margin: 80px auto;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}

.contact__form {
  max-width: 794px;
  margin: 0 auto;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .contact__form {
    padding-top: 40px;
  }
}

.contact__row {
  font-size: 20px;
  line-height: 1.3;
  color: #40220F;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact__row {
    font-size: 16px;
    flex-direction: column;
    align-items: start;
  }
}

.contact__row dd input,
.contact__row dd textarea {
  width: 100%;
}

.contact__row dd textarea {
  line-height: 1.5;
}

.contact__row:nth-of-type(3) {
  align-items: start;
}

.contact__row:nth-of-type(3) dt {
  padding-top: 5px;
}

.contact__row + .contact__row {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .contact__row + .contact__row {
    margin-top: 20px;
  }
}

.contact__list dt {
  width: 100%;
}

.contact__list dd {
  width: 100%;
  background-color: #fff;
  border: 1px solid #40220F;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16) inset;
  border-radius: 10px;
  padding: 3px 8px;
}
@media screen and (max-width: 768px) {
  .contact__list dd {
    margin-top: 10px;
  }
}

.contact__required {
  display: inline-block;
  font-size: 14px;
  padding: 5px 11px;
  margin-right: 6px;
  color: #fff;
  background: #F5BAD3;
  border-radius: 1px;
}
@media screen and (max-width: 768px) {
  .contact__required {
    font-size: 12px;
  }
}

.btn--contact {
  width: 280px;
  display: flex;
  margin: 0 auto;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .btn--contact {
    width: 200px;
    padding: 11px 0;
    margin-top: 20px;
  }
}

.btn--contact::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url(../images/contact_button-icon.svg) no-repeat center/contain;
  transform: translateX(-4px);
}
@media screen and (max-width: 768px) {
  .btn--contact::before {
    width: 22px;
    height: 22px;
  }
}

.btn--contact::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/arrow-icon.svg) no-repeat center/contain;
  transform: translateX(85px);
}
@media screen and (max-width: 768px) {
  .btn--contact::after {
    width: 15px;
    height: 15px;
    transform: translateX(50px);
  }
}

/* =========================
   求人情報
========================= */
.job__inner {
  background-image: url(../images/job-bg_pc.jpg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  background-color: #fff;
  border-radius: 10px;
  border: 3px solid #F5BAD3;
  padding: 80px 0;
  max-width: 1440px;
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  .job__inner {
    background-image: url(../images/job-bg_sp.jpg);
    background-size: cover;
    margin-top: 40px;
    padding: 40px 10px 40px 10px;
  }
}

.job__inner .section-title {
  padding-top: 0;
}

.job__inner .btn-wrap {
  margin-top: 40px;
}

.job__text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.5;
  color: #40220F;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .job__text {
    font-size: 16px;
    padding-top: 20px;
  }
}

.btn--job {
  width: 280px;
}
@media screen and (max-width: 768px) {
  .btn--job {
    width: 200px;
    padding: 11px 0;
  }
}

.btn--job::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../images/job_link-icon.svg) no-repeat center/contain;
  transform: translateX(-4px);
}
@media screen and (max-width: 768px) {
  .btn--job::before {
    width: 22px;
    height: 22px;
  }
}

.btn--job::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/arrow-icon.svg) no-repeat center/contain;
  transform: translateX(55px);
}
@media screen and (max-width: 768px) {
  .btn--job::after {
    width: 15px;
    height: 15px;
    transform: translateX(25px);
  }
}

/* =========================
   アクセス
========================= */
.access__inner {
  border-radius: 10px;
  border: 3px solid #F5BAD3;
  max-width: 1440px;
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  .access__inner {
    margin-top: 40px;
  }
}

.access__wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  margin-top: 80px;
  padding-bottom: 72px;
}
@media screen and (max-width: 1150px) {
  .access__wrap {
    margin-top: 40px;
    flex-direction: column;
  }
}

.access__text-box {
  max-width: 662px;
  font-size: 20px;
  color: #40220F;
  padding-inline: 0 10px;
}
@media screen and (max-width: 1150px) {
  .access__text-box {
    display: contents;
  }
}

.access__address {
  line-height: 1.5;
}
@media screen and (max-width: 1150px) {
  .access__address {
    order: 1;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .access__address {
    font-size: 14px;
  }
}

.access__facility-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 1150px) {
  .access__facility-wrap {
    flex-direction: column;
    order: 3;
    margin: 0 auto;
  }
}

.access__facility-box {
  max-width: 335px;
  background-color: #FFF4F7;
  border-radius: 10px;
  text-align: center;
  padding: 30px 36px;
  display: block;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 1150px) {
  .access__facility-box {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .access__facility-box {
    font-size: 16px;
    padding: 20px 20px;
    margin-top: 10px;
  }
}

.access__facility-no {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.access__sales {
  line-height: 1;
  padding: 3px;
  margin-top: 12px;
}
@media screen and (max-width: 1150px) {
  .access__sales {
    font-size: 14px;
    order: 4;
    text-align: center;
  }
}

.access__sales--pink {
  color: #fff;
  background-color: #F5BAD3;
  line-height: 1;
  border-radius: 1px;
  padding: 3px;
}
@media screen and (max-width: 1150px) {
  .access__sales--pink {
    font-size: 14px;
    display: table;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 4px;
  }
}

.access__sales--small {
  font-size: 14px;
  line-height: 1.4285714286;
}
@media screen and (max-width: 1150px) {
  .access__sales--small {
    font-size: 12px;
    display: block;
  }
}

.access__bottom-text {
  font-size: 14px;
  color: #F5BAD3;
  line-height: 1.7142857143;
  padding-top: 20px;
}
@media screen and (max-width: 1150px) {
  .access__bottom-text {
    order: 5;
  }
}

.access__picture-box {
  width: 424px;
}
@media screen and (max-width: 1150px) {
  .access__picture-box {
    order: 2;
    width: 60%;
    aspect-ratio: 336/237;
    margin: 0 auto;
    margin-top: 10px;
  }
}
@media (max-width: 450px) {
  .access__picture-box {
    width: 100%;
  }
}

.access__picture-box iframe {
  width: 100%;
  height: 100%;
}

/* =========================
   フッター
========================= */
.footer__inner {
  background-color: #fff;
  margin-top: 80px;
  padding: 0 80px;
}
@media screen and (max-width: 1150px) {
  .footer__inner {
    display: none;
  }
}

.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* 左：ロゴ */
.footer__logo-wrap {
  width: 102px;
  flex-shrink: 0;
}

/* 中央：ナビ（中央寄せ） */
.footer__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* ナビリスト */
.footer__nav-items {
  display: flex;
  gap: 40px;
  /* デザインに応じて */
}

.footer__nav-link {
  font-size: 20px;
  color: #40220F;
  line-height: 1.85;
}

/* 右：ダミー（ロゴと同じ幅） */
.footer__container::after {
  content: "";
  width: 102px;
  flex-shrink: 0;
}

/* コピーライト */
.footer__text {
  font-size: 14px;
  color: #40220F;
  line-height: 2.6428571429;
  text-align: center;
  margin-top: 24px;
  background-color: #FFF4F7;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .footer__text {
    font-size: 10px;
    line-height: 1;
  }
}

/* =========================
   スタッフ紹介【下層ページ】
========================= */
.p-contact__inner {
  background-color: #FFF4F7;
  max-width: 1440px;
  margin: 80px auto;
  padding-bottom: 75px;
}

.p-staff__top-text {
  font-size: 24px;
  line-height: 1.5416666667;
  padding: 20px 40px 0 40px;
  max-width: 894px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-staff__top-text {
    font-size: 14px;
    padding: 20px 10px 0 10px;
  }
}

/* PC（元のレイアウト）*/
.contact__top-text {
  font-size: 24px;
  line-height: 1.5416666667;
  padding-top: 20px;
  max-width: 770px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__top-text {
    font-size: 14px;
  }
}

.p-contact__body {
  max-width: 781px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-contact__body {
    display: flex;
    flex-direction: column;
  }
}

/* PC：電話＋ボタン横並び */
.p-contact__info-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 37px;
  /* SP：箱を無効化 */
}
@media screen and (max-width: 768px) {
  .p-contact__info-wrap {
    display: contents;
  }
}

.p-contact__info {
  width: 458px;
  display: grid;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-contact__info {
    width: 300px;
    margin: 0 auto;
    order: 3;
    margin-top: 24px;
  }
}

.p-contact__info-item {
  background-color: #fff;
  border-radius: 30px;
}

.p-contact__info-link {
  display: flex;
  align-items: center;
  padding: 15px 0 15px 39px;
  font-size: 20px;
  line-height: 1.45;
  color: #40220F;
}
@media screen and (max-width: 768px) {
  .p-contact__info-link {
    font-size: 16px;
    display: block;
    padding: 0;
    text-align: center;
    padding: 10px 0 5px 0;
  }
}

.p-contact__info-name {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .p-contact__info-name {
    width: 100%;
  }
}

.p-contact__info-telno {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-contact__info-telno {
    margin-left: 0;
  }
}
.p-contact__info-telno::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../images/icon-tel.svg) no-repeat center/contain;
  margin-right: 4px;
}

/* ボタン */
.btn--p-contact {
  width: 283px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .btn--p-contact {
    width: 200px;
  }
}

.btn--p-contact::after {
  transform: translateX(30px);
}

@media screen and (max-width: 768px) {
  .btn-wrap--p-contact {
    order: 1;
    margin-top: 24px;
  }
}

/* 営業時間 */
.p-contact__info-text {
  font-size: 14px;
  line-height: 1.1428571429;
  padding-top: 18px;
}
@media screen and (max-width: 768px) {
  .p-contact__info-text {
    order: 2;
    font-size: 12px;
    margin-top: 16px;
    text-align: center;
  }
}

/* =========================
   news(下層ページ)
========================= */
.p-news__inner {
  padding: 0 10px;
}

.p-news__top-text {
  font-size: 24px;
  line-height: 1.5416666667;
  color: #40220F;
  text-align: center;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-news__top-text {
    font-size: 14px;
    padding-top: 5px;
  }
}

.p-news__layout {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 80px;
  justify-content: space-between;
}
@media screen and (max-width: 1150px) {
  .p-news__layout {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-news__layout {
    margin-top: 40px;
  }
}

.p-news__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1150px) {
  .p-news__cards {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1250px) {
  .p-news__cards {
    gap: 20px;
  }
}

.p-news__card {
  max-width: 351px;
  padding: 20px;
  border: 3px solid #F5BAD3;
  border-radius: 10px;
}
@media screen and (max-width: 1150px) {
  .p-news__card {
    margin: 0 auto;
    max-width: 672px;
  }
}
@media screen and (max-width: 768px) {
  .p-news__card {
    padding: 10px;
    border: 2px solid #F5BAD3;
  }
}

@media screen and (max-width: 1150px) {
  .p-news__card-img img {
    height: 100%;
  }
}

.p-news__card-title {
  font-size: 24px;
  line-height: 1.5416666667;
  color: #F5BAD3;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .p-news__card-title {
    font-size: 16px;
    line-height: 1.5;
    padding-top: 10px;
  }
}

.p-news__card-text {
  font-size: 20px;
  line-height: 1.85;
  color: #40220F;
}
@media screen and (max-width: 768px) {
  .p-news__card-text {
    font-size: 16px;
  }
}

.p-news__card-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 2.3125;
  color: #40220F;
}
@media screen and (max-width: 768px) {
  .p-news__card-bottom-wrap {
    font-size: 14px;
    padding-top: 40px;
  }
}

/* =========================
  お知らせ一覧 ページネーション
========================= */
.p-news__pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  gap: 10px;
}

/* ul */
.p-news__pagination ul {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* li */
.p-news__pagination li {
  display: flex;
  align-items: center;
}

/* 共通（数字・リンク） */
.p-news__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFF4F7;
  color: #40220F;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* hover（リンクのみ） */
.p-news__pagination a.page-numbers:hover {
  background-color: #F5BAD3;
  color: #fff;
}

/* 現在のページ */
.p-news__pagination .page-numbers.current {
  background-color: #F5BAD3;
  color: #40220F;
  pointer-events: none;
}

/* ドット（…） */
.p-news__pagination .page-numbers.dots {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  color: #F5BAD3;
  font-size: 18px;
  font-weight: bold;
  padding: 0 4px;
  pointer-events: none;
}

/* 前へ・次へ（使わない場合でも安全） */
.p-news__pagination .prev,
.p-news__pagination .next {
  display: none;
}

/* =========================
   サイドバー(下層ページ)
========================= */
@media screen and (max-width: 1150px) {
  .p-sidebar {
    margin-top: 40px;
    padding: 0 140px;
  }
}
@media screen and (max-width: 768px) {
  .p-sidebar {
    padding: 0 45px;
  }
}

.p-sidebar__block:nth-of-type(2) .p-sidebar__box {
  margin-top: 95px;
}

.p-sidebar__title {
  font-size: 20px;
  line-height: 1.85;
  color: #211F1E;
  font-weight: normal;
  border-bottom: #211F1E solid 1px;
  text-align: center;
}

.p-sidebar__list {
  margin-top: 20px;
  text-align: center;
}

.p-sidebar__block:nth-of-type(2) .p-sidebar__list {
  text-align: start;
}

.p-sidebar__item {
  padding: 4px 0;
}

.p-sidebar__item + .p-sidebar__item {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-sidebar__item + .p-sidebar__item {
    margin-top: 10px;
  }
}

.p-sidebar__item--green {
  background-color: #CDF0EA;
  border-radius: 50px;
}

.p-sidebar__link {
  font-size: 20px;
  line-height: 1.85;
  color: #211F1E;
  display: block;
  padding: 0 15px;
}

/* =========================
   news個別(下層ページ)
========================= */
.s-news__top-text {
  font-size: 24px;
  line-height: 1.5416666667;
  color: #40220F;
  text-align: center;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .s-news__top-text {
    font-size: 14px;
    line-height: 1.1428571429;
  }
}

.s-news__layout {
  display: flex;
  max-width: 1120px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 10px;
  justify-content: space-between;
}
@media screen and (max-width: 1150px) {
  .s-news__layout {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .s-news__layout {
    margin-top: 40px;
  }
}

.p-news__card--s {
  width: 752px;
  max-width: none;
  padding: 40px;
}
@media screen and (max-width: 1150px) {
  .p-news__card--s {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .p-news__card--s {
    width: 100%;
    padding: 10px;
  }
}

.p-news__card-img--s img {
  height: 100%;
}

.p-news__card-title--s {
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-news__card-title--s {
    padding-top: 0px;
  }
}

.p-news__card-text--s {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-news__card-text--s {
    padding-top: 10px;
  }
}

.p-news__card-bottom-wrap--s {
  font-size: 20px;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-news__card-bottom-wrap--s {
    font-size: 14px;
    padding-top: 20px;
  }
}

/* =========================
   お知らせ個別 ページネーション
========================= */
.s-news__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 313px;
  margin: 40px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .s-news__pagination {
    max-width: 250px;
    margin: 20px auto 0;
  }
}

/* 前・次 共通 */
.s-news__pagination-prev,
.s-news__pagination-next {
  width: 45%;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .s-news__pagination-prev,
.s-news__pagination-next {
    font-size: 16px;
  }
}

/* 前 */
.s-news__pagination-prev {
  text-align: left;
}

/* 次 */
.s-news__pagination-next {
  text-align: right;
}

/* リンク */
.s-news__pagination a {
  color: #40220F;
  text-decoration: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
}

.s-news__pagination-prev a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/s-news__arrow-left.svg) no-repeat center/contain;
  transform: translateX(-10px);
}
@media screen and (max-width: 768px) {
  .s-news__pagination-prev a::before {
    width: 16px;
    height: 16px;
  }
}

.s-news__pagination-next a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/s-news__arrow-right.svg) no-repeat center/contain;
  transform: translateX(10px);
}
@media screen and (max-width: 768px) {
  .s-news__pagination-next a::after {
    width: 16px;
    height: 16px;
  }
}

.s-news__pagination a:hover {
  opacity: 0.7;
}

/* 中央の縦線（PC・SP共通） */
.s-news__pagination-line {
  width: 1px;
  height: 20px;
  background-color: #40220F;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* 片側しか無い場合は縦線を非表示 */
.s-news__pagination-prev:empty ~ .s-news__pagination-line,
.s-news__pagination-next:empty ~ .s-news__pagination-line {
  display: none;
}

/* =========================
   求人情報(下層ページ)
========================= */
.p-job__top-text {
  font-size: 24px;
  line-height: 1.5416666667;
  color: #40220F;
  text-align: center;
  padding: 10px 20px 0 20px;
}
@media screen and (max-width: 768px) {
  .p-job__top-text {
    font-size: 14px;
  }
}

.p-job__box-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-job__box-inner {
    padding: 0 10px;
  }
}

.p-job__box-wrap {
  border: #F5BAD3 solid 5px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-job__box-wrap {
    border: #F5BAD3 solid 2px;
  }
}

.p-job__box-wrap + .p-job__box-wrap {
  margin-top: 40px;
}

.p-job__box {
  padding: 10px 10px 0 10px;
}
@media screen and (max-width: 768px) {
  .p-job__box {
    padding: 5px 5px 0 5px;
  }
}

.p-job__type {
  font-size: 30px;
  line-height: 1.4666666667;
  color: #fff;
  text-align: center;
  background-color: #F5BAD3;
  padding: 15px 0;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 768px) {
  .p-job__type {
    font-size: 20px;
    line-height: 1.45;
    padding: 10px 0;
  }
}

.p-job__item {
  display: flex;
  align-items: center;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .p-job__item {
    display: block;
    text-align: center;
    padding: 10px 0;
  }
}

.p-job__item--top {
  align-items: start;
}

.p-job__item-name {
  width: 300px;
  font-size: 20px;
  color: #40220F;
  font-weight: 700;
  padding-left: 7%;
}
@media screen and (max-width: 768px) {
  .p-job__item-name {
    width: 100%;
    font-size: 14px;
    line-height: 1.4285714286;
    padding-left: 0;
  }
}

.p-job__item--pink {
  background-color: #FFF4F7;
}

.p-job__item-explanation {
  width: 820px;
  font-size: 20px;
  line-height: 1.85;
  color: #40220F;
}
@media screen and (max-width: 768px) {
  .p-job__item-explanation {
    width: 100%;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .p-job__item-explanation--start {
    text-align: start;
    padding: 0 15px;
  }
}

.wpcf7-form-control-wrap {
  position: relative;
  display: block;
  line-height: 0;
}

.wpcf7-not-valid-tip {
  position: absolute;
  bottom: -1.8em;
  left: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #e60012;
  white-space: nowrap;
}