@charset "utf-8";
:root {
  --green: #667B68;
  --green-d: #5A6F5C;
  --gold: #CFA875;
  --gold-d: #B78E5F;
  --blue: #002D62;
  --blue-d: #334B8C;
  --bg-ivory: #F9F8F6;
  --text: #333;
  --muted: #555;
  --maxw: 1200px;
  --radius: 10px;
  --shadow: 0 6px 18px rgba(0, 0, 0, .12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .10);
  --ease: cubic-bezier(.2, .8, .2, 1);
}
:root {
  --fz-h1: clamp(28px, 4vw, 42px);
  --fz-h2: clamp(22px, 3vw, 32px);
  --fz-h3: clamp(24px, 2.4vw, 26px);
  --fz-body: clamp(14px, 1.5vw, 18px);
}
h1 {
  font-size: var(--fz-h1);
}
h2 {
  font-size: var(--fz-h2);
}
h3 {
  font-size: var(--fz-h3);
}
p {
  font-size: var(--fz-body);
  line-height: 1.8;
}
* {
  box-sizing: border-box
}
html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", Segoe UI, Roboto, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  background: #fff
}
img, video {
  max-width: 100%;
  height: auto;
  display: block
}
a {
  color: var(--blue);
  text-decoration: none
}
a:hover {
  text-decoration: none;
}
ul {
  padding: 0;
}	
li {
  list-style-type: none !important;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
.page .section--leafbg {
  background: linear-gradient(to top, rgb(255 255 255 / 0%), #efeadf);
  padding: 32px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  padding: 14px 24px;
  font-weight: 600;
  transition: all .25s var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap
}
.btn-main {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-sm)
}
.btn-main:hover {
  background: var(--green-d);
  transform: translateY(-1px)
}
.btn-accent {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-sm)
}
.btn-accent:hover {
  background: var(--gold-d);
}
.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: #fff
}
.btn-outline:hover {
  background: #EEF2EE
}
.btn-info {
  background: var(--blue);
  color: #fff
}
.btn-info:hover {
  background: var(--blue-d)
}
.section {
  padding: 32px 0 0;
}
h1, h2, h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  line-height: 1.4;
  margin: 0;
}
h2 {
  padding-bottom: 20px;
}
.ht-81 {
  margin: 80px 0 10px;
}
.tac {
  text-align: center;
}
.lead {
  color: var(--muted)
}
.m-7 {
  max-width: var(--maxw, 768px);
  margin: 0 auto;
}
.m-12 {
  max-width: var(--maxw, 1200px);
  margin: 0 auto;
}
.pd-16 {
  padding-left: 16px;
  padding-right: 16px;
}
.pdt-40{
    padding-top: 40px;	
}
.pdt-80{
    padding-top: 80px;	
}

.pdb-20{
    padding-bottom: 20px;
}
.pdb-40{
    padding-bottom: 40px;
}
.mt-40{
	margin-top:40px;
}
/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #eee
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0 auto;
  padding: 0 0 0 20px;
}
.brand {
  width: 116px;
  height: 48px;
  padding: 6px 0 0 6px;
}
/* ロゴ（左） */
.brand img {
  max-height: 40px;
  width: auto;
}
/* PCナビ（中央） */
.gnav {
  display: none;
}
.gnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 28px;
}
.gnav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 8px 2px;
  line-height: 1;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.gnav a:hover {
  color: var(--blue);
}
.gnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: transparent;
  transition: background .2s;
}
.gnav a:hover::after {
  background: var(--blue);
}
/* PC右端CTA */
.header-cta {
  display: none;
  gap: 0;
}
.header-cta__btn {
  border-radius: 0;
  padding: 10px 48px;
  font-weight: 700;
  white-space: nowrap;
}
/* 1025px以上でPCレイアウトを有効化、SPUIは隠す */
@media (min-width:1025px) {
  header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 40;
  }
  .gnav {
    display: block;
  }
  .header-cta {
    display: flex;
  }
  .hamburger {
    display: none;
  }
  .drawer {
    display: none;
  }
}
/* 1024px以下（SP/タブ） */
@media (max-width:1024px) {
  header {
    position: static;
  }
  .header-inner {
    grid-template-columns: 94% 6%;
    padding: 0;
  }
}
@media (max-width:768px) {
  .header-inner {
    grid-template-columns: 87% 13%;
    padding: 0;
  }
}
/* ===== Breadcrumbs ===== */
.breadcrumbs {
  border-bottom: solid 1px #eee;
  padding: 4px 4%;
  font-size: 14px;
  background: #f9f8f6;
}
/* ===== Hero with Video ===== */
.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  overflow: hidden
}
.hero video {
  filter: brightness(0.8);
}
.pages .hero {
  min-height: 28vh;
  background: #aeb3d4;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.55) 35%, rgba(255, 255, 255, 0.30) 60%, rgba(255, 255, 255, 0.20) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 32px 16px
}
.hero-title {
  position: relative;
  z-index: 2;
  font-size: 34px;
  color: #222;
  text-shadow: 1px 1px 0 hsl(0deg 0% 100% / 80%), -1px -1px 0 hsl(0deg 0% 100% / 80%), -1px 1px 0 hsl(0deg 0% 100% / 80%), 1px -1px 0 hsl(0deg 0% 100% / 80%), 0px 1px 0 hsl(0deg 0% 100% / 80%), 0 -1px 0 hsl(0deg 0% 100% / 80%), -1px 0 0 hsl(0deg 0% 100% / 80%), 1px 0 0 hsl(0deg 0% 100% / 80%);
  font-weight: bold;
}
.hero .sub {
  font-size: 16px;
  color: var(--text);
  text-shadow: 1px 1px 0 hsl(0deg 0% 100% / 80%), -1px -1px 0 hsl(0deg 0% 100% / 80%), -1px 1px 0 hsl(0deg 0% 100% / 80%), 1px -1px 0 hsl(0deg 0% 100% / 80%), 0px 1px 0 hsl(0deg 0% 100% / 80%), 0 -1px 0 hsl(0deg 0% 100% / 80%), -1px 0 0 hsl(0deg 0% 100% / 80%), 1px 0 0 hsl(0deg 0% 100% / 80%);
  font-weight: bold;
}
.hero h1 span {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 15px;
  font-family: emoji;
  text-shadow: none;
  background: #89879f;
  color: #ffffff;
  padding: .3% 1%;
  border-radius: 6px;
  margin-right: 12px;
  font-weight: 400;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 1;
}
.hero .cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px
}
/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--green);
  z-index: 10;
}
.scroll-cue span {
  display: inline-block;
  animation: float 1.2s infinite var(--ease)
}
@keyframes float {
  0%, 100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(6px)
  }
}
/* ===== Feature ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 28px
}
.feature {
  background: #fff;
  padding: 24px 48px;
  text-align: center
}
article.feature p {
  font-size: smaller;
}
.feature .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 9999px;
  background: #F4F4F4;
  display: grid;
  place-items: center;
  font-size: 38px;
  color: var(--green)
}
.feature h3 {
  margin-top: 20px;
  margin-bottom: 8px;
}
.lead--narrow {
  max-width: clamp(560px, 70vw, 720px);
  margin: 0 auto 80px;
  color: var(--muted);
  line-height: 1.9;
}
.section--leafbg {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.section--leafbg::before, .section--leafbg::after {
  content: "";
  position: absolute;
  inset: auto;
  top: 24px;
  bottom: 24px;
  width: clamp(90px, 14vw, 160px);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .7;
  pointer-events: none;
  z-index: -1;
}
.section--leafbg::before {
  left: -8px;
  background-image: url("https://rindo-heart.com/ushigome-teien/assets/img/leaf_left.png?ver=1");
  background-position: left top;
}
.section--leafbg::after {
  right: -8px;
  background-image: url("https://rindo-heart.com/ushigome-teien/assets/img/leaf_right.png?ver=1");
  background-position: right top;
}
#visit::before {
  left: -8px;
  background-image: url("https://rindo-heart.com/ushigome-teien/assets/img/leaf_left_cta.png?ver=1");
  background-position: left top;
}
#visit::after {
  right: -8px;
  background-image: url("https://rindo-heart.com/ushigome-teien/assets/img/leaf_right_cta.png?ver=1");
  background-position: right top;
}
@media (max-width: 768px) {
  .section--leafbg {
    overflow-x: clip;
    padding: 70px 0 0;
  }
  .section--leafbg::before, .section--leafbg::after {
    width: clamp(60px, 18vw, 100px);
    opacity: 0.8;
  }
  html, body {
    overflow-x: hidden;
  }
  .features {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* Swiper */
.intro-gallery img {
  width: 100%;
  height: clamp(220px, 36vw, 420px);
  object-fit: cover;
}
.intro-gallery .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}
.intro-gallery img {
  width: 100%;
  height: clamp(220px, 36vw, 420px);
  object-fit: cover;
  display: block;
}
.intro-gallery .swiper-pagination {
  position: static;
  margin-top: 10px;
}
.intro-gallery .swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
}
.intro-gallery .swiper-pagination-bullet-active {
  background: var(--blue);
}
@media (max-width: 640px) {
  .lead--narrow {
    max-width: 92vw;
    margin-bottom: 68px;
  }
  .section--leafbg::before, .section--leafbg::after {
    top: 14px;
    bottom: 14px;
    width: clamp(72px, 22vw, 120px);
    opacity: .7;
  }
}
/* ===== Type / Plans ===== */
.typeIntro {
  position: relative;
  isolation: isolate;
  gap: clamp(16px, 3vw, 28px);
}
.typeIntro__media .swiper-slide {
  height: auto;
}
.typeIntro__media .swiper-slide img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.typeIntro__media .swiper-pagination {
  position: static;
  margin-top: 8px;
}
.typeIntro__panelInner {
  position: relative;
  background: #EEF2EE;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}
.typeIntro__panelInner ul li i {
  color: #6b9244;
}
/* ========== PC（768px以上）：2列、見た目は画像左・テキスト右 ========== */
@media (min-width: 768px) {
  .typeIntro {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .typeIntro__media {
    flex: 0 0 55%;
    max-width: 55%;
    margin-top: 60px;
    z-index: 0;
  }
  .typeIntro__panel {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    top: 30px;
    left: -5%;
    z-index: 0;
    display: flex;
  }
  .typeIntro__panelInner {
    min-height: 420px;
    padding: 52px 42px 52px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .typeIntro__panelInner h3 {
    margin: 0 0 16px;
    line-height: 1.7;
    font-size: 20px;
  }
  .typeIntro__panelInner p {
    margin: 0;
    line-height: 1.95;
    color: var(--muted);
  }
  .typeIntro__panelInner::after {
    content: "";
    position: absolute;
    top: -66px;
    right: -56px;
    width: 160px;
    height: 140px;
    pointer-events: none;
    z-index: 0;
    background: url("https://rindo-heart.com/ushigome-teien/assets/img/bg_bird.webp?ver=1") no-repeat right top/contain;
  }
}
/* ========== SP（〜767px）========== */
@media (max-width: 767px) {
  .typeIntro {
    display: block;
  }
  .typeIntro__panel {
    margin: 0;
  }
  .typeIntro__panelInner {
    padding: 20px 18px;
    border-radius: 0;
  }
  .typeIntro__panelInner:after {
    content: "";
    position: absolute;
    top: -66px;
    right: -56px;
    width: 160px;
    height: 140px;
    pointer-events: none;
    z-index: 0;
    background: url("https://rindo-heart.com/ushigome-teien/assets/img/bg_bird.webp?ver=1") no-repeat right top / contain;
  }
  .typeIntro__panelInner h3 {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 10px;
  }
  .typeIntro__panelInner p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
  }
  .typeIntro__media {
    margin: 0;
  }
  .typeIntro__media .swiper-slide img {
    height: clamp(220px, 55vw, 340px);
  }
}
/* ===== Swiper in TYPE section: fix flex-stretch issue ===== */
@media (min-width: 768px) {
  .typeIntro {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
  }
  .typeIntro__media {
    align-self: flex-start;
    min-width: 0;
  }
  .typeIntro__media .swiper-slide {
    height: auto;
  }
  .typeIntro__media .swiper-slide img {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
  }
}
.type-top {
  background: #EEF2EE;
  background: #F6F1EF;
}
.type-cards {
  background: #F6F1EF;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: stretch;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid #eee;
  flex: 1 1 calc(25% - 6px);
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px;
}
.card-body h3 {
  margin: 0 auto;
}
.card-actions {
  margin-top: auto;
  padding-top: 12px;
}
.card-actions .btn {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.card__img {
  position: relative;
  overflow: hidden;
}

/* ========== New区画リボン========== */
.ribbon--bar {
  position: absolute;
  top: 12px;
  /* left: 0; */
  /* right: 0; */
  margin: auto;
  width: 85%;
  max-width: 280px;
  background: linear-gradient(90deg, #e74c3c 0%, #ff6b4a 100%);
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 8px 0;
  border-radius: 8px;
  font-size: clamp(14px, 2vw, 15px);
  letter-spacing: 0.05em;
  box-shadow: 0 3px 6px rgba(0,0,0,0.25);
  z-index: 6;
  animation: flashRibbon 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes flashRibbon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

/* スマホ調整 */
@media (max-width: 640px){
  .ribbon--bar {
    width: 92%;
    font-size: 13px;
    padding: 6px 0;
    top: 8px;
  }
}

/* 価格・注記など */
.price {
  color: var(--blue);
  font-weight: 800;
  font-size: 30px;
  margin: 0 auto;
  vertical-align: middle;
  line-height: 1.25;
  color: #002d62;
}
.price span {
  font-size: 20px;
}
.note {
  font-size: 13px;
  color: var(--muted);
  line-height: initial;
  margin: 4px auto;
}
@media (max-width: 1024px) {
  .cards {
    flex-wrap: wrap;
    gap: 12px;
  }
  .card {
    flex: 1 1 calc(50% - 6px);
  } /* 2列 */
}
@media (max-width: 640px) {
  .card {
    flex: 1 1 100%;
  } /* 1列 */
}
/* ===== Voice ===== */
.container h1.tac {
  text-align: center;
  padding-top: 30px;
}
.sec-ttl-en {
  font-family: "Noto Serif JP", serif;
  letter-spacing: .2em;
  font-size: 18px;
  margin: 0 0 6px;
}
.sec-ttl-ja {
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 700;
}
.sec-lead {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 18px;
}
/* Voice Swiper レイアウト */
.voice-swiper {
  overflow: visible;
  padding-inline: 16px;
}
.voice-slide {
  width: min(680px, 86vw);
}
.voice-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.voice-card img {
  display: block;
  width: 100%;
  height: clamp(220px, 38vw, 360px);
  object-fit: cover;
}
.voice-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(2px);
  padding: 14px 16px;
  color: #222;
  line-height: 1.8;
  font-size: 14px;
}
.voice-caption .voice-meta {
  color: #555;
  font-size: 12px;
}
/* ページネーション（ドット） */
.voice-swiper .swiper-pagination {
  position: static;
  margin-top: 10px;
}
.voice-swiper .swiper-pagination-bullet {
  background: #bdbdbd;
  opacity: 1;
  width: 6px;
  height: 6px;
}
.voice-swiper .swiper-pagination-bullet-active {
  background: var(--blue);
}
@media (min-width: 768px) {
  .voice-swiper .swiper {
    overflow: visible;
  }
}
/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid #eee
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  border: none;
  background: none;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s var(--ease)
}
.faq-a-inner {
  padding: 0 0 16px;
  color: var(--muted)
}
.faq-item.active .faq-a {
  max-height: 240px
}
/* ===== Access ===== */
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}
.frame {
  background: #fff;
  padding: 12px;
}
.mapimg {
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}
/* ===== CTA Final ===== */
.cta-final {
  background: var(--bg-ivory);
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee
}
.cta-final h2 {
  padding: 20px 0 10px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px auto;
  max-width: 400px;
}
@media (max-width: 768px) {
  .access-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


/* ===== Fixed Footer CTA ===== */
.fixed-footer-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(4px);
  box-shadow: 0 -2px 10px rgba(0,0,0,.15);
  transform: translateY(100%);
  transition: transform .35s ease;
}

/* 表示状態 */
.fixed-footer-cta.is-visible{
  transform: translateY(0);
}

.fixed-footer-cta__list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin: 0;
  padding: 10px 12px;
  list-style: none;
  text-align: center;
}

.fixed-footer-cta__lead p{
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

/* 電話 */
.fixed-footer-cta__tel a{
  display: block;
  border-radius: 12px;
  padding: 10px 8px;
  background: #002d62;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  background: #002d62 url(https://rindo-heart.com/ushigome-teien/assets/img/foot_cta_materials.png) no-repeat;
  background-position: 16%;
  z-index: 999;
  background-size: contain;
}
.fixed-footer-cta__tel .label{
  font-size: 12px;
  opacity: .9;
}
.fixed-footer-cta__tel .number{
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
}
.fixed-footer-cta__tel .time{
  font-size: 11px;
  opacity: .85;
}

/* 資料請求 */
.fixed-footer-cta__request a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0px 12px;
  border-radius: 9999px;
  border: 2px solid #b78e5f;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: #b78e5f;
}

/* PCでは非表示 */
@media (min-width: 768px){
  .fixed-footer-cta{ display:none; }
}


/* ===== Footer ===== */
.footer {
  background: var(--blue);
  color: #fff;
  padding: 36px 0;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  color: var(--gold);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
  gap: 24px;
}
.footer__brand {
  display: grid;
  gap: 12px;
}
.footer__tagline {
  opacity: .9;
  line-height: 1.8;
}
.footer__txt {
  font-size: 20px;
  margin: 0;
}
/* Phone */
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 9999px;
  padding: 10px 14px;
  font-weight: 700;
}
.footer__phone .phone-number {
  font-size: 26px;
  letter-spacing: .5px;
}
.footer__sns {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.sns-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .25);
  transition: transform .15s ease, background .2s ease, color .2s ease;
  color: #fff;
}
.sns-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .16);
}
.sns-line:hover {
  color: #06C755;
}
.sns-fb:hover {
  color: #1877F2;
}
.sns-ig:hover {
  color: #E1306C;
}
/* Nav */
.footer__navGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.footer__navGrid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer__navGrid a {
  opacity: .95;
}
.footer__navGrid a:hover {
  opacity: 1;
  text-decoration: underline;
}
.copyright {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  color: #D7E0EA;
  margin-top: 6px;
}
/* SP */
@media (max-width: 640px) {
  .footer {
    padding: 28px 0 24px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__navGrid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__phone {
    width: 100%;
    justify-content: center;
    color: #fff;
  }
}
/* ===== Responsive ===== */
.hero {
  min-height: 72vh
}
.hero h1 {
  font-size: 26px
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
  padding: 8px 12px;
  z-index: 50;
}
.fixed-cta a {
  flex: 1;
  margin: 0 4px;
  text-align: center;
  border-radius: 9999px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
}
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 0;
  border-radius: 8px;
  padding: 6px 8px;
  width: 58px;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue)
}
.hamburger small {
  font-size: 10px;
  color: var(--muted)
}
@media(min-width:1025px) {
  .hamburger {
    display: none
  }
}
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none
}
.drawer__inner {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(88vw, 420px);
  background: var(--blue);
  color: #fff;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.drawer[aria-hidden="false"] {
  pointer-events: auto
}
.drawer[aria-hidden="false"] .drawer__backdrop {
  opacity: 1
}
.drawer[aria-hidden="false"] .drawer__inner {
  transform: none
}
.drawer__close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.drawer__ctaTop {
  display: flex;
  gap: 10px
}
.drawer__ctaTop .btn {
  flex: 1;
  border-radius: 10px;
  padding: 12px 0;
  font-weight: 700
}
.drawer__nav ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px
}
.drawer__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px
}
.drawer__nav a:hover {
  color: var(--gold);
  text-decoration: underline
}
.drawer__tel {
  margin-top: 6px
}
.drawer__tel .tel {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px
}
.drawer__tel .time {
  font-size: 12px;
  opacity: .9
}
.drawer__sns {
  display: flex;
  gap: 14px;
  margin-top: auto
}
.drawer__sns a {
  color: #fff;
  opacity: .9
}
.drawer__sns a:hover {
  color: var(--gold)
}
.footer {
  background: var(--blue);
  color: #fff;
  padding: 36px 0
}
.footer__inner {
  display: grid;
  gap: 24px
}
.footer__brand {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center
}
.footer__tagline {
  opacity: .9;
  line-height: 1.8
}
.footer__navGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}
.footer__navGrid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px
}
.footer__navGrid a {
  color: #fff;
  text-decoration: none
}
.footer__navGrid a:hover {
  color: var(--gold);
  text-decoration: underline
}
.copyright {
  text-align: center;
  color: #D7E0EA;
  font-size: 13px;
  margin-top: 4px
}
@media(max-width:640px) {
  .footer {
    padding: 28px 0 24px
  }
  .footer__navGrid {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }
  .footer__tagline {
    font-size: 14px
  }
}
.fixed-cta {
  display: none
}
body[data-page="sub"] .fixed-cta {
  display: flex
}
@media(min-width:1025px) {
  header {
    position: sticky;
    top: 0;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media(max-width:1024px) {
  header {
    position: static
  }
}
.drawer__telLink {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 10px;
  padding: 8px 12px;
}
.drawer__telLink:hover {
  color: var(--gold);
  border-color: var(--gold);
}
#footerCtaStopper{
  height: 1px;
}

/* ===== LINE公式アカウント CTA内表示 ===== */
.line-official {
  margin-top: clamp(32px, 5vw, 56px);
  text-align: center;
  background: #f7fdf7;
  padding: clamp(20px, 3vw, 32px);
}
.line-official__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #1a441a;
  margin-bottom: .4em;
}
.line-official__lead {
  font-size: 14px;
  color: #527352;
  margin-bottom: 1em;
}
.line-official__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 40px);
  flex-wrap: wrap;
}
.line-official__qr {
  width: clamp(120px, 10vw, 160px);
  height: auto;
  border: 4px solid #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,.1);
  border-radius: 8px;
}
.line-official__text {
  text-align: left;
  max-width: 320px;
}
.line-official__text p {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  background: #06C755;
  color: #fff;
  border-radius: 999px;
  padding: .6em 1.4em;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(6,199,85,.25);
}
.btn-line:hover { filter: brightness(1.08); }
@media (max-width: 768px) {
  .line-official__qr {
    display: none;
  }
  .line-official__text {
    text-align: center;
    max-width: 100%;
  }
}

/* ===== News list ===== */
.section.news { background:#fff; padding: clamp(84px,4vw,48px) 0; }
.section.news h2 { margin: 0 auto 12px; }

.news-list { list-style:none; margin:0 auto; padding:0; }
.news-item{
  display:flex; align-items:center; gap:16px;
  padding:14px 0;
  border-top:1px solid #e6edf3;
}
.news-item:last-child{ border-bottom:1px solid #e6edf3; }

.news-item time{
  width: 9.2em;
  flex: 0 0 9.2em;
  font: 600 13px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  color:#7f8b98;
  letter-spacing:.02em;
  white-space:nowrap;
}

.news-item a,
.news-item .news-title{
  flex:1 1 auto;
  color:#1f2730;
  text-decoration:none;
  font-weight:600;
}
.news-item a:hover{ color:#365f92; text-decoration:underline; }

.news-badge{
  order: -1;
  margin-left: 0;
  font-size: 12px;
  font-weight: 700;
  color:#3a6ea5;
  background:#f2f7ff;
  border:1px solid #d6e6ff;
  padding:.22em .7em;
  border-radius:999px;
  line-height:1.1;
}

.news-source{ display:none; }

@media (max-width: 640px){
  .news-item{
    flex-wrap:wrap;
    gap:8px 12px;
    padding:12px 0;
  }
  .news-item time{
    flex:0 0 auto;
    width:auto;
    margin-right:4px;
  }
  .news-badge{ order:0; }
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }

  .btn[href^="tel:"],
  .footer__phone[href^="tel:"] {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    color: inherit;
  }
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    /* color: var(--color-accent, #006699); */
  }
}
@media screen and (min-width: 768px) {
  .btn[href^="tel:"] {
    font-weight: 600;
    background: transparent;
    border: none;
    padding: 0;
    display: inline;
  }
}
