@media (max-width: 768px) {
  .home .lc-news .lc-section-title,
  .home .lc-service .lc-section-title,
  .home .lc-about .lc-section-title,
  .home .lc-feature .lc-section-title,
  .home .lc-blog .lc-section-title,
  .home .lc-access .lc-section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
  }

  .home .lc-section-title .lc-section-sub {
    display: block;
    text-align: center;
  }
}



/* =========================================
 * Front Page：可変セクション間ギャップ
 * ABOUT非表示時の FEATURE 密着を防ぐ
 * ======================================= */
.home .lc-main {
  --lc-front-feature-gap: clamp(64px, 8vw, 120px);
}

/* ABOUT が無いときにだけ FEATURE 前に余白を確保 */
.home .lc-main > :is(.lc-hero, .lc-hero-gallery, .lc-news, .lc-service, .lc-blog, .lc-access) + .lc-feature {
  margin-top: var(--lc-front-feature-gap);
}

/* =========================================
 * お知らせ セクション（フロントページ専用）
 * ======================================= */

/* item */
.lc-news-item {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.lc-news-item:last-child {
  border-bottom: 1px solid #e5e7eb;
}

.lc-news-hero {
  padding: 0 0 2.5rem 0;
  background-color: #f9f9f9;
}

/* header：左右配置を保証 */
.lc-news-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

/* お知らせ一覧を見る */
.lc-news-archive {
  position: relative;
  padding-right: 2.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

/* 丸アイコン */
.lc-news-archive::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--lc-accent-color);
  color: #fff;
  font-size: 1rem;
  line-height: 1.2rem;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lc-news-archive:hover::after {
  background: #1f6fe0;
  transform: translate(3px, -50%);
}

@media (max-width: 768px) {
  .lc-news-header {
    flex-direction: column;
    align-items: center;
	gap: 8px;
	margin-bottom: 40px;
  }
}


/* =========================================
 * Banner Slider（Front Page）
 * ======================================= */

.lc-banner-slider {
  overflow: hidden;
  margin: 80px calc(50% - 50vw);
  max-width: 100%;
  touch-action: pan-y;
}

.lc-banner-slider-track {

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

  will-change: transform;

  cursor: grab;

  user-select: none;
  -webkit-user-select: none;

}

.lc-banner-slider-track.is-dragging {
  cursor: grabbing;
}

/* =========================================
 * Banner Item
 * ======================================= */

.lc-banner-item {

  flex: 0 0 380px;
  display: block;

  -webkit-user-drag: none;

}

.lc-banner-item img {

  width: 100%;
  aspect-ratio: 19 / 10; /* 380 × 200 */

  object-fit: cover;
  display: block;

  border-radius: 4px;

  transition: transform .3s ease;

  user-select: none;
  -webkit-user-select: none;

  -webkit-user-drag: none;

}

/* hover */

.lc-banner-item:hover img {
  transform: scale(1.04);
}

/* =========================================
 * SP
 * ======================================= */

@media (max-width: 768px) {

  .lc-banner-slider {
    margin: 64px calc(50% - 50vw);
  }

  .lc-banner-slider-track {
    gap: 16px;
  }

  .lc-banner-item {
    flex: 0 0 72%;
  }

  .lc-banner-header {
    text-align: center;
  }

}


/* =========================================
 * Service　セクション(フロントページ専用)
 * ======================================= */

.lc-service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lc-service-item h3 {
  margin-bottom: 8px;
}

.lc-service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
}

.lc-service-item {
  border: 1px solid #e5e5e5;
  border-left: none;
  border-top: none;
  margin-bottom: 0;
}

.lc-service-item:nth-child(-n+3) {
  border-top: 1px solid #e5e5e5;
}

.lc-service-item:nth-child(3n+1) {
  border-left: 1px solid #e5e5e5;
}

.lc-service-card {
  display: block;
  background: #fff;
  text-decoration: none;
  color: inherit;
}

.lc-service-thumb {
  position: relative;
  overflow: hidden;
}

.lc-service-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .45s ease;
}

.lc-service-card:hover .lc-service-thumb img {
  transform: scale(1.08);
}

/* 番号ラベル */
.lc-service-no {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #0b4f6c;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 10px;
  letter-spacing: .05em;
}

.lc-service-body {
  padding: 22px 24px 28px;
}

.lc-service-body h3 {
  margin-top: 0px !important;
  font-size: 1.05rem;
}

.lc-service-title {
  font-size: 1.05rem;
  margin: 0 0 12px;
}

.lc-service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}


/* =========================================
 * Service Title / Divider
 * ======================================= */

.lc-service-title {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.25rem;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

/* h3 と p の間の薄線 */
.lc-service-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin: 12px auto 0;
}

/* 説明文も中央寄せで揃える */
.lc-service-desc {
  text-align: center;
}

@media (max-width: 767px) {
  .lc-service-item {
    border: 1px solid #e5e5e5;
    margin-bottom: 30px;
  }
}

/* Service（Front Page） : 画像高さのみ件数別調整 */

/* 1件のみ */
.lc-service-list:has(> .lc-service-item:only-child)
.lc-service-thumb img {
  height: 300px;
}

/* 2件のみ */
.lc-service-list:has(> .lc-service-item:nth-child(2):last-child)
.lc-service-thumb img {
  height: 260px;
}


/* =========================================
 * Button
 * ======================================= */

.lc-section-more {
  margin-top: 48px;
  text-align: center;
}


.lc-section-more .lc-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid #dcdcdc;
  background: transparent;
  color: #222;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background-color .25s ease, color .25s ease;
}

.lc-section-more .lc-btn:hover {
  background-color: #f4f4f4;
  color: #000;
}



/* ========================================
 * ABOUT　セクション
 * ===================================== */
.lc-about {
  position: relative;
  overflow: hidden;
  margin: 0;
  /* 旧 margin-top を背景付き余白へ置換 */
  padding: 160px 0 96px 0;
}

/* 背景レイヤー */
.lc-about-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      -6deg,
      #f3f5f7 0%,
      #f3f5f7 50%,
      #ffffff 50%,
      #ffffff 100%
    );
  z-index: 0;
}

/* 中身ラッパー */
.lc-about-inner {
  position: relative;
  z-index: 1;
  padding: 0 0 96px 0;
}

/* グリッド */
.lc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* テキスト */
.lc-about-text .lc-section-title {
  margin-bottom: 24px;
}

.lc-about-lead {
  font-size: 1.2rem !important;
  font-weight: 600;
  margin-bottom: 16px;
}

.lc-about-desc {
  line-height: 1.8;
  color: #444;
}

/* ========================================
 * ABOUT 画像エリア
 * ※ background-image は PHP から注入
 * ===================================== */
.lc-about-media {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* =========================
 * PCではさらにインパクト
 * ======================= */
@media (min-width: 1024px) {
  .lc-about-media {
    aspect-ratio: 5 / 6;
  }
}

/* =========================
 * SP調整
 * ======================= */
@media (max-width: 768px) {
  .lc-about {
    margin: 0;
    padding-top: 0;
  }

  .lc-about-inner {
    padding: 64px 0;
  }

  .lc-about-grid {
    grid-template-columns: 1fr;
  }

  .lc-about-bg {
    background:
      linear-gradient(
        -3deg,
        #f3f5f7 0%,
        #f3f5f7 60%,
        #ffffff 60%,
        #ffffff 100%
      );
  }

  .lc-about-media {
    aspect-ratio: 16 / 9;
    margin-top: 24px;
  }
}

/* ========================================
 * ABOUT セクション：ボタン調整
 * ===================================== */
.lc-about .lc-section-more {
  text-align: left;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .lc-about .lc-section-more {
    text-align: center;
  }
}


.lc-about .lc-btn {
  background: #fff;
  color: #222;
  border: 1px solid #ddd;
  position: relative;
  z-index: 1;
}

.lc-about .lc-btn:hover {
  /* 動かさず、影だけ */
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}


/* =================================================
 * FEATURE　セクション
 * ================================================= */
.lc-feature {
  width: 100%;
  background: var(--lc-feature-bg-color);
  overflow: hidden;
  overflow-x: hidden;
}

/* lc-container の代役（必須） */
.lc-feature-container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 0 16px;
}

/* レイアウト */
.lc-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 520px;
}

/* -------------------------
 * テキスト側
 * ------------------------- */
.lc-feature-content {
  padding: 48px 0;
  color: #fff;
}

@media (min-width: 1024px) {
  .lc-feature-content {
    padding-right: 48px;
  }
}

.lc-feature-text {
  max-width: 560px;
  line-height: 2;
  color: rgba(255,255,255,0.9);
}

/* 見出し（FEATURE専用） */
.lc-feature .lc-section-title {
  color: #fff;
  font-size: 2.5rem;
}

.lc-feature .lc-section-sub {
  color: rgba(255,255,255,0.6);
}

/* -------------------------
 * 画像側（右にはみ出す）
 * ------------------------- */
.lc-feature-image {
  position: relative;
  margin-right: calc((100vw - 1100px) / -1.9);
}

.lc-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SP */
@media (max-width: 768px) {
  .lc-feature-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lc-feature-content {
    padding: 0px 0px 20px 0px;
  }

  .lc-feature-image {
    margin-right: 0;
    height: 240px;
    margin-bottom: 40px;
  }
}

/* =================================================
 * FEATURE キャプション
 * ================================================= */
.lc-feature-card {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.lc-feature-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 24px 20px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.65),
    rgba(0,0,0,0)
  );
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}



.lc-feature-caption-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.lc-feature-caption-arrow {
  display: inline-block;
  font-size: 2.5rem;
  opacity: 0.8;
  margin-right: 40px;
  transform: translateX(0);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
  will-change: transform;
}

/* hover */
.lc-feature-card:hover .lc-feature-caption-arrow {
  transform: translateX(8px);
  opacity: 1;
}

.lc-feature-card:hover .lc-feature-caption {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.75),
    rgba(0,0,0,0)
  );
}

/* =================================================
 * FEATURE slider（JS制御）
 * ================================================= */
.lc-feature-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.lc-feature-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease;
  /*pointer-events: none;*/
}

.lc-feature-slide.is-active {
  opacity: 1;
  z-index: 2;
  /*pointer-events: auto;*/
}

.lc-feature-slides {
  touch-action: pan-y;
}


/* =================================================
 * FEATURE dots処理
 * ================================================= */
.lc-feature-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.lc-feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
}

.lc-feature-dot.is-active {
  background: #fff;
}


/* ========================================
 * ACCESS / Google Map　セクション
 * ===================================== */

.lc-access {
  padding: 0px;
  background: #f6f7f9; /* 周辺を締める */
  overflow-x: hidden;
}

/* テキストは通常幅 */
.lc-access .lc-address {
  margin: 0 0 32px;
  font-style: normal;
  line-height: 1.8;
  font-size: 0.95rem;
  color: #333;
}

/* マップだけ全幅 */
.lc-access .lc-map {
  width: 100vw;
  margin: 40px calc(50% - 50vw) 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.lc-access .lc-map iframe {
  display: block;
  width: 100%;
  height: 600px; /* PC FIX */
  border: 0;
}

.lc-access-note {
  padding: 0px 0px 0px 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  border-left: 2px solid rgba(0,0,0,0.12);
}



/* SP */
@media (max-width: 768px) {
  .lc-access {
    padding: 64px 0;
  }

  .lc-access .lc-map iframe {
    height: 330px; /* SP FIX */
  }
}


/* =========================================
 * フロントページ BLOG セクション
 * ======================================= */

.lc-blog {
  padding-bottom: 94px;
}






