@charset "UTF-8";
/*
Theme Name: ルミエールコアカンパニー合同会社
Description: ルミエールコアカンパニー合同会社｜にじいろ介護テーマ（c4-3ベース）。HTMLモック lumiere_all をWordPress化。
Version: 1.0
Note: このSCSSがソースです。Sassウォッチャーが style.css / style.min.css を生成します（旧パーシャルの@importは廃止し1ファイルに統合）。
*/
/* ===================================================================
   0. ベース / 共通トークン
=================================================================== */
:root {
  --orange:#ffab33;
  --orange-soft:#ffba4d;
  --orange-pale:#fff3e0;
  --cream:#fff9f2;
  --ink:#3a3a3a;
  --ink-soft:#6b6b6b;
  --white:#fff;
  --rainbow:linear-gradient(90deg,#e94f8a,#f5a21c,#f7d038,#5cc26a,#3da9dc,#9b6ad6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.en {
  font-family: "Comfortaa", "Quicksand", sans-serif;
}

.quick {
  font-family: "Quicksand", sans-serif;
}

.bg-cream {
  background: var(--cream);
}

/* 改行ユーティリティ：br-sp=SPのみ改行 / br-pc=PCのみ改行 */
.br-sp {
  display: none;
}

.br-pc {
  display: inline;
}

/* 虹色ライン */
.rainbow-line {
  height: 4px;
  background: var(--rainbow);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: rainflow 4s linear infinite;
}

@keyframes rainflow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cue {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* アニメ（フェードイン） */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.fade-in.scroll-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .fade-in {
    opacity: 1;
    transform: none;
  }
}
/* ===================================================================
   1. ヘッダー / SPメニュー
=================================================================== */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  transition: 0.4s;
  background: transparent;
}

header.site-header.change-color {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 18px rgba(245, 162, 28, 0.12);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 48px;
  width: auto;
  max-width: 96px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-logo .logo-text .ja {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.header-logo .logo-text .en {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 600;
}

header.site-header.change-color .logo-text .ja {
  text-shadow: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
}

.header-tel .tel-ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--rainbow);
  background-size: 200% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: 0.3s;
  flex-shrink: 0;
}

.header-tel:hover {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.header-tel:hover .tel-ic {
  animation: rainflow 1.5s linear infinite;
}

.header-contact {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
  box-shadow: 0 5px 16px rgba(245, 162, 28, 0.35);
  overflow: hidden;
  z-index: 1;
}

.header-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rainbow);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.header-contact:hover::before {
  opacity: 1;
  animation: rainflow 2s linear infinite;
}

.header-contact:hover {
  transform: translateY(-2px);
}

/* PCグローバルナビ */
.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: 4px;
}

.header-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 6px 2px;
  transition: 0.3s;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.6);
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--rainbow);
  background-size: 200% 100%;
  transition: width 0.3s;
  border-radius: 2px;
}

.header-nav a:hover {
  color: var(--orange);
}

.header-nav a:hover::after {
  width: 100%;
  animation: rainflow 2s linear infinite;
}

header.site-header.change-color .header-nav a {
  text-shadow: none;
}

body.lower .header-nav a {
  text-shadow: none;
}

/* ハンバーガーはSPのみ表示 */
.hamburger {
  display: none;
}

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: linear-gradient(140deg, rgba(245, 162, 28, 0.97), rgba(233, 79, 138, 0.95));
  transform: translateX(100%);
  transition: 0.45s cubic-bezier(0.6, 0.05, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.sp-menu.active {
  transform: translateX(0);
}

.sp-menu a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px;
}

.sp-menu .sp-close {
  position: absolute;
  top: 26px;
  right: 26px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.sp-menu .sp-sns {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.sp-menu .sp-sns a {
  font-size: 1.4rem;
  padding: 0;
}

/* 下層ではヘッダー常時白＋本文を下げる */
body.lower {
  padding-top: 78px;
}

body.lower header.site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 18px rgba(245, 162, 28, 0.12);
}

body.lower header.site-header .logo-text .ja {
  text-shadow: none;
}

/* ===================================================================
   2. FV（front-page）
=================================================================== */
.fv {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slide-images {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide-images .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 18s infinite;
  transition: opacity 1.8s;
}

.slide-images .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 250, 240, 0.55), rgba(245, 162, 28, 0.12) 60%, rgba(255, 255, 255, 0.1));
}

.slide-images .slide:nth-child(1) {
  animation-delay: 0s;
  background-image: linear-gradient(135deg, #ffd89b, #f5a21c);
}

.slide-images .slide:nth-child(2) {
  animation-delay: 6s;
  background-image: linear-gradient(135deg, #ffe0a3, #ffba4d);
}

.slide-images .slide:nth-child(3) {
  animation-delay: 12s;
  background-image: linear-gradient(135deg, #ffcaa3, #f5a21c);
}

.fv-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 9%;
}

.fv-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  padding: 8px 18px;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 26px;
  box-shadow: 0 4px 18px rgba(245, 162, 28, 0.18);
}

.fv-badge img {
  width: 30px;
  height: 30px;
}

.fv-badge span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.fv h1.catch {
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.35;
  color: var(--ink);
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

.fv h1.catch .hl {
  color: var(--orange);
  position: relative;
}

.fv .catch-line {
  width: 120px;
  margin: 28px 0 22px;
}

.fv p.lead {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 500;
  color: var(--ink);
  max-width: 540px;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.8);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.scroll-cue .bar {
  width: 1px;
  height: 42px;
  background: var(--orange);
  animation: cue 1.8s infinite;
}

/* ===================================================================
   3. お知らせ（front-page News）
=================================================================== */
.news {
  background: var(--cream);
  padding: 80px 7%;
}

.news-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.news-head {
  flex: 0 0 240px;
}

.news-head .en {
  font-size: 2.2rem;
  color: var(--orange);
  font-weight: 700;
}

.news-head .ja {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
  margin: 4px 0 22px;
}

.news-head .news-line {
  width: 48px;
  height: 3px;
  background: var(--rainbow);
  border-radius: 3px;
  margin-bottom: 26px;
}

.news-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 11px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}

.news-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rainbow);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.news-btn:hover::before {
  opacity: 1;
  animation: rainflow 2s linear infinite;
}

.news-btn:hover {
  transform: translateX(4px);
}

.news-btn-sp {
  display: none;
}

.news-list {
  flex: 1;
  min-width: 300px;
}

.news-list li a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 6px;
  border-bottom: 1px solid rgba(245, 162, 28, 0.18);
  transition: 0.3s;
}

.news-list li a:hover {
  background: rgba(245, 162, 28, 0.06);
  padding-left: 14px;
}

.news-list .date {
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: "Quicksand";
  transition: 0.4s;
  background-size: 200% 100%;
}

.news-list li a:hover .date {
  background: var(--rainbow);
  background-size: 200% 100%;
  animation: rainflow 2s linear infinite;
}

.news-list .cat {
  font-size: 11px;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.news-list .ttl {
  flex: 1;
  font-size: 14px;
  color: var(--ink);
}

.news-list .arrow {
  color: var(--orange-soft);
}

.news-list li a:hover .arrow {
  color: var(--orange);
  transform: translateX(3px);
  transition: 0.3s;
}

/* ===================================================================
   4. About（front-page）
=================================================================== */
.about {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 330px;
  background: #fff;
  padding: 56px 50px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(245, 162, 28, 0.1);
  position: relative;
  z-index: 2;
  margin-right: -60px;
}

.about-text .label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.about-text .label .en {
  font-size: 2.4rem;
  color: var(--orange);
  font-weight: 700;
}

.about-text .label .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rainbow);
}

.about-text h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 22px;
  color: var(--ink);
}

.about-text h2 .hl {
  color: var(--orange);
}

.about-text p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.about-img {
  flex: 1;
  min-width: 330px;
  height: 460px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  background-image: linear-gradient(135deg, #ffe4b5, #ffba4d);
}

/* ===================================================================
   5. サービス3カラム（front-page）
=================================================================== */
.services {
  padding: 30px 0 0;
  position: relative;
}

.services-band {
  background: var(--orange-pale);
  position: relative;
  padding: 90px 7% 110px;
  margin-top: 60px;
}

.services-band::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, var(--orange-pale) 50%, transparent 50%) repeat-x;
  background-size: 60px 60px;
  transform: translateY(-99%);
}

.services-head {
  text-align: center;
  margin-bottom: 54px;
}

.services-head .en {
  font-size: 2.6rem;
  color: var(--orange);
  font-weight: 700;
}

.services-head .line {
  width: 60px;
  height: 3px;
  background: var(--rainbow);
  margin: 10px auto 14px;
  border-radius: 3px;
}

.services-head .ja {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
}

.cards {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(245, 162, 28, 0.12);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(245, 162, 28, 0.22);
}

.card-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-image: linear-gradient(135deg, #ffd89b, #f5a21c);
}

.card:nth-child(2) .card-img {
  background-image: linear-gradient(135deg, #ffe0a3, #ffc94d);
}

.card:nth-child(3) .card-img {
  background-image: linear-gradient(135deg, #ffcf9e, #f5a21c);
}

.card-img .en {
  position: absolute;
  left: 22px;
  bottom: 54px;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.card-img .ja {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.card-body {
  padding: 26px 24px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body p {
  font-size: 13.5px;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 20px;
}

.card-more {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--orange);
  padding: 9px 22px;
  border-radius: 30px;
  transition: 0.3s;
}

.card-more::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rainbow);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.card-more:hover {
  border-color: transparent !important;
  color: #fff !important;
}

.card-more:hover::before {
  opacity: 1;
  animation: rainflow 2s linear infinite;
}

/* ===================================================================
   5b. 2つの事業所（front-page Offices）
=================================================================== */
.offices {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  padding: 90px 7% 100px;
}

.offices-head {
  text-align: center;
  margin-bottom: 54px;
}

.offices-head .en {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--orange);
  font-weight: 700;
}

.offices-head .line {
  width: 40px;
  height: 2px;
  background: var(--orange-soft);
  margin: 14px auto;
  border-radius: 2px;
}

.offices-head .ja {
  font-size: 27px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.offices-head .offices-lead {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 920px;
  margin: 0 auto;
}

.office-card {
  background: #fff;
  border-radius: 24px;
  padding: 42px 36px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(245, 162, 28, 0.1);
  border: 1px solid #fff3e0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(245, 162, 28, 0.18);
}

.office-logo {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.office-logo img {
  max-height: 120px;
  max-width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

.office-logo--chara {
  position: relative;
}

.office-logo--chara::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6e6 0%, #fff9f2 70%);
  z-index: 0;
}

.office-logo--chara img {
  position: relative;
  z-index: 1;
  max-height: 118px;
  filter: drop-shadow(0 6px 14px rgba(245, 162, 28, 0.18));
}

.office-en {
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 600;
}

.office-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin: 6px 0 14px;
  line-height: 1.45;
}

.office-card p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.office-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  border-bottom: 1px solid var(--orange-soft);
  padding-bottom: 3px;
  transition: gap 0.25s;
}

.office-more:hover {
  gap: 12px;
}

/* ===================================================================
   6. Recruit（front-page）
=================================================================== */
.recruit {
  position: relative;
  padding: 120px 7%;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff3e0, #ffe0c0);
}

.recruit .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.5;
  z-index: 0;
}

.recruit .b1 {
  width: 300px;
  height: 300px;
  background: #e94f8a;
  top: -70px;
  left: 7%;
  animation: floaty 7s ease-in-out infinite;
}

.recruit .b2 {
  width: 260px;
  height: 260px;
  background: #3da9dc;
  bottom: -60px;
  right: 9%;
  animation: floaty 9s ease-in-out infinite;
}

.recruit .b3 {
  width: 220px;
  height: 220px;
  background: #5cc26a;
  top: 38%;
  left: 46%;
  animation: floaty 8s ease-in-out infinite;
}

.recruit .b4 {
  width: 180px;
  height: 180px;
  background: #f7d038;
  top: 12%;
  right: 24%;
  animation: floaty 10s ease-in-out infinite;
}

.recruit-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 54px 44px;
  box-shadow: 0 20px 60px rgba(245, 162, 28, 0.18);
}

.recruit .en {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  color: var(--orange);
}

.recruit .ja {
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
  margin: 6px 0 24px;
}

.recruit p {
  font-size: 15px;
  margin-bottom: 34px;
  line-height: 2;
  color: var(--ink);
}

.recruit-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 14px 38px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 8px 24px rgba(245, 162, 28, 0.3);
}

.recruit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rainbow);
  background-size: 200% 100%;
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}

.recruit-btn:hover {
  color: #fff;
  background: transparent;
  transform: translateY(-3px);
}

.recruit-btn:hover::before {
  opacity: 1;
  animation: rainflow 2s linear infinite;
}

/* ===================================================================
   7. footer（site-foot）
=================================================================== */
footer.site-foot {
  background: #ffb84d;
  color: #fff;
  padding: 46px 7% 26px;
}

.foot-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}

.foot-brand img {
  height: 60px;
  width: auto;
  max-width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.foot-brand .name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.foot-brand .sub {
  font-size: 12px;
  opacity: 0.92;
  text-align: center;
}

.foot-menu {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.foot-menu a {
  transition: 0.3s;
  opacity: 0.95;
}

.foot-menu a:hover {
  opacity: 0.7;
}

.foot-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-bottom: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13.5px;
}

.foot-info .item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.foot-info .item i {
  opacity: 0.85;
}

.foot-info .foot-contact-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13.5px;
  transition: 0.3s;
}

.foot-info .foot-contact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rainbow);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.foot-info .foot-contact-btn:hover::before {
  opacity: 1;
  animation: rainflow 2s linear infinite;
}

.foot-info .foot-contact-btn:hover {
  color: #fff;
}

.foot-sns {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}

.foot-sns a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 16px;
}

.foot-sns a:hover {
  background: #fff;
  color: var(--orange);
}

/* Instagramだけ横長ピル型（アイコン＋ラベル） */
.foot-sns a.sns-insta {
  width: auto;
  height: 46px;
  padding: 0 24px;
  gap: 9px;
  border-radius: 26px;
}

.foot-sns a.sns-insta i {
  font-size: 26px;
}

.foot-sns a.sns-insta span {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.copyright {
  text-align: center;
  font-size: 12px;
  opacity: 0.9;
  font-family: "Quicksand";
}

/* ===================================================================
   8. 下層ページ共通（page-head / breadcrumb / page-body など）
=================================================================== */
.page-head {
  position: relative;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-image: linear-gradient(120deg, #ffd89b, #ffba4d);
}

.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(245, 162, 28, 0.88), rgba(233, 79, 138, 0.5));
}

.page-head .ph-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-head .en {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.25);
}

.page-head .ja {
  font-size: 1rem;
  letter-spacing: 0.28em;
  margin-top: 6px;
  font-weight: 500;
}

.page-head .ph-line {
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 16px auto 0;
  border-radius: 3px;
  opacity: 0.9;
}

.breadcrumb {
  background: var(--cream);
  padding: 14px 7%;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.breadcrumb a {
  color: var(--orange);
  transition: 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.5;
}

.page-body {
  padding: 80px 7%;
}

.page-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.sec-head {
  text-align: center;
  margin-bottom: 48px;
}

.sec-head .en {
  font-size: 2.2rem;
  color: var(--orange);
  font-weight: 700;
}

.sec-head .line {
  width: 54px;
  height: 3px;
  background: var(--rainbow);
  margin: 8px auto 12px;
  border-radius: 3px;
}

.sec-head .ja {
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
}

.lead-txt {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 2.1;
}

/* テーブル（会社概要 / 募集要項） */
.info-table {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14.5px;
}

.info-table th, .info-table td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(245, 162, 28, 0.2);
  vertical-align: top;
}

.info-table th {
  width: 200px;
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}

.info-table td {
  color: var(--ink);
}

/* サービス詳細ブロック */
.svc-block {
  display: flex;
  gap: 46px;
  align-items: center;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.svc-block:nth-child(even) {
  flex-direction: row-reverse;
}

.svc-block .svc-img {
  flex: 1;
  min-width: 300px;
  height: 300px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 50px rgba(245, 162, 28, 0.18);
  background-image: linear-gradient(135deg, #ffd89b, #f5a21c);
}

.svc-block:nth-child(even) .svc-img {
  background-image: linear-gradient(135deg, #ffe0a3, #ffc94d);
}

.svc-block .svc-txt {
  flex: 1;
  min-width: 300px;
}

.svc-block .svc-num {
  font-family: "Quicksand";
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange-soft);
  line-height: 1;
}

.svc-block .svc-txt h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 6px 0 14px;
  color: var(--ink);
}

.svc-block .svc-txt h3 .hl {
  color: var(--orange);
}

.svc-block .svc-txt p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-tags span {
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

/* サービス一覧カード */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.svc-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 12px 36px rgba(245, 162, 28, 0.1);
  border-top: 4px solid var(--orange);
  transition: 0.3s;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(245, 162, 28, 0.2);
}

.svc-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.svc-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.svc-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* カテゴリ見出し */
.cat-band {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 30px;
  max-width: 920px;
}

.cat-band .bar {
  width: 8px;
  height: 30px;
  background: var(--rainbow);
  border-radius: 4px;
}

.cat-band h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ink);
}

.cat-wrap {
  margin-bottom: 64px;
}

.cat-wrap.last {
  margin-bottom: 0;
}

/* 採用 */
.recruit-msg {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.recruit-msg h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--ink);
}

.recruit-msg h2 .hl {
  color: var(--orange);
}

.recruit-msg p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 2.1;
}

.merit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

.merit {
  background: var(--cream);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
}

.merit .ic {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 12px;
}

.merit h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.merit p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* 地図 */
.page-map {
  height: 400px;
  background: #dfe7ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3ad;
  font-size: 14px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  max-width: 920px;
  margin: 50px auto 0;
}

.page-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA帯 */
.cta-band {
  background: var(--orange-pale);
  padding: 64px 7%;
  text-align: center;
  margin-top: 20px;
}

.cta-band h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--ink);
}

.cta-band p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btns a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.3s;
}

.cta-btns .mail {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(245, 162, 28, 0.32);
}

.cta-btns .mail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rainbow);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.cta-btns .mail:hover::before {
  opacity: 1;
  animation: rainflow 2s linear infinite;
}

.cta-btns .mail:hover {
  transform: translateY(-2px);
}

.cta-btns .tel {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #fff;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.cta-btns .tel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rainbow);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.cta-btns .tel:hover {
  background: transparent;
  color: #fff;
  border-color: transparent;
}

.cta-btns .tel:hover::before {
  opacity: 1;
  animation: rainflow 2s linear infinite;
}

/* ===================================================================
   9. お知らせ（archive / single）
=================================================================== */
.news-page-list {
  max-width: 880px;
  margin: 0 auto;
}

.news-page-list li a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 8px;
  border-bottom: 1px solid rgba(245, 162, 28, 0.18);
  transition: 0.3s;
  flex-wrap: wrap;
}

.news-page-list li a:hover {
  background: rgba(245, 162, 28, 0.05);
  padding-left: 14px;
}

.news-page-list .date {
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: "Quicksand";
}

.news-page-list .cat {
  font-size: 11px;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.news-page-list .ttl {
  flex: 1;
  min-width: 200px;
  font-size: 14.5px;
  color: var(--ink);
}

.news-page-list .arrow {
  color: var(--orange-soft);
}

.news-single .news-article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.news-single .news-article-meta .date {
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: "Quicksand";
}

.news-single .news-article-meta .cat {
  font-size: 11px;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 2px 10px;
  border-radius: 20px;
}

.news-single .news-article-title {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(245, 162, 28, 0.25);
}

.news-single .news-article-body {
  font-size: 15px;
  color: var(--ink);
  line-height: 2.1;
}

.news-single .news-article-body p {
  margin-bottom: 16px;
}

.news-single .news-article-body img {
  border-radius: 14px;
  margin: 18px 0;
}

.news-single .news-back {
  text-align: center;
  margin-top: 50px;
}

/* ページネーション */
.navigation {
  text-align: center;
  margin-top: 50px;
}

.wp-pagenavi {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  border: none !important;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  transition: 0.3s;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  background: var(--orange-pale);
}

.wp-pagenavi span.current {
  background: var(--orange);
  color: #fff;
}

.page-numbers {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 3px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
}

.page-numbers.current {
  background: var(--orange);
  color: #fff;
}

/* ===================================================================
   10. プライバシーポリシー
=================================================================== */
.policy-body {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}

.policy-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
  margin: 36px 0 12px;
  padding-left: 14px;
  border-left: 5px solid var(--orange);
  line-height: 1.4;
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2;
}

/* 送信完了メッセージ */
.thanks {
  text-align: center;
  font-size: 16px;
  color: var(--ink);
  line-height: 2;
  font-weight: 500;
}

/* ===================================================================
   11. お問い合わせフォーム（Contact Form 7）
=================================================================== */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.form-wrap p {
  margin-bottom: 22px;
}

.form-wrap label {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-wrap input[type=text],
.form-wrap input[type=email],
.form-wrap input[type=tel],
.form-wrap input[type=url],
.form-wrap input[type=number],
.form-wrap input[type=date],
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(245, 162, 28, 0.3);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: var(--cream);
  transition: 0.3s;
  margin-top: 6px;
}

.form-wrap input:focus, .form-wrap select:focus, .form-wrap textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}

.form-wrap textarea {
  min-height: 150px;
  resize: vertical;
}

.form-wrap .wpcf7-list-item {
  display: inline-block;
  margin: 0 14px 6px 0;
}

.form-wrap .wpcf7-not-valid-tip {
  color: #e94f8a;
  font-size: 12.5px;
}

.form-wrap .wpcf7-response-output {
  border-radius: 10px;
  font-size: 13.5px;
  margin: 20px 0;
}

.form-wrap .req, .form-wrap .wpcf7-required-mark {
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 4px;
  margin-left: 8px;
}

.form-wrap .any {
  background: #9aa0a6;
  color: #fff;
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 4px;
  margin-left: 8px;
}

.form-wrap .wpcf7-submit {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: block;
  margin: 36px auto 0;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 16px 56px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-family: inherit;
  box-shadow: 0 8px 24px rgba(245, 162, 28, 0.35);
}

.form-wrap .wpcf7-submit:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
}

/* ===================================================================
   12. レスポンシブ
=================================================================== */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .about-text {
    margin-right: 0;
    margin-bottom: -40px;
  }
  .about-img {
    width: 100%;
  }
  /* PCナビ → ハンバーガーに切替（タブレット以下） */
  .header-nav, .header-tel, .header-contact {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 52px;
    height: 52px;
    background: var(--orange);
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(245, 162, 28, 0.45), 0 0 0 3px rgba(255, 255, 255, 0.9);
  }
  .hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    transition: 0.3s;
  }
  .hamburger .ham-label {
    width: auto;
    height: auto;
    font-size: 8px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-top: 5px;
    line-height: 1;
  }
}
@media (max-width: 768px) {
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
  header.site-header {
    padding: 12px 18px;
  }
  .header-logo img {
    height: 42px;
    width: auto;
  }
  .header-logo .logo-text .ja {
    font-size: 13px;
  }
  body.lower {
    padding-top: 74px;
  }
  .page-head {
    height: 240px;
  }
  .news-inner {
    flex-direction: column;
    gap: 0;
  }
  .news-head {
    flex: 0 0 auto;
  }
  .news-head .ja {
    margin: 2px 0 8px;
  }
  .news-head .news-line {
    margin-bottom: 6px;
  }
  /* お知らせ一覧（TOP）：SPは日付/カテゴリを上段・タイトルを下段全幅に */
  .news-list li a {
    flex-wrap: wrap;
    gap: 8px 10px;
    position: relative;
    padding: 16px 28px 16px 6px;
  }
  .news-list li:first-child a {
    padding-top: 2px;
  }
  .news-list .ttl {
    flex-basis: 100%;
    width: 100%;
    font-size: 13.5px;
    line-height: 1.6;
  }
  .news-list .arrow {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
  /* 「一覧をみる」はSPでは一覧の下に表示 */
  .news-head .news-btn {
    display: none;
  }
  .news-btn-sp {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 4px;
  }
  .foot-info {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .about {
    padding: 70px 0;
  }
  .about-inner {
    padding: 0 6%;
  }
  .recruit {
    padding: 90px 7%;
  }
  /* SPはFVを低くして写真のアップ（過度なトリミング）を緩和 */
  .fv {
    height: 54vh;
    min-height: 380px;
  }
  .fv-inner {
    padding: 0 7%;
  }
  /* SPはヒーロー文字を小さめに */
  .fv h1.catch {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  .fv .catch-line {
    width: 90px;
    margin: 18px 0 16px;
  }
  .fv p.lead {
    font-size: 0.9rem;
  }
  /* FVバッジ（屋号）はSPでは非表示 */
  .fv-badge {
    display: none;
  }
  /* SPでは手動改行を無効化して自然に折り返す（見出し・本文） */
  .lead-txt br,
  .recruit-msg br,
  .svc-block .svc-txt p br {
    display: none;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-block {
    margin-bottom: 48px;
  }
  .offices {
    padding: 64px 6% 70px;
  }
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 420px;
  }
  .offices-head .ja {
    font-size: 23px;
  }
  .office-logo {
    height: 110px;
  }
  .office-logo--chara::before {
    width: 128px;
    height: 128px;
  }
  .merit-grid {
    grid-template-columns: 1fr;
  }
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td {
    display: block;
    width: 100%;
  }
  .info-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }
  .info-table td {
    padding-top: 4px;
    padding-bottom: 18px;
  }
}
/* ===================================================================
   14. 下層ページ拡充（事業所紹介・情報カード・特徴・できること・地域交流）
=================================================================== */
/* 事業所紹介ブロック（office-intro：下層上部・アンカー着地点） */
.office-intro {
  max-width: 980px;
  margin: 0 auto 10px;
  padding: 0 0 10px;
  scroll-margin-top: 80px;
}

.office-intro-card {
  display: flex;
  align-items: center;
  gap: 36px;
  background: #fff;
  border-radius: 24px;
  padding: 38px 44px;
  box-shadow: 0 10px 30px rgba(245, 162, 28, 0.1);
  border: 1px solid #fff3e0;
  margin-bottom: 14px;
}

.office-intro-card .office-logo {
  height: 140px;
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-intro-card .office-logo img {
  max-height: 130px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.office-intro-card .office-logo--chara {
  position: relative;
}

.office-intro-card .office-logo--chara::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6e6 0%, #fff9f2 70%);
  z-index: 0;
}

.office-intro-card .office-logo--chara img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 14px rgba(245, 162, 28, 0.18));
}

.office-intro-body {
  flex: 1;
}

.office-intro-body .office-en {
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 600;
}

.office-intro-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 6px 0 12px;
  line-height: 1.4;
}

.office-intro-body p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
}

/* 情報カード（利用時間・営業情報など） */
.info-card {
  max-width: 720px;
  margin: 50px auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 32px 38px;
  box-shadow: 0 8px 26px rgba(245, 162, 28, 0.1);
  border: 1px solid #fff3e0;
}

.info-card-ttl {
  font-size: 18px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.info-card-ttl i {
  color: var(--orange);
}

.hc-table {
  width: 100%;
  border-collapse: collapse;
}

.hc-table th, .hc-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid #f3e6d2;
  font-size: 14.5px;
}

.hc-table th {
  width: 120px;
  color: var(--orange);
  font-weight: 700;
  background: #fff9f2;
  border-radius: 8px;
}

.info-note {
  margin-top: 14px;
  font-size: 13px;
  color: #8a8a8a;
}

/* 想い・フィロソフィー */
.philosophy {
  max-width: 760px;
  margin: 56px auto 0;
  text-align: center;
  background: linear-gradient(135deg, #fff9f2, #fff3e0);
  border-radius: 24px;
  padding: 48px 40px;
}

.philosophy-en {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--orange);
  font-weight: 700;
}

.philosophy-lead {
  font-size: 23px;
  font-weight: 700;
  color: var(--ink);
  margin: 14px 0 18px;
  letter-spacing: 0.04em;
}

.philosophy p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
}

/* 特徴カード（デイ用 feat-grid） */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 40px auto 0;
}

.feat-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 8px 26px rgba(245, 162, 28, 0.1);
  border: 1px solid #fff3e0;
  transition: transform 0.3s;
}

.feat-card:hover {
  transform: translateY(-5px);
}

.feat-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd89b, #f5a21c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
}

.feat-card h4 {
  font-size: 17px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* きょうは何しよう＋共生型の合体カード（全幅） */
.feat-merge {
  max-width: 880px;
  margin: 24px auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 8px 26px rgba(245, 162, 28, 0.1);
  border: 1px solid #fff3e0;
}

.feat-merge h4 {
  font-size: 17px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 10px;
}

.feat-merge p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* 合体カードの下の画像（全幅） */
.feat-image {
  max-width: 880px;
  margin: 24px auto 0;
}

.feat-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* できることタグ群 */
.can-do {
  position: relative;
  max-width: 820px;
  margin: 44px auto 0;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 26px rgba(245, 162, 28, 0.1);
  border: 1px solid #fff3e0;
  text-align: center;
}

/* できること 右下の吹き出し */
.can-do-balloon {
  position: absolute;
  right: 22px;
  bottom: -16px;
  background: #fff;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  padding: 11px 18px;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(245, 162, 28, 0.18);
  transform: rotate(-3deg);
}

.can-do-balloon::before,
.can-do-balloon::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

/* しっぽ：外側（枠線色）— 上向き */
.can-do-balloon::before {
  left: 14px;
  top: -15px;
  border-width: 0 11px 15px 11px;
  border-color: transparent transparent var(--orange) transparent;
}

/* しっぽ：内側（塗り） */
.can-do-balloon::after {
  left: 16px;
  top: -10px;
  border-width: 0 9px 11px 9px;
  border-color: transparent transparent #fff transparent;
}

.can-do h4 {
  font-size: 19px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 8px;
}

.can-do .sub {
  font-size: 13px;
  color: #8a8a8a;
  margin-bottom: 24px;
}

.can-do-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.can-do-tags span {
  background: linear-gradient(135deg, #fff3e0, #ffe8c4);
  color: #b8730c;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 30px;
  font-size: 14px;
}

/* 地域交流バナー */
.community {
  max-width: 880px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, #fff9f2, #fff3e0);
  border-radius: 24px;
  padding: 44px 40px;
}

.community-en {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--orange);
  font-weight: 700;
  text-align: center;
}

.community h4 {
  font-size: 21px;
  color: var(--ink);
  font-weight: 700;
  text-align: center;
  margin: 10px 0 22px;
}

.community p {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink-soft);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.community-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}

.community-items span {
  background: #fff;
  color: #b8730c;
  border: 1px solid #ffdca0;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
}

/* 活動の様子（写真3枚） */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 40px auto 0;
}

.photo-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(245, 162, 28, 0.12);
  border: 1px solid #fff3e0;
  aspect-ratio: 4/3;
  background: #fff;
  /* 白いふんわりフレーム */
  padding: 9px;
  box-sizing: border-box;
  /* ホバーでふわっと動く */
  -webkit-transition: -webkit-transform .3s ease, box-shadow .3s ease;
          transition: transform .3s ease, box-shadow .3s ease;
}
.photo-item:hover {
  -webkit-transform: translateY(-6px) scale(1.02);
          transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 36px rgba(245, 162, 28, 0.24);
}

.photo-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 12px;
  cursor: -webkit-zoom-in;
  cursor: zoom-in; /* クリックで拡大できる合図 */
}

/* 活動写真：クリックで拡大表示（ライトボックス） */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  background: rgba(60, 40, 20, 0.55);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.photo-lightbox.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.photo-lightbox .plb-img {
  max-width: 900px;
  max-width: min(92vw, 900px);
  max-height: 88vh;
  border-radius: 16px;
  background: #fff;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  cursor: default;
  -webkit-animation: plbPop .25s ease;
          animation: plbPop .25s ease;
}
.photo-lightbox .plb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #f5a21c;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
@-webkit-keyframes plbPop {
  from { -webkit-transform: scale(.92); transform: scale(.92); opacity: 0; }
  to   { -webkit-transform: scale(1);   transform: scale(1);   opacity: 1; }
}
@keyframes plbPop {
  from { -webkit-transform: scale(.92); transform: scale(.92); opacity: 0; }
  to   { -webkit-transform: scale(1);   transform: scale(1);   opacity: 1; }
}

/* 縦長画像は切り取らず、枠内に全体を表示。左右の余白はパステルの水玉ドットで埋める */
.photo-item.is-portrait {
  position: relative;
}
.photo-item.is-portrait::before {
  content: "";
  position: absolute;
  inset: 9px; /* 白フレームの内側に収める（.photo-item の padding と同値） */
  border-radius: 12px;
  /* クリーム地に、オレンジとピンクのやわらかい水玉を互い違いに */
  background-color: #fff6ec;
  background-image:
    radial-gradient(circle, rgba(245, 162, 28, 0.20) 3px, transparent 3.5px),
    radial-gradient(circle, rgba(255, 150, 180, 0.20) 3px, transparent 3.5px);
  background-size: 24px 24px, 24px 24px;
  background-position: 0 0, 12px 12px;
  z-index: 0;
}
.photo-item.is-portrait img {
  position: relative;
  z-index: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 768px) {
  .office-intro-card {
    flex-direction: column;
    gap: 18px;
    padding: 30px 24px;
    text-align: center;
  }
  .office-intro-card .office-logo {
    flex: none;
    height: 120px;
  }
  .office-intro-name {
    font-size: 20px;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .info-card, .philosophy, .can-do, .community {
    padding: 30px 22px;
  }
  .can-do {
    padding-bottom: 40px;
  }
  .can-do-balloon {
    position: static;
    display: inline-block;
    margin-top: 22px;
    transform: rotate(-2deg);
  }
  .can-do-balloon::before,
  .can-do-balloon::after {
    display: none;
  }
  .philosophy-lead {
    font-size: 19px;
  }
  .photo-row {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}
/* ===================================================================
   15. 採用ページ（求人カード・共通条件・応募フロー）
=================================================================== */
.recruit-lead {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: var(--ink);
}

.recruit-message {
  max-width: 760px;
  margin: 0 auto 8px;
  text-align: center;
  background: linear-gradient(135deg, #fff9f2, #fff3e0);
  border-radius: 24px;
  padding: 40px;
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
}

.job-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 40px auto 0;
}

.job-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 30px;
  box-shadow: 0 12px 36px rgba(245, 162, 28, 0.12);
  border: 1px solid #fff3e0;
}

.job-card-head {
  margin-bottom: 16px;
}

.job-emp {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.job-card-head h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--ink);
}

.job-table {
  width: 100%;
  border-collapse: collapse;
}

.job-table th, .job-table td {
  padding: 11px 12px;
  text-align: left;
  border-bottom: 1px solid #f3e6d2;
  font-size: 14px;
  vertical-align: top;
  line-height: 1.7;
}

.job-table th {
  width: 90px;
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}

.recruit-common {
  max-width: 880px;
  margin: 0 auto;
}

.recruit-flow {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow-step {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 26px rgba(245, 162, 28, 0.1);
  border: 1px solid #fff3e0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.flow-step .flow-num {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd89b, #f5a21c);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Quicksand";
}

.flow-step h4 {
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 4px;
}

.flow-step p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.85;
}

@media (max-width: 768px) {
  .job-list {
    grid-template-columns: 1fr;
  }
  .recruit-message {
    padding: 30px 22px;
  }
}
/* ===================================================================
   16. ロード画面（プリローダー）
=================================================================== */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  width: 128px;
  height: 128px;
  -o-object-fit: contain;
     object-fit: contain;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-bar {
  width: 220px;
  height: 6px;
  border-radius: 6px;
  background: rgba(245, 162, 28, 0.2);
  overflow: hidden;
}

.loader-bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: 4px;
  background: var(--rainbow);
  background-size: 200% 100%;
  animation: loaderSlide 1.1s ease-in-out infinite, rainflow 3s linear infinite;
}

@keyframes loaderPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}
@keyframes loaderSlide {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(320%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .loader-logo, .loader-bar span {
    animation: none;
  }
}/*# sourceMappingURL=style.css.map */