:root {
  --pink: #ec4899;
  --pink-light: #fce7f3;
  --pink-mid: #fbcfe8;
  --pink-hover: #db2777;
  --green: #16a34a;
  --green-light:#f0fdf4;
  --green-mid: #bbf7d0;
  --gray-bg: #fdf2f8;
  --text: #1f2937;
  --sub: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: #fdf6fb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.text-center {
  text-align: center;
}

.sp {
  display: none;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--text);
  display: inline-block;
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 4px;
  border-radius: 999px;
  background: var(--pink);
}

.section-subtitle {
  color: var(--sub);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
}
.btn-pink {
  background: var(--pink);
  color: #fff;
}
.btn-pink:hover {
  background: var(--pink-hover);
}
.btn-outline-pink {
  background: #fff;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline-pink:hover {
  background: var(--pink);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--pink);
}
.btn-white:hover {
  background: #f3f4f6;
}
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: #15803d;
}
.btn-lg {
  padding: 1rem 3rem;
  font-size: 1.05rem;
}

body #main .form-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 2px;
  width: 100%;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  background: var(--pink);
  color: #fff;
}
body #main .form-card button:hover {
  background: var(--pink-hover);
}

.text-link {
  color: var(--pink);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}

#site-header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
#site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

.logo-icon {
  background: var(--pink);
  color: #fff;
  border-radius: 10px;
  padding: 0.5rem;
  display: flex;
}

.logo-text h1 {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1f2937;
}
.logo-text p {
  font-size: 0.7rem;
  color: var(--sub);
}

nav a, nav button {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sub);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.2s;
}
nav a:hover, nav button:hover {
  color: var(--pink);
  background: var(--pink-light);
}
nav .nav-active {
  color: var(--pink);
  background: var(--pink-light);
}
nav .nav-highlight {
  border: 2px solid var(--pink);
  color: var(--pink);
}
nav .nav-highlight:hover {
  background: var(--pink);
  color: #fff;
}

#hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

#mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 1rem;
  gap: 0.5rem;
  position: absolute;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
#mobile-nav.open {
  display: flex;
}
#mobile-nav a, #mobile-nav button {
  display: block;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: none;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
}
#mobile-nav a:hover, #mobile-nav button:hover {
  background: var(--pink-light);
  color: var(--pink);
}

.page-hero {
  background: linear-gradient(135deg, #db2777 0%, #ec4899 100%);
  padding: 3.5rem 20px;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.4rem;
}
.page-hero p {
  opacity: 0.88;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.page-hero--green {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}
.badge-pink {
  background: var(--pink-light);
  color: var(--pink);
}
.badge-green {
  background: var(--green-light);
  color: var(--green);
}
.badge-gray {
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.7rem;
}
.badge-blue {
  background: #eff6ff;
  color: #1e40af;
}
.badge-green2 {
  background: var(--green-light);
  color: var(--green);
}

.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #c084fc;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../../images/top/t-hero.png") center/cover no-repeat;
  filter: brightness(0.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(131, 24, 67, 0.6) 0%, transparent 70%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-content .container {
  color: #fff;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.philosophy-short {
  background: #ffffff;
  padding: 4rem 0;
  text-align: center;
}
.philosophy-short h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.philosophy-short p {
  color: var(--sub);
  line-height: 2;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.facility-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  display: block;
}
.facility-card:hover {
  box-shadow: 0 8px 40px rgba(236, 72, 153, 0.15);
  transform: translateY(-3px);
}
.facility-card:hover .facility-card-img img {
  transform: scale(1.06);
}
.facility-card-img {
  height: 10rem;
  overflow: hidden;
}
.facility-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.facility-card-body {
  padding: 1rem;
}
.facility-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.5rem 0 0.4rem;
  color: #1f2937;
}
.facility-card p {
  font-size: 0.82rem;
  color: var(--sub);
  line-height: 1.5;
}

.trial-box {
  background: linear-gradient(135deg, #fce7f3 0%, #fdf2f8 100%);
  border: 1px solid var(--pink-mid);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: inset 0 2px 12px rgba(236, 72, 153, 0.04);
}
.trial-box .grid-5 {
  overflow: hidden;
}

.trial-badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.step-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--pink);
  color: var(--pink);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}
.step-item .bg-pink-200 {
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 110%;
  height: 5px;
  background: #fbcfe8;
  z-index: -1;
}

.step-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #e5e7eb;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.step-desc {
  font-size: 0.78rem;
  color: var(--sub);
  text-align: center;
  line-height: 1.5;
}

.recruit-banner {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  border-radius: 1.25rem;
  padding: 3rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.recruit-banner::before, .recruit-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.recruit-banner::before {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -80px;
}
.recruit-banner::after {
  width: 160px;
  height: 160px;
  bottom: -60px;
  left: -60px;
}
.recruit-banner h2 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.recruit-banner p {
  opacity: 0.92;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.recruit-banner-img {
  flex-shrink: 0;
  width: 420px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}
.recruit-banner-img img {
  width: 100%;
  height: auto;
  display: block;
}
.recruit-banner-text {
  position: relative;
  z-index: 1;
  flex: 1;
}
.recruit-banner-text .btn.btn-white {
  color: #16a34a;
}

.recruit-gallery .gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.news-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s;
  border-radius: 8px;
}
.news-row:hover {
  background: #fdf2f8;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
  flex-shrink: 0;
}

.news-date {
  font-size: 0.82rem;
  color: var(--sub);
}

.news-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}

.story-box {
  background: #ffffff;
  border-left: 8px solid var(--pink);
  border-radius: 14px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  margin-bottom: 3rem;
}

.story-bg {
  position: absolute;
  inset: 0;
  background: url("../../images/about/o-bg.jpg") center/cover;
  opacity: 0.08;
}

.story-content {
  position: relative;
  z-index: 1;
}
.story-content h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.story-content p {
  color: #4b5563;
  line-height: 2;
  margin-bottom: 1rem;
}

.story-quote {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink);
  padding: 1rem 0;
}

.story-rep {
  text-align: center;
  max-width: 410px;
  margin: 0 0 0 auto;
  margin-top: 2rem;
}
.story-rep img {
  width: 13rem;
  height: 16rem;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.principle-box {
  border-radius: 14px;
  padding: 2rem;
}
.principle-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.principle-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.company-box {
  margin-top: 50px;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}
.company-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.company-box .company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.company-box .company-table th {
  background: #f9fafb;
  font-weight: 700;
  color: #374151;
  padding: 1rem 1.5rem;
  text-align: left;
  width: 33%;
}
.company-box .company-table td {
  padding: 1rem 1.5rem;
  color: #4b5563;
}
.company-box .company-table td ul {
  margin-left: 15px;
}
.company-box .company-table tr {
  border-bottom: 1px solid var(--border);
}

.facility-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #f3f4f6;
  margin-bottom: 4rem;
  text-decoration: none;
  color: inherit;
}
.facility-row.reverse {
  flex-direction: row-reverse;
}
.facility-row:hover .facility-row-img img {
  transform: scale(1.04);
}
.facility-row-img {
  flex: 1;
  min-height: 16rem;
  border-radius: 10px;
  overflow: hidden;
}
.facility-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.facility-row-body {
  flex: 1;
}
.facility-row-body h3 {
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0.5rem 0 0.75rem;
}
.facility-row-body > p {
  color: var(--sub);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.features-box {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
}
.features-box h4 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #4b5563;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

.features-list-section {
  padding: 4rem 0;
}
.features-list-section__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-left: 4px solid #ec4899;
  padding-left: 2rem;
  margin-bottom: 2rem;
  background: #fff;
}
.features-list-section__item:last-child {
  margin-bottom: 0;
}
.features-list-section__img {
  flex-shrink: 0;
  width: 220px;
}
.features-list-section__img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.features-list-section__body {
  flex: 1;
}
.features-list-section__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}
.features-list-section__desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.8;
}
@media (max-width: 600px) {
  .features-list-section__item {
    flex-direction: column;
    gap: 1rem;
  }
  .features-list-section__img {
    width: 100%;
  }
  .features-list-section__img img {
    height: 180px;
  }
}

.detail-hero {
  position: relative;
  height: 20rem;
  overflow: hidden;
}
.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.detail-hero-overlay h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--sub);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.back-btn:hover {
  color: var(--pink);
}

.special-points-box {
  background: rgba(252, 231, 243, 0.35);
  border: 1px solid var(--pink-mid);
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.sp-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 2rem;
}

.sp-card {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--pink-mid);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.sp-card-img {
  height: 12rem;
  background: #e5e7eb;
  overflow: hidden;
}
.sp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-card-body {
  padding: 1.25rem;
}
.sp-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
.sp-card-body p {
  font-size: 0.82rem;
  color: var(--sub);
  line-height: 1.6;
}

.features-grid {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
  background: #fdf2f8;
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 4rem;
}
.features-grid.is-left {
  justify-content: flex-start;
}

.feature-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 33.333%;
  max-width: 232px;
  padding: 1rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.feature-chip-icon {
  background: var(--pink-light);
  padding: 0.75rem;
  border-radius: 50%;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
.feature-chip span {
  font-weight: 700;
  font-size: 0.88rem;
}

.feat-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  border-left: 4px solid var(--pink);
  padding-left: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
}
.feat-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  height: 12rem;
}
.feat-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feat-item p {
  color: var(--sub);
  line-height: 1.8;
}

.feat-item-sm {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border-left: 4px solid var(--pink);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.feat-item-sm img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.feat-item-sm h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feat-item-sm p {
  color: var(--sub);
  line-height: 1.8;
  font-size: 0.9rem;
}

.dementia-box {
  background: #ffffff;
  border: 1px solid var(--pink-mid);
  border-radius: 1.25rem;
  padding: 3rem;
  margin-bottom: 4rem;
}

.dementia-item {
  border-left: 4px solid var(--pink);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.dementia-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.dementia-item p {
  color: var(--sub);
  line-height: 1.8;
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 80px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  height: 16rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.03);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.access-info {
  background: #f9fafb;
  border-radius: 14px;
  padding: 2rem;
}
.access-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.access-row {
  margin-bottom: 1.25rem;
}

.access-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sub);
  margin-bottom: 0.25rem;
}

.access-value {
  font-size: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.access-value--phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink);
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  min-height: 28rem;
  position: relative;
  background: #e5e7eb;
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.taxi-box {
  padding: 1.5rem;
  border-radius: 1.25rem;
  margin-bottom: 2.5rem;
}
.taxi-box--pink {
  background: rgba(252, 231, 243, 0.5);
  border: 1px solid var(--pink-mid);
}
.taxi-box--blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}
.taxi-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.taxi-box h3.pink {
  color: var(--pink);
}
.taxi-box h3.blue {
  color: #1d4ed8;
}

.taxi-inner {
  border-left: 4px solid;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.taxi-inner--pink {
  border-color: var(--pink);
}
.taxi-inner--blue {
  border-color: #3b82f6;
}
.taxi-inner h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.taxi-inner p {
  font-size: 0.85rem;
  color: var(--sub);
}

.news-list-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #f3f4f6;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.news-list-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  color: #1f2937;
}
.news-list-row:hover {
  background: var(--pink-light);
}
.news-list-row:last-child {
  border-bottom: none;
}
.news-list-row .meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 220px;
}
.news-list-row h3 {
  flex: 1;
  font-weight: 600;
}

.faq-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #f3f4f6;
  margin-bottom: 1.5rem;
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.faq-a {
  display: flex;
  gap: 1rem;
}

.faq-label {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.faq-label--q {
  background: var(--pink-light);
  color: var(--pink);
}
.faq-label--a {
  background: var(--green-light);
  color: var(--green);
}

.faq-q h3 {
  font-size: 1rem;
  font-weight: 700;
  padding-top: 0.2rem;
}

.faq-a p {
  color: var(--sub);
  line-height: 1.8;
  font-size: 0.93rem;
  padding-top: 0.2rem;
}

.recruit-header {
  background: #16a34a;
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.recruit-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.recruit-header p {
  opacity: 0.9;
}

.recruit-nav-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem;
  border-top: 4px solid #16a34a;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s;
}
.recruit-nav-card .text-link {
  color: #15803d;
}
.recruit-nav-card:hover {
  transform: translateY(-4px);
}

.recruit-icon {
  background: var(--green-light);
  padding: 0.5rem;
  border-radius: 50%;
  color: #16a34a;
}

.benefit-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.benefit-card--pink {
  background: #fdf2f8;
}
.benefit-card--green {
  background: var(--green-light);
}
.benefit-card--blue {
  background: #eff6ff;
}
.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.benefit-card p {
  color: var(--sub);
  font-size: 0.9rem;
  line-height: 1.7;
}

.benefit-icon {
  background: #ffffff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.interview-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  margin-bottom: 3rem;
}
.interview-card.reverse {
  flex-direction: row-reverse;
}

.interview-img {
  flex-shrink: 0;
  width: 33%;
  background: #e5e7eb;
  position: relative;
  min-height: 16rem;
}
.interview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: #fff;
  padding: 1rem;
}
.interview-overlay p {
  margin-bottom: 0;
}

.interview-body {
  padding: 2rem;
  flex: 1;
}
.interview-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.interview-body p {
  color: var(--sub);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.schedule-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border);
}

.schedule-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}
.schedule-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  flex: 1;
}
.schedule-header--day {
  background: var(--pink-light);
  color: #9d174d;
}
.schedule-header--night {
  background: #eff6ff;
  color: #1e40af;
}

.schedule-time-text {
  font-size: 0.82rem;
  font-weight: 700;
}

.schedule-timeline {
  padding-left: 1.5rem;
  border-left: 2px solid var(--pink-mid);
  position: relative;
}
.schedule-timeline--night {
  border-left-color: #bfdbfe;
}

.schedule-item {
  position: relative;
  margin-bottom: 1.5rem;
}
.schedule-item time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sub);
  display: block;
  margin-bottom: 0.2rem;
}
.schedule-item h4 {
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.schedule-item p {
  font-size: 0.82rem;
  color: var(--sub);
  line-height: 1.5;
}

.schedule-dot {
  position: absolute;
  left: -2.05rem;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid #ffffff;
}
.schedule-dot--pink {
  background: var(--pink);
}
.schedule-dot--blue {
  background: #3b82f6;
}

.req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.req-table th {
  background: #f9fafb;
  font-weight: 700;
  color: #374151;
  padding: 1rem 1.5rem;
  text-align: left;
  width: 30%;
}
.req-table td {
  padding: 1rem 1.5rem;
  color: #374151;
  line-height: 1.8;
}
.req-table tr {
  border-bottom: 1px solid var(--border);
}
.req-table tr:hover {
  background: #fafafa;
}

.entry-cta {
  background: var(--pink-light);
  border: 2px solid var(--pink-mid);
  border-radius: 1.25rem;
  padding: 3rem;
  text-align: center;
}
.entry-cta h2 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.entry-cta p {
  color: var(--sub);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.entry-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info {
  background: var(--pink-light);
  border-radius: 14px;
  padding: 2rem;
}
.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.phone-list {
  margin-bottom: 20px;
  font-family: 1.4rem;
  font-weight: 700;
  list-style: none;
}
.phone-list li {
  margin-bottom: 10px;
  color: var(--pink);
}
.phone-list li:last-child {
  margin-bottom: 0;
}
.phone-list li span {
  width: 42%;
  display: inline-block;
  vertical-align: top;
  padding-right: 10px;
}

.phone-big {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.form-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #f3f4f6;
}

.form-group {
  margin-bottom: 1.25rem;
}

.smf-item__label__text {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.35rem;
}

.req-star {
  color: #ef4444;
}

.smf-action .smf-button-control {
  display: block;
}
.smf-action [data-action=back] {
  color: #000 !important;
  background: #ddd !important;
}
.smf-action .smf-button-control:nth-of-type(2) {
  margin: 20px auto 0;
}

textarea, select, input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1f2937;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
textarea:focus, select:focus, input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.12);
}

.smf-form .smf-select-control {
  width: 100% !important;
}

textarea {
  height: 8rem;
  resize: vertical;
}

#site-footer {
  background: #1f2937;
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-decoration: none;
}
.footer-logo-icon {
  background: var(--pink);
  padding: 0.4rem;
  border-radius: 8px;
  display: flex;
}
.footer-logo h2 {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-addr {
  color: #9ca3af;
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-col h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #374151;
  display: inline-block;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: #9ca3af;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover {
  color: #f9a8d4;
}

.footer-recruit-box {
  background: #374151;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.footer-recruit-box .accent {
  color: #f9a8d4;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.footer-recruit-box .sub {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  #hamburger {
    display: block;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .facility-row,
  .facility-row.reverse {
    flex-direction: column;
  }
  .interview-card,
  .interview-card.reverse {
    flex-direction: column;
  }
  .interview-img {
    width: 100%;
    min-height: 14rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .recruit-banner {
    flex-direction: column;
  }
  .recruit-banner-img {
    width: 100%;
    max-width: 280px;
  }
  .access-grid {
    grid-template-columns: 1fr;
  }
  .map-wrap {
    min-height: 20rem;
  }
  .feat-item {
    grid-template-columns: 1fr;
  }
  .features-grid {
    gap: 4%;
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid .feature-chip {
    width: 48%;
    max-width: 100%;
    margin-bottom: 4%;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .sp {
    display: block;
  }
  .hero-bg {
    background: url(../../images/top/ts-hero.jpg) no-repeat center right/cover;
  }
  .hero-overlay {
    display: none;
  }
  .hero-content {
    align-items: flex-start;
    padding-top: 3rem;
  }
  .hero-content p {
    font-size: 0.8rem;
  }
  .facility-row-img {
    min-height: auto;
  }
  .features-list {
    display: block;
  }
  .features-list .feature-item {
    margin-bottom: 10px;
  }
  .company-box {
    margin-top: 30px;
  }
  .news-row {
    flex-wrap: wrap;
  }
  .news-row .news-meta,
  .news-row .news-title {
    width: 100%;
  }
  .news-list-row {
    flex-wrap: wrap;
  }
  .news-list-row .meta,
  .news-list-row h3 {
    width: 100%;
  }
  .company-box {
    padding: 2rem 1rem;
  }
  .company-box .company-table th {
    padding: 1rem 0.6rem;
  }
  .company-box .company-table td {
    padding: 1rem 0.6rem;
  }
  .company-box .company-table td ul {
    margin-left: 15px;
  }
  .company-box .company-table td ul li {
    padding-bottom: 10px;
  }
  .req-table th,
  .req-table td {
    padding: 1rem 0.6rem;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-5 {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid .feature-chip {
    width: 100%;
  }
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trial-box {
    padding: 1.5rem;
  }
  .story-box {
    padding: 1.5rem;
  }
  .feat-item-sm {
    flex-direction: column;
  }
  .news-meta {
    min-width: 0;
  }
  .story-rep {
    margin: 20px auto 0;
  }
}
@media (max-width: 423px) {
  .phone-list li span {
    width: 55%;
  }
  .contact-info {
    padding: 2rem 1rem;
  }
  .contact-info span {
    font-size: 15px;
  }
  .hero-btns .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=style.css.map */