@charset "utf-8";

body {
	background: #fffdf8;
}
.price-table {
  width: min(100%, 1110px);
  margin: 0 auto;
  color: #333333;
}

.price-table p {
  margin: 0;
}
.staff-recruit-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 40px;
	border-radius: 999px;
	margin-top: 30px;
	background: linear-gradient(163deg, #3aaecc 0%, #5bc8e8 100%);
	box-shadow: 0 4px 16px rgba(58,174,204,0.35);
}
.staff-recruit-cta__btn p {
	font-size: 16px;
	font-weight: 900;
	color: #fff;
	margin: 0;
}
.staff-recruit-cta__btn-icon img {
	width: 18px;
	height: 18px;
	display: block;
}

/* =============================
   タイトル
============================= */
.price-table__title {
  margin: 0;
  padding: 26px 20px;
  background: var(--cr-gradient-topbar);;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

/* =============================
   メイン料金表
============================= */
.price-table__main {
  display: grid;
	background-color: #fff;
  grid-template-columns:
    132px
    minmax(300px, 1.8fr)
    120px
    minmax(150px, 1fr)
    120px
    minmax(170px, 1fr);
  border-top: 1px solid #b7b7b7;
  border-left: 1px solid #b7b7b7;
}

.price-table__main > div {
  min-height: 75px;
  padding: 15px 18px;
  border-right: 1px solid #b7b7b7;
  border-bottom: 1px solid #b7b7b7;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 月額費用 */
.price-table__monthly-label {
  grid-row: 1 / 3;
  background: #f6f6f6;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.price-table__monthly-price {
  grid-row: 1 / 3;
  text-align: center;
}

.price-table__monthly-price p {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
}

.price-table__monthly-price p span:first-child {
  font-size: clamp(36px, 3.6vw, 50px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.price-table__monthly-price p span:last-child {
  margin-left: 5px;
  font-size: 13px;
}

/* =============================
   各料金
============================= */
.price-table__item-label {
  background: #f6f6f6;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.price-table__item-value {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.price-table__item-value p span {
  font-size: 11px;
  line-height: 1;
}

/* =============================
   敷金
============================= */
.price-table__deposit {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-left: 1px solid #b7b7b7;
	background-color: #fff;
}

.price-table__deposit > div {
  min-height: 66px;
  padding: 15px 20px;
  border-right: 1px solid #b7b7b7;
  border-bottom: 1px solid #b7b7b7;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.price-table__deposit-label {
  justify-content: center;
  background: #f6f6f6;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.price-table__deposit-value {
  font-size: 15px;
}

/* =============================
   所在地
============================= */
.price-table__address {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-left: 1px solid #b7b7b7;
	background-color: #fff;
}

.price-table__address > div {
  min-height: 66px;
  padding: 15px 20px;
  border-right: 1px solid #b7b7b7;
  border-bottom: 1px solid #b7b7b7;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.price-table__address-label {
  justify-content: center;
  background: #f6f6f6;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.price-table__address-value {
  font-size: 15px;
}

/* =============================
   介護・看護サービス費
============================= */
.price-table__service {
  display: grid;
  grid-template-columns: 220px 1fr;
  margin-top: 18px;
  border: 1px solid #b7b7b7;
	background-color: #fff;
}

.price-table__service-title {
  padding: 18px 20px;
  background: var(--cr-gradient-topbar);;
  color: #ffffff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.price-table__service-text {
  padding: 18px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.6;
}

/* =============================
   スマホ
============================= */
@media screen and (max-width: 767px) {
  .price-table__title {
    padding: 18px 15px;
    font-size: 17px;
  }

  .price-table__main {
    grid-template-columns: 90px 1fr;
  }

  .price-table__main > div {
    min-height: 60px;
    padding: 12px 10px;
  }

  .price-table__monthly-label {
    grid-row: auto;
    font-size: 12px;
  }

  .price-table__monthly-price {
    grid-row: auto;
  }

  .price-table__monthly-price p span:last-child {
    font-size: 11px;
  }

  .price-table__item-label {
    font-size: 12px;
  }

  .price-table__item-value {
    font-size: 13px;
  }

  .price-table__item-value p span {
    font-size: 10px;
  }

  .price-table__deposit,
  .price-table__address {
    grid-template-columns: 90px 1fr;
  }

  .price-table__deposit > div,
  .price-table__address > div {
    min-height: 58px;
    padding: 12px 10px;
  }

  .price-table__deposit-label,
  .price-table__address-label {
    font-size: 12px;
  }

  .price-table__deposit-value,
  .price-table__address-value {
    font-size: 13px;
  }

  .price-table__service {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }

  .price-table__service-title {
    padding: 14px;
    font-size: 13px;
  }

  .price-table__service-text {
    padding: 15px;
    font-size: 12px;
  }
}
.link_wrap {
  gap: clamp(24px, 6vw, 30px);margin-bottom: 80px;
}
.link_wrap .li {
  width: clamp(120px, 18vw, 220px);
}
.link_wrap .li a {
  position: relative;
  justify-content: space-between;
  text-decoration: none;
  padding: 6px 0 8px;
	border-bottom: 2px solid #5bc8e8;
}
/* テキスト */
.link_wrap .li a p {
  margin: 0;
  letter-spacing: .06em;
  white-space: nowrap;
	font-weight: 700;
}
/* 下線（既定：薄いグレー） */
.link_wrap .li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: clamp(120px, 18vw, 220px); /* 見本っぽい長さ */
  background: rgba(255, 255, 255, .35);
  transition: background-color .2s, height .2s, opacity .2s;
  opacity: .9;
}
/* ホバーで少し強め */
.link_wrap .li a:hover::after {
  background: rgba(255, 255, 255, .6);
}
/* アクティブ状態（現在のタブに .is-active を付ける想定） */
.link_wrap .li.is-active a::after {
  background: #5bc8e8; /* 見本の青ライン */
  height: 3px;
}
/* 右側の白丸アイコン */
.link_wrap .arrow_icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #5bc8e8;
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08) inset;
  transition: transform .15s ease, box-shadow .2s;
}
/* ホバー時のちょいアニメ */
.link_wrap .li a:hover .arrow_icon {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

/* ---------- page hero ---------- */
.fac-hero {
	position: relative;
	height: clamp(200px, 15vw, 288px);
	overflow: hidden;
}
.fac-hero__bg {
	position: absolute;
	inset: 0;
}
.fac-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fac-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(58, 174, 204, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
}
.fac-hero__inner {
	text-align: center;
	color: #fff;
}
.fac-hero__en {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.28em;
	opacity: 0.8;
	margin: 0 0 12px;
}
.fac-hero h1 {
	font-size: clamp(32px, 2.5vw, 48px);
	font-weight: 900;
	color: #fff;
	margin: 0;
	line-height: 1;
}

/* ---------- common section ---------- */
.fac-section {
	padding: clamp(64px, 5vw, 96px) 0;
}
.fac-section--white {
	background: #fff;
}
.fac-section--cream {
	background: #fff8ee;
}
.fac-section--gradient {
	background: linear-gradient(137.41deg, #eef8fc 0%, #fffdf8 50%, #fff4e8 100%);
}

/* ---------- concept ---------- */
.fac-concept__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 4.17vw, 80px);
	align-items: center;
}
.fac-concept__text p {
	font-size: clamp(15px, 0.94vw, 18px);
	line-height: 1.9;
	color: #364153;
	margin: 0;
}
.fac-concept__text p + p {
	margin-top: 20px;
}
.fac-concept__img {
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.fac-concept__img img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 536 / 440;
	object-fit: cover;
}

/* ---------- features ---------- */
.fac-features__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-top: clamp(40px, 3.33vw, 64px);
}
.fac-features__card {
	background: #fff;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.fac-features__card-img {
	position: relative;
	height: 260px;
	overflow: hidden;
}
.fac-features__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fac-features__num {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.fac-features__num p {
	font-size: 24px;
	font-weight: 900;
	color: #fff;
	margin: 0;
	line-height: 1;
}
.fac-features__num--teal { background: rgba(58, 174, 204, 0.6); }
.fac-features__num--orange { background: rgba(244, 135, 75, 0.6); }
.fac-features__num--yellow { background: rgba(212, 168, 0, 0.6); }
.fac-features__num--green { background: rgba(42, 148, 112, 0.6); }
.fac-features__card-body {
	padding: 40px;
}
.fac-features__head {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 20px;
}
.fac-features__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fac-features__icon img {
	width: 22px;
	height: 22px;
}
.fac-features__icon--teal { background: linear-gradient(135deg, #c8eef8 0%, #a0d8f0 100%); }
.fac-features__icon--orange { background: linear-gradient(135deg, #f8d4a8 0%, #f4b87a 100%); }
.fac-features__icon--yellow { background: linear-gradient(135deg, #f8f0a8 0%, #f4dc6a 100%); }
.fac-features__icon--green { background: linear-gradient(135deg, #a8ecd4 0%, #7ada88 100%); }
.fac-features__icon--peach { background: linear-gradient(135deg, #f8e4b8 0%, #f4ca84 100%); }
.fac-features__card-body h3 {
	font-size: 22px;
	font-weight: 900;
	color: #1e2939;
	margin: 0;
	line-height: 1.4;
}
.fac-features__line {
	height: 2px;
	width: 48px;
	border-radius: 999px;
	margin-bottom: 24px;
}
.fac-features__line--teal { background: #3aaecc; }
.fac-features__line--orange { background: #f4874b; }
.fac-features__line--yellow { background: #d4a800; }
.fac-features__line--green { background: #2a9470; }
.fac-features__card-body > p {
	font-size: 15px;
	line-height: 2;
	color: #6a7282;
	margin: 0;
}

/* ---------- service ---------- */
.fac-service__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 3.33vw, 64px);
	align-items: center;
}
.fac-service__row--reverse .fac-service__content { order: 1; }
.fac-service__row--reverse .fac-service__img { order: 2; }
.fac-service__badge {
	display: inline-block;
	padding: 4px 16px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	margin-bottom: 8px;
}
.fac-service__badge--teal {
	background: #e8f7fc;
	color: #3aaecc;
}
.fac-service__badge--orange {
	background: #fff0e0;
	color: #f4874b;
}
.fac-service__badge--green {
	background: #e8f8f3;
	color: #2a9470;
}
.fac-service__content h2 {
	font-size: clamp(26px, 1.67vw, 32px);
	font-weight: 900;
	color: #1e2939;
	margin: 0;
	line-height: 1.375;
}
.fac-service__bar_wrap {
	margin-top: 24px;
}
.fac-service__bar {
	height: 4px;
	width: 48px;
	border-radius: 999px;
}
.fac-service__bar p{
	font-weight: 500;
}
.fac-service__bar--teal { background: #3aaecc; }
.fac-service__bar--orange { background: #f4874b; }
.fac-service__bar--green { background: #2a9470; }
.fac-service__content > p {
	font-size: clamp(15px, 0.89vw, 17px);
	line-height: 2;
	color: #4a5565;
	margin: 28px 0 0;
}
.fac-service__content > p + p {
	margin-top: 20px;
}
.fac-service__list {
	margin-top: 32px;
}
.fac-service__list-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.fac-service__list-item + .fac-service__list-item {
	margin-top: 12px;
}
.fac-service__list-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
   line-height: 0;
}
.fac-service__list-icon img {
	width: 100%;
	height: 100%;

}
.fac-service__list-item p {
	font-size: 15px;
	color: #4a5565;
	margin: 0;
	line-height: 1.5;
}
.fac-service__note {
	display: flex;
	align-items: flex-end;
	gap: 12px;
	margin-top: 10px;
}
.fac-service__note-icon {
	width: 24px;
	height: 25px;
	flex-shrink: 0;
}
.fac-service__note-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.fac-service__note p {
	font-size: 17px;
	font-weight: 700;
	color: #4a5565;
	margin: 0;
	padding-bottom: 4px;
	border-bottom: 1px solid #4a5565;
}
.fac-service__img {
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.fac-service__img img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 544 / 420;
	object-fit: cover;
}

/* ---------- conditions box ---------- */
.fac-conditions {
	margin-top: 51px;
}
.fac-conditions__box {
	background: #fff;
	border: 1.5px solid #d9dee3;
	border-radius: 12px;
	padding: 40px;
	text-align: center;
}
.fac-conditions__en {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: #2a9470;
	margin: 0 0 16px;
}
.fac-conditions__box h3 {
	font-size: 24px;
	font-weight: 900;
	color: #1e2939;
	margin: 0 0 16px;
}
.fac-conditions__bar {
	height: 3px;
	width: 48px;
	background: #2a9470;
	border-radius: 999px;
	margin: 0 auto 24px;
}
.fac-conditions__tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.fac-conditions__tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: #e8f8f3;
	border: 1px solid #d9f0e8;
	border-radius: 20px;
}
.fac-conditions__tag img {
	width: 6px;
	height: 6px;
}
.fac-conditions__tag p {
	font-size: 14px;
	color: #4a5565;
	margin: 0;
	line-height: 1.4;
}

/* ---------- facility intro ---------- */
.fac-intro__main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: stretch;
	margin-top: clamp(40px, 3.33vw, 64px);
}
.fac-intro__main-img {
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	min-height: 420px;
}
.fac-intro__main-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fac-intro__main-body {
	background: #fff;
	border-radius: 22px;
	padding: 40px;
	box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.fac-intro__main-en {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: #3aaecc;
	margin: 0 0 12px;
}
.fac-intro__main-body h3 {
	font-size: 26px;
	font-weight: 900;
	color: #1e2939;
	margin: 0 0 20px;
}
.fac-intro__main-bar {
	height: 4px;
	width: 40px;
	background: #3aaecc;
	border-radius: 999px;
	margin-bottom: 28px;
}
.fac-intro__main-body p {
	font-size: 16px;
	line-height: 2;
	color: #4a5565;
	margin: 0;
}
.fac-intro__main-body p + p {
	margin-top: 20px;
}
.fac-intro__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 40px;
}
.fac-intro__card {

	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.fac-intro__card-img {
	height: 200px;
	overflow: hidden;
}
.fac-intro__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fac-intro__card-body {
	padding: 20px;
}
.fac-intro__card-body h4 {
	font-size: 15px;
	font-weight: 900;
	color: #1e2939;
	margin: 0 0 8px;
}
.fac-intro__card-body p {
	font-size: 13px;
	line-height: 1.625;
	color: #6a7282;
	margin: 0;
}

/* ---------- responsive ---------- */
@media screen and (max-width: 1280px) {
	.fac-intro__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 1080px) {
	.fac-concept__inner,
	.fac-service__row,
	.fac-intro__main {
		grid-template-columns: 1fr;
	}
	.fac-service__row--reverse .fac-service__content,
	.fac-service__row--reverse .fac-service__img {
		order: unset;
	}
	.fac-features__grid {
		grid-template-columns: 1fr;
		max-width: 560px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width: 768px) {
	.fac-intro__cards {
		grid-template-columns: 1fr;
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
	}
	.fac-conditions__box {
		padding: 24px 16px;
	}
}

@media screen and (max-width: 576px) {
	.fac-features__card-body {
		padding: 24px;
	}
	.fac-service__note {
		flex-direction: column;
		align-items: flex-start;
	}
}
