/* =========================
   front-page 共通
========================= */

#front-page section{
padding:100px 5vw;
}

#front-page .container{
max-width:1100px;
margin:0 auto;
}

#front-page section{
padding:80px 5vw;
}

.hero{
background:#f5f5f5;
text-align:center;
}

.concept{
background:#ffffff;
}

/* =========================
   ショートカットリンク
========================= */

.shortcut-links {
  position: relative;
  padding: 80px 5vw;
  background-image: url("/wp-content/uploads/2026/03/washitexture13.webp");
  background-size: cover;
  background-position: center;
}

.shortcut-links::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.72);
  z-index: 1;
}

.shortcut-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.shortcut-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: 0.25s;
}

.shortcut-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.shortcut-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.shortcut-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.shortcut-card:hover .shortcut-thumb img {
  transform: scale(1.05);
}

.shortcut-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  border-top: 1px solid #f0f0f0;
}

.shortcut-label i {
  color: #3b7960;
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .shortcut-container {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.facility{
background:#f7f7f7;
}

/* =========================
   活動報告セクション
========================= */

.blog{
  position: relative;
  background-image: url("/wp-content/uploads/2026/03/願いが叶うクルスの海_ken-suishinka_2022-3-2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.82);
  z-index: 1;
}

.blog > * {
  position: relative;
  z-index: 2;
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ヘッダー部分 */

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-title-accent {
  font-size: 32px;
  font-weight: 600;
  color: #3b7960;
  margin: 0;
  font-family: var(--tcd-headline-font-type);
}

.blog-line {
  width: 80px;
  height: 2px;
  background: #3b7960;
  border: none;
  margin: 20px auto 24px;
}

.blog-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* カード3枚グリッド */

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: 0.25s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

/* サムネイル */

.blog-card-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

.blog-card-nothumb {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
}

/* カード本体 */

.blog-card-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* メタ（日付＋タグ） */

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.blog-card-date {
  font-size: 14px;
  color: #888;
}

.blog-card-tag {
  display: inline-block;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 3px;
  font-weight: 600;
  line-height: 1.6;
}

.blog-card-tag--biz {
  background: #3b7960;
  color: #fff;
}

.blog-card-tag--loc {
  background: #f0f0f0;
  color: #555;
}

/* タイトル */

.blog-card-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.5;
}

/* 抜粋 */

.blog-card-excerpt {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* もっと見るボタン */

.blog-more {
  text-align: center;
  margin-top: 50px;
}

.btn-blog {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 10px;
  background: #3b7960;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.25s;
}

.btn-blog:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(59,121,96,0.3);
}

/* スマホ対応 */

@media (max-width: 768px) {

  .blog-title-accent {
    font-size: 26px;
  }

  .blog-subtitle {
    font-size: 15px;
  }

  .blog-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}

.appeal {
  padding: 0;
}

/* =========================
   アピール 共通
========================= */

.appeal-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* コースセクションのみ左右余白を復元 */
.appeal-courses .appeal-container {
  padding: 0 5vw;
}

.appeal-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  font-family: var(--tcd-headline-font-type);
}

.appeal-title .accent {
  color: #3b7960;
}

.appeal-title--white {
  color: #fff;
}

.appeal-title--white .accent-light {
  color: #a8d5c2;
}

.appeal-line {
  width: 80px;
  height: 2px;
  background: #3b7960;
  border: none;
  margin: 20px auto 50px;
}

.appeal-line--white {
  background: rgba(255,255,255,0.6);
}

/* =========================
   Part1: 3つのいいところ
========================= */

.appeal-features {
  background: #fff;
  padding: 72px 0 80px;
}

.appeal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.appeal-card {
  background: #f8fbf9;
  border-radius: 14px;
  padding: 40px 28px 36px;
  text-align: center;
  border-top: 4px solid #3b7960;
  transition: 0.25s;
}

.appeal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* カード1：エメラルドグリーン */
.appeal-card--1 { border-top-color: #3b7960; background: #f5faf8; }
.appeal-card--1:hover { box-shadow: 0 10px 24px rgba(59,121,96,0.14); }
.appeal-card--1 .appeal-card-icon { background: #3b7960; }
.appeal-card--1 .fa-check { color: #3b7960; }

/* カード2：アンバー（琥珀） */
.appeal-card--2 { border-top-color: #c07c2e; background: #fdf8f2; }
.appeal-card--2:hover { box-shadow: 0 10px 24px rgba(192,124,46,0.14); }
.appeal-card--2 .appeal-card-icon { background: #c07c2e; }
.appeal-card--2 .fa-check { color: #c07c2e; }

/* カード3：ティール */
.appeal-card--3 { border-top-color: #4a7f8f; background: #f5f9fb; }
.appeal-card--3:hover { box-shadow: 0 10px 24px rgba(74,127,143,0.14); }
.appeal-card--3 .appeal-card-icon { background: #4a7f8f; }
.appeal-card--3 .fa-check { color: #4a7f8f; }

.appeal-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: #fff;
}

.appeal-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
  margin: 0 0 20px;
  font-family: var(--tcd-headline-font-type);
}

.appeal-card-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 18px;
  text-align: left;
}

.appeal-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

.appeal-card-list li {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.appeal-card-list li .fa-check {
  color: #3b7960;
  margin-top: 4px;
  flex-shrink: 0;
}

/* =========================
   Part2: 選べる2つのコース
========================= */

.appeal-courses {
  position: relative;
  padding: 72px 0 80px;
  background-image: url("/wp-content/uploads/2026/03/957_日南海岸_日南市_串間市.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.appeal-courses::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 60, 45, 0.65);
  z-index: 1;
}

.appeal-courses > * {
  position: relative;
  z-index: 2;
}

.appeal-courses-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin: -30px 0 50px;
}

.appeal-course-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.appeal-course-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}

/* サムネイルエリア */

.appeal-course-thumb {
  position: relative;
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 16px 16px;
  overflow: hidden;
}

/* 実画像 */
.course-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ラベル可読性確保のグラデオーバーレイ */
.appeal-course-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, transparent 65%);
  z-index: 1;
}

/* ラベルをオーバーレイの上に */
.appeal-course-label {
  position: relative;
  z-index: 2;
}

/* フォールバック背景色（画像読み込み失敗時） */
.appeal-course-thumb--gh {
  background-color: #a0c8b4;
}

.appeal-course-thumb--jl {
  background-color: #d4c8a8;
}

.appeal-course-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.appeal-course-label--gh {
  background: #3b7960;
  color: #fff;
}

.appeal-course-label--jl {
  background: #8b7355;
  color: #fff;
}

/* カード本体 */

.appeal-course-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.appeal-course-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 0 0 12px;
  font-family: var(--tcd-headline-font-type);
}

.appeal-course-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 20px;
  flex: 1;
}

.appeal-course-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.appeal-course-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #3b7960;
  background: #eef6f2;
  padding: 5px 12px;
  border-radius: 20px;
}

.btn-course {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.25s;
}

.btn-course--gh {
  background: #3b7960;
  color: #fff;
}

.btn-course--jl {
  background: #8b7355;
  color: #fff;
}

.btn-course:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

/* スマホ対応 */

@media (max-width: 768px) {

  .appeal-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .appeal-course-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .appeal-title {
    font-size: 24px;
  }

  .appeal-courses {
    background-attachment: scroll;
  }

}

/* =========================
   メインビジュアル
========================= */

#front-page .hero{
position:relative;
}

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

#front-page .concept{

position:relative;

/* 背景画像 */

background-image:url("/wp-content/uploads/2026/03/washitexture13.webp");
background-size:cover;
background-position:center;
background-repeat:no-repeat;

}

/* オーバーレイ */

#front-page .concept::before{

content:"";

position:absolute;
inset:0;

/* 和紙なので白は薄め */

background:rgba(255,255,255,0.75);

z-index:1;

}

/* 中身を前面へ */

#front-page .concept > *{

position:relative;
z-index:2;

}

/* 横並び */

#front-page .concept-inner{

display:flex;
justify-content:center;
align-items:stretch;
gap:80px;

max-width:1100px;
margin:0 auto 40px;

}

/* 左：縦書き */

#front-page .concept-text{

writing-mode:vertical-rl;

font-size:18px;
line-height:2.2;
letter-spacing:0.1em;

}

/* 右：コピー */

#front-page .concept-copy{

font-size:36px;
line-height:1.6;
font-weight:600;

max-width:420px;

}

.concept-copy p{
margin:0;
}
/* コピー装飾 */

#front-page .copy-accent{
color:#3b7960;
}

/* ボタン */

#front-page .concept-buttons{

display:flex;
justify-content:center;
gap:30px;
margin-top:60px;

}

/* ボタン */

#front-page .concept-buttons{

display:flex;
justify-content:center;
gap:30px;
margin-top:60px;

}

/* ボタン */

#front-page .btn-main{

display:flex;
justify-content:center;
align-items:center;

width:320px;
height:72px;

border-radius:12px;

text-decoration:none;

font-size:17px;
font-weight:600;

transition:0.25s;

}

/* アイコン＋文字の塊 */

#front-page .btn-content{

display:flex;
align-items:center;
gap:10px;

min-width:252px;
justify-content:center;

}

/* テキスト */

#front-page .btn-text{

white-space:nowrap;

}

/* アイコン */

#front-page .btn-content img{

width:20px;
height:20px;

flex-shrink:0;

}

/* ボタン色 */

#front-page .btn-service{

background:#3b7960;
color:#fff;

}

#front-page .btn-contact{

background:#f4a261;
color:#fff;

}

/* hover */

#front-page .btn-main:hover{

transform:translateY(-3px);
box-shadow:0 8px 18px rgba(0,0,0,0.15);

}

/* =========================
   スマホ対応
========================= */

@media (max-width:768px){

#front-page .concept-inner{

flex-direction:column;
gap:40px;

}

/* 縦書き解除 */

#front-page .concept-text{

writing-mode:horizontal-tb;

}

#front-page .concept-copy{

font-size:26px;
text-align:center;

}

}

/* =========================
   Facility Section
========================= */

#front-page .facility{

background:#ffffff;

padding:80px 5vw;

}

/* タイトル */

.facility-title{

text-align:center;
font-size:32px;
font-weight:600;
font-family:var(--tcd-headline-font-type);

}

.facility-title .accent{

color:#3b7960;

}

/* 区切り線 */

.facility-line{

width:80px;
height:2px;

background:#3b7960;

border:none;

margin:20px auto 30px;

}

/* 説明 */

.facility-desc{

text-align:center;

font-size:16px;

margin-bottom:60px;

}

/* =========================
   グリッド
========================= */

.facility-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

max-width:1100px;

margin:0 auto;

}

/* =========================
   カード
========================= */

.facility-card{

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

padding:32px 20px;

background:#f7f7f7;

border-radius:12px;

text-decoration:none;

color:#333;

transition:0.25s;

}

/* ピクトグラム */

.facility-icon img{

width:54px;
height:54px;

margin-bottom:14px;

}

/* 施設名 */

.facility-name{

font-size:17px;
font-weight:600;

text-align:center;

}

/* hover */

.facility-card:hover{

transform:translateY(-5px);

box-shadow:0 10px 20px rgba(0,0,0,0.08);

background:#ffffff;

}

/* =========================
   ボタン
========================= */

.facility-more{

text-align:center;

margin-top:60px;

}

.btn-facility{

display:inline-block;

padding:16px 32px;

border-radius:10px;

background:#3b7960;

color:#fff;

text-decoration:none;

font-weight:600;

transition:0.25s;

}

.btn-facility:hover{

opacity:0.9;

}

/* =========================
   スマホ
========================= */

@media (max-width:768px){

.facility-grid{

grid-template-columns:1fr;

gap:20px;

}

}

/* =========================
   MV side_copy 中央配置
   スライダー left:64px + clip-path:inset(100px) → 視覚的左余白 164px
   要素幅 100px → left = (164-100)/2 = 32px で余白内センタリング
========================= */

#side_copy {
  left: 32px !important;
}