@charset "UTF-8";
/* style.css を基準にした安全な SCSS 編集元 */
/* Google Fonts from HTML (Noto Sans JP only). */

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

/* ===== Monozukuri: local Roren intro section ===== */
.tp-local-intro.tp-page-section--compact {
  padding: 1rem 0 3.2rem;
}
body.tp-subpage .tp-local-intro .tp-container {
  width: 100%;
  max-width: 960px;
  padding-inline: 2rem;
  box-sizing: border-box;
}
.tp-local-intro__head {
  text-align: center;
  color: var(--text);
  padding-top: 40px;
  padding-bottom: 20px;
}
.tp-local-intro__eyebrow {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #6d564f;
}
.tp-local-intro__copy {
  margin-top: 1.2rem;
  font-size: clamp(2.2rem, 2.7vw, 3rem);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #2f2522;
}
.tp-local-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(2.4rem, 3vw, 4rem);
  margin-top: clamp(2.4rem, 3vw, 3.6rem);
  align-items: center;
}
.tp-local-intro__body {
  color: var(--text);
}
.tp-local-intro__title {
  font-size: clamp(2rem, 2.8vw, 2.2rem);
  line-height: 1.35;
  font-weight: 700;
  color: #2f2522;
}
.tp-local-intro__concept {
  display: inline-block;
  color: var(--accent);
}
.tp-local-intro__text {
  margin-top: 1.6rem;
  line-height: 1.95;
  text-align: justify;
}
.tp-local-intro__media {
  aspect-ratio: 40 / 47;
  border-radius: 2rem;
  overflow: hidden;
}

@media (max-width: 900px) {
  .tp-local-intro__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tp-local-intro__body {
    order: 1;
  }
  .tp-local-intro__media {
    order: 2;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  body.tp-subpage .tp-local-intro .tp-container {
    padding-inline: 1.6rem;
  }
  .tp-local-intro.tp-page-section--compact {
    padding: 0.8rem 0 2.8rem;
  }
  .tp-local-intro__eyebrow {
    font-size: 1.35rem;
  }
  .tp-local-intro__copy {
    margin-top: 1rem;
    font-size: clamp(1.9rem, 4.8vw, 2.6rem);
    line-height: 1.45;
    letter-spacing: 0;
  }

  .tp-local-intro__text {
    margin-top: 1.2rem;
    font-size: 1.6rem;
    line-height: 1.85;
  }
  .tp-local-intro__media {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 1.6rem;
  }
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/***** Variables / Common *****/
html {
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  background: #ffffff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
}

main {
  display: block;
}

/***** Header *****/
.nav-toggle {
  position: relative;
  z-index: 1002;
  width: 5.4rem;
  height: 5.4rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  background: #ffffff;
  color: #1a1a1a;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 2rem;
  height: 2px;
  background: #1a1a1a;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.is-nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.is-nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/***** Navigation *****/
.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 36rem);
  height: 100dvh;
  background: #ffffff;
  border-left: 1px solid var(--border);
  padding: 8rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1001;
}

body.is-nav-open .global-nav {
  transform: translateX(0);
}

.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  max-height: calc(100dvh - 10rem);
  overflow: auto;
}

.global-nav__item--sp-only {
  display: list-item;
}

.global-nav__list a {
  display: block;
  padding: 1.2rem 1rem;
  border-radius: 0.6rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1.6rem;
}

.global-nav__list a:hover,
.global-nav__list a:focus-visible {
  background: #f5f5f5;
  outline: none;
}

.nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.is-nav-open {
  overflow: hidden;
}

body.is-nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 769px) {
  .header__inner {
    min-height: 8rem;
    gap: 2rem;
  }
  .nav-toggle {
    display: none;
  }
}

h1 {
  font-size: clamp(3rem, 4.6vw, 4.8rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(2.3rem, 3.2vw, 3.2rem);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 2.2vw, 2.2rem);
  line-height: 1.5;
}

/***** Top Page *****/
:root {
  --bg: #FFFFF8;
  --white: #ffffff;
  --text: #4A3733;
  --text-sub: #333333;
  --accent: #e8575f;
  --accent-dark: #d04049;
  --accent-soft: #f6e8dc;
  --yellow-right: #FFDF99;
  --border: #e8d9cc;
  --shadow: 0 18px 40px rgba(20, 16, 12, 0.1);
  --radius: 1.6rem;
  --radius-lg: 2.4rem;
}

body {
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

/* --- Top Page: Common Container --- */
.tp-container {
  width: min(1760px, 100% - 4rem);
  max-width: min(1760px, 100%);
  margin: 0 auto;
}

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 5.6rem;
  padding: 1.2rem 3.2rem;
  border: 1px solid var(--text);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.tp-btn:hover {
  opacity: 0.92;
}

.tp-btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  padding-block: 10px;
  padding-inline: 3.6rem;
}

.tp-btn--recruit {
  background: #79a88f;
  color: var(--white);
  border-color: #79a88f;
}

.tp-btn--arrow {
  position: relative;
  padding-right: 5.2rem;
}

.tp-btn--arrow::after {
  content: "→";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

.tp-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.tp-label::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--accent);
  opacity: 1;
}

.tp-label--sentence {
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 1.8rem;
}
.tp-label--sentence::before {
  display: none;
}

.tp-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 0;
  position: relative;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem 0.75rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.tp-section-title::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  background: url("../../images/icon-point.png") no-repeat center/contain;
  position: absolute;
  left: -20px;
  top: -5px;
}

@media (min-width: 769px) {
  .tp-section-title {
    font-size: 3.8rem;
  }
  .tp-section-title::before {
    width: 3.6rem;
    height: 3.6rem;
  }
  body:not(.tp-subpage) main .tp-section-title {
    font-size: 3.8rem;
  }
  body:not(.tp-subpage) main .tp-section-title::after {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.tp-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 3.2rem;
}

/* トップページのみ：セクション見出しを Contact 基準で統一（下層は body.tp-subpage） */
/* グローバルの ::before 装飾はトップでは使わず、テキスト直後の ::after に統一 */
/* News のみ：見出しブロック（ラベル＋日本語＋icon）を中央寄せ */
body:not(.tp-subpage) main .tp-section-header {
  gap: 1rem;
  margin-bottom: clamp(2.8rem, 4vw, 4rem);
  width: 100%;
  text-align: left;
}
body:not(.tp-subpage) main .tp-section-header .tp-label {
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
}
body:not(.tp-subpage) main .tp-section-title {
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
body:not(.tp-subpage) main .tp-section-title::before {
  content: none;
  display: none;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  background: none;
  position: static;
}
body:not(.tp-subpage) main .tp-section-title::after {
  content: "";
  flex-shrink: 0;
  width: 4.1rem;
  height: 3.6rem;
  background: url("../../images/icon-point.png") no-repeat center/contain;
  position: relative;
  top: -2rem;
  position: absolute;
    right: -20px;
}
body:not(.tp-subpage) main .tp-news .tp-section-header.tp-news__header {
  align-items: center;
  text-align: center;
}
body:not(.tp-subpage) main .tp-news .tp-section-header.tp-news__header .tp-label {
  text-transform: none;
  letter-spacing: 0.1em;
}

.tp-page-title,
.tp-page-section__title,
.tp-about__lead,
.tp-section-heading {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.tp-page-title,
.tp-section-heading {
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  line-height: 1.65;
}

.tp-page-section__title,
.tp-about__lead {
  font-size: clamp(2.8rem, 3vw, 4rem);
  line-height: 1.6;
}

.tp-page-title {
  margin: 0;
}

.tp-page-section__head {
  margin-bottom: 2.8rem;
}

.tp-side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  background: var(--accent);
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  width: 60px;
  height: 220px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 10px 0 0 10px;
  line-height: 1;
}

.tp-side-tab::after {
  content: "→";
  position: absolute;
  bottom: 14px;
  left: 52%;
  transform: translateX(-52%);
  writing-mode: horizontal-tb;
  font-size: 1.8rem;
  line-height: 1;
}

.tp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 0;
  color: #333333;
  font-family: "Zen Maru Gothic", sans-serif;
}

.tp-header__top {
  background: var(--bg);
  display: flex;
  justify-content: center;
  box-shadow: 0 0 4px #e3e3d3;
}

.tp-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.2rem;
  padding: 0.8rem 0 0.4rem;
  margin-inline: auto;
}

.tp-header__logo img {
  width: 24rem;
  height: auto;
}

.tp-header__top-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}

.tp-header__insta {
  width: 4.4rem;
  height: 4.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 0;
  color: #E8575F;
  flex: 0 0 4.4rem;
}

.tp-header__insta img {
  width: 44px;
  height: 44px;
}

.tp-header__tel {
  display: grid;
  gap: 0.1rem;
  text-decoration: none;
  justify-items: start;
  color: #333333;
}

.tp-header__tel-num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1;
  color: #E8575F;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}

.tp-header__tel-prefix {
  margin-right: 0;
  font-size: 2rem;
}

.tp-header__tel-hours {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  color: #333333;
  letter-spacing: 0.01em;
}

.tp-header__btns {
  display: flex;
  gap: 1rem;
}

.tp-header__btns .tp-btn {
  min-height: 4.4rem;
  padding: 10px 2.2rem;
  border-radius: 0.4rem;
  font-size: 1.8rem;
  line-height: 1.2;
}

.tp-header__btns .tp-btn--primary {
  padding-block: 10px;
  background: #E8575F;
  border-color: #E8575F;
  color: #ffffff;
}

.tp-header__btns .tp-btn--recruit {
  background: #2C7D60;
  border-color: #2C7D60;
  color: #ffffff;
}

.tp-header__sp-btns {
  display: none;
}

.tp-header__bottom {
  border-top: 0;
  background: var(--bg);
  display: flex;
  justify-content: center;
}

.tp-header__bottom .tp-container {
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 769px) {
  .global-nav__item--sp-only {
    display: none;
  }

  .global-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    border-left: 0;
    padding: 0;
    transform: none;
    transition: none;
  }

  body.is-nav-open .global-nav {
    transform: none;
  }

  .global-nav__list {
    padding: 1.5rem 0 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-height: none;
    overflow: visible;
  }

  .global-nav__list li {
    margin: 0;
  }

  .global-nav__list a {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border-radius: 0;
    color: #333333;
    font-weight: 500;
    line-height: 1.2;
  }

  .global-nav__list a:hover {
    color: var(--accent);
    background: transparent;
  }

  .nav-overlay {
    display: none;
  }
}

.tp-hero {
  position: relative;
  padding: 2.4rem 0 6.8rem;
  background: transparent;
}

.tp-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 12.5rem;
  height: 44rem;
  background: var(--accent-soft);
  z-index: 0;
}

.tp-hero .tp-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-inline: auto;
}

.tp-hero__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.tp-hero__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: min(1280px, 100%);
  max-width: 1280px;
  height: 680px;
  box-shadow: var(--shadow);
}

.tp-hero__media picture,
.tp-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 55% 35%;
}

.tp-hero__body {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  max-width: 1280px;
  margin-top: -5.8rem;
  padding-left: 7.2rem;
}

.tp-hero__eyebrow {
  display: none;
}

.tp-hero__title {
  font-size: clamp(3.2rem, 3.6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 2.2rem;
  letter-spacing: 0.02em;
  font-family: "Zen Maru Gothic", sans-serif;
  max-width: 62rem;
}

.tp-hero__title span {
  display: inline-block;
  background: var(--white);
  padding: 10px;
  margin-bottom: 6px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.tp-hero__desc {
  font-size: 2.6rem;
  line-height: 2.05;
  color: var(--text);
  margin-bottom: 0;
  font-weight: 700;
}

.tp-hero__desc-lead {
  display: inline-block;

  margin-bottom: 0.2rem;
}

.tp-hero__desc-mark {
  display: inline;
  background: linear-gradient(transparent 62%, #fff2a8 62%);
  padding-inline: 0.2em;
}

.tp-hero__desc-br-sp {
  display: none;
}

.tp-hero__body > .tp-btn {
  display: none;
}

.tp-hero__card::after {
  content: "";
  position: absolute;
  right: 10rem;
  bottom: -1.2rem;
  width: 34.4rem;
  height: 16.5rem;
  background: url("../../images/icon-line.svg") no-repeat center/contain;
  opacity: 0.95;
  pointer-events: none;
}

.tp-about,
.tp-service,
.tp-guide,
.tp-news,
.tp-recruit,
.tp-contact {
  background: transparent;
}

/* --- Top Page: Section Container (shared) --- */
.tp-service .tp-container,
.tp-guide .tp-container,
.tp-recruit .tp-container,
.tp-news .tp-container {
  width: min(100% - 4rem, 1280px);
  max-width: 1280px;
  margin: 0 auto;
}

.tp-about {
  padding: 7.2rem 0 9.6rem;
  position: relative;
}
.tp-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 30%;
  background-color: var(--accent-soft);
  z-index: -1;
}

.tp-about__inner {
  box-sizing: border-box;
  width: min(100% - 4rem, 1440px);
  max-width: 1440px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
  align-items: start;
}

.tp-about__photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.tp-about__photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.tp-about__photo--sub {
  aspect-ratio: 14/9;
}

.tp-about__photo--main {
  aspect-ratio: 19/0;
}

.tp-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-about__lead {
  margin: 1.2rem 0 1.6rem;
  font-size: clamp(2.2rem, 2.2vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
}

.tp-about__text {
  margin-bottom: 3.2rem;
  max-width: 54rem;
}

@media (min-width: 769px) {
  .tp-about::before {
    height: 100%;
  }
  .tp-about__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 4.8rem;
    align-items: center;
  }
  .tp-about__photo {
    min-height: 40rem;
  }
  .tp-about__photo--sub,
  .tp-about__photo--main {
    aspect-ratio: auto;
    height: 100%;
  }
  .tp-about__body {
    justify-self: end;
    width: 100%;
    max-width: 56rem;
    position: relative;
  }

  .tp-about__body::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -100px;
    width: 12rem;
    height: 12rem;
    background: url("../../images/icon-tonbo.svg") no-repeat center/contain;
    pointer-events: none;
  }
  
}
.tp-service {
  padding: 9.6rem 0 10.4rem;
  background-color: var(--white);
  margin-top: 6rem;
}

.tp-service__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
}

.tp-service__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tp-service__card-img {
  margin: 0;
  aspect-ratio: 3/2.5;
}

.tp-service__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-service__card-body {
  padding: 2.8rem 3rem 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tp-service__card-title {
  margin: 0 0 1.8rem;
  color: var(--accent);
  font-size: 2.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  display: inline-block;
  background: linear-gradient(transparent 68%, #fff26e 68%);
  padding: 0 0.2em;
  position: relative;
}
.tp-service__card-title span {
  position: absolute;
  left: 50%;
  top: -40%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.2;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 0 0.2em;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-align: center;
  white-space: nowrap;
}

.tp-service__card-body p {
  margin: 0 0 2.8rem;
  max-width: 34rem;
  line-height: 1.7;
  text-align: left;
}

.tp-service__card-body .tp-btn {
  width: min(100%, 32rem);
  justify-content: center;
  margin-top: auto;
}

.tp-break {
  padding: 0 0 clamp(4.6rem, 8vw, 9.6rem);
}

.tp-break__media {
  margin: 0;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.tp-break__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 40%;
  aspect-ratio: 1920/520;
}

.tp-guide {
  padding: 2.6rem 0 4.4rem;
}

.tp-guide__list {
  display: grid;
  gap: 2.4rem;
}

.tp-guide__block {
  display: grid;
  grid-template-columns: minmax(0, 65rem) minmax(0, 1fr);
  gap: 6.2rem;
  align-items: center;
  padding: 2rem;
}

.tp-guide__img {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.tp-guide__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tp-guide__num {
  display: none;
}

.tp-guide__title {
  margin: 0 0 2rem;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.3;
  font-family: "Zen Maru Gothic", sans-serif;
}

.tp-guide__body p {
  margin-bottom: 2.4rem;
}

.tp-news {
  padding: 9.6rem 0 10.4rem;
}

.tp-news__list {
  max-width: 760px;
  margin: 0 auto;
}

.tp-news__item {
  display: flex;
  align-items: baseline;
  gap: 28px;
}

.tp-news__item + .tp-news__item {
  margin-top: 1.2rem;
}

.tp-news__date {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-sub);
}

.tp-news__link {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tp-news__link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.tp-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.tp-news__empty {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  padding-bottom: 20px;
}

.tp-news__cell {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 20px rgba(20, 16, 12, 0.08);
}

.tp-news__cell img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tp-news__more {
  display: flex;
  justify-content: center;
  margin-top: 2.8rem;
}

.tp-instagram-feed {
  margin-top: 60px;
}

.tp-recruit {
  padding: 9.6rem 0;
  --tp-recruit-border: #c95a5e;
  --tp-recruit-panel: #f7f7f7;
}

.tp-recruit__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: clamp(28rem, 42vw, 40rem);
  border: 1.5px solid var(--tp-recruit-border);
  border-radius: 2rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(45, 24, 22, 0.06);
}

.tp-recruit__img {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 0;
  align-self: stretch;
  position: relative;
}

.tp-recruit__img img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.tp-recruit__box {
  padding: clamp(3.6rem, 5vw, 5.6rem) clamp(3.2rem, 4.5vw, 5.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  background: var(--white);
  min-height: 0;
  flex: 1;
}

.tp-recruit .tp-recruit__box > .tp-section-header {
  margin-bottom: 0;
}

.tp-recruit__lead {
  margin: 0;
  color: #444;
  line-height: 1.75;
  font-size: clamp(1.5rem, 1.35vw, 1.6rem);
  max-width: 48rem;
}

.tp-recruit__list {
  margin: 0;
  padding-left: 1.8rem;
}

.tp-recruit .tp-recruit__btn.tp-btn {
  align-self: center;
  margin-top: auto;
  padding-top: 0.8rem;
  width: min(100%, 26rem);
  max-width: 100%;
  justify-content: center;
  text-align: center;
  border-radius: 1rem;
  background: var(--accent);
  border-color: var(--accent);
}

.tp-recruit .tp-recruit__btn.tp-btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.tp-contact {
  padding: 8.8rem 0 9.6rem;
}

.tp-contact__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5.6rem;
  align-items: stretch;
}

.tp-contact__info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.6rem;
  border: 1px solid var(--border);
}

.tp-contact__tel {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--text);
  padding-bottom: 0;
  border-bottom: 0;
}

.tp-contact__tel-label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.tp-contact__tel-num {
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.tp-contact__dl {
  margin: 2.4rem 0 3.2rem;
}

.tp-contact__dl-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
}

.tp-contact__dl-row dt {
  font-weight: 700;
}

.tp-contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 36rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-contact__map-label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  color: var(--text-sub);
}

.tp-contact:not(.tp-contact--subpage) > .tp-container {
  box-sizing: border-box;
  width: min(100% - 4rem, 1080px);
  max-width: 1080px;
  margin-inline: auto;
}

.tp-contact:not(.tp-contact--subpage) .tp-contact__inner {
  grid-template-columns: 1fr 2fr;
  align-items: flex-start;
}

.tp-contact:not(.tp-contact--subpage) .tp-contact__info {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.tp-contact:not(.tp-contact--subpage) .tp-contact__lead {
  margin: 0 0 2rem;
  font-size: 2.3rem;
  line-height: 1.85;
  text-align: center;
  font-weight: 700;
  max-width: 340px;
  color: var(--text);
}

.tp-contact:not(.tp-contact--subpage) .tp-contact__tel {
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 0.25em;
}

.tp-contact:not(.tp-contact--subpage) .tp-contact__fax {
  margin: 1.2rem 0 0;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text);
}

.tp-contact:not(.tp-contact--subpage) .tp-contact__fax-label {
  margin-right: 0.2em;
}

.tp-contact:not(.tp-contact--subpage) .tp-contact__hours {
  margin: 0.8rem 0 2.4rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text);
}

.tp-contact:not(.tp-contact--subpage) .tp-contact__map {
  background: transparent;
  border: none;
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}

.tp-contact:not(.tp-contact--subpage) .tp-contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  border: 0;
  display: block;
}

/***** Contact / Form *****/
/* CTA section heading on subpages: match top page decoration (icon right-top) */
body.tp-subpage .tp-contact .tp-section-title {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
}
body.tp-subpage .tp-contact .tp-section-title::before {
  content: none;
  display: none;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  background: none;
  position: static;
}
body.tp-subpage .tp-contact .tp-section-title::after {
  content: "";
  flex-shrink: 0;
  width: 4.1rem;
  height: 3.6rem;
  background: url("../../images/icon-point.png") no-repeat center/contain;
  position: relative;
  top: -2rem;
}
@media (min-width: 769px) {
  body.tp-subpage .tp-contact .tp-section-title::after {
    width: 3.6rem;
    height: 3.6rem;
  }
}
@media (max-width: 768px) {
  body.tp-subpage .tp-contact .tp-section-title::after {
    width: 2.2rem;
    height: 2.2rem;
    top: -1.2rem;
  }
}

.tp-footer {
  background: transparent;
  color: var(--text);
  border-top: none;
}

.tp-footer__main {
  background: var(--white);
}

.tp-footer__main .tp-footer__inner {
  box-sizing: border-box;
  width: min(100% - 4rem, 1080px);
  max-width: 1080px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 2.4rem 4rem;
  align-items: end;
  padding: 3.6rem 0 2.8rem;
}

.tp-footer:not(:has(.tp-footer__main)) {
  background: var(--white);
}

.tp-footer:not(:has(.tp-footer__main)) > .tp-container.tp-footer__inner {
  box-sizing: border-box;
  width: min(100% - 4rem, 1080px);
  max-width: 1080px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 3.2rem;
  align-items: end;
  padding: 3.6rem 0 2.8rem;
}

.tp-footer:not(:has(.tp-footer__main)) .tp-footer__insta {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.tp-footer:not(:has(.tp-footer__main)) .tp-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(12rem, auto));
  gap: 0.85rem 3.2rem;
}

.tp-footer:not(:has(.tp-footer__main)) .tp-footer__nav a {
  
  font-size: 1.4rem;
  color: #4a4a4a;
  text-decoration: none;
}

.tp-footer:not(:has(.tp-footer__main)) .tp-footer__nav a:hover {
  color: var(--accent);
}

.tp-footer__brand {
  justify-self: start;
  min-width: 0;
}

.tp-footer__logo {
  display: inline-block;
  line-height: 0;
}

.tp-footer__logo img {
  width: auto;
  height: auto;
  max-width: 18rem;
}

.tp-footer__address {
  font-style: normal;
  line-height: 1.85;
  color: #333;
}

.tp-footer__addr-line {
  margin: 0;
}

.tp-footer__addr-line + .tp-footer__addr-line {
  margin-top: 0.35rem;
}

.tp-footer__address a {
  color: inherit;
  text-decoration: none;
}

.tp-footer__address a:hover {
  text-decoration: underline;
}

.tp-footer__social {
  justify-self: center;
}

.tp-footer__insta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 0.9rem 2.6rem;
  border: 1px solid var(--accent-dark);
  border-radius: 8px;
  background: var(--white);
  color: #333;
  text-decoration: none;
  
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.tp-footer__insta-btn:hover {
  background: var(--accent-soft);
}

.tp-footer__insta-btn img {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}

.tp-footer__nav-wrap {
  justify-self: end;
}

.tp-footer__nav-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.85rem 4.8rem;
}

.tp-footer__nav-col {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tp-footer__nav-col a {
  
  font-size: 1.4rem;
  color: #4a4a4a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  line-height: 1.4;
}

.tp-footer__nav-col a:hover {
  color: var(--accent);
}

.tp-footer__bottom {
  background: var(--accent);
  color: #fff;
  border-top: none;
}

.tp-footer__copy {
  margin: 0 auto;
  padding: 1.2rem 1.6rem 1.4rem;
  text-align: center;
  
  font-size: 1.2rem;
  color: #fff;
}
.tp-footer__copy p {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .tp-footer__main .tp-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 3.2rem;
    padding: 4.8rem 0 3.6rem;
    width: min(100% - 3.2rem, 1080px);
  }
  .tp-footer__brand {
    justify-self: center;
  }
  .tp-footer__social {
    align-self: center;
  }
  .tp-footer__nav-wrap {
    justify-self: center;
  }
  .tp-footer__nav-grid {
    justify-content: center;
    text-align: left;
  }
  .tp-footer__nav-col a {
    justify-content: center;
  }
  .tp-footer:not(:has(.tp-footer__main)) > .tp-container.tp-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 3.2rem;
    width: min(100% - 3.2rem, 1080px);
  }
  .tp-footer:not(:has(.tp-footer__main)) .tp-footer__nav {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .tp-header__top-right {
    gap: 1.2rem;
  }
  .tp-header__tel {
    display: none;
  }
  .tp-service__cards,
  .tp-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .tp-container,
  .tp-about__inner {
    width: min(100% - 3.2rem, 52rem);
  }
  .tp-label {
    font-size: 1.8rem;
    gap: 0.8rem;
  }
  .tp-section-title {
    font-size: 2.2rem;
  }
  .tp-section-title::before {
    width: 2.4rem;
    height: 2.4rem;
  }
  .tp-section-header {
    gap: 0.8rem;
  }
  body:not(.tp-subpage) main .tp-section-header {
    gap: 0.85rem;
    margin-bottom: clamp(2.4rem, 6vw, 3.6rem);
  }
  body:not(.tp-subpage) main .tp-section-header .tp-label {
    font-size: 1.6rem;
    font-weight: 400;
    gap: 0.65rem;
  }
  body:not(.tp-subpage) main .tp-section-title {
    font-size: 2.2rem;
    line-height: 1.5;
  }
  body:not(.tp-subpage) main .tp-section-title::before {
    content: none;
    display: none;
  }
  body:not(.tp-subpage) main .tp-section-title::after {
    width: 3.2rem;
    height: 3.2rem;
    top: -0.45em;
  }
  .tp-page-title,
  .tp-section-heading {
    font-size: 3rem;
    line-height: 1.6;
  }
  .tp-page-section__title,
  .tp-about__lead {
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .tp-side-tab {
    display: none;
  }
  .tp-header__top-inner {
    min-height: 4.8rem;
    width: 100%;
    max-width: none;
    padding: 0;
    justify-content: flex-start;
    margin-inline: 0;
    margin-top: -1px;
  }
  .tp-header__logo {
    padding-left: 15px;
    padding-top: 8px;
  }
  .tp-header__logo img {
    width: 13.5rem;
  }
  .tp-header__top-right {
    display: none;
  }
  .tp-header__sp-btns {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
    margin-right: 0;
  }
  .tp-header__tel-sp {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 5.4rem;
    height: 5.4rem;
    padding: 0;
    border-radius: 0;
    background: #ffffff;
    color: #E8575F;
    text-decoration: none;
  }
  .tp-header__tel-sp svg {
    width: 1.6rem;
  }
  .tp-header__tel-sp span {
    font-size: 1.4rem;
    line-height: 1;
  }
  .nav-toggle {
    padding: 0;
    gap: 0.2rem;
    border-radius: 0;
    border-color: #E8575F;
    background: #E8575F;
    color: #ffffff;
  }
  .nav-toggle__icon {
    display: inline-flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .nav-toggle__bar {
    width: 1.8rem;
    background: #ffffff;
  }
  .nav-toggle__label {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: -2px;
  }
  .tp-header__bottom {
    height: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    border: none;
  }
  .tp-hero {
    padding: 2.4rem 0 4.6rem;
    background: var(--bg);
  }
  .tp-hero::before {
    display: none;
  }
  .tp-hero__card {
    gap: 0;
  }
  .tp-hero__media {
    width: min(100% - 4.2rem, 48rem);
    height: auto;
    aspect-ratio: 0.88/1;
    margin-inline: auto;
    border-radius: 2rem;
  }
  .tp-hero__media img {
    object-position: 52% 28%;
  }
  .tp-hero__body {
    width: min(100% - 4.2rem, 44rem);
    margin-inline: auto;
    margin-top: -2.2rem;
    padding: 0 0 0 0.8rem;
    max-width: none;
  }
  .tp-hero__title {
    font-size: 2.2rem;
    line-height: 1.45;
    margin-bottom: 2rem;
    max-width: none;
  }
  .tp-hero__title span {
    background: var(--white);
    border: 0;
    padding: 0.5rem 0.8rem 0.4rem;
    border-radius: 0;
    display: inline-block;
    white-space: nowrap;
  }
  .tp-hero__title br {
    display: none;
  }
  .tp-hero__title br + span {
    margin-top: 0;
  }
  .tp-hero__desc {
    font-size: 1.7rem;
    line-height: 2.05;
    max-width: 48rem;
  }
  .tp-hero__desc br {
    display: none;
  }
  .tp-hero__desc-mark {
    background: none;
    padding-inline: 0;
    display: block;
  }
  .tp-hero__desc-mark-last {
    background: linear-gradient(transparent 62%, #fff2a8 62%);
    padding-inline: 0.2em;
    display: inline-block;
    margin-top: 0.2rem;
  }
  .tp-hero__desc-lead {
    display: block;
    margin-bottom: 0.8rem;
  }
  .tp-hero__desc-br-sp {
    display: none;
  }
  .tp-hero__card::after {
    display: none;
  }
  .tp-about,
  .tp-service,
  .tp-guide,
  .tp-news,
  .tp-recruit,
  .tp-contact {
    padding: 7.2rem 0;
  }
  .tp-about__inner,
  .tp-guide__block,
  .tp-recruit__inner,
  .tp-contact__inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .tp-recruit .tp-recruit__inner {
    gap: 0;
    min-height: 0;
  }
  .tp-recruit .tp-recruit__img {
    aspect-ratio: 4/3;
  }
  .tp-recruit .tp-recruit__img img {
    min-height: 0;
    height: 100%;
  }
  .tp-recruit .tp-recruit__box {
    justify-content: flex-start;
    padding: 3.2rem 2.4rem 3.6rem;
    gap: 2rem;
  }
  .tp-recruit .tp-recruit__btn.tp-btn {
    align-self: stretch;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin-top: auto;
    padding-top: 0.4rem;
  }
  .tp-service__cards,
  .tp-news__grid {
    grid-template-columns: 1fr;
  }
  .tp-news__list {
    max-width: 100%;
  }
  .tp-news__item {
    display: block;
  }
  .tp-news__item + .tp-news__item {
    margin-top: 1.6rem;
  }
  .tp-news__date {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
  }
  .tp-news__link {
    display: -webkit-box;
    font-size: 16px;
    line-height: 1.6;
    white-space: normal;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .tp-instagram-feed {
    margin-top: 40px;
  }
  .tp-about__text,
  .tp-service__card-body p,
  .tp-guide__body p {
    max-width: none;
  }
  .tp-recruit__box,
  .tp-contact__info {
    padding: 2.8rem 2.4rem;
  }
  .tp-contact__tel-num {
    font-size: 3rem;
  }
  .tp-contact__dl-row {
    grid-template-columns: 7rem 1fr;
  }
  .tp-contact:not(.tp-contact--subpage) > .tp-container {
    width: min(100% - 3.2rem, 1080px);
  }
  .tp-contact:not(.tp-contact--subpage) .tp-contact__inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .tp-contact:not(.tp-contact--subpage) .tp-contact__map {
    order: -1;
  }
  .tp-contact:not(.tp-contact--subpage) .tp-contact__info {
    padding: 0;
  }
  .tp-contact:not(.tp-contact--subpage) .tp-contact__info .tp-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/***** Utility *****/
/*# sourceMappingURL=style.css.map */

/* ===== Recruit phone panel ===== */
.tp-phone-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.2rem 2.4rem;
  text-align: center;
}
.tp-phone-panel__label {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}
.tp-phone-panel__num {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 5.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}
.tp-phone-panel__num:hover { opacity: 0.85; }
@media (max-width: 768px) {
  .tp-phone-panel__num { font-size: 3.6rem; }
}

/* ===== Article (news detail) ===== */
.tp-article-layout {
  display: grid;
  gap: 4rem;
}
@media (min-width: 900px) {
  .tp-article-layout {
    grid-template-columns: minmax(0, 1fr) 28rem;
    align-items: start;
  }
}
.tp-article__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.tp-article__body {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--text);
}
.tp-article__body p + p { margin-top: 1.6rem; }
.tp-aside-banner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.tp-aside-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.tp-aside-banner__body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.tp-aside-banner__body p {
  font-size: 1.5rem;
  font-weight: 700;
}

/***** News / Archive / Single *****/
/* ===== News list page ===== */
.tp-news-list-page {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 2px solid var(--accent);
}
.tp-news-row {
  display: grid;
  grid-template-columns: 7.2rem 9.6rem 1fr 2rem;
  gap: 1.2rem;
  align-items: center;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
}
.tp-news-row__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 8px;
  white-space: nowrap;
}
.tp-news-row__date {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  color: #888;
  white-space: nowrap;
}
.tp-news-row__title {
  font-size: 1.6rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tp-news-row__title:hover { color: var(--accent); text-decoration: underline; }
.tp-news-row__arrow {
  color: var(--accent);
  font-size: 1.8rem;
  text-align: right;
}
@media (max-width: 768px) {
  .tp-news-row {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
  }
  .tp-news-row__title {
    grid-column: 1 / -1;
    white-space: normal;
  }
  .tp-news-row__arrow { display: none; }
}

/* ===== Monozukuri / page extras ===== */
.tp-page-media--portrait { aspect-ratio: 4/3; }
.tp-page-media--mv {
  aspect-ratio: 16/8;
  border-radius: var(--radius-lg);
  margin-bottom: 2.4rem;
}
.tp-icon-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.tp-icon-heading img { width: 2rem; height: 2rem; }
.tp-divider-copy {
  text-align: center;
  /* NOTE: 下部余白は後段の同一セレクタで上書きされるため、現状維持のため統合は保留。 */
  margin: 2.4rem 0 2rem;
}
.tp-divider-copy small {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* ===== Monozukuri: activity / functional training ===== */
.tp-mono-feature {
  padding-top: 1.4rem;
  padding-bottom: 3.4rem;
}
body.tp-subpage .tp-mono-feature .tp-container {
  width: 100%;
  max-width: 960px;
  padding-inline: 2rem;
  box-sizing: border-box;
}
.tp-mono-feature__grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: clamp(2.4rem, 3vw, 4rem);
  align-items: center;
}
.tp-mono-feature__media {
  margin: 0;
  aspect-ratio: 40 / 47;
  border-radius: 2rem;
  overflow: hidden;
}
.tp-mono-feature__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tp-mono-feature__content {
  color: var(--text);
}
.tp-mono-feature__block {
  display: block;
}
.tp-mono-feature__block + .tp-mono-feature__block {
  border-top: 1px dashed rgba(232, 87, 95, 0.42);
  padding-top: 2.8rem;
  margin-top: 2.8rem;
}
.tp-mono-feature__eyebrow {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #c86d72;
}
.tp-mono-feature__title {
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  line-height: 1.35;
  font-weight: 700;
  color: #2f2522;
  margin: 0;
}
.tp-mono-feature__text {
  margin-top: 1.6rem;
  line-height: 1.95;
  text-align: justify;
  color: var(--text);
}
.tp-mono-gallery-head .tp-mono-feature__title {
  margin-bottom: 1.4rem;
}
.tp-mono-gallery-head p {
  margin-top: 0;
}

@media (max-width: 900px) {
  .tp-mono-feature__grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .tp-mono-feature__media {
    aspect-ratio: 4 / 3;
    order: 1;
  }
  .tp-mono-feature__content {
    order: 2;
  }
  .tp-mono-feature__block {
    display: block;
  }
  .tp-mono-feature__block + .tp-mono-feature__block {
    margin-top: 2.2rem;
    padding-top: 2.2rem;
  }
}

@media (max-width: 768px) {
  .tp-mono-feature {
    padding-top: 0.8rem;
    padding-bottom: 2.8rem;
  }
  body.tp-subpage .tp-mono-feature .tp-container {
    padding-inline: 1.6rem;
  }
  .tp-mono-feature__media {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 1.4rem;
  }
  .tp-mono-feature__eyebrow {
    font-size: 1.15rem;
  }
  .tp-mono-feature__text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

/* ===== Thumb grid / Note list ===== */
.tp-gallery-base-grid {
  display: grid;
  gap: var(--tp-gallery-grid-gap, 2.4rem);
  grid-template-columns: var(--tp-gallery-grid-columns, 1fr);
}
.tp-thumb-grid {
  --tp-gallery-grid-gap: 2.4rem;
  --tp-gallery-grid-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .tp-thumb-grid { --tp-gallery-grid-columns: 1fr; }
}
.tp-note-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.4rem;
}
.tp-note-list li {
  font-size: 1.4rem;
  color: #666;
  padding-left: 1.2em;
  position: relative;
}
.tp-note-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #666;
}

/* ===== Contact CTA (contact page) ===== */
body.tp-contact-page .tp-contact-cta {
  padding: 4.8rem 0 5.6rem;
}
body.tp-contact-page .tp-contact-cta__head {
  margin: 0 auto 2.4rem;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}
body.tp-contact-page .tp-contact-cta__bg {
  width: 100%;
  background: #f5ede5 url("../../images/contact-bg.png") center center / cover no-repeat;
}
body.tp-contact-page .tp-contact-cta__bg .tp-container {
  padding: 6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
body.tp-contact-page .tp-contact-cta__panel {
  width: min(100%, 718px);
  margin: 0 auto;
  background: #fff;
  border-radius: 1.6rem;
  padding: 4.2rem 4rem 3.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 30px rgba(47, 33, 22, 0.08);
}
body.tp-contact-page .tp-contact-cta__panel > * {
  margin-left: auto;
  margin-right: auto;
}
body.tp-contact-page .tp-contact-cta__title {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.45;
  color: #3a2d24;
  font-family: "Zen Maru Gothic", sans-serif;
}
body.tp-contact-page .tp-contact-cta__lead {
  margin: 2.4rem 0 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--accent);
  font-weight: 700;
}
body.tp-contact-page .tp-contact-cta__lead::before,
body.tp-contact-page .tp-contact-cta__lead::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  transform: rotate(120deg);
}
body.tp-contact-page .tp-contact-cta__lead::before {
  transform: rotate(60deg);
}
body.tp-contact-page .tp-contact-cta__number {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body.tp-contact-page .tp-contact-cta__icon {
  width: 2.8rem;
  height: 2.8rem;
  line-height: 0;
}
body.tp-contact-page .tp-contact-cta__icon img {
  width: 100%;
  height: 100%;
  display: block;
}
body.tp-contact-page .tp-contact-cta__number a {
  text-decoration: none;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(3.2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--accent);
}
body.tp-contact-page .tp-contact-cta__hours {
  margin: 1.2rem 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #5c4f46;
}
body.tp-contact-page .tp-contact-cta__btn-wrap {
  margin: 2rem 0 0;
}
body.tp-contact-page .tp-contact-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 33rem;
  min-height: 5.4rem;
  padding: 1.2rem 2.6rem;
  border-radius: 999px;
  background: #e45757;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
body.tp-contact-page .tp-contact-cta__fax {
  margin-top: 2.4rem;
}
body.tp-contact-page .tp-contact-cta__fax-title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #4e433b;
}
body.tp-contact-page .tp-contact-cta__fax-number {
  margin: 0.8rem 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(3.2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2C7D60;
}
body.tp-contact-page .tp-contact-cta__fax-number .tp-contact-cta__icon {
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
}
body.tp-contact-page .tp-contact-cta__fax-note {
  margin: 1rem 0 0;
  line-height: 1.6;
  color: #5c4f46;
}
@media (max-width: 768px) {
  body.tp-contact-page .tp-contact-cta {
    padding: 3.2rem 0 4rem;
  }
  body.tp-contact-page .tp-contact-cta__panel {
    border-radius: 1.2rem;
    padding: 2.8rem 2rem 2.6rem;
  }
  body.tp-contact-page .tp-contact-cta__bg .tp-container {
    padding: 6rem 0;
  }
  body.tp-contact-page .tp-contact-cta__title {
    font-size: 2.2rem;
  }
  body.tp-contact-page .tp-contact-cta__lead {
    margin-top: 1.8rem;
    margin-bottom: 1.4rem;
    font-size: 1.65rem;
    gap: 0.9rem;
  }
  body.tp-contact-page .tp-contact-cta__lead::before,
  body.tp-contact-page .tp-contact-cta__lead::after {
    width: 1.8rem;
  }
  body.tp-contact-page .tp-contact-cta__icon {
    width: 2.2rem;
    height: 2.2rem;
  }
  body.tp-contact-page .tp-contact-cta__number a {
    font-size: clamp(2.6rem, 9vw, 3.2rem);
  }
  body.tp-contact-page .tp-contact-cta__hours {
    font-size: 1.3rem;
  }
  body.tp-contact-page .tp-contact-cta__btn {
    width: 100%;
    min-width: 0;
    font-size: 1.8rem;
    min-height: 5rem;
  }
  body.tp-contact-page .tp-contact-cta__fax {
    margin-top: 2rem;
  }
  body.tp-contact-page .tp-contact-cta__fax-number {
    gap: 0.8rem;
    font-size: clamp(2.6rem, 9vw, 3.2rem);
  }
  body.tp-contact-page .tp-contact-cta__fax-number .tp-contact-cta__icon {
    width: 2.2rem;
    height: 2.2rem;
  }
}

.tp-gallery-base-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: var(--tp-gallery-card-gap, 0);
}

/***** Lower Pages *****/
/* ===== Subpage Common Layout ===== */

/* Subpage background */
body.tp-subpage {
  background-color: #FFFFF8;
}

/* Page hero */
.tp-page-hero {
  background-image: url('../../images/bg-title.png');
  background-repeat: repeat;
  background-color: var(--accent-soft);
  height: 241px;
  position: relative;
}
.tp-page-hero .tp-container {
  position: static;
}
.tp-page-hero .tp-page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 3.8rem;
  padding: 0 2rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .tp-page-hero {
    height: 160px;
  }
  .tp-page-hero .tp-page-title {
    font-size: 2.8rem;
  }
}

/* Breadcrumb */
.tp-breadcrumb {
  padding: 0.8rem 0;
}
.tp-breadcrumb ol {
  display: flex;
  gap: 0.6rem;
  list-style: none;
  padding: 0.8rem 0rem;
  flex-wrap: wrap;
  font-size: 1.4rem;
  color: #6b6b6b;
  margin: 0 auto;
  max-width: 1280px;
  width: min(1280px, 100% - 4rem);
  box-sizing: border-box;
}
.tp-breadcrumb li + li::before {
  content: "›";
  margin-right: 0.6rem;
  color: #999;
}
.tp-breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.tp-breadcrumb a:hover { color: var(--accent); }
.tp-breadcrumb__home-icon {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  vertical-align: middle;
  margin-bottom: 0.15em;
}

/* ===== Concept page ===== */

/* Intro: full-width heading + 2-col body */
.tp-concept-intro__title {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 700;
  
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1.2rem;
  margin: 0 0 3.2rem;
  line-height: 1.5;
}
.tp-concept-intro__inner {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 4rem;
  align-items: start;
  font-family: "Zen Maru Gothic", sans-serif;
}
.tp-concept-intro__label {
  display: inline-block;
  border: 1px solid var(--accent);;
  font-size: 1.2rem;
  padding: 0.2rem 0.8rem;
  margin-bottom: 1.6rem;
  border-radius: 2px;
  color: var(--accent);
}
.tp-concept-intro__subtitle {
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
  
  margin: 2.4rem 0 0.6rem;
  line-height: 1.4;
}
.tp-concept-intro__body > .tp-concept-intro__subtitle:first-of-type {
  margin-top: 0;
}
.tp-concept-intro__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
  line-height: 1.9;
}
.tp-concept-intro__list li::before {
  content: "・";
}
.tp-concept-intro__box {
  border: 1px solid #bbb;
  padding: 1.2rem 1.6rem;
  margin: 1.2rem 0 1.6rem;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.8;
}
.tp-concept-intro__box-title {
  font-size: 1.3rem;
  margin: 0 0 0.8rem;
  color: var(--accent);
}
.tp-concept-intro__box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 1.2rem;
}
.tp-concept-intro__box-grid p,
.tp-concept-intro__box > p {
  margin: 0;
}
.tp-concept-intro__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Policy section */
.tp-concept-policy-section {
  background: #FFFFF8;
}
.tp-concept-policy__header {
  position: relative;
  text-align: center;
  margin-bottom: 3.6rem;
}

.tp-concept-policy__title {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.2rem;
  line-height: 1.5;
}
.tp-concept-policy__title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  background: var(--accent);
  margin: 1.2rem auto 0;
}
.tp-concept-policy__deco {
  display: none;
}
.tp-concept-policy__box {
  border: 2px solid var(--accent);
  border-radius: 4px;
  padding: 4rem 5.6rem;
  text-align: center;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  background-color: var(--white);
}
.tp-concept-policy__label {
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.6rem;
}
.tp-concept-policy__creed {
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 2;
  margin: 0 0 3.2rem;
  color: var(--text);
}
.tp-concept-policy__sublabel {
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.6rem;
}
.tp-concept-policy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.9;
}
.tp-concept-policy__list li::before {
  content: "・";
}

/* Company overview heading */
.tp-concept-summary__title {
  font-size: 1.6rem;
  font-weight: 700;
  border-left: 4px solid var(--accent);
  margin: 0 0 2.8rem;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--white);
  padding: 1.2rem 1.6rem;
}

/* Overview table */
.tp-table--overview {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
}
.tp-table--overview th,
.tp-table--overview td {
  padding: 2rem 2.4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.8;
  text-align: left;
}
.tp-table--overview th {
  width: 18rem;
  font-weight: 400;
  white-space: nowrap;
  color: var(--text);
}
.tp-table--overview td {
  color: var(--text);
}

/* SP */
@media (max-width: 768px) {
  .tp-concept-intro__inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .tp-concept-intro__subtitle {
    font-size: 1.8rem;
  }
  .tp-concept-intro__box-grid {
    grid-template-columns: 1fr;
  }
  .tp-concept-policy__header::after {
    width: 5rem;
    height: 4.4rem;
    top: -0.5rem;
  }
  .tp-concept-policy__box {
    padding: 2.4rem 2rem;
  }
  .tp-concept-policy__creed {
    font-size: 1.6rem;
  }
  .tp-table--overview th {
    width: 9rem;
    white-space: normal;
    padding: 1.2rem 1.2rem;
  }
  .tp-table--overview td {
    padding: 1.2rem 1.2rem;
  }
}

/* Page section */
.tp-page-section {
  padding: 3.6rem 0;
}
body.tp-subpage .tp-page-section .tp-container {
  width: min(1080px, 100% - 4rem);
  max-width: 1080px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  body.tp-subpage .tp-page-section .tp-container {
    width: min(1080px, 100% - 3.2rem);
  }
}

.tp-page-section--compact {
  padding: 0rem 0 4rem;
}

/* Page grid */
.tp-page-grid {
  display: grid;
  gap: 3.2rem;
}
@media (min-width: 769px) {
  .tp-page-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .tp-page-grid--middle { align-items: center; }
  .tp-page-grid--wide { grid-template-columns: 3fr 2fr; }
}

/* Page media */
.tp-page-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.tp-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tp-page-media--wide { aspect-ratio: 6/4; }

/* Page copy */
.tp-page-copy {
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--text);
}
.tp-page-copy p + p { margin-top: 1.2rem; }

/* Shared subpage block title */
.tp-page-block-title {
  display: block;
  width: var(--tp-page-block-title-width, auto);
  margin: var(--tp-page-block-title-margin, 0);
  padding-bottom: var(--tp-page-block-title-padding-bottom, 0);
  text-align: var(--tp-page-block-title-align, left);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  border-bottom: 2px solid var(--accent);
}

/* Day-service intro section */
body.tp-subpage .tp-day-intro .tp-container {
  width: min(1080px, 100% - 4rem);
  max-width: 1080px;
  margin-inline: auto;
}
.tp-day-intro .tp-page-block-title {
  --tp-page-block-title-padding-bottom: 1.2rem;
  --tp-page-block-title-margin: 0 0 3.2rem;
}
.tp-day-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.4rem;
  align-items: start;
}
.nursing-home-intro__body {
  font-size: 1.6rem;
  line-height: 2;
}
.nursing-home-intro__body p {
  margin: 0;
}
@media (min-width: 769px) {
  .tp-day-intro__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 4.8rem;
    align-items: center;
  }
  .nursing-home-intro__grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 0.9fr);
    gap: 4rem;
  }
}
.tp-day-intro .tp-page-media {
  margin: 0;
}
.tp-day-intro .tp-page-media--wide {
  aspect-ratio: 4 / 4;
}
.nursing-home-intro__media {
  aspect-ratio: 6 / 4.7;
}
.tp-day-intro__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.tp-day-intro__admission {
  display: grid;
  gap: 2.4rem;
}
.tp-day-intro__admission-title {
  margin: 0;
  padding-left: 1.4rem;
  border-left: 4px solid var(--accent);
  color: var(--accent);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.tp-day-intro__admission-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}
.tp-day-intro__admission-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.tp-day-intro__admission-num {
  flex: 0 0 2.8rem;
  color: var(--accent);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
}
.tp-day-intro__admission-text {
  display: block;
  font-size: 1.7rem;
  line-height: 1.85;
}
.tp-day-intro__admission-note {
  margin: -0.4rem 0 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #2f2a25;
}
.tp-day-intro__acceptance {
  border: 2px solid #e16878;
  border-radius: 1.4rem;
  background: #fff;
  padding: 2.4rem 2.8rem 2rem;
}
.tp-day-intro__acceptance-title {
  margin: 0 0 1.4rem;
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.tp-day-intro__acceptance-text {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 2;
}
.tp-day-intro__acceptance-note {
  margin: 1.4rem 0 0;
  line-height: 1.8;
  text-align: center;
}

.tp-day-intro .tp-spacer-top {
  margin-top: 2.4rem;
}

.tp-day-intro__schedule-title {
  margin: 0;
  padding: 1.4rem 1.8rem;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.6;
}
.tp-day-intro__schedule-list {
  margin: 0;
  border-top: 1px solid var(--border);
}
.tp-day-intro__schedule-row {
  display: grid;
  grid-template-columns: 22% 1fr;
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tp-day-intro__schedule-term,
.tp-day-intro__schedule-desc {
  margin: 0;
  padding: 1.4rem 1.8rem;
}
.tp-day-intro__schedule-term {
  background: #EAF1FF;
  font-weight: 400;
}
.tp-day-intro__schedule-desc {
  background: #fff;
  border-right: 1px solid var(--border);
}

/* Spacer */
.tp-spacer-top { margin-top: 2rem; }

/* Center button */
.tp-center-button {
  text-align: center;
  margin-top: 3.6rem;
}

/* Card outline */
.tp-card-outline {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem;
  text-align: center;
}

/* Copy title */
.tp-copy-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.2rem;
  display: block;
}

/* Copy label */
.tp-copy-label {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 1rem;
  display: block;
}

/* Divider copy */
.tp-divider-copy {
  text-align: center;
  /* NOTE: 順序依存のため保留（前段 .tp-divider-copy を意図的に上書き） */
  margin-bottom: 2.8rem;
}

@media (min-width: 768px) {
  .tp-page-copy {
    font-size: 2.2rem;
  }
}

/* Table */
.tp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
  background-color: #fff;
}
.tp-table th,
.tp-table td {
  padding: 1.2rem 1.6rem;
  border: 1px solid #d9d9d9;
  text-align: left;
  vertical-align: top;
}
.tp-table th {
  background: #f5f5f5;
  font-weight: 400;
  width: 10%;
  white-space: nowrap;
}
.tp-table thead th {
  background: #eaf1ff;
}
.tp-table tbody td {
  background: #ffffff;
}
.tp-table--recruit th,
.tp-table--recruit td {
  border-color: #d9d9d9;
  padding: 10px;
}

/* Availability first section */
body.tp-subpage .availability-status .availability-status__head {
  margin-bottom: 2.8rem;
}
body.tp-subpage .availability-status .tp-page-block-title {
  --tp-page-block-title-width: 100%;
  --tp-page-block-title-margin: 0;
  --tp-page-block-title-padding-bottom: 1.8rem;
}
body.tp-subpage .availability-status .availability-status__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 3.2rem;
  align-items: start;
}
body.tp-subpage .availability-status .availability-status__media {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
body.tp-subpage .availability-status .availability-status__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.tp-subpage .availability-status .availability-status__panel {
  display: grid;
  gap: 1.4rem;
}
body.tp-subpage .availability-status .availability-status__lead {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
}
body.tp-subpage .availability-status .availability-status__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d6cab8;
  background: #fffdf8;
}
body.tp-subpage .availability-status .availability-status__table th,
body.tp-subpage .availability-status .availability-status__table td {
  border: 1px solid #d6cab8;
  padding: 1rem 1.3rem;
  font-size: 1.45rem;
  line-height: 1.65;
  vertical-align: middle;
}
body.tp-subpage .availability-status .availability-status__table .availability-status__date {
  background: #f7efe1;
  text-align: left;
  font-weight: 700;
}
body.tp-subpage .availability-status .availability-status__table th[scope="row"] {
  width: 28%;
  background: #f6f0e5;
  font-weight: 400;
  white-space: nowrap;
}
body.tp-subpage .availability-status .availability-status__table td {
  background: #fff;
}
body.tp-subpage .availability-status .availability-status__vacancy {
  color: var(--accent);
  font-weight: 700;
}
body.tp-subpage .availability-status .availability-status__note {
  margin: -0.3rem 0 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #6d6258;
  text-align: right;
}
body.tp-subpage .availability-status .availability-status__cta {
  margin-top: 0.2rem;
  text-align: center;
}
body.tp-subpage .availability-status .availability-status__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.2rem;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.03em;
}
body.tp-subpage .availability-status .availability-status__tel:hover {
  opacity: 0.82;
}

/* Admission detail section */
body.tp-subpage .tp-admission-detail {
  padding: 6.4rem 0 7.2rem;
}
body.tp-subpage .tp-admission-detail .tp-container {
  max-width: 1080px;
  margin-inline: auto;
}
body.tp-subpage .tp-admission-detail .tp-admission-detail__head {
  margin-bottom: 2.8rem;
}
body.tp-subpage .tp-admission-detail .tp-admission-detail__title {
  width: 100%;
  margin: 0;
  padding-bottom: 1.8rem;
  text-align: left;
  color: var(--text);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 2px solid var(--accent);
}
body.tp-subpage .tp-admission-detail .tp-admission-detail__panel {
  border: 1px solid #d8cfc3;
  border-radius: 1.4rem;
  background: #fff;
  padding: 5.6rem;
}
body.tp-subpage .tp-admission-detail .tp-admission-eligible__title,
body.tp-subpage .tp-admission-detail .tp-admission-flow__title {
  margin: 0 0 2.4rem;
  padding-left: 1.4rem;
  border-left: 4px solid var(--accent);
  color: var(--accent);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
body.tp-subpage .tp-admission-detail .tp-admission-eligible__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 4.8rem;
  align-items: start;
  align-items: center;
}
body.tp-subpage .tp-admission-detail .tp-admission-eligible__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.tp-subpage .tp-admission-detail .tp-admission-eligible__item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
body.tp-subpage .tp-admission-detail .tp-admission-eligible__item + .tp-admission-eligible__item {
  margin-top: 1.3rem;
}
body.tp-subpage .tp-admission-detail .tp-admission-eligible__num {
  flex: 0 0 2.8rem;
  color: var(--accent);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
}
body.tp-subpage .tp-admission-detail .tp-admission-eligible__text {
  display: block;
  font-size: 1.7rem;
  line-height: 1.85;
}
body.tp-subpage .tp-admission-detail .tp-admission-eligible__note {
  margin: 2rem 0 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #2f2a25;
}
body.tp-subpage .tp-admission-detail .tp-admission-eligible__image {
  margin: 0;
}
body.tp-subpage .tp-admission-detail .tp-admission-eligible__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.4rem;
}
body.tp-subpage .tp-admission-detail .tp-admission-flow {
  margin-top: 6.4rem;
}
body.tp-subpage .tp-admission-detail .tp-admission-flow__list {
  display: grid;
  gap: 2.8rem;
}
body.tp-subpage .tp-admission-detail .tp-admission-flow__item {
  display: grid;
  grid-template-columns: 27rem minmax(0, 1fr);
  gap: 3.2rem;
  align-items: start;
}
body.tp-subpage .tp-admission-detail .tp-admission-flow__image {
  margin: 0;
}
body.tp-subpage .tp-admission-detail .tp-admission-flow__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.2rem;
}
body.tp-subpage .tp-admission-detail .tp-admission-flow__body {
  min-width: 0;
}
body.tp-subpage .tp-admission-detail .tp-admission-flow__step {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 1rem;
  border: 1.5px solid #5f7fcd;
  border-radius: 0.6rem;
  color: #5f7fcd;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
body.tp-subpage .tp-admission-detail .tp-admission-flow__heading {
  margin: 0 0 0.8rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text);
}
body.tp-subpage .tp-admission-detail .tp-admission-flow__text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #2d2925;
}

/* Btn outline */
.tp-btn--outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.tp-btn--outline:hover {
  background: var(--accent);
  color: #fff;
  opacity: 1;
}

/* Section highlight */
.tp-section-highlight {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 1.6rem 2rem;
  border-radius: 0 0.8rem 0.8rem 0;
  margin-bottom: 0.8rem;
}
.tp-section-highlight p {
  font-size: 1.6rem;
  line-height: 1.8;
  max-width: 60ch;
}

/* Condition list */
.tp-condition-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  margin: 0;
}
.tp-condition-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.65;
  padding: 0.8rem 1.2rem;
  background: var(--white);
  border-radius: 0.6rem;
}
.tp-condition-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ===== Flow / Step Layout ===== */
.tp-flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.tp-step {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  gap: 2.8rem;
  padding: 2.8rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.tp-step:first-child { border-top: 1px solid var(--border); }
.tp-step__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.tp-step__label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  border-radius: 0.6rem;
  padding: 0.4rem 2rem;
  line-height: 1.2;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  width: 100%;
  text-align: center;
}
.tp-step__label strong {
  font-size: 2.4rem;
  display: block;
  line-height: 1;
  margin-top: 0.2rem;
}
.tp-step__media {
  margin: 0;
  border-radius: 0.8rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
}
.tp-step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tp-step__body { padding-top: 0; }
.tp-step__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.4;
}

/* ===== FAQ ===== */
body.tp-subpage .tp-faq-page .tp-faq-page__lead {
  max-width: none;
  margin: 0 0 3.2rem;
  text-align: center;
}
body.tp-subpage .tp-faq-page .tp-page-block-title {
  --tp-page-block-title-margin: 0 0 2.8rem;
  --tp-page-block-title-padding-bottom: 1.8rem;
}
.tp-faq-base {
  display: grid;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tp-faq-base__item {
  margin: 0;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 10px rgba(40, 32, 28, 0.06);
  padding: 2rem;
}
.tp-faq-base__row {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  margin: 0;
}
.tp-faq-base__row--question {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.85;
}
.tp-faq-base__row--answer {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.85;
  font-weight: 400;
}
.tp-faq-base__icon {
  flex: 0 0 4.8rem;
  width: 4.8rem;
  height: 4.8rem;
  line-height: 0;
  margin-top: 0;
}
.tp-faq-base__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.tp-faq-base__row p {
  margin: 0;
}
.tp-faq-base p {
  max-width: none;
}
.tp-faq-base__row > *:last-child {
  width: 100%;
  flex: 1;
  min-width: 0;
}
.tp-faq-base__answer {
  width: 100%;
}
.tp-faq-base__row--answer p + p {
  margin-top: 0.8rem;
}
.tp-faq-base__list {
  margin: 0 0 0.8rem 0;
  padding-left: 0;
  list-style: none;
  counter-reset: faq-number;
}
.tp-faq-base__list li {
  margin: 0;
  padding-left: 2.4rem;
  position: relative;
}
.tp-faq-base__list li::before {
  counter-increment: faq-number;
  content: counter(faq-number) "、";
  position: absolute;
  left: 0;
  top: 0;
}
.tp-faq-base__button {
  margin-top: 1.6rem;
}

/* ===== Circle / Gallery cards (used in other subpages) ===== */
.tp-circle-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr;
}
@media (max-width: 768px) {
  .tp-container:has(.recruit-charm-heading) > .tp-circle-grid {
    gap: 5.4rem;
  }
}
.tp-circle-card {
  text-align: center;
}
.tp-circle-card__media {
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  width: 25rem;
  height: 25rem;
}
.tp-circle-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tp-circle-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--accent);
}
.tp-circle-card__text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text);
}

@media (min-width: 768px) {
  .tp-circle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.tp-gallery-grid {
  --tp-gallery-grid-gap: 3rem;
  --tp-gallery-grid-columns: repeat(4, minmax(0, 1fr));
}
.tp-gallery-grid--two {
  --tp-gallery-grid-columns: repeat(2, 1fr);
}
.tp-nursing-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
}
.tp-nursing-gallery-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tp-nursing-gallery-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2.5;
  height: auto;
  object-fit: cover;
  border-radius: 0.8rem;
}
.tp-nursing-gallery-caption {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  text-align: left;
}
.tp-gallery-base__image {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: var(--tp-gallery-image-ratio, auto);
  border-radius: var(--tp-gallery-image-radius, 0);
  height: var(--tp-gallery-image-height, auto);
}
figure.tp-gallery-base-card {
  --tp-gallery-card-gap: 1rem;
  --tp-gallery-image-ratio: 3 / 2.5;
  --tp-gallery-image-radius: 0.8rem;
  --tp-gallery-caption-size: 1.6rem;
  --tp-gallery-caption-weight: 700;
  --tp-gallery-caption-line-height: 1.5;
  --tp-gallery-caption-color: #111;
  --tp-gallery-caption-align: left;
}
figcaption.tp-gallery-base__caption {
  font-size: var(--tp-gallery-caption-size, inherit);
  font-weight: var(--tp-gallery-caption-weight, inherit);
  line-height: var(--tp-gallery-caption-line-height, inherit);
  color: var(--tp-gallery-caption-color, var(--text));
  text-align: var(--tp-gallery-caption-align, inherit);
}

/* Day service flow gallery only（h3 が間に入るため ~ で後続の .tp-page-grid を対象） */
.tp-day-intro ~ .tp-page-grid > .tp-gallery-base-grid {
  --tp-gallery-grid-columns: 1fr;
  --tp-gallery-grid-gap: 3.6rem;
}

.tp-day-intro ~ .tp-page-grid > .tp-gallery-base-grid .tp-gallery-base-card {
  position: relative;
  overflow: visible;
  aspect-ratio: auto;
}

.tp-day-intro ~ .tp-page-grid > .tp-gallery-base-grid .tp-gallery-base__image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.tp-day-intro ~ .tp-page-grid > .tp-gallery-base-grid .tp-gallery-base-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 0.8rem);
  transform: translateX(-50%);
  height: 2rem;
  border-left: 3px dotted #d84a4a;
}

@media (min-width: 769px) {
  body.tp-subpage .tp-day-intro + .tp-concept-summary__title + .tp-page-grid > .tp-gallery-base-grid + .tp-table {
    table-layout: fixed;
  }

  body.tp-subpage .tp-day-intro + .tp-concept-summary__title + .tp-page-grid > .tp-gallery-base-grid + .tp-table thead th:first-child {
    width: 22%;
  }

  body.tp-subpage .tp-day-intro + .tp-concept-summary__title + .tp-page-grid > .tp-gallery-base-grid + .tp-table thead th:last-child {
    width: 78%;
  }
}


/* ===== Responsive: Subpage ===== */
@media (max-width: 768px) {
  .tp-page-section { padding: 4rem 0; }
  .tp-page-grid { gap: 2rem; }
  body.tp-subpage .tp-day-intro .tp-container {
    width: min(1080px, 100% - 3.2rem);
  }
  .tp-day-intro .tp-page-section__head {
    margin-bottom: 2.2rem;
  }
  .tp-day-intro__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .tp-day-intro .tp-page-copy {
    font-size: 1.8rem;
  }
  .tp-day-intro .tp-spacer-top {
    margin-top: 1.8rem;
  }
  .tp-day-intro__schedule-title,
  .tp-day-intro__schedule-term,
  .tp-day-intro__schedule-desc {
    padding: 1.2rem 1.4rem;
  }
  .tp-day-intro__schedule-row {
    grid-template-columns: 30% 1fr;
  }
  .tp-day-intro__admission {
    gap: 2rem;
  }
  .tp-day-intro__admission-title {
    font-size: 1.95rem;
    padding-left: 1.2rem;
    border-left-width: 3px;
  }
  .tp-day-intro__admission-list {
    gap: 1.2rem;
  }
  .tp-day-intro__admission-num {
    flex-basis: 2.4rem;
    font-size: 1.8rem;
  }
  .tp-day-intro__admission-text {
    font-size: 1.55rem;
    line-height: 1.75;
  }
  .tp-day-intro__admission-note {
    margin-top: -0.2rem;
    font-size: 1.3rem;
  }
  .tp-day-intro__acceptance {
    padding: 2rem 1.8rem 1.8rem;
    border-radius: 1.2rem;
  }
  .tp-day-intro__acceptance-title {
    font-size: 1.8rem;
  }
  .tp-day-intro__acceptance-text {
    font-size: 1.5rem;
    line-height: 1.85;
  }
  .tp-day-intro__acceptance-note {
    font-size: 1.2rem;
    text-align: left;
  }
  .tp-step {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 2rem 0;
  }
  .tp-step__head {
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
  }
  .tp-step__label { width: auto; padding: 0.4rem 1.6rem; }
  .tp-step__media { width: 12rem; flex-shrink: 0; aspect-ratio: 1/1; }
  .tp-vacancy-badge__num { font-size: 4rem; }
  .tp-vacancy-badge__unit { font-size: 2rem; }
  .tp-tel-cta { font-size: 2.2rem; max-width: none; }
  body.tp-subpage .availability-status .availability-status__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  body.tp-subpage .availability-status .availability-status__head {
    margin-bottom: 2.2rem;
  }
  body.tp-subpage .availability-status .tp-page-block-title {
    padding-bottom: 1.2rem;
    font-size: 1.95rem;
  }
  body.tp-subpage .availability-status .availability-status__lead {
    font-size: 1.5rem;
  }
  body.tp-subpage .availability-status .availability-status__table th,
  body.tp-subpage .availability-status .availability-status__table td {
    padding: 0.9rem 1.1rem;
    font-size: 1.35rem;
  }
  body.tp-subpage .availability-status .availability-status__note {
    text-align: left;
  }
  body.tp-subpage .availability-status .availability-status__tel {
    width: 100%;
    justify-content: center;
    font-size: 2.2rem;
  }
  body.tp-subpage .tp-admission-detail {
    padding: 4.8rem 0 5.6rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-detail__head {
    margin-bottom: 2.2rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-detail__title {
    padding-bottom: 1.2rem;
    font-size: 1.95rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-detail__panel {
    padding: 2.6rem 2.2rem;
    border-radius: 1.2rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-eligible__title,
  body.tp-subpage .tp-admission-detail .tp-admission-flow__title {
    font-size: 1.85rem;
    margin-bottom: 1.8rem;
    padding-left: 1rem;
    border-left-width: 3px;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-eligible__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-eligible__item + .tp-admission-eligible__item {
    margin-top: 1rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-eligible__num {
    font-size: 1.8rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-eligible__text {
    font-size: 1.55rem;
    line-height: 1.75;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-eligible__note {
    margin-top: 1.6rem;
    font-size: 1.3rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-flow {
    margin-top: 4rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-flow__list {
    gap: 2.4rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-flow__item {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-flow__step {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-flow__heading {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
  }
  body.tp-subpage .tp-admission-detail .tp-admission-flow__text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .tp-gallery-grid {
    --tp-gallery-grid-columns: repeat(2, minmax(0, 1fr));
    --tp-gallery-grid-gap: 2rem;
  }
  .tp-nursing-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
  body.tp-subpage .tp-faq-page .tp-faq-page__lead {
    text-align: left;
    margin-bottom: 2.6rem;
  }
  body.tp-subpage .tp-faq-page .tp-page-block-title {
    margin-bottom: 2.2rem;
    padding-bottom: 1.2rem;
  }
  .tp-faq-base {
    gap: 2rem;
  }
  .tp-faq-base__row {
    gap: 1.1rem;
  }
  .tp-faq-base__icon {
    width: 3.6rem;
    height: 3.6rem;
    flex-basis: 3.6rem;
  }
  .tp-faq-base__row--question {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .tp-faq-base__row--answer {
    font-size: 1.5rem;
  }
  .tp-faq-base__list li {
    padding-left: 2.1rem;
  }
  .tp-faq-base__button {
    width: 100%;
    max-width: 34rem;
  }
}

/* ===== Price page visual refresh ===== */

body.tp-price-page .price-section + .price-section {
  border-top: 0;
  padding-top: 9rem;
}
body.tp-price-page .price-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
}
body.tp-price-page .price-head .tp-page-section__title {
  color: #222;
  font-size: 2.8rem;
  line-height: 1.45;
  text-align: left;
  margin: 0;
}
body.tp-price-page .price-head__date {
  margin: 0;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.4;
  white-space: nowrap;
}
body.tp-price-page .tp-table-wrap {
  width: 100%;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
}
body.tp-price-page .tp-table--pricing {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
  background: #f5f5f5;
  color: #2f2f2f;
  line-height: 1.65;
}
body.tp-price-page .tp-table--pricing th,
body.tp-price-page .tp-table--pricing td {
  border: 1px solid #c8c8c8;
  padding: 1.1rem 1.4rem;
  background: #f3f3f3;
  color: #2f2f2f;
  vertical-align: middle;
}
body.tp-price-page .tp-table--pricing thead th {
  background: #e8e8e8;
  font-weight: 400;
  text-align: center;
}
body.tp-price-page .tp-table--facility tbody th {
  background: #EAF1FF;
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
}
body.tp-price-page .tp-table--facility tbody td {
  text-align: center;
  background: #fff;
}
body.tp-price-page .tp-note-list {
  margin-top: 1.4rem;
  gap: 0.4rem;
}
body.tp-price-page .tp-note-list li,
body.tp-price-page .tp-note-list li::before {
  color: #555;
}
body.tp-price-page .tp-note-list li {
  font-size: 1.2rem;
  line-height: 1.55;
}
body.tp-price-page .tp-center-button {
  margin-top: 3.8rem;
  margin-bottom: 1.2rem;
}
body.tp-price-page .tp-center-button .tp-btn--primary {
  background: #e45757;
  border-color: #e45757;
  color: #fff;
  border-radius: 8px;
  padding: 1.3rem 4.4rem;
  min-height: 0;
}
body.tp-price-page .tp-center-button .tp-btn--primary:hover {
  opacity: 0.8;
}
body.tp-price-page .tp-center-button .tp-btn--arrow::after {
  right: 1.8rem;
}

@media (max-width: 768px) {
  body.tp-price-page .price-section {
    padding: 5.6rem 0;
  }
  body.tp-price-page .price-section + .price-section {
    padding-top: 6.4rem;
  }
  body.tp-price-page .price-head {
    display: block;
    margin-bottom: 2.4rem;
  }
  body.tp-price-page .price-head .tp-page-section__title {
    font-size: 2.2rem;
    line-height: 1.5;
  }
  body.tp-price-page .price-head__date {
    margin-top: 0.8rem;
    text-align: right;
  }
  body.tp-price-page .tp-table--pricing {
    min-width: 720px;
    line-height: 1.6;
  }
  body.tp-price-page .tp-table-wrap {
    overflow-x: auto;
  }
  body.tp-price-page .tp-center-button .tp-btn--primary {
    padding: 1.2rem 3.6rem;
  }
}

/* ===== Price page: shared section base ===== */
body.tp-subpage .price-home {
  background: var(--bg);
}
.price-section-base__head {
  margin-bottom: 2.4rem;
}
.price-section-base__title {
  --tp-page-block-title-width: 100%;
  --tp-page-block-title-padding-bottom: 1.8rem;
  --tp-page-block-title-align: left;
}
.price-section-base__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 1.6rem;
}
.price-section-base__subtitle {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
.price-section-base__date {
  margin: 0;
  color: #2d2d2d;
  text-align: right;
  white-space: nowrap;
}
.tp-table-wrap {
  overflow-x: auto;
}
.tp-table--pricing {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #f2f2f2;
  color: #222;
  line-height: 1.75;
}
.tp-table--pricing th,
.tp-table--pricing td {
  border: 1px solid #b8b8b8;
  background: #f3f3f3;
  color: #222;
  vertical-align: middle;
  padding: var(--tp-table-cell-padding, 1.35rem 1.8rem);
}
.tp-table--pricing thead th {
  background: #e8e8e8;
  font-weight: 400;
  text-align: center;
}
.price-section-base__button {
  margin-top: 3.4rem;
  margin-bottom: 0.2rem;
  text-align: center;
}
.price-section-base__button .tp-btn--primary {
  min-width: 26rem;
  padding: 1.35rem 4.4rem;
  border-radius: 10px;
  background: #e45757;
  border-color: #e45757;
  color: #fff;
}
.price-section-base__button .tp-btn--primary:hover {
  opacity: 0.88;
}

/* ===== Price page: home monthly fee section ===== */
body.tp-subpage .tp-table--pricing.tp-table--facility {
  --tp-table-cell-padding: 1.35rem 1.8rem;
}
body.tp-subpage .tp-table--pricing.tp-table--facility tbody th {
  background: #EAF1FF;
  font-weight: 400;
  text-align: left;
  width: 28%;
}
body.tp-subpage .tp-table--pricing.tp-table--facility tbody td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  background: #fff;
}
body.tp-subpage .price-home .price-home__notes {
  margin-top: 1.6rem;
  gap: 0.55rem;
}
body.tp-subpage .price-home .price-home__notes li {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #4a4a4a;
}
body.tp-subpage .price-home .price-home__notes li::before {
  color: #4a4a4a;
}
body.tp-subpage .price-home .price-home__short-stay {
  margin-top: 3.2rem;
}
body.tp-subpage .price-home .price-home__meta--short-stay {
  margin-bottom: 1.2rem;
}
body.tp-subpage .tp-table--short-stay {
  background: #f2f2f2;
}
body.tp-subpage .tp-table--short-stay tbody th {
  width: 50%;
  background: #EAF1FF;
}
body.tp-subpage .tp-table--short-stay tbody td {
  text-align: right;
}
body.tp-subpage .tp-table--extra-services tbody th {
  width: 42%;
  background: #EAF1FF;
}
body.tp-subpage .tp-table--extra-services tbody td {
  text-align: left;
  line-height: 1.9;
}
body.tp-subpage .price-home .price-home__extra-services-note {
  margin: 1.4rem 0 0;
  color: #4a4a4a;
  font-size: 1.3rem;
  line-height: 1.75;
}
body.tp-subpage .price-home .price-home__short-stay-notes {
  margin: 1.6rem 0 0;
  padding-left: 1.6em;
  display: grid;
  gap: 0.8rem;
  color: #222;
  font-size: 1.65rem;
  line-height: 1.75;
}
body.tp-subpage .price-home .price-home__short-stay-notes li {
  padding-left: 0.1em;
}

/* ===== Day service price table ===== */
body.tp-subpage .price-dayservice .tp-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice {
  --tp-table-cell-padding: 1.2rem 1.4rem;
  width: max-content;
  min-width: 100%;
  table-layout: auto;
}
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice .tp-table__group,
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice .tp-table__label {
  background: #EAF1FF;
  font-weight: 700;
}
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice td {
  background: #fff;
}
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice td.tp-table__group,
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice td.tp-table__label {
  background: #EAF1FF;
}
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice .tp-table__group {
  text-align: center;
}
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice tbody th {
  background: #EAF1FF;
}
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice thead th {
  white-space: nowrap;
}
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice thead th:first-child,
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice tbody th:not([colspan]) {
  min-width: 16rem;
}
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice thead th:not(:first-child),
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice tbody td:not([colspan]) {
  min-width: 8.5rem;
}
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice tbody td:not([colspan]) {
  white-space: nowrap;
  text-align: right;
  padding-right: 1.4rem;
  font-variant-numeric: tabular-nums;
}
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice tbody th[colspan],
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice td[colspan] {
  white-space: normal;
}
body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice td[colspan] {
  text-align: left;
}
body.tp-subpage .price-dayservice .price-dayservice__col-group { width: 7%; }
body.tp-subpage .price-dayservice .price-dayservice__col-item { width: 18%; }
body.tp-subpage .price-dayservice .price-dayservice__col-content { width: 43%; }
body.tp-subpage .price-dayservice .price-dayservice__col-target { width: 16%; }
body.tp-subpage .price-dayservice .price-dayservice__col-price { width: 16%; }
body.tp-subpage .price-dayservice .price-dayservice__notes {
  margin-top: 1.6rem;
}
body.tp-subpage .price-dayservice .price-dayservice__notes p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #4a4a4a;
}
body.tp-subpage .price-dayservice .price-dayservice__notes p + p {
  margin-top: 0.55rem;
}
.tp-table--dayservice {
  border-collapse: collapse;
}




.tp-table__group {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  text-align: center !important;
  font-weight: 700;
}

.price-dayservice__col-group {
  width: 8%;
}

.price-dayservice__col-item {
  width: 32%;
}

.price-dayservice__col-target {
  width: 12%;
}

@media (max-width: 768px) {
  .price-section-base__head {
    margin-bottom: 2rem;
  }
  .price-section-base__title {
    font-size: 1.95rem;
    --tp-page-block-title-padding-bottom: 1.2rem;
  }
  .price-section-base__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
  }
  .price-section-base__subtitle {
    font-size: 1.6rem;
  }
  .price-section-base__date {
    text-align: left;
    white-space: normal;
  }
  .tp-table--pricing {
    min-width: 700px;
    line-height: 1.65;
  }
  body.tp-subpage .tp-table--pricing.tp-table--facility {
    --tp-table-cell-padding: 1.15rem 1.4rem;
  }
  body.tp-subpage .price-home .price-home__short-stay {
    margin-top: 2.8rem;
  }
  body.tp-subpage .tp-table--extra-services tbody th {
    width: 46%;
  }
  body.tp-subpage .price-home .price-home__extra-services-note {
    font-size: 1.4rem;
  }
  body.tp-subpage .price-home .price-home__short-stay-notes {
    font-size: 1.45rem;
    gap: 0.6rem;
  }
  .price-section-base__button {
    margin-top: 2.8rem;
  }
  .price-section-base__button .tp-btn--primary {
    min-width: 22rem;
    padding: 1.2rem 3.6rem;
  }
  body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice {
    --tp-table-cell-padding: 1.05rem 1.2rem;
    min-width: 58rem;
  }
}

/* ========================================
   day-service page
======================================== */
body.tp-day-service-page {
  --tp-day-accent: var(--accent, #d86b72);
  --tp-day-text: #3e3128;
  --tp-day-border: #d8d8d8;
  --tp-day-soft: #f4f4f4;
  --tp-day-soft-blue: #eef3fb;
}

body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice thead th:nth-child(n+2) {
  text-align: center;
}

body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice tbody td.tp-table__price {
  text-align: right;
  padding-right: 1rem;
  font-variant-numeric: tabular-nums;
}

body.tp-subpage .price-dayservice .tp-table--pricing.tp-table--dayservice tbody td[colspan] {
  text-align: left;
}

body.tp-day-service-page .tp-day-section {
  padding: 7.2rem 0;
}

body.tp-day-service-page .tp-day-section + .tp-day-section {
  padding-top: 2.6rem;
}

body.tp-day-service-page .tp-day-section-head {
  margin-bottom: 3.2rem;
}

body.tp-day-service-page .tp-day-section-head__title {
  margin: 0;
  padding-bottom: 1.25rem;
  border-bottom: 3px solid var(--tp-day-accent);
  color: #2f2620;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

body.tp-day-service-page .tp-day-intro {
  padding-top: 5.4rem;
}

body.tp-day-service-page .tp-day-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 4.2rem;
  align-items: center;
}

body.tp-day-service-page .tp-day-intro__media {
  margin: 0;
}

.tp-day-section .tp-container {
  max-width: 1080px;
  margin: 0 auto;
}

body.tp-day-service-page .tp-day-intro__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

body.tp-day-service-page .tp-day-intro__body {
  color: var(--tp-day-text);
  font-size: 2.05rem;
  line-height: 1.95;
}

body.tp-day-service-page .tp-day-intro__body p {
  margin: 0;
}

body.tp-day-service-page .tp-day-intro__body p + p {
  margin-top: 1.25rem;
}

body.tp-day-service-page .tp-day-feature {
  text-align: center;
}

/* day-service feature heading: mirror top-page news heading behavior */
body.tp-day-service-page .tp-day-feature .tp-section-header.tp-news__header {
  width: 100%;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3.8rem;
}

body.tp-day-service-page .tp-day-feature .tp-section-header.tp-news__header .tp-label {
  text-transform: none;
  letter-spacing: 0.1em;
}

body.tp-day-service-page .tp-day-feature .tp-section-header.tp-news__header .tp-section-title {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin: 0;
  max-width: 100%;
}

body.tp-day-service-page .tp-day-feature .tp-section-header.tp-news__header .tp-section-title::before {
  content: none;
  display: none;
}

body.tp-day-service-page .tp-day-feature .tp-section-header.tp-news__header .tp-section-title::after {
  content: "";
  flex-shrink: 0;
  width: 4.1rem;
  height: 3.6rem;
  background: url("../../images/icon-point.png") no-repeat center/contain;
  position: relative;
  top: -2rem;
}

body.tp-day-service-page .tp-day-feature__eyebrow {
  margin: 0 0 0.8rem;
  color: var(--tp-day-accent);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

body.tp-day-service-page .tp-day-feature__head {
  position: relative;
  margin-bottom: 3.8rem;
}

body.tp-day-service-page .tp-day-feature__head::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 6vw, 6rem);
  top: -0.6rem;
  width: 42px;
  height: 42px;
  background: url("../../images/icon-point.png") no-repeat center/contain;
  pointer-events: none;
}

body.tp-day-service-page .tp-day-feature__title {
  margin: 0;
  color: #2f2620;
  font-size: clamp(3rem, 4.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.35;
}

body.tp-day-service-page .tp-day-feature__circle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.4rem 2.8rem;
}

body.tp-day-service-page .tp-day-feature-card {
  color: var(--tp-day-text);
}

body.tp-day-service-page .tp-day-feature-card__media {
  aspect-ratio: 1 / 1;
  width: min(100%, 300px);
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  overflow: hidden;
}

body.tp-day-service-page .tp-day-feature-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.tp-day-service-page .tp-day-feature-card__title {
  margin: 0;
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  font-weight: 700;
  line-height: 1.6;
}

body.tp-day-service-page .tp-day-feature-card__text {
  margin: 1rem 0 0;
  font-size: 1.75rem;
  line-height: 1.85;
}

body.tp-day-service-page .tp-day-message-box {
  max-width: 1000px;
  margin: 4.4rem auto 4.8rem;
  padding: 2.6rem 3rem;
  border: 2px solid var(--tp-day-accent);
  border-radius: 10px;
  background: #fff;
}

body.tp-day-service-page .tp-day-message-box p {
  margin: 0;
  color: #2f2620;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.85;
}

body.tp-day-service-page .tp-day-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.6rem 2.2rem;
  text-align: left;
}

body.tp-day-service-page .tp-day-gallery__item {
  margin: 0;
}

body.tp-day-service-page .tp-day-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

body.tp-day-service-page .tp-day-gallery__item figcaption {
  margin-top: 0.9rem;
  color: #2f2620;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.5;
}

body.tp-day-service-page .tp-day-target__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 4.2rem;
  align-items: start;
}

body.tp-day-service-page .tp-day-target__media {
  margin: 0;
}

body.tp-day-service-page .tp-day-target__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

body.tp-day-service-page .tp-day-target__body {
  color: var(--tp-day-text);
}

body.tp-day-service-page .tp-day-lined-title {
  margin: 0 0 1.8rem;
  padding-left: 1.8rem;
  border-left: 3px solid var(--tp-day-accent);
  color: var(--tp-day-accent);
  font-size: clamp(2.6rem, 3.2vw, 3.6rem);
  font-weight: 700;
  line-height: 1.5;
}

body.tp-day-service-page .tp-day-number-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.tp-day-service-page .tp-day-number-list li {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 1rem;
  margin: 0;
}

body.tp-day-service-page .tp-day-number-list li + li {
  margin-top: 1.25rem;
}

body.tp-day-service-page .tp-day-number-list__num {
  color: var(--tp-day-accent);
  font-family: "Outfit", sans-serif;
  font-size: 3.2rem;
  line-height: 1.25;
}

body.tp-day-service-page .tp-day-number-list__text {
  margin-top: 0.35rem;
  color: #2f2620;
  font-size: 2.65rem;
  line-height: 1.6;
}

body.tp-day-service-page .tp-day-target__note {
  margin: 2rem 0 0;
  color: #4a4a4a;
  font-size: 1.7rem;
  line-height: 1.75;
}

body.tp-day-service-page .tp-day-outline-box {
  margin-top: 2rem;
  padding: 2rem 2.2rem;
  border: 2px solid var(--tp-day-accent);
  border-radius: 10px;
  background: #fff;
}

body.tp-day-service-page .tp-day-outline-box__title {
  margin: 0 0 1rem;
  color: var(--tp-day-accent);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}

body.tp-day-service-page .tp-day-outline-box p {
  margin: 0;
  color: #2f2620;
  font-size: 2.3rem;
  line-height: 1.85;
}

body.tp-day-service-page .tp-day-outline-box__small {
  margin-top: 0.8rem;
  color: #555;
  font-size: 1.55rem;
}

body.tp-day-service-page .tp-day-price__block + .tp-day-price__block {
  margin-top: 4rem;
}

body.tp-day-service-page .tp-day-price__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 1.3rem;
}

body.tp-day-service-page .tp-day-price__title {
  margin: 0;
  color: #2f2620;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.55;
}

body.tp-day-service-page .tp-day-price__date {
  margin: 0;
  color: #3f3f3f;
  font-size: 1.6rem;
  white-space: nowrap;
}

body.tp-day-service-page .tp-day-table-wrap {
  overflow-x: auto;
}

body.tp-day-service-page .tp-day-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

body.tp-day-service-page .tp-day-table th,
body.tp-day-service-page .tp-day-table td {
  border: 1px solid var(--tp-day-border);
  padding: 1.4rem 1.35rem;
  color: #2f2f2f;
  font-size: 1.7rem;
  line-height: 1.7;
  vertical-align: middle;
}

body.tp-day-service-page .tp-day-table thead th {
  background: #e8e8e8;
  text-align: center;
  font-weight: 400;
}

body.tp-day-service-page .tp-day-table tbody th {
  background: #EAF1FF;
  font-weight: 400;
  text-align: left;
}

body.tp-day-service-page .tp-day-table tbody td {
  background: #fff;
  text-align: center;
}

body.tp-day-service-page .tp-day-table--short tbody td,
body.tp-day-service-page .tp-day-table--service tbody td {
  text-align: left;
}

body.tp-day-service-page .tp-day-price__note {
  margin: 1rem 0 0;
  color: #4f4f4f;
  font-size: 1.45rem;
  line-height: 1.7;
}

body.tp-day-service-page .tp-day-outline-box--wide {
  margin-top: 4.2rem;
}

body.tp-day-service-page .tp-day-outline-box--wide p {
  text-align: left;
}

body.tp-day-service-page .tp-day-support__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

body.tp-day-service-page .tp-day-support__media {
  margin: 0;
}

body.tp-day-service-page .tp-day-support__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

body.tp-day-service-page .tp-day-support__body {
  display: grid;
  gap: 3rem;
}

body.tp-day-service-page .tp-day-support__block {
  margin: 0;
}

body.tp-day-service-page .tp-day-support__text p {
  margin: 0;
  color: #2f2f2f;
  font-size: 2.35rem;
  line-height: 1.85;
}

body.tp-day-service-page .tp-day-support__text p + p {
  margin-top: 0.75rem;
}

@media (max-width: 1080px) {
  body.tp-day-service-page .tp-day-section {
    padding: 6rem 0;
  }

  body.tp-day-service-page .tp-day-intro__body,
  body.tp-day-service-page .tp-day-gallery__item figcaption,
  body.tp-day-service-page .tp-day-number-list__text,
  body.tp-day-service-page .tp-day-outline-box p,
  body.tp-day-service-page .tp-day-support__text p {
    font-size: 1.7rem;
  }

  body.tp-day-service-page .tp-day-outline-box__title {
    font-size: 2.2rem;
  }

  body.tp-day-service-page .tp-day-feature__head::after {
    right: 1rem;
  }
}

@media (max-width: 768px) {
  body.tp-day-service-page .tp-day-section {
    padding: 4.8rem 0;
  }

  body.tp-day-service-page .tp-day-section + .tp-day-section {
    padding-top: 1.8rem;
  }

  body.tp-day-service-page .tp-day-intro {
    padding-top: 3.8rem;
  }

  body.tp-day-service-page .tp-day-section-head {
    margin-bottom: 2rem;
  }

  body.tp-day-service-page .tp-day-intro__grid,
  body.tp-day-service-page .tp-day-target__grid,
  body.tp-day-service-page .tp-day-support__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.tp-day-service-page .tp-day-feature__head {
    margin-bottom: 2.6rem;
  }

  body.tp-day-service-page .tp-day-feature .tp-section-header.tp-news__header {
    gap: 0.85rem;
    margin-bottom: 2.6rem;
  }

  body.tp-day-service-page .tp-day-feature .tp-section-header.tp-news__header .tp-label {
    font-size: 1.35rem;
    font-weight: 400;
    gap: 0.65rem;
  }

  body.tp-day-service-page .tp-day-feature .tp-section-header.tp-news__header .tp-section-title {
    font-size: 2.2rem;
    line-height: 1.5;
  }

  body.tp-day-service-page .tp-day-feature .tp-section-header.tp-news__header .tp-section-title::after {
    width: 2.2rem;
    height: 2.2rem;
    top: 0.05em;
  }

  body.tp-day-service-page .tp-day-feature__head::after {
    width: 30px;
    height: 30px;
    right: 0.4rem;
    top: -0.2rem;
    opacity: 0.8;
  }

  body.tp-day-service-page .tp-day-feature__circle-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  body.tp-day-service-page .tp-day-feature-card__media {
    width: min(100%, 260px);
    margin-bottom: 1rem;
  }

  body.tp-day-service-page .tp-day-message-box {
    margin: 3rem auto 3.2rem;
    padding: 1.8rem 1.6rem;
  }

  body.tp-day-service-page .tp-day-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1.2rem;
  }

  body.tp-day-service-page .tp-day-number-list li {
    grid-template-columns: 3.8rem 1fr;
  }

  body.tp-day-service-page .tp-day-number-list__num {
    font-size: 2.4rem;
  }

  body.tp-day-service-page .tp-day-price__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  body.tp-day-service-page .tp-day-table {
    min-width: 640px;
  }

  body.tp-day-service-page .tp-day-table th,
  body.tp-day-service-page .tp-day-table td {
    padding: 1rem 0.95rem;
    font-size: 1.35rem;
    line-height: 1.55;
  }

  body.tp-day-service-page .tp-day-outline-box {
    padding: 1.5rem 1.4rem;
  }
}
