/*
Theme Name: rarushoptheme
Description: 就労者支援施設向け WordPress テーマ（kihontheme を基にデザイン刷新）
Version: 1.0.0
Author: xxx
*/

/* =========================================================
   フォント読込
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&family=Jost:wght@300;400;500;600&display=swap');

/* =========================================================
   CSS変数 (テーマカラー・フォント等)
   サイトごとに :root の値を差し替えるだけで色変更が可能
   ========================================================= */
:root {
	/* ===== カラー =====
	   色の変更は基本この :root だけで完結します。
	   姉妹サイト展開時はこのグループ内の値を差し替えてください。 */

	/* --- ブランドカラー（主役＝黄みのオレンジ／陽だまり） --- */
	--color-accent:      #D98A2A;   /* メイン：陽だまりの黄みオレンジ（マリーゴールド） */
	--color-accent-dark: #B06A18;   /* 濃色：ホバー等。茶寄りで「木」のニュアンス */
	--color-contact:     #C76A1E;   /* お問い合わせ系：白文字が映える暖かいバーントオレンジ */

	/* --- 機能カラー（自然の補助色：緑＝植物／木の茶） --- */
	--color-rest:        #8AAB54;   /* 休憩：みずみずしいリーフグリーン（植物） */
	--color-rest-bg:     #EEF3E0;   /* 休憩：淡いリーフ背景 */
	--color-clean:       #B7A07A;   /* 清掃：木の温もりのウッドトープ（※元の寒色から変更） */

	/* --- 背景・ボーダー（陽だまり） --- */
	--color-bg:          #FFFBF2;   /* 基本背景：陽の差すサニーアイボリー */
	--color-bg-soft:     #FAF3E6;   /* やや沈めた背景（カード地・サブヘッダー等） */
	--color-bg-cream:    #FDF6E9;   /* クリーム背景 */
	--color-bg-cream-2:  #FEF6E6;   /* recommendボックス：淡い黄みクリーム */
	--color-bg-cream-3:  #FBEBCF;   /* recommend CTA：やや濃いめの黄みクリーム */
	--color-border:      #E9DFC9;   /* 共通ボーダー：砂色（木のニュアンス） */

	/* --- テキスト --- */
	--color-text:        #221E16;   /* 基本テキスト（暖色寄りの黒） */
	--color-text-light:  #6B6356;   /* やや薄いテキスト */
	--color-text-muted:  #9C9384;   /* 補足・控えめテキスト */

	/* --- 中立色（白・黒系：全施設共通／変更不要） --- */
	--color-dark:        #1a1a1a;
	--color-white:       #ffffff;

	/* --- rgba用RGBトリプレット（上のhexと必ず一致させる） --- */
	--color-accent-rgb:        217, 138, 42; /* = --color-accent  (#D98A2A) */
	--color-contact-rgb:       199, 106, 30; /* = --color-contact (#C76A1E) */
	--color-staff-overlay-rgb: 58, 42, 24;   /* スタッフ写真オーバーレイ #3A2A18（ウッド調ダーク） */

	/* --- LINE --- */
	--color-line-official:  #06C755; /* ※LINE公式・変更禁止 */
	--color-line-soft:      #7FA463; /* LINE相談ボタン：植物の緑に寄せた馴染み色 */
	--color-line-soft-dark: #6E9355; /* 同・ホバー */

	/* フォント */
	--font-jp:    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", "メイリオ", sans-serif;
	--font-en:    "Jost", "Cormorant Garamond", serif;
	--font-en-serif: "Cormorant Garamond", serif;

	/* レイアウト */
	--container-max:   1420px;
	--container-pad:   2rem;
	--header-h:        88px;
	--radius-img:      14px;
	--radius-pill:     6px;

	/* ===== フォーム・UI（通常は施設ごとに変更しない） ===== */
	--color-form-required:        #BE1D1D; /* 必須ラベルの赤 */
	--color-form-optional:        #878D8E; /* 任意ラベルのグレー */
	--color-form-input-bg:        #F4F4F4; /* 入力欄の背景 */
	--color-form-border:          #ccc;    /* 入力欄のボーダー */
	--color-form-placeholder:     #a5a5a5; /* プレースホルダー／selectの文字色 */
	--color-form-checkbox-border: #bcbcbc; /* チェックボックス・ラジオの枠線 */
}

/* =========================================================
   リセット・ベース
   ========================================================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

body {
	font-family: var(--font-jp);
	font-weight: 400;
	font-style: normal;
	background-color: var(--color-bg);
	color: var(--color-text);
	line-height: 1.8;
	width: 100%;
	overflow-x: hidden;
	letter-spacing: 0.04em;
	-webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
	list-style: none;
}

button {
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
}

/* モバイルメニュー展開中はスクロール禁止 */
body.open {
	overflow: hidden;
}

.link-point {
	padding-top: 100px;
	margin-top: -100px;
}

/* アンカーリンク時に固定ヘッダーへ隠れないようオフセット */
section[id] {
	scroll-margin-top: 100px;
}

/* =========================================================
   コンテナ
   ========================================================= */
.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

.container-narrow {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

/* =========================================================
   ヘッダー / ナビゲーション
   ========================================================= */
header {
	position: relative;
}

header nav {
	position: fixed;
	width: 100%;
	z-index: 900;
	top: 0;
	left: 0;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 1rem var(--container-pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-wrapper {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.site-logo {
	display: inline-flex;
	align-items: center;
}

.logo-img {
	max-height: 40px;
	width: auto;
	display: block;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 1.3rem;
}

.nav-menu a {
	color: var(--color-white);
	font-family: var(--font-jp);
	font-size: 0.95rem;
	letter-spacing: 0.12em;
	font-weight: 500;
	padding: 0 2px 4px;
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 0 1px;
	transition: background-size 0.3s, color 0.3s;
}

.nav-menu a:hover {
	background-position: bottom left;
	background-size: 100% 1px;
}

.nav-contact-btn {
	display: inline-block;
	padding: 0.7rem 1.6rem!important;
	background-color: var(--color-contact);
	color: var(--color-white) !important;
	border-radius: var(--radius-pill);
	font-family: var(--font-en);
	font-size: 0.9rem;
	letter-spacing: 0.14em;
	font-weight: 500;
	transition: background-color 0.3s ease;
	background-image: none !important;
}

.nav-contact-btn:hover {
	background-color: var(--color-accent);
	background-size: 0 0 !important;
}

/* スクロール後・サブページのナビゲーション（白背景） */
.scroll-nav,
.nav-special {
	background-color: var(--color-white);
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.scroll-nav .nav-menu a,
.nav-special .nav-menu a {
	color: var(--color-dark);
}

.scroll-nav .nav-contact-btn,
.nav-special .nav-contact-btn {
	background-color: var(--color-contact);
	color: var(--color-white) !important;
}

.scroll-nav .nav-contact-btn:hover,
.nav-special .nav-contact-btn:hover {
	background-color: var(--color-accent);
}

/* =========================================================
   お問い合わせフォーム
   ========================================================= */
.contact-page-text{
	text-align: center;
}

.contact-page-tel{
	text-align: center;
	margin: 40px auto 20px;
	font-size: 1.1rem;
}

.cf8-kome{
	font-size: .8rem;
	margin-bottom: 18px;
}

.cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cf7__list dt:nth-of-type(n + 2),
.cf7__list dd:nth-of-type(n + 2) {
  margin-top: 30px;
}

.cf7__list dt {
  width: 35%;
  padding-top: 15px;
}

.cf7__list dd {
  width: 65%;
}

/* 必須・任意 */
.cf7__required,
.cf7__optional {
  margin-right: 15px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  vertical-align: 1px;
}

.cf7__required {
  background: var(--color-form-required);
}

.cf7__optional {
  background: var(--color-form-optional);
}

/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
  width: 100%;
  padding: 15px 20px;
  background: var(--color-form-input-bg);
	border: solid 1px var(--color-form-border);
}

/* ドロップダウンメニュー */
.cf7__select {
  position: relative;
}

.cf7__select:before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: '';
}

.cf7__select select {
  width: 100%;
  padding: 19px 20px;
  background: var(--color-form-input-bg);
  color: var(--color-form-placeholder);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックス・ラジオボタン */
.cf8sp dd .wpcf7-checkbox,
.cf8sp dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf8sp .wpcf7-list-item {
  display: block;
  margin: 0;
	margin-left: 1em;
}

.cf8sp .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 8px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf8__list dd .wpcf7-list-item label {
  cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid var(--color-form-checkbox-border);
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #000;
  background: #000;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}

/* ラジオボタン */
input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: '';
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
  color: var(--color-form-placeholder);
}

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: var(--color-form-placeholder);
}

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: var(--color-form-placeholder);
}

/* 送信ボタン */
.cf7__button {
  padding-left: 72px;
  text-align: center;
}

input[type="submit"] {
  width: 300px;
	height: 48px;
    background: var(--color-contact);
    color: #fff;
    margin: auto;
    display: block;
    font-family: var(--font-jp);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    font-weight: 500;
    border-radius: var(--radius-pill);
	border: none;
	margin-top: 40px;
}

input[type="submit"]:hover {
  opacity: .6;
}

/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle;
}

.cf8__button{
    padding-left: 0px;
    text-align: left;
}

.cf8{
	max-width: 800px;
	margin: auto;
}

.cf8-text{
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	text-align: center;
	margin-bottom: 50px;
}

/* ---- 中間デスクトップ（992px〜1280px）：ヘッダー詰まり防止 ---- */
@media screen and (min-width: 992px) and (max-width: 1280px) {

  .nav-container,
  .hero-content,
  .top-house-container,
  .footer-container {
    width: calc(100% - 4rem); /* 左右余白を12rem→6remに縮小 */
  }

  .header-logo,
  .header-logo-w,
  .scroll-nav .header-logo-b {
    max-width: 180px; /* ロゴをコンパクトに */
  }

  .nav-menu {
    gap: 1.2rem; /* メニュー間隔を縮める */
  }

  .nav-menu a,
  .scroll-nav .nav-menu a,
  .nav-special .nav-menu a {
    font-size: 13px;
  }
	
.cf8__button{
    padding-left: 0px;
    text-align: left;
}
	
}

.scroll-nav .header-logo-b{
	margin-top: 6px;
}

.header-logo-b,.header-logo-w{
	margin-top: 6px;
}

.header-logo{
	margin-top: 6px;
}



@media screen and (max-width: 767px) {

  .cf7__list dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }

  .cf7__list dd {
    width: 100%;
  }

  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0;
  }

  /* 送信ボタン */
  input[type="submit"] {
    width: 180px;
    height: 56px;
  }
	

}

/* お問い合わせフォーム */

.cf8__list dt {
    width: 100%;
    margin-bottom: 5px;
    padding-top: 0;
  }

.cf8__list dd {
    width: 100%;
	margin-bottom: 15px;
  }

/* input・textarea */
.cf8__list dd input[type="text"],
.cf8__list dd input[type="tel"],
.cf8__list dd input[type="email"],
.cf8__list dd textarea {
  width: 100%;
  padding: 15px 20px;
}

/* =========================================================
   ヒーローセクション
   ========================================================= */
.hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

.hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 1;
}

.hero-image-sp{
	display: none;
}

.hero-overlay-tint {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.25) 100%);
	z-index: 2;
}

.hero-content {
	position: relative;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 3;
}

.hero-title {
	font-family: var(--font-jp);
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 500;
	color: var(--color-white);
	line-height: 1.5;
	letter-spacing: 0.08em;
	margin-bottom: 2rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-title-line {
	display: block;
}

.hero-subtitle {
	color: var(--color-white);
	font-size: 0.95rem;
	line-height: 2;
	letter-spacing: 0.08em;
	max-width: 480px;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

/* ファーストビューCTA（見学・体験 / LINE相談） */
.hero-cta {
	margin-top: 2.6rem;
}

.hero-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.3rem;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	min-width: 250px;
	padding: 1.05rem 2rem;
	border-radius: var(--radius-pill);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--color-white);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
	transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn .arrow {
	font-size: 1.15rem;
	transition: transform 0.3s ease;
}

.hero-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

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

.hero-btn-primary {
	background-color: var(--color-accent);
}

.hero-btn-primary:hover {
	background-color: var(--color-accent-dark);
}

.hero-btn-line {
	background-color: var(--color-line-soft); /* LINE相談ボタン：サイトに馴染むセージグリーン */
}

.hero-btn-line:hover {
	background-color: var(--color-line-soft-dark);
}

.hero-cta-note {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.85rem;
	line-height: 1.7;
	color: var(--color-white);
	letter-spacing: 0.03em;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.hero-cta-note-icon {
	flex-shrink: 0;
	margin-top: 0.15rem;
	color: var(--color-white);
}

.hero-cta-note-icon svg {
	width: 20px;
	height: 20px;
}

/* =========================================================
   共通セクションパーツ
   ========================================================= */
.section-label {
	font-family: var(--font-en);
	font-size: 0.85rem;
	letter-spacing: 0.3em;
	font-weight: 500;
	color: var(--color-accent);
	text-transform: uppercase;
	margin-bottom: 1.2rem;
	display: block;
}

.section-heading {
	font-family: var(--font-jp);
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.6;
	letter-spacing: 0.06em;
	margin-bottom: 1.8rem;
}

.section-text {
	color: var(--color-text);
	font-size: 0.95rem;
	line-height: 2;
	letter-spacing: 0.06em;
}

/* =========================================================
   About セクション
   ========================================================= */
.about-section {
	background-color: var(--color-bg); /* 画像読込前のフォールバック */
	background-image: url('./images/about_bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 7rem 0;
}

.about-grid {
	display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-content {
	
}

.about-content .section-heading {
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	margin-bottom: 2rem;
}

.about-image {　}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* =========================================================
   Recommend（こんな方におすすめです）セクション
   ========================================================= */
.recommend-section {
	padding: 5rem 0;
}

.recommend-box {
	background-color: var(--color-bg-cream-2);
	border: 1px solid var(--color-border);
	border-radius: 28px;
	padding: 4rem 3rem;
}

.recommend-head {
	text-align: center;
	margin-bottom: 3.5rem;
}

.recommend-deco {
	display: inline-block;
	color: var(--color-accent);
	margin-bottom: 0.8rem;
}

.recommend-deco svg {
	width: 44px;
	height: 22px;
}

.recommend-title {
	font-family: var(--font-jp);
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	font-weight: 600;
	letter-spacing: 0.16em;
	color: var(--color-text);
	margin-bottom: 1.2rem;
}

.recommend-lead {
	font-size: 0.86rem;
	line-height: 2;
	color: var(--color-text-light);
	letter-spacing: 0.05em;
}

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

.recommend-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background-color: var(--color-white);
	border-radius: 14px;
	padding: 2rem 1rem 1.5rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.recommend-icon {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background-color: var(--card-color, var(--color-accent));
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.3rem;
}

.recommend-icon svg {
	width: 36px;
	height: 36px;
}

.recommend-card-title {
	font-family: var(--font-jp);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.04em;
	color: var(--color-text);
	min-height: 5.1em; /* 3行分を確保して区切り線の高さを揃える */
	margin-bottom: 1.1rem;
	display: flex;
	align-items: center;
}

.recommend-divider {
	width: 28px;
	height: 1px;
	background-color: var(--color-border);
	margin-bottom: 1.1rem;
}

.recommend-card-text {
	font-size: 0.8rem;
	line-height: 1.85;
	color: var(--color-text-light);
	letter-spacing: 0.02em;
	margin-bottom: 1.5rem;
	flex: 1;
}

.recommend-dots {
	display: flex;
	gap: 0.4rem;
	margin-top: auto;
}

.recommend-dots span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--card-color, var(--color-accent));
}

/* CTA ボックス */
.recommend-cta {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2.5rem;
	padding: 2rem 2.5rem;
	background-color: var(--color-bg-cream-3);
	border-radius: 18px;
}

.recommend-cta-leaf {
	flex-shrink: 0;
	color: var(--color-rest);
}

.recommend-cta-leaf svg {
	width: 64px;
	height: 64px;
}

.recommend-cta-body {
	flex: 1;
}

.recommend-cta-title {
	font-family: var(--font-jp);
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--color-text);
	margin-bottom: 0.5rem;
}

.recommend-cta-text {
	font-size: 0.85rem;
	line-height: 1.8;
	color: var(--color-text-light);
	letter-spacing: 0.03em;
}

.recommend-cta-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 1rem 2rem;
	background-color: var(--color-accent);
	color: var(--color-white);
	border-radius: var(--radius-pill);
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	transition: background-color 0.3s ease;
}

.recommend-cta-btn:hover {
	background-color: var(--color-accent-dark);
}

.recommend-cta-btn .arrow {
	font-size: 1.1rem;
	transition: transform 0.3s ease;
}

.recommend-cta-btn:hover .arrow {
	transform: translateX(4px);
}

/* =========================================================
   Service セクション
   ========================================================= */
.service-section {
	background-color: var(--color-bg);
	padding: 5rem 0 7rem;
}

.service-intro {
	margin-bottom: 4rem;
}

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

.service-card {
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background-color: var(--color-white);
    border-radius: 15px;
}

.service-icon {
	
}

.service-icon img {
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 18px;
}

.service-card-title {
	font-family: var(--font-jp);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--color-text);
}

/* =========================================================
   Work（仕事内容）セクション
   ========================================================= */
.work-section {
	background-color: var(--color-bg);
	padding: 5rem 0 7rem;
}

.work-head {
	margin-bottom: 3rem;
}

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

.work-card {
	display: flex;
	flex-direction: column;
}

.work-image {
	border-radius: var(--radius-img);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	margin-bottom: 1.5rem;
}

.work-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.work-card:hover .work-image img {
	transform: scale(1.05);
}

.work-body {
	padding: 0 0.25rem;
}

.work-card-title {
	font-family: var(--font-jp);
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--color-text);
	padding-bottom: 0.9rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--color-border);
}

.work-desc {
	font-size: 0.9rem;
	line-height: 2;
	color: var(--color-text-light);
	letter-spacing: 0.04em;
}

/* 段落を複数入れる場合の間隔 */
.work-desc + .work-desc {
	margin-top: 1rem;
}

/* =========================================================
   Work Detail（工賃・1日の流れ）セクション
   ========================================================= */
.work-detail-section {
	background-color: var(--color-bg);
	padding: 0 0 7rem;
}

.work-detail-head {
	margin-bottom: 3rem;
}

.work-detail-grid {
	display: grid;
	grid-template-columns: 38% 1fr;
	gap: 2.5rem;
	align-items: start;
}

/* グリッド子要素が内部コンテンツ（横600pxのタイムバー等）に
   引き伸ばされてはみ出すのを防ぐ */
.work-detail-grid > * {
	min-width: 0;
}

.work-detail-side {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

/* 共通カード */
.detail-card {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-img);
	padding: 2.5rem;
}

.detail-card-label {
	display: block;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	color: var(--color-text-light);
	margin-bottom: 1rem;
}

.detail-card-title {
	font-family: var(--font-jp);
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--color-text);
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid var(--color-border);
}

.schedule-time-img{
	overflow: hidden;
	border-radius: var(--radius-img);
}

/* 工賃カード */
.wage-card {
	text-align: left;
}

.wage-value {
	font-family: var(--font-en);
	font-size: 3.25rem;
	font-weight: 600;
	line-height: 1;
	color: var(--color-accent);
	letter-spacing: 0.02em;
}

.wage-unit {
	font-family: var(--font-jp);
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--color-text-light);
	margin-left: 0.5rem;
	letter-spacing: 0.04em;
}

/* その他軽作業タグ */
.light-work-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.light-work-tag {
	display: inline-block;
	padding: 0.55rem 1.15rem;
	background-color: var(--color-bg-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	font-size: 0.88rem;
	letter-spacing: 0.04em;
	color: var(--color-text);
}

/* 1日の流れ：横型タイムバー */
.timebar-axis {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.65rem;
}

.timebar-axis span {
	font-family: var(--font-en);
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--color-text-light);
	letter-spacing: 0.04em;
}

.timebar {
	display: flex;
	gap: 6px;
	height: 96px;
}

.timebar-seg {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	overflow: hidden;
	border-radius: 16px;
	color: var(--color-white);
	transition: opacity 0.3s ease;
}

.seg-content {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-width: 0;
}

.seg-icon {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
}

.seg-label {
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	white-space: nowrap;
	overflow: hidden;
}

/* 時間ラベルとモバイル専用ラベルはPC（横バー）では非表示 */
.seg-time {
	display: none;
}
.seg-label--m {
	display: none;
}

.timebar-seg:hover {
	opacity: 0.88;
}

.seg-work  { background-color: var(--color-accent); }
.seg-rest  { background-color: var(--color-rest); }
.seg-clean { background-color: var(--color-clean); }

/* 凡例 */
.timebar-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 1.3rem;
}

.legend-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: var(--color-text-light);
	letter-spacing: 0.04em;
}

.legend-dot {
	width: 12px;
	height: 12px;
	border-radius: 3px;
}

.dot-work  { background-color: var(--color-accent); }
.dot-rest  { background-color: var(--color-rest); }
.dot-clean { background-color: var(--color-clean); }

/* 補足テキスト（電球アイコン付き淡色ボックス） */
.schedule-note {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	margin-top: 1.6rem;
	padding: 1.1rem 1.4rem;
	background-color: var(--color-bg-soft);
	border-radius: 12px;
	font-size: 0.84rem;
	line-height: 1.9;
	color: var(--color-text-light);
	letter-spacing: 0.04em;
}

.note-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 0.2rem;
	color: var(--color-text-muted);
}

/* =========================================================
   Gallery（施設内の様子・全幅スライド）セクション
   ========================================================= */
.gallery-section {
	background-color: var(--color-bg);
	padding: 0 0 7rem;
}

.gallery-head {
	margin-bottom: 3rem;
}

.gallery-slider {
	width: 100%;
}

/* メインスライド（全幅） */
.gallery-main .gallery-slide img {
	width: 100%;
	height: 80vh;
	min-height: 420px;
	object-fit: cover;
	display: block;
}

/* サムネイル（5枚・GAPなし・全幅） */
.gallery-thumb {
	width: 100%;
	line-height: 0; /* インライン余白除去で隙間ゼロ */
}

.gallery-thumb-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.gallery-thumb .slick-slide {
	opacity: 0.45;
	transition: opacity 0.4s ease;
	cursor: pointer;
}

.gallery-thumb .slick-current {
	opacity: 1;
}

/* =========================================================
   Staff セクション
   ========================================================= */
.staff-section {
	background-color: var(--color-bg);
	padding: 5rem 0 7rem;
}

.staff-head {
	margin-bottom: 3rem;
}

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

.staff-item {
	position: relative;
	border-radius: var(--radius-img);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background-color: var(--color-bg-soft);
	transition: box-shadow 0.4s ease;
}

.staff-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

/* ホバー時の一言コメント（オーバーレイ） */
.staff-comment {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 1.6rem 1.6rem 25px;
	background: linear-gradient(180deg, rgba(var(--color-staff-overlay-rgb), 0.35) 0%, rgba(var(--color-staff-overlay-rgb), 0.88) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.staff-comment p {
	color: var(--color-white);
	font-size: 0.9rem;
	line-height: 1.85;
	letter-spacing: 0.04em;
	text-align: center;
	transform: translateY(12px);
	transition: transform 0.45s ease;
}

/* ホバー：影をつけてコメントを表示 */
.staff-item:hover {
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.staff-item:hover img {
	transform: scale(1.05);
}

.staff-item:hover .staff-comment {
	opacity: 1;
}

.staff-item:hover .staff-comment p {
	transform: translateY(0);
}

.staff-foot {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}

/* スライダー操作（矢印・ドット）はPCでは非表示。モバイルのみ表示 */
.staff-nav,
.staff-dots {
	display: none;
}

/* =========================================================
   Voice（利用者の声）セクション
   ========================================================= */
.voice-section {
	background-color: var(--color-bg);
	padding: 5rem 0 7rem;
}

.voice-head {
	text-align: center;
	margin-bottom: 3.5rem;
}

.voice-title {
	margin-bottom: 0.8rem;
}

.voice-lead {
	font-size: 0.95rem;
	line-height: 2;
	color: var(--color-text-light);
	letter-spacing: 0.05em;
}

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

.voice-card {
	display: flex;
	flex-direction: column;
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	padding: 2rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.voice-top {
	flex: 1;
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	margin-bottom: 1.5rem;
}

.voice-avatar {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--card-color, var(--color-accent));
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
}

.voice-avatar svg {
	width: 32px;
	height: 32px;
}

.voice-text {
	font-size: 0.88rem;
	line-height: 1.95;
	color: var(--color-text);
	letter-spacing: 0.02em;
}

.voice-divider {
	height: 1px;
	background-color: var(--color-border);
	margin-bottom: 1.2rem;
}

.voice-meta {
	text-align: center;
	font-size: 0.85rem;
	color: var(--color-text-light);
	letter-spacing: 0.1em;
}

.voice-foot {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}

/* =========================================================
   Flow（利用開始までの流れ）セクション
   ========================================================= */
.flow-section {
	background-color: var(--color-bg);
	padding: 5rem 0 7rem;
}

.flow-head {
	margin-bottom: 3.5rem;
}

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

.flow-step {
	position: relative;
	text-align: center;
}

/* ステップ番号 ＋ 接続線 */
.flow-marker {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.flow-step:not(:last-child) .flow-marker::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% + 2rem); /* 隣の丸の中心まで（列幅＋gap） */
	height: 1px;
	background-color: var(--color-border);
	transform: translateY(-50%);
	z-index: 0;
}

.flow-num {
	position: relative;
	z-index: 1;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--color-white);
	border: 1px solid var(--color-accent);
	color: var(--color-accent);
	font-family: var(--font-en);
	font-size: 1.35rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.flow-step-label {
	display: block;
	font-family: var(--font-en);
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	color: var(--color-text-light);
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.flow-step-title {
	font-family: var(--font-jp);
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--color-text);
	margin-bottom: 0.8rem;
}

.flow-step-text {
	font-size: 0.85rem;
	line-height: 1.9;
	color: var(--color-text-light);
	letter-spacing: 0.03em;
	max-width: 220px;
	margin: 0 auto;
}

/* =========================================================
   FAQ（よくある質問）セクション
   ========================================================= */
.faq-section {
	background-color: var(--color-bg);
	padding: 5rem 0 7rem;
}

.faq-head {
	margin-bottom: 3rem;
}

.accordion-area {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.accordion-area li {
	list-style: none;
}

/* 質問（クリックで開閉） */
.accordion-area .title {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.3rem 3.5rem 1.3rem 1.5rem;
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-img);
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--color-text);
	transition: background-color 0.3s ease;
}

.accordion-area .title:hover {
	background-color: var(--color-bg-soft);
}

.faq-q {
	font-family: var(--font-en);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--color-accent);
	line-height: 1;
}

.faq-question {
	flex: 1;
}

/* ＋／－アイコン */
.faq-icon {
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
}

.faq-icon::before,
.faq-icon::after {
	content: "";
	position: absolute;
	background-color: var(--color-accent);
}

.faq-icon::before { /* 横棒 */
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
}

.faq-icon::after { /* 縦棒（開いたら消えて「－」に） */
	left: 50%;
	top: 0;
	width: 2px;
	height: 100%;
	transform: translateX(-50%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion-area .title.close .faq-icon::after {
	transform: translateX(-50%) scaleY(0);
	opacity: 0;
}

/* 回答 */
.accordion-area .box {
	display: none;
	padding: 1.3rem 1.5rem;
}

.box-inner {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.faq-a {
	font-family: var(--font-en);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--color-text-light);
	line-height: 1.5;
}

.faq-answer {
	flex: 1;
	font-size: 0.9rem;
	line-height: 1.9;
	color: var(--color-text-light);
	letter-spacing: 0.03em;
}

/* =========================================================
   News セクション (front-page)
   ========================================================= */
.news-section {
	background-color: var(--color-bg);
	padding: 5rem 0 7rem;
}

.news-head {
	margin-bottom: 3rem;
}

.news-list {
	border-top: 1px solid var(--color-border);
}

.news-item {
	display: grid;
	grid-template-columns: 130px 130px 1fr;
	align-items: center;
	gap: 1.5rem;
	padding: 1.4rem 0;
	border-bottom: 1px solid var(--color-border);
	transition: opacity 0.3s ease;
}

.news-item:hover {
	opacity: 0.7;
}

.news-date {
	font-family: var(--font-en);
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	color: var(--color-text);
}

.news-cat {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	padding: 0.3rem 0.8rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	color: var(--color-text-light);
	text-align: center;
	max-width: 110px;
}

.news-title-line {
	font-size: 0.95rem;
	font-weight: 400;
	color: var(--color-text);
	letter-spacing: 0.04em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-foot {
	margin-top: 2.5rem;
	display: flex;
	justify-content: flex-end;
}

.news-empty {
	padding: 2rem 0;
	color: var(--color-text-light);
	text-align: center;
}

/* =========================================================
   Instagram / 日々の様子 セクション
   ========================================================= */
.insta-section {
	background-color: var(--color-bg);
	padding: 5rem 0 9rem;
}

.insta-head {
	margin-bottom: 3rem;
}

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

.insta-item {
	border-radius: var(--radius-img);
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.insta-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.insta-item:hover img {
	transform: scale(1.05);
}

.insta-foot {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}

/* =========================================================
   Access（アクセス）セクション
   ========================================================= */
.access-section {
	background-color: var(--color-bg);
	padding: 5rem 0 7rem;
}

.access-head {
	margin-bottom: 3rem;
}

.access-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
	align-items: stretch;
}

/* 情報リスト */
.access-list {
	border-top: 1px solid var(--color-border);
}

.access-row {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1.5rem;
	padding: 1.4rem 0;
	border-bottom: 1px solid var(--color-border);
}

.access-row dt {
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--color-text);
}

.access-row dd {
	font-size: 0.92rem;
	line-height: 1.8;
	letter-spacing: 0.03em;
	color: var(--color-text-light);
}

/* Googleマップ */
.access-map {
	position: relative;
	min-height: 440px;
	border-radius: var(--radius-img);
	overflow: hidden;
}

.access-map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* =========================================================
   Contact（お問い合わせ CTA）セクション
   ========================================================= */
.contact-section {
	background-image: url('./images/cta_bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 6rem 0;
}

.contact-head {
	text-align: center;
	margin-bottom: 3rem;
	color: var(--color-white);
}

.contact-heading{
	color: var(--color-white)!important;
}

.contact-lead {
	font-size: 0.95rem;
	line-height: 2;
	color: var(--color-white);
	letter-spacing: 0.05em;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;   /* 下段：メール／LINEの2列 */
	gap: 1rem;
	max-width: 680px;
	margin: 0 auto;
}

/* お問い合わせ手段ごとのアクセントカラー */
.contact-tel  { --c: var(--color-accent); }
.contact-mail { --c: var(--color-contact); }
.contact-line { --c: var(--color-line-official); }

/* 電話は上段に全幅で配置 */
.contact-tel {
	grid-column: 1 / -1;
}

/* ボタン型カード（共通：白地＋カラー枠線、ホバーで塗り） */
.contact-btn {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.2rem 1.5rem;
	background-color: var(--color-white);
	border: 1.5px solid var(--c);
	border-radius: var(--radius-pill);
	color: var(--color-text);
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
	background-color: var(--c);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.contact-btn-icon {
	display: inline-flex;
	flex-shrink: 0;
	color: var(--c);
	transition: color 0.3s ease;
}
.contact-btn:hover .contact-btn-icon {
	color: var(--color-white);
}
.contact-btn-icon svg {
	width: 26px;
	height: 26px;
}

.contact-btn-body {
	display: flex;
	flex-direction: column;
	line-height: 1.4;
	text-align: left;
}
.contact-btn-label {
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	color: var(--color-text-light);
	transition: color 0.3s ease;
}
.contact-btn:hover .contact-btn-label {
	color: rgba(255, 255, 255, 0.85);
}
.contact-btn-value {
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.contact-btn .arrow {
	margin-left: auto;
	display: inline-block;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}
.contact-btn:hover .arrow {
	transform: translateX(4px);
}

/* 電話：塗りのプライマリボタン（常時カラー） */
.contact-tel {
	background-color: var(--c);
	color: var(--color-white);
	justify-content: center;
}
.contact-tel .contact-btn-icon {
	color: var(--color-white);
}
.contact-tel .contact-btn-label {
	color: rgba(255, 255, 255, 0.85);
}
.contact-tel .contact-btn-value {
	font-size: 1.5rem;
}
.contact-tel:hover {
	background-color: var(--color-accent-dark);
	box-shadow: 0 12px 26px rgba(var(--color-accent-rgb), 0.4);
}

/* スマホ用：画面下部固定CTA（PCでは非表示） */
.fixed-cta {
	display: none;
}

/* =========================================================
   ボタン
   ========================================================= */
.btn-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	min-width: 260px;
	padding: 1rem 2rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	font-size: 0.95rem;
	color: var(--color-text);
	letter-spacing: 0.08em;
	transition: all 0.3s ease;
}

.btn-pill:hover {
	background-color: var(--color-dark);
	color: var(--color-white);
	border-color: var(--color-dark);
}

.btn-pill .arrow {
	display: inline-block;
	width: 1.2em;
	transition: transform 0.3s ease;
}

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

.btn-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	color: var(--color-text);
	transition: opacity 0.3s ease;
}

.btn-text-link:hover {
	opacity: 0.7;
}

/* =========================================================
   フッター
   ========================================================= */
footer {
	background-color: var(--color-dark);
	color: var(--color-white);
	padding: 2.5rem 0;
}

.footer-container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between; /* ← flex-start から変更 */
	gap: 1.5rem;
}

.footer-logo {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-white);
	letter-spacing: 0.02em;
}

/* =========================================================
   SNS アイコン（ヘッダー / フッター / モバイルナビ 共通）
   ========================================================= */
.nav-sns,
.footer-sns,
.mobile-nav-sns {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.nav-sns a,
.footer-sns a,
.mobile-nav-sns a {
	display: inline-flex;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-sns a:hover,
.footer-sns a:hover,
.mobile-nav-sns a:hover {
	opacity: 0.7;
	transform: translateY(-2px);
}

.nav-sns img,
.footer-sns img,
.mobile-nav-sns img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	display: block;
}

/* --- ヘッダー内：nav-menu の下線装飾を無効化＋やや小さめ --- */
.nav-sns {
	gap: 0.6rem;
}
.nav-sns a {
	padding: 0;
	background-image: none;
}
.nav-sns img {
	width: 22px;
	height: 22px;
}

/* --- フッター：暗背景でも見えるよう白い円チップに載せる --- */
.footer-sns a {
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: var(--color-white);
}
.footer-sns a:hover {
	opacity: 0.85;
}
.footer-sns img {
	width: 22px;
	height: 22px;
}

/* --- モバイルナビ：お問い合わせボタンの下・タップしやすい大きめ --- */
.mobile-nav-sns {
	justify-content: center;
	gap: 1.3rem;
	margin-top: 1.3rem;
}
.mobile-nav-sns img {
	width: 30px;
	height: 30px;
}

/* フッター：スマホは中央寄せの縦並び（コピーライト＋SNS） */
@media screen and (max-width: 767px) {
	.footer-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1.2rem;
	}
}

/* =========================================================
   ハンバーガー（モバイル用、現状はPCのみのため非表示）
   ========================================================= */
.hamburger-btn {
	display: none;
	width: 36px;
	height: 36px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	z-index: 950;
	background: none;
	border: none;
	cursor: pointer;
}

.hamburger-btn span {
	display: block;
	width: 28px;
	height: 1px;
	background-color: var(--color-white);
	transition: all 0.3s ease;
}

.scroll-nav .hamburger-btn span,
.nav-special .hamburger-btn span {
	background-color: var(--color-dark);
}

.mobile-nav {
	display: none;
}

/* =========================================================
   スクロールアニメーション
   ========================================================= */
.sa-fade-up,
.sa-fade-down,
.sa-fade-left,
.sa-fade-right,
.sa-fade-in,
.sa-scale-up,
.sa-zoom-in,
.sa-blur-in,
.sa-slide-up,
.sa-flip-left {
	opacity: 0;
	transition: opacity 1s ease, transform 1s ease, filter 1s ease;
	will-change: opacity, transform, filter;
}

.sa-fade-up      { transform: translateY(40px); }
.sa-fade-down    { transform: translateY(-40px); }
.sa-fade-left    { transform: translateX(40px); }
.sa-fade-right   { transform: translateX(-40px); }
.sa-scale-up     { transform: scale(0.92); }
.sa-zoom-in      { transform: scale(0.85); }
.sa-blur-in      { filter: blur(8px); }
.sa-slide-up     { transform: translateY(80px); }
.sa-flip-left    { transform: perspective(800px) rotateY(35deg); transform-origin: left center; }

.sa-fade-up.is-visible,
.sa-fade-down.is-visible,
.sa-fade-left.is-visible,
.sa-fade-right.is-visible,
.sa-fade-in.is-visible,
.sa-scale-up.is-visible,
.sa-zoom-in.is-visible,
.sa-slide-up.is-visible,
.sa-flip-left.is-visible {
	opacity: 1;
	transform: translate(0, 0) scale(1) rotateY(0);
}

.sa-blur-in.is-visible {
	opacity: 1;
	filter: blur(0);
}

/* =========================================================
   サブページ共通（今後の下層ページ用 ベース）
   ========================================================= */
.sub-header {
	padding: calc(var(--header-h) + 4rem) 0 4rem;
	background-color: var(--color-bg-soft);
	text-align: center;
}

.sub-header-title {
	font-family: var(--font-jp);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 600;
	letter-spacing: 0.1em;
}

.sub-header-title span {
	display: block;
	font-family: var(--font-en);
	font-size: 0.85rem;
	letter-spacing: 0.3em;
	color: var(--color-text-light);
	font-weight: 500;
	margin-top: 0.5rem;
	text-transform: uppercase;
}

.sub-container-top,
.sub-container,
.sub-container-btm {
	padding: 5rem 0;
}

.sub-main-container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

/* .sub-header の上下paddingのみレスポンシブ対応（PCは据え置き／固定ヘッダー分は維持） */
@media screen and (max-width: 1024px) {
	.sub-header {
		padding: calc(var(--header-h) + 1.5rem) 0 2.5rem; /* 上 約112px */
	}
}
@media screen and (max-width: 767px) {
	.sub-header {
		padding: calc(var(--header-h) - 0.25rem) 0 2rem; /* 上 約84px */
	}
}

/* =========================================================
   ニュース一覧・詳細（home.php / single.php）
   ========================================================= */
.news-card {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 2rem;
	padding: 2rem 0;
	border-bottom: 1px solid var(--color-border);
}

.news-card-thumb {
	display: block;
	overflow: hidden;
	border-radius: var(--radius-img);
	aspect-ratio: 4 / 3;
}

.news-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card-no-image {
	width: 100%;
	height: 100%;
	background-color: var(--color-bg-soft);
}

.news-card-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.8rem;
}

.news-card-date {
	font-family: var(--font-en);
	font-size: 0.9rem;
	color: var(--color-text);
}

.news-card-cat {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	padding: 0.3rem 0.8rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	color: var(--color-text-light);
}

.news-card-title {
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	margin-bottom: 1rem;
}

.news-card-excerpt {
	font-size: 0.95rem;
	color: var(--color-text-light);
	line-height: 1.9;
	margin-bottom: 1rem;
}

.news-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-en);
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	color: var(--color-text);
}

.news-pagination {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.news-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.8rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	font-size: 0.85rem;
	color: var(--color-text);
	text-decoration: none;
	transition: all 0.3s ease;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
	background-color: var(--color-dark);
	color: var(--color-white);
	border-color: var(--color-dark);
}

.news-single-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.2rem;
}

.news-single-date {
	font-family: var(--font-en);
	font-size: 0.95rem;
}

.news-single-cat {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	padding: 0.3rem 0.8rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	color: var(--color-text-light);
}

.news-single-title {
	font-size: clamp(1.4rem, 2.2vw, 1.8rem);
	font-weight: 600;
	letter-spacing: 0.06em;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.news-single-thumb {
	margin-bottom: 2.5rem;
	border-radius: var(--radius-img);
	overflow: hidden;
}

.news-single-content {
	font-size: 1rem;
	line-height: 2;
	color: var(--color-text);
}

.news-single-content p {
	margin-bottom: 1.4rem;
}

.news-single-content h2,
.news-single-content h3 {
	margin: 2rem 0 1rem;
	font-weight: 600;
}

.news-nav {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 1rem;
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--color-border);
	font-size: 0.9rem;
	position: relative;
}

.news-nav-prev,
.news-nav-next {
	display: flex;
	flex-direction: column;
}

.news-nav-next {
	text-align: right;
}

.news-nav-label {
	font-family: var(--font-en);
	letter-spacing: 0.12em;
	color: var(--color-text-light);
	margin-bottom: 0.4rem;
}

.news-nav-post-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 280px;
}

.news-nav-back {
	display: flex;
	align-items: center;
}

.news-nav-back a {
	display: inline-block;
	padding: 0.7rem 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	transition: all 0.3s ease;
}

.news-nav-back a:hover {
	background-color: var(--color-dark);
	color: var(--color-white);
	border-color: var(--color-dark);
}

/* =========================================================
   404 ページ
   ========================================================= */
.notfound {
	text-align: center;
	padding: 2rem 0 4rem;
}

.notfound-code {
	font-family: var(--font-en);
	font-size: clamp(4rem, 12vw, 7rem);
	font-weight: 600;
	line-height: 1;
	color: var(--color-accent);
	letter-spacing: 0.04em;
	margin-bottom: 1.5rem;
}

.notfound-text {
	font-size: 0.95rem;
	line-height: 2;
	color: var(--color-text-light);
	letter-spacing: 0.04em;
	margin-bottom: 2.5rem;
}

.notfound .btn-pill {
	justify-content: center;
}

/* =========================================================
   レスポンシブ対応
   ブレークポイント：
     〜767px        モバイル
     768px〜991px   タブレット
     992px〜        PC（デフォルト・上記以外）
   ========================================================= */

/* ---------- タブレット＋モバイル共通（〜991px） ---------- */
/* ナビゲーションのハンバーガー化（長い日本語メニューが収まらないため〜1199pxで切替） */
@media screen and (max-width: 1199px) {

	/* ナビゲーション：ハンバーガー化 */
	.nav-menu {
		display: none;
	}

	.hamburger-btn {
		display: flex;
		position: relative;
		z-index: 950;
	}

	.mobile-nav {
		display: flex;
		flex-direction: column;
		position: fixed;
		inset: 0;
		background-color: var(--color-bg);
		z-index: 880;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s ease, visibility 0.4s ease;
	}

	body.open .mobile-nav {
		opacity: 1;
		visibility: visible;
	}

	.mobile-nav-menu {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1.2rem;
	}

	.mobile-nav-menu a {
		font-family: var(--font-jp);
		font-size: 1rem;
		letter-spacing: 0.14em;
		color: var(--color-dark);
	}

	/* CONTACT：塗りボタンで目立たせる */
	.mobile-nav-menu .mobile-contact-btn {
		display: inline-block;
		margin-top: 0.7rem;
		padding: 0.9rem 3rem;
		background-color: var(--color-contact);
		color: var(--color-white);
		border-radius: var(--radius-pill);
		font-size: 1rem;
		letter-spacing: 0.18em;
		box-shadow: 0 8px 22px rgba(var(--color-contact-rgb), 0.3);
		transition: background-color 0.3s ease, transform 0.3s ease;
	}
	.mobile-nav-menu .mobile-contact-btn:hover {
		background-color: var(--color-accent);
		transform: translateY(-2px);
	}

	/* ナビ下部：住所・営業時間 */
	.mobile-nav-info {
		padding: 0 .8rem 1.5rem;
		text-align: center;
	}
	.mobile-nav-info p {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		gap: 0.45rem;
		font-size: 0.85rem;
		line-height: 1.6;
		color: var(--color-text-light);
		letter-spacing: 0.04em;
	}
	.mobile-nav-info p + p {
		margin-top: 0.7rem;
	}
	.mobile-nav-info svg {
		width: 16px;
		height: 16px;
		flex-shrink: 0;
		margin-top: 0.2rem;
		color: var(--color-accent);
	}

	/* ハンバーガー → ×（オープン時） */
	body.open .hamburger-btn span {
		background-color: var(--color-dark);
	}
	body.open .hamburger-btn span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	body.open .hamburger-btn span:nth-child(2) {
		opacity: 0;
	}
	body.open .hamburger-btn span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}

/* ---------- タブレット以下のレイアウト（〜991px） ---------- */
@media screen and (max-width: 991px) {

	/* 2カラム → 1カラム */
	.work-detail-grid {
		grid-template-columns: 1fr;
	}
	.access-grid {
		grid-template-columns: 1fr;
	}

	/* Recommend CTA：縦並び */
	.recommend-cta {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		gap: 1.2rem;
	}
	.recommend-cta-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ---------- タブレット（768px〜991px） ---------- */
@media screen and (min-width: 768px) and (max-width: 991px) {

	.recommend-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.work-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.staff-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.gallery-main .gallery-slide img {
		height: 60vh;
	}
	.gallery-thumb-item img {
		height: 150px;
	}
}

/* ---------- モバイル（〜767px） ---------- */
@media screen and (max-width: 767px) {

	:root {
		--container-pad: 1.25rem;
	}

	/* 固定CTAバーに隠れないよう、ページ下部に余白を確保 */
	body {
		padding-bottom: calc(60px + env(safe-area-inset-bottom));
	}

	/* 画面下部固定CTA（電話50% / メール25% / LINE25%）
	   初期は画面下に隠し、スクロールで .is-visible が付くとスライドイン */
	.fixed-cta {
		display: flex;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 870;
		box-shadow: 0 -2px 14px rgba(0, 0, 0, 0.14);
		transform: translateY(100%);
		opacity: 0;
		visibility: hidden;
		transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
	}
	.fixed-cta.is-visible {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
	.fixed-cta-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 3px;
		padding: 0.55rem 0.3rem;
		padding-bottom: calc(0.55rem + env(safe-area-inset-bottom));
		color: var(--color-white);
		font-size: 0.72rem;
		font-weight: 500;
		letter-spacing: 0.04em;
		line-height: 1;
	}
	.fixed-cta-item svg {
		width: 22px;
		height: 22px;
	}
	.fixed-cta-item:active {
		filter: brightness(0.92);
	}
	.fixed-cta-tel  { flex: 0 0 50%; background-color: var(--color-accent); }
	.fixed-cta-mail { flex: 0 0 25%; background-color: var(--color-contact); }
	.fixed-cta-line { flex: 0 0 25%; background-color: var(--color-line-official); }
	/* 区切り線 */
	.fixed-cta-mail { border-left: 1px solid rgba(255, 255, 255, 0.25); }
	.fixed-cta-line { border-left: 1px solid rgba(255, 255, 255, 0.25); }

	/* セクション余白の圧縮 */
	.service-section,
	.work-section,
	.staff-section,
	.voice-section,
	.flow-section,
	.faq-section,
	.news-section,
	.insta-section,
	.contact-section,
	.access-section {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}
	/* Contact：すべて縦積み（電話→メール→LINE） */
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 0.9rem;
	}
	.contact-tel .contact-btn-value {
		font-size: 1.35rem;
	}
	.recommend-section {
		padding: 3rem 0;
	}
	.work-detail-section,
	.gallery-section {
		padding-bottom: 3.5rem;
	}

	.section-heading {
		margin-bottom: 1.4rem;
	}
	
	.logo-img {
	max-height: 28px;
	width: auto;
	display: block;
}
	
.nav-container {
	padding: .5rem var(--container-pad);
}

	/* Hero */
	
.hero-image {
	display: none;
}

.hero-image-sp{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 1;
	display: block;
}
	
	.hero-section {
		min-height: 520px;
	}
	/* タイトル＋サブタイトルは画面中央、CTAは下寄せ（下に約30pxの余白） */
	.hero-content {
		justify-content: center;
	}
	.hero-cta {
		position: absolute;
		left: var(--container-pad);
		right: var(--container-pad);
		bottom: 30px;
		margin-top: 0;
	}
	.hero-cta-buttons {
		flex-direction: column;
	}
	.hero-btn {
		width: 100%;
		min-width: 0;
		padding: .6rem 2rem;
	}
	
	/* About */
	.about-section {
		padding: 3.5rem 0;
	}
	.about-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	/* Recommend */
	.recommend-box {
		padding: 2.5rem 1rem;
	}
	.recommend-head {
		margin-bottom: 2.5rem;
	}
	.recommend-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5rem;
	}
	.recommend-card {
		padding: 1.5rem 0.5rem 1.2rem;
	}
	.recommend-icon {
		width: 64px;
		height: 64px;
		margin-bottom: 1rem;
	}
	.recommend-icon svg {
		width: 30px;
		height: 30px;
	}
	.recommend-cta {
		padding: 1.6rem 1.4rem;
	}
	.recommend-cta-title {
		font-size: 1.1rem;
	}

	/* Service */
	.service-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.service-icon img {
		max-width: 330px;
		margin-left: auto;
		margin-right: auto;
	}

	/* Work */
	.work-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	/* Work Detail */
	.detail-card {
		padding: 1.6rem;
	}
	.work-detail-side {
		gap: 1.5rem;
	}
	.wage-value {
		font-size: 2.6rem;
	}

	/* タイムバー：モバイルは縦並びで全行を表示（横スクロールなし） */
	.timebar-scroll {
		overflow: visible;
	}
	.timebar-axis {
		display: none;            /* 時間は各行に表示するため軸は省略 */
	}
	.timebar {
		flex-direction: column;
		height: auto;
		min-width: 0;
		gap: 8px;
	}
	.timebar-seg {
		flex: 0 0 auto !important; /* インラインの flex 比率を無効化 */
		width: 100%;
		min-height: 50px;
		justify-content: flex-start;
		padding: 0.6rem 1rem;
		border-radius: 12px;
	}
	/* 短時間（約10分）の休憩2箇所・清掃は高さを低くして短さを視覚化
	   （flex:10 のセグメントのみ。昼食は flex:60 のため対象外） */
	.timebar-seg[style*="flex:10"] {
		min-height: 0;
		padding: 0rem 1rem;
	}
	.seg-content {
		width: 100%;
		justify-content: flex-start;
		gap: 0.85rem;
	}
	.seg-time {
		display: inline-block;
		flex-shrink: 0;
		min-width: 92px;
		font-family: var(--font-en);
		font-size: 0.92rem;
		font-weight: 600;
		letter-spacing: 0.02em;
	}
	.seg-label,
	.seg-label--m {
		display: inline-block;
		font-size: 1rem;
		overflow: visible;
	}

	/* Gallery */
	.gallery-main .gallery-slide img {
		height: 45vh;
		min-height: 260px;
	}
	.gallery-thumb-item img {
		height: 90px;
	}

	/* Staff：横スクロールのスライダー（前後がちら見え＋左右矢印＋ドット） */
	.staff-slider {
		position: relative;
		/* コンテナ余白を相殺して画面いっぱいに（vwで正確に中央寄せするため） */
		margin-inline: calc(var(--container-pad) * -1);
	}
	.staff-grid {
		display: flex;
		grid-template-columns: none;      /* gridレイアウトを解除 */
		gap: 1rem;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 0.5rem;
		/* 最初／最後のカードも中央に寄せられるよう左右に余白 */
		padding-inline: 14vw;
		scroll-padding-inline: 14vw;
		scrollbar-width: none;            /* Firefox：スクロールバー非表示 */
	}
	.staff-grid::-webkit-scrollbar {      /* Safari/Chrome：スクロールバー非表示 */
		display: none;
	}
	.staff-item {
		flex: 0 0 72vw;                   /* 中央カードを大きく、前後を約14vwずつ見切れさせる */
		scroll-snap-align: center;
	}

	/* 左右ナビゲーション矢印 */
	.staff-nav {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 36vw;                        /* 正方形カード（高さ72vw）の中央に合わせる */
		transform: translateY(-50%);
		z-index: 5;
		width: 42px;
		height: 42px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.94);
		color: var(--color-accent);
		box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
		transition: opacity 0.25s ease, background 0.25s ease;
	}
	.staff-nav svg {
		width: 20px;
		height: 20px;
	}
	.staff-prev { left: 8px; }
	.staff-next { right: 8px; }
	.staff-nav:disabled {
		opacity: 0.3;
		pointer-events: none;
	}

	/* ドットページネーション */
	.staff-dots {
		display: flex;
		justify-content: center;
		gap: 8px;
		margin-top: 1.3rem;
	}
	.staff-dots button {
		width: 8px;
		height: 8px;
		padding: 0;
		border-radius: 50%;
		background: var(--color-border);
		transition: background 0.3s ease, transform 0.3s ease;
	}
	.staff-dots button.is-active {
		background: var(--color-accent);
		transform: scale(1.35);
	}

	/* タッチ端末ではホバーできないため、コメントを常時表示 */
	.staff-item .staff-comment {
		opacity: 1;
		background: linear-gradient(180deg, rgba(var(--color-staff-overlay-rgb), 0) 35%, rgba(var(--color-staff-overlay-rgb), 0.85) 100%);
	}
	.staff-item .staff-comment p {
		transform: none;
	}

	/* Voice */
	.voice-grid {
		grid-template-columns: 1fr;
	}

	/* Flow（2列・接続線は非表示） */
	.flow-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem 1rem;
	}
	.flow-step:not(:last-child) .flow-marker::after {
		display: none;
	}

	/* FAQ */
	.accordion-area .title {
		padding: 1.1rem 3rem 1.1rem 1.2rem;
		font-size: 0.95rem;
	}

	/* News（front-page）：日付＋カテゴリ／タイトルで2段 */
	.news-item {
		grid-template-columns: auto 1fr;
		row-gap: 0.5rem;
		column-gap: 1rem;
	}
	.news-title-line {
		grid-column: 1 / -1;
		white-space: normal;
	}

	/* Instagram */
	.insta-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Access */
	.access-row {
		grid-template-columns: 84px 1fr;
		gap: 1rem;
	}
	.access-map {
		min-height: 320px;
	}

	/* ニュース一覧・詳細（下層ページ） */
	.news-card {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.news-nav {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		text-align: center;
	}
	.news-nav-next {
		text-align: center;
	}
	
	.news-nav-back {
	display: flex;
	align-items: center;
	margin: auto;
	}
	
}
