/* Global */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Yu Gothic",
    "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #454545;
  background: #fefdf8;
  line-height: 1.7;
  overflow-wrap: break-word;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* 福祉・こども向け やさしいエフェクト・アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentlePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.92; transform: scale(1.02); }
}

@keyframes softGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(255, 143, 78, 0.15); }
  50% { box-shadow: 0 6px 24px rgba(255, 143, 78, 0.22); }
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ① スクロールでふわっと浮くカード */
.js-float-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.js-float-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ② マウスに寄ってくる柔らかい光（スポットライト） */
.js-spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight-inner {
  position: absolute;
  width: 120px;
  height: 120px;
  left: var(--spot-x, 50%);
  top: var(--spot-y, 50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  transition: left 0.25s ease-out, top 0.25s ease-out;
}

.btn .spotlight-inner {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 65%);
}

/* ③ クリックで小さなキラキラ */
.sparkle-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(255, 180, 120, 0.9);
  animation: sparklePop 0.55s ease-out forwards;
  z-index: 9999;
}

@keyframes sparklePop {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.section {
  padding: 64px 0;
  animation: fadeInUp 0.7s ease-out both;
}

.strengths-section { animation-delay: 0.05s; }
.service-top-section { animation-delay: 0.1s; }
.voice-top-section { animation-delay: 0.15s; }
.service-detail-section { animation-delay: 0.2s; }
.voice-main-section { animation-delay: 0.25s; }
.news-section,
.contest-section { animation-delay: 0.3s; }
.faq-section { animation-delay: 0.35s; }
.contact-section { animation-delay: 0.4s; }
.company-section { animation-delay: 0.45s; }

.section-title {
  font-size: clamp(20px, 4vw, 28px);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.08em;
  word-break: keep-all;
}

.section-title-small {
  font-size: 22px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, background 0.3s ease-out,
    color 0.3s ease-out;
  white-space: nowrap;
  max-width: 100%;
}

.btn-icon-right {
  margin-left: 6px;
  font-size: 18px;
  transition: transform 0.35s ease-out;
}

.btn:hover .btn-icon-right {
  transform: translateY(-2px) scale(1.05);
}

.btn-primary {
  background: #ff8f4e;
  color: #fff;
  box-shadow: 0 4px 0 #e36825;
}

.btn-primary:hover {
  transform: translateY(2px) scale(1.02);
  box-shadow: 0 2px 0 #e36825;
}

.btn-outline {
  background: #fff;
  color: #ff8f4e;
  border: 2px solid #ffb088;
}

.btn-outline:hover {
  background: #fffbf6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(63, 95, 75, 0.12);
}

.btn-lg {
  padding: 14px 40px;
  font-size: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0efe8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: conic-gradient(
    from 140deg,
    #46b96e 0deg,
    #46b96e 120deg,
    #4ea4ff 120deg,
    #4ea4ff 240deg,
    #ff8f4e 240deg,
    #ff8f4e 360deg
  );
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  min-width: 0;
}

.logo-main {
  font-weight: 700;
}

.logo-sub {
  font-size: 11px;
  color: #888;
}

.global-nav ul {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.global-nav a {
  position: relative;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease-out;
}

.nav-icon {
  font-size: 18px;
  transition: transform 0.35s ease-out;
}

.global-nav a:hover .nav-icon {
  transform: translateY(-2px) scale(1.05);
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ff8f4e;
  transition: width 0.35s ease-out;
}

.global-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.group-label {
  padding: 4px 10px;
  border-radius: 999px;
  background: #e7f5ff;
  color: #2d7fd8;
}

/* FV */
.fv-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 72px;
}

.fv-bg-illustration {
  position: absolute;
  inset: 0;
  background:
    url("./images/22720052_m.jpg") center/cover no-repeat;
  z-index: -1;
  animation: fvBgSoft 14s ease-out 0.2s both;
}

@keyframes fvBgSoft {
  from { transform: scale(1.04); opacity: 0.92; }
  to { transform: scale(1); opacity: 1; }
}

.fv-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  min-width: 0;
}

.fv-copy {
  min-width: 0;
}

.fv-eyecatch {
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.fv-title {
  animation: fadeInUp 0.8s ease-out 0.35s both;
}

.fv-text {
  animation: fadeInUp 0.7s ease-out 0.5s both;
}

.fv-copy .btn {
  animation: fadeInUp 0.7s ease-out 0.65s both;
}

.fv-image {
  min-width: 0;
}

.fv-eyecatch {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  color: #46b96e;
  font-size: 12px;
  box-shadow: 0 0 0 1px rgba(70, 185, 110, 0.14);
  margin-bottom: 12px;
}

.fv-title {
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: 12px;
}

.fv-text {
  font-size: 14px;
  margin-bottom: 24px;
  color: #666;
}

.fv-image {
  position: relative;
}

.fv-image img {
  border-radius: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Strengths */
.strengths-section {
  background: linear-gradient(to bottom, #fefdf8 0, #f9f6ec 100%);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.strength-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease-out, box-shadow 0.35s ease-out;
}

.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.strength-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease-out;
}

.strength-card:hover .strength-icon {
  transform: translateY(-2px) scale(1.08);
}

.strength-icon .material-symbols-outlined {
  font-size: 28px;
}

.strength-icon-handshake {
  background-color: #ffefe2;
  color: #c55a20;
}

.strength-icon-map {
  background-color: #e3f5ff;
  color: #1a7fd4;
}

.strength-icon-staff {
  background-color: #e9f8e7;
  color: #2e7d32;
}

.strength-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.strength-card p {
  font-size: 13px;
  color: #666;
}

/* Service top */
.service-top-section {
  background: #fefdf8;
}

.service-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  min-width: 0;
}

.service-side-cards {
  min-width: 0;
}

.service-main-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px 24px 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  min-width: 0;
  transition: transform 0.35s ease-out, box-shadow 0.35s ease-out;
}

.service-main-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.service-main-photo img {
  transition: transform 0.4s ease-out;
}

.service-main-card:hover .service-main-photo img {
  transform: scale(1.02);
}

.service-main-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.service-label {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #ffefe2;
  color: #ff8f4e;
}

.service-main-header h3 {
  font-size: 18px;
}

.service-main-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.service-main-photo {
  min-width: 0;
}

.service-main-photo img {
  border-radius: 18px;
  width: 100%;
  height: auto;
}

.service-main-text {
  min-width: 0;
}

.service-main-text p {
  font-size: 13px;
  color: #555;
  margin-bottom: 16px;
}

.service-side-cards {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-sub-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  min-width: 0;
  transition: transform 0.35s ease-out, box-shadow 0.35s ease-out;
}

.service-sub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.service-sub-photo img {
  transition: transform 0.4s ease-out;
}

.service-sub-card:hover .service-sub-photo img {
  transform: scale(1.03);
}

.service-sub-photo img {
  height: 100%;
  object-fit: cover;
}

.service-sub-photo {
  min-width: 0;
}

.service-sub-content {
  padding: 18px 18px 18px;
  min-width: 0;
}

.service-sub-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.service-sub-content p {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

/* Voice top */
.voice-top-section {
  background: #f9f6ec;
  padding-top: 32px;
  padding-bottom: 32px;
}

.voice-top-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.voice-card {
  background: #fff;
  border-radius: 24px;
  padding: 18px 18px 16px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease-out, box-shadow 0.35s ease-out;
}

.voice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.voice-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-icon {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: #ffefe2;
  color: #c55a20;
  font-size: 32px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease-out;
}

.voice-card:hover .voice-icon {
  transform: scale(1.05);
}

.voice-card.small {
  grid-template-columns: 70px minmax(0, 1fr);
}

.voice-card.small .voice-icon {
  width: 60px;
  height: 60px;
  font-size: 28px !important;
}

.voice-main-section .voice-card .voice-icon {
  width: 80px;
  height: 80px;
  font-size: 36px !important;
}

.voice-quote {
  font-size: 13px;
  color: #555;
}

.voice-meta {
  font-size: 11px;
  color: #999;
  margin-top: 6px;
}

/* Service detail */
.service-detail-section {
  background: #fefdf8;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
}

.service-detail-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px 24px 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease-out, box-shadow 0.35s ease-out;
}

.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.service-detail-card-right {
  background: linear-gradient(135deg, #fff 0, #f6fbff 100%);
}

.service-detail-card p {
  font-size: 13px;
  color: #555;
  margin-bottom: 16px;
}

.service-list {
  margin: 0 0 16px;
  padding-left: 1.1em;
}

.service-list li {
  position: relative;
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

.service-list li::before {
  content: "・";
  position: absolute;
  left: -1.1em;
}

.service-detail-nursery-link {
  margin-top: 12px;
  font-size: 13px;
}

.service-detail-nursery-link a {
  color: #3f5f4b;
}

.service-detail-nursery-link a:hover {
  color: #ff8f4e;
  text-decoration: underline;
}

/* Voice main */
.voice-main-section {
  background: #f9f6ec;
}

.voice-main-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.voice-main-section .voice-card {
  grid-template-columns: 80px minmax(0, 1fr);
}

/* News */
.news-section {
  background: #fefdf8;
}

.news-list {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  padding: 12px 20px;
}

.news-list li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #f1efe8;
  font-size: 13px;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-date {
  color: #888;
}

/* Company */
.company-section {
  background: linear-gradient(to bottom, #f0f9f0 0, #fefdf8 100%);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.company-map {
  position: relative;
}

.company-map img {
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.company-group-logo {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  color: #2d7fd8;
}

.company-info dl {
  margin: 0;
  font-size: 13px;
}

.company-info dt {
  font-weight: 700;
  margin-top: 4px;
}

.company-info dd {
  margin: 0 0 6px;
  color: #555;
}

/* Contact */
.contact-section {
  background: #f9f6ec;
}

.contact-lead {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin-bottom: 24px;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  transition: box-shadow 0.35s ease-out;
  padding: 24px 24px 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.contact-form:focus-within {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.form-row label {
  font-size: 13px;
}

.required {
  display: inline-block;
  font-size: 11px;
  color: #ff8f4e;
  margin-left: 4px;
}

.optional {
  display: inline-block;
  font-size: 11px;
  color: #888;
  margin-left: 4px;
}

.form-row input,
.form-row textarea {
  border-radius: 10px;
  border: 1px solid #ddd4c6;
  padding: 8px 10px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease-out, box-shadow 0.3s ease-out;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #ffb088;
  box-shadow: 0 0 0 3px rgba(255, 176, 136, 0.2);
}

.form-actions {
  text-align: center;
  margin-top: 10px;
}

.contact-success {
  max-width: 720px;
  margin: 0 auto 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #e7f7d7;
  color: #3c6b2a;
  font-size: 13px;
}

.contact-error {
  max-width: 720px;
  margin: 0 auto 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ffe3d6;
  color: #a43b27;
  font-size: 13px;
}

.contact-error-list {
  max-width: 720px;
  margin: 0 auto 12px;
  padding: 8px 18px 10px;
  border-radius: 10px;
  background: #fff1eb;
  color: #a43b27;
  font-size: 13px;
}

.contact-error-list li {
  list-style: disc;
  margin-left: 1.2em;
}

/* FAQ アコーディオン */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e0d8;
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease-out, border-color 0.3s ease-out;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: #e0ddd4;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #454545;
  text-align: left;
  cursor: pointer;
  transition: background 0.35s ease-out;
}

.faq-question:hover {
  background: #f9f6ec;
}

.faq-question:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #ffb088;
}

.faq-question-text {
  flex: 1;
  padding-right: 12px;
}

.faq-question-icon {
  flex-shrink: 0;
  font-size: 24px;
  color: #888;
  transition: transform 0.35s ease-out;
}

.faq-item.is-open .faq-question-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 18px 14px;
}

.faq-answer[hidden] {
  display: none !important;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 0 2px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* LP サイドバー */
.lp-main {
  position: relative;
}

.lp-layout {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 40px;
  align-items: start;
}

.lp-content {
  min-width: 0;
}

/* PC版メイン：ブログセクション（最新3件） */
.lp-blog-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.lp-blog-section .section-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-blog-section .section-title-icon {
  font-size: 28px;
  color: #3f5f4b;
}

.lp-blog-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-blog-card {
  margin: 0;
}

.lp-blog-card-link {
  display: block;
  height: 100%;
  padding: 24px;
  background: #f9f6ec;
  border: 1px solid #e5e0d8;
  border-radius: 12px;
  color: #333;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-blog-card-link:hover {
  border-color: #c55a20;
  box-shadow: 0 6px 20px rgba(197, 90, 32, 0.12);
}

.lp-blog-card-date {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.lp-blog-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #2d4a3e;
  margin: 0 0 12px;
  line-height: 1.4;
}

.lp-blog-card-excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #c55a20;
}

.lp-blog-card-more .material-symbols-outlined {
  font-size: 18px;
}

.lp-blog-section-more {
  text-align: center;
  margin: 28px 0 0;
}

.lp-blog-section-empty {
  color: #777;
  text-align: center;
  margin: 0;
}

/* モバイル版ブログ（PC・タブレットでは非表示） */
.lp-mobile-blog {
  display: none;
}

/* サイドバー：通常はレイアウト内（ヒーローには被らない）、ヒーロー下端通過で固定 */
.lp-sidebar-wrap {
  width: 260px;
  min-width: 260px;
  align-self: start;
}

.lp-sidebar {
  position: static;
  width: 260px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #f9f6ec;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e5e0d8;
  -webkit-overflow-scrolling: touch;
  z-index: 40;
}

/* ヒーロー下端に達したタイミングで JS が body に .lp-sidebar-stuck を付与し、ここで固定 */
/* フッター接近時は JS で --sidebar-fixed-top を更新し、サイドバーを上にずらして被らないようにする */
body.lp-sidebar-stuck .lp-sidebar {
  position: fixed;
  top: var(--sidebar-fixed-top, 80px);
  right: max(16px, calc((100vw - 1280px) / 2 + 16px));
  transition: top 0.3s ease-out;
}

.lp-sidebar-nav {
  margin: 0;
}

.lp-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #ddd4c6;
  color: #454545;
}

.lp-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-sidebar-list li {
  margin-bottom: 4px;
}

.lp-sidebar-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #454545;
  padding: 6px 0;
}

.lp-sidebar-list a:hover {
  color: #ff8f4e;
}

.lp-sidebar-list .material-symbols-outlined {
  font-size: 18px;
  color: #888;
  transition: transform 0.35s ease-out;
}

.lp-sidebar-list a:hover .material-symbols-outlined {
  transform: translateY(-2px) scale(1.08);
}

.lp-sidebar-block {
  margin-bottom: 24px;
}

.lp-sidebar-block:last-child {
  margin-bottom: 0;
}

/* ① CTA固定表示 */
.lp-sidebar-cta {
  background: linear-gradient(135deg, #ff8f4e 0%, #e36825 100%);
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  border: none;
}

.lp-sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: #fff;
  color: #ff8f4e;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

.lp-sidebar-cta-btn:last-child,
.lp-sidebar-cta-btn-sub {
  margin-bottom: 0;
}

.lp-sidebar-cta-btn:hover {
  opacity: 0.95;
}

.lp-sidebar-cta-btn-sub {
  background: rgba(255, 255, 255, 0.9);
  color: #c55a20;
}

.lp-sidebar-cta .material-symbols-outlined {
  font-size: 20px;
  color: inherit;
  transition: transform 0.35s ease-out;
}

.lp-sidebar-cta a:hover .material-symbols-outlined {
  transform: translateY(-2px) scale(1.05);
}

/* ② 対象者別リンク */
.lp-sidebar-audience .lp-sidebar-emoji {
  font-size: 1.2em;
  margin-right: 4px;
}

/* ③ アクセス情報 */
.lp-sidebar-access-place {
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 4px;
}

.lp-sidebar-access-place a {
  color: inherit;
}

.lp-sidebar-access-place a:hover {
  color: #ff8f4e;
  text-decoration: underline;
}

.lp-sidebar-access-address,
.lp-sidebar-access-station {
  font-size: 12px;
  color: #555;
  margin: 0 0 4px;
  line-height: 1.5;
}

.lp-sidebar-map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 12px;
  color: #ff8f4e;
}

.lp-sidebar-map-link:hover {
  text-decoration: underline;
}

.lp-sidebar-map-link .material-symbols-outlined {
  font-size: 16px;
}

/* ④ SNS・Instagram */
.lp-sidebar-insta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #454545;
  margin-bottom: 4px;
}

.lp-sidebar-insta-link:hover {
  color: #ff8f4e;
}

.lp-sidebar-insta-note {
  font-size: 11px;
  color: #666;
  margin: 0 0 10px;
}

.lp-sidebar-insta-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.lp-sidebar-insta-thumb {
  aspect-ratio: 1;
  background: #e5e0d8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.lp-sidebar-insta-thumb:hover {
  background: #ddd4c6;
  color: #ff8f4e;
}

.lp-sidebar-insta-thumb .material-symbols-outlined {
  font-size: 24px;
}

/* ⑤ 採用情報 */
.lp-sidebar-recruit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #ff8f4e;
  margin-bottom: 4px;
}

.lp-sidebar-recruit-link:hover {
  text-decoration: underline;
}

.lp-sidebar-recruit-detail {
  font-size: 12px;
  color: #555;
  margin: 0;
}

@media (max-width: 1024px) {
  .lp-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-sidebar-wrap {
    width: 100%;
    min-width: 0;
  }

  .lp-sidebar {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    max-height: none;
    overflow: visible;
  }
}

/* Footer */
.site-footer {
  background: #3f5f4b;
  color: #f8f6f0;
  padding: 20px 0 16px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr) auto;
  align-items: center;
  gap: 24px;
  font-size: 12px;
}

.footer-logo-area .logo-mark {
  background: #fefdf8;
  color: #3f5f4b;
}

.footer-logo-area .logo-sub {
  color: #c9d5cd;
}

.footer-info p {
  margin: 0 0 6px;
}

.footer-nap-intro {
  margin: 0 0 0.75em;
  font-size: 0.9em;
  color: #e0e8e2;
}

.footer-nap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
  margin-bottom: 12px;
}

.footer-nap-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-nap-label {
  font-weight: 700;
  color: #f8f6f0;
}

.footer-nap-label a {
  color: inherit;
}

.footer-nap-label a:hover {
  text-decoration: underline;
}

.footer-nap-address {
  font-style: normal;
  color: #e0e8e2;
  line-height: 1.6;
}

.footer-nap-address a {
  color: #b8e0ff;
}

.footer-nap-address a:hover {
  text-decoration: underline;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 11px;
  color: #8fc9a8;
}

.footer-map-link .material-symbols-outlined {
  font-size: 16px;
}

.footer-map-link:hover {
  color: #b8e0ff;
}

.footer-copy {
  font-size: 11px;
  color: #c9d5cd;
}

.footer-credit {
  font-size: 10px;
  color: rgba(201, 213, 205, 0.75);
  margin-top: 6px;
}

.footer-credit a {
  color: rgba(201, 213, 205, 0.9);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.footer-sns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sns-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fefdf8;
  color: #3f5f4b;
  font-weight: 700;
  font-size: 14px;
}

.sns-icon:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 960px) {
  .global-nav {
    display: none;
  }

  .fv-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .fv-image {
    order: -1;
  }

  .strengths-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-top-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-main-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-sub-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-sub-card .service-sub-photo {
    max-height: 200px;
  }

  .service-sub-card .service-sub-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-detail-grid,
  .company-grid,
  .voice-main-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .voice-main-grid {
    gap: 18px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    justify-items: center;
  }

  .footer-nap {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .footer-sns {
    flex-direction: row;
  }

  .lp-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .strengths-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-sub-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .voice-top-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .voice-main-section .voice-card {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .voice-main-section .voice-card .voice-icon {
    width: 60px;
    height: 60px;
    font-size: 28px !important;
  }

  .news-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .btn {
    white-space: normal;
    padding: 10px 20px;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 14px;
  }

  .lp-layout {
    padding: 0 12px 30px;
    gap: 24px;
  }

  .lp-sidebar-wrap {
    display: none;
  }

  /* PC版ブログセクションはモバイルでは非表示（lp-mobile-blog で表示） */
  .lp-blog-section {
    display: none;
  }

  /* モバイル版ブログ表示 */
  .lp-mobile-blog {
    display: block;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e8e4dc;
  }

  .lp-mobile-blog-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d4a3e;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .lp-mobile-blog-title .material-symbols-outlined {
    font-size: 22px;
    color: #3f5f4b;
  }

  .lp-mobile-blog-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .lp-mobile-blog-item {
    border-bottom: 1px solid #e8e4dc;
  }

  .lp-mobile-blog-item:last-child {
    border-bottom: none;
  }

  .lp-mobile-blog-item a {
    display: block;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
  }

  .lp-mobile-blog-item a:hover {
    color: #3f5f4b;
  }

  .lp-mobile-blog-date {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
  }

  .lp-mobile-blog-title-text {
    font-weight: 600;
    font-size: 14px;
  }

  .lp-mobile-blog-more {
    margin: 20px 0 0;
    text-align: center;
  }

  .lp-mobile-blog-empty {
    color: #777;
    font-size: 14px;
    margin: 0;
  }
}

