.review-banner__link img {
  border-radius:12px;
}

.center {
  justify-content: center;
  padding-inline: 20px;
}/* ===== Reset ===== */
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0}
img{max-width:100%;height:auto;display:block}
ul,ol{margin:0;padding:0;list-style:none}
h1,h2,h3,h4,p,figure{margin:0}

/* ===== Tokens ===== */
:root{
--brand:#297358;
--brand-weak:#e7f5ee;
--ink:#666666;
--muted:#6e7a73;
--line:#e7ece8;
--bg:#F2F3F0;
--container:980px;
--font-heading:'Zen Maru Gothic', 'Noto Sans JP', system-ui, -apple-system, "Segoe UI", sans-serif;
--font-body:'Noto Sans JP', 'Zen Maru Gothic', system-ui, -apple-system, "Segoe UI", sans-serif;
}

body{
font-family:var(--font-body);
color:#666666;
background:var(--bg);
line-height:1.8;
letter-spacing:0.05em;
}

/* ===== Typography (見出しの統一スタイル) ===== */
h1, h2, h3, h4 {
font-family: var(--font-heading);
font-weight: 700;
color: #666;
line-height: 1.5;
}

/* ページタイトル用のh1 */
h1 {
font-size: 32px;
margin-bottom: 32px;
}

/* メインセクション見出し用のh2 */
h2 {
font-size: 28px;
margin: 0 0 24px 0;
padding-bottom: 12px;
border-bottom: 3px solid #e7ece8;
position: relative;
}

/* FAQページのh2の間隔 */
#faq h2 + p + h2 {
margin-top: 48px;
}

/* ===== Column List ===== */
.column-list{
display:grid;
grid-template-columns:1fr;
gap:32px;
max-width:800px;
margin:0 auto 64px;
}

.column-card{
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 2px 8px rgba(0,0,0,0.05);
transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.column-card:hover{
transform:translateY(-4px);
box-shadow:0 4px 16px rgba(0,0,0,0.1);
}

.column-card__link{
display:flex;
gap:24px;
padding:24px;
text-decoration:none;
color:inherit;
}

.column-card__image{
flex-shrink:0;
width:240px;
height:180px;
border-radius:12px;
overflow:hidden;
}

.column-card__image img{
width:100%;
height:100%;
object-fit:cover;
}

.column-card__content{
flex:1;
display:flex;
flex-direction:column;
}

.column-card__title{
font-size:20px;
font-weight:700;
color:#666;
line-height:1.5;
margin:0 0 12px 0;
border:none;
padding:0;
}

.column-card__title::after{
display:none;
}

.column-card__excerpt{
font-size:14px;
line-height:1.8;
color:#666;
margin:0 0 auto 0;
display:-webkit-box;
-webkit-line-clamp:3;
-webkit-box-orient:vertical;
overflow:hidden;
}

.column-card__footer{
margin-top:16px;
text-align:right;
}

.column-card__button{
display:inline-block;
color:#297358;
font-size:14px;
font-weight:600;
border:2px solid #297358;
border-radius:24px;
padding:8px 24px;
transition:background 0.3s ease, color 0.3s ease;
}

.column-card:hover .column-card__button{
background:#297358;
color:#fff;
}

h2::after {
content: '';
position: absolute;
bottom: -3px;
left: 0;
width: 80px;
height: 3px;
background: #4CC764;
}

/* サブセクション見出し用のh3 */
h3 {
font-size: 20px;
margin: 32px 0 16px 0;
padding-left: 16px;
border-left: 4px solid #4CC764;
}

/* 小見出し用のh4 */
h4 {
font-size: 18px;
margin: 24px 0 12px 0;
color: #666;
}


/* ===== Utility ===== */
.container {
max-width: var(--container);
width: 100%;
margin-inline: auto;
padding-inline: 20px;
}

.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}

.section{padding:64px 0}
.section--tint{background:#F2F3F0}
.section--gray{background:#F2F3F0}
.section__title{
font-size:32px;
text-align:center;
margin-bottom:32px;
font-weight:700;
position:relative;
color:#666;
border-bottom:none;
padding-bottom:0;
}
.section__title::after{
content:'';
display:block;
width:40px;
height:3px;
background:linear-gradient(90deg, #4CC764 0%, #4CC764 50%, #297358 50%, #297358 100%);
margin:12px auto 0;
border-radius:2px;
}
/* h2タグのsection__titleは短い下線を優先 */
h2.section__title::after{
content:'';
display:block;
width:40px !important;
height:3px;
background:linear-gradient(90deg, #4CC764 0%, #4CC764 50%, #297358 50%, #297358 100%);
margin:12px auto 0;
border-radius:2px;
position:relative;
left:auto;
bottom:auto;
}
.section__lead{
text-align:center;
color:var(--muted);
margin-bottom:32px;
font-size:18px;
}
.center{
display:flex;
justify-content:flex-end;
margin-top:32px;
max-width:980px;
margin-left:auto;
margin-right:auto;
}

/* ===== Buttons ===== */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
min-width: 170px;
height: 64px;
padding: 0 24px;
border-radius: 999px;
font-size: 20px;
font-weight: 700;
text-decoration: none;
color: #fff;
box-shadow: 0 4px 12px rgba(0,0,0,.1);
transition: filter 0.2s, transform 0.02s;
white-space: nowrap;
border:none;
cursor:pointer;
}

.btn__icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
flex-shrink: 0;
}

.btn--tel {
background-color: #297358;
color: #fff;
}
.btn--tel:hover {
filter: brightness(1.1);
}

.btn--web {
background-color: #E96B6B;
color: #fff;
}
.btn--web:hover {
filter: brightness(1.1);
}

.btn--line {
background-color: #06C755;
color: #fff;
}
.btn--line:hover {
filter: brightness(1.1);
}

.btn--outline{
background:#fff;
color:#297358;
border:2px solid #297358;
box-shadow:none;
font-size:16px;
width:182px;
min-width:182px;
height:auto;
padding:16px 24px;
font-weight:700;
display:flex;
justify-content:space-between;
align-items:center;
gap:8px;
}
.btn--outline:hover{
background:#f0f7f4;
}
.btn--outline svg{
width:16px;
height:8px;
flex-shrink:0;
margin-left:auto;
}

.btn--outline-green{
background:#fff;
color:#297358;
border:2px solid #297358;
box-shadow:none;
font-size:16px;
width:182px;
min-width:182px;
height:auto;
padding:16px 24px;
font-weight:700;
display:flex;
justify-content:space-between;
align-items:center;
gap:8px;
}
.btn--outline-green:hover{
background:#f0f7f4;
}
.btn--outline-green svg{
width:16px;
height:8px;
flex-shrink:0;
margin-left:auto;
}

.btn--sm{
min-width:120px;
height:44px;
font-size:15px;
padding:0 20px;
background:#fff;
color:#297358;
border:2px solid #297358;
}

.btn__icon-square {
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
flex-shrink: 0;
margin-left: 8px;
order: 2;
}

.btn__icon-square svg {
width: 100%;
height: 100%;
}

.btn--map {
display: flex;
align-items: center;
justify-content: center;
}

/* ===== Topbar ===== */
.topbar{
position: fixed;
inset: 0 0 auto 0;
width: 100%;
z-index: 1002;
background-color: transparent;
border-bottom: 1px solid transparent;
transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.topbar .container{
display: flex;
justify-content: flex-end;
align-items: center;
gap: 32px;
min-height: 80px;
padding-block: 12px;
max-width: none;
padding-right: 50px;
}

.topnav{
display: flex;
gap: 16px;
list-style: none;
padding: 0;
margin: 0;
}
.topnav a{
color: var(--muted);
text-decoration: none;
font-size: .95rem;
font-weight: 500;
white-space: nowrap;
}

.topnav a:hover,
.topnav a.is-current{
  color: #297358;
  font-weight: 700;
}

/* デスクトップナビのドロップダウン */
.nav__item--dropdown{
position: relative;
}

.nav__dropdown{
position: absolute;
top: 100%;
left: 0;
min-width: 280px;
background: #fff;
border: 2px solid #4CC764;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
list-style: none;
padding: 0;
margin: 8px 0 0 0;
z-index: 1001;
opacity: 0;
visibility: hidden;
transition: opacity 0.2s ease, visibility 0.2s ease;
transition-delay: 0s;
}

.nav__item--dropdown:hover .nav__dropdown{
opacity: 1;
visibility: visible;
transition-delay: 0s, 0s;
}

.nav__item--dropdown .nav__dropdown:hover{
opacity: 1;
visibility: visible;
}

/* マウスが離れた時の遅延 */
.nav__dropdown{
transition-delay: 0.3s, 0.3s;
}

.nav__item--dropdown:hover .nav__dropdown{
transition-delay: 0s, 0s;
}

.nav__dropdown li{
margin: 0;
border-bottom: 1px solid #e7ece8;
}

.nav__dropdown li:last-child{
border-bottom: none;
}

.nav__dropdown a{
display: block;
padding: 12px 20px;
color: #666;
font-size: 14px;
font-weight: 600;
white-space: normal;
transition: all 0.3s ease;
}

.nav__dropdown a:hover{
background: #f0f7f4;
color: #297358;
padding-left: 24px;
}

.topcta{ display: flex; gap: 8px }

.topbar.scrolled{
background-color: #F2F3F0;
border-bottom: 1px solid var(--line);
box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.topbar__brand {
display: none;
align-items: center;
margin-right: auto;
}
.topbar__brand img {
height: 60px;
width: auto;
object-fit: contain;
}

.topbar.scrolled .topbar__brand {
display: flex;
}

:root{ --topbar-offset: 80px; }
body{ padding-top: var(--topbar-offset); }

/* ===== FV / Hero ===== */
.fv{
position: relative;
width: 100%;
padding: 0;
margin: 0;
overflow: visible;
}

.fv__inner{
position: relative;
width: 100%;
min-height: 700px;
margin-bottom: 120px;
}

.fv__logo{
position: absolute;
top: -80px;
left: 50px;
z-index: 15;
}
.fv__logo img{
width: 260px;
height: auto;
}

.fv__bg-wrapper{
position: absolute;
top: 50px;
left: 110px;
right: 50px;
bottom: 50px;
border-radius: 30px;
overflow: hidden;
display: flex;
align-items: center;
}

.fv__bg{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
opacity: 0;
transform: scale(1);
transition: opacity 2s ease-in-out, transform 5s ease-out;
}

.fv__bg.active{
opacity: 1;
z-index: 1;
transform: scale(1.1);
}

.fv__copy{
position: relative;
z-index: 10;
margin-left: 80px;
color: #fff;
text-shadow: 0 8px 32px rgba(0,0,0,.4);
max-width: 560px;
}

.fv__title{
font-weight: 700;
line-height: 1.2;
font-size: clamp(28px, 4.8vw, 56px);
letter-spacing: .02em;
color: #fff;
border-bottom: none;
padding-bottom: 0;
}

.fv__title::after{
display: none;
}

.fv__lead{
margin-top: 18px;
font-size: clamp(16px, 1.8vw, 24px);
color: #fff;
}

/* ===== 営業時間テーブル ===== */
.hours {
  position: absolute;
  right: 0;
  bottom: -80px;
  background: #fff;
  border-radius: 30px 0 0 30px;
  padding: 40px 60px;
  max-width: 770px;
  width: min(770px, calc(100% - 40px));
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}


.hours__table {
width: 100%;
border-collapse: collapse;
text-align: center;
table-layout: fixed;
}

.hours__table th,
.hours__table td {
padding: 12px 4px;
vertical-align: middle;
}

.hours__table th.th-label,
.hours__table th.time {
width: 140px;
min-width: 140px;
}

.hours__table thead th:not(.th-label) {
width: 11%;
}

.hours__table tbody td {
width: 11%;
padding: 12px 8px;
}

.hours__head th {
font-weight: 700;
font-size: 18px;
color: #6b716d;
padding-bottom: 12px;
}

.hours__head .th-label {
text-align: left;
font-size: 18px;
font-weight: 700;
color: #6b716d;
padding-left: 0;
}

.hours__head .is-sat { color: #2a6ad9; }
.hours__head .is-sun,
.hours__head .is-hol { color: #e04a4a; }

.hours__table thead + tbody tr:first-child { border-top: 2px solid var(--line); }
.hours__table tbody tr + tr { border-top: 2px solid var(--line); }

.hours__table th.time {
font-size: 18px;
font-weight: 800;
color: #707770;
text-align: left;
padding-left: 0;
}

.time-break {
  display: none;
}

.dot {
width: 20px;
height: 20px;
border-radius: 50%;
display: inline-block;
background: #cfd6d1;
}
.dot.on { background: #3ec35a; }

.hours_label {
font-size: 12px;
color: #819088;
display: block;
white-space: nowrap;
}

.dash {
color: #b6bdb8;
font-size: 18px;
}

.hours__foot {
display: flex;
gap: 16px;
align-items: center;
justify-content: space-between;
margin-top: 24px;
flex-wrap: wrap;
}

.hours__addr {
color: #5d6b64;
font-size: 13px;
display: flex;
gap: 10px;
align-items: center;
margin: 0;
flex: 1;
}

.addr__icon {
width: 24px;
height: 24px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
}

/* ===== News ===== */
.news{
background:#fff;
border:none;
border-radius:15px;
padding:40px;
max-width:980px;
margin:0 auto;
box-shadow:0 2px 8px rgba(0,0,0,.08);
position:relative;
}
.news__header{
position:relative;
top:0;
left:0;
right:0;
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:24px;
}
.news__title{
font-size:18px;
font-weight:700;
color:var(--ink);
}
.news__link{
display:flex;
align-items:center;
gap:8px;
color:var(--brand);
text-decoration:none;
font-size:14px;
font-weight:500;
transition:opacity .2s;
}
.news__link:hover{
opacity:0.7;
}
.news__link svg{
width:16px;
height:8px;
}
.news li{
display:flex;
align-items:flex-start;
gap:24px;
padding:0;
border-bottom:none;
margin-bottom:16px;
}
.news li:last-child{
border-bottom:none;
margin-bottom:0;
}
.news time{
color:#8a948e;
font-size:14px;
white-space:nowrap;
flex-shrink:0;
padding-top:2px;
}
.news li a{
color:var(--ink);
text-decoration:none;
font-size:15px;
line-height:1.6;
border-bottom:1px solid #d0d5d2;
transition:border-color .2s, color .2s;
display:block;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
.news li a:hover{
border-bottom-color:var(--brand);
color:var(--brand);
}

/* ===== Features ===== */
.features{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:980px;
margin:0 auto;
}
.feature{
background:transparent;
border:none;
border-radius:0;
padding:0;
text-align:center;
}
.feature__icon{
width:60px;
height:60px;
margin:0 auto 24px;
display:flex;
align-items:center;
justify-content:center;
}
.feature__icon svg{
width:100%;
height:100%;
}
.feature h3{
font-size:20px;
margin-top:8px;
margin-bottom:16px;
font-weight:700;
color:#666666;
border-left: none;
padding-left: 0;
}
.feature p{
color:#666666;
font-size:14px;
line-height:1.9;
text-align:left;
}

/* ===== Services ===== */
.cards{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
max-width:900px;
margin:0 auto;
}
.card{
background:#fff;
border:none;
border-radius:16px;
overflow:hidden;
transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover{
transform:translateY(-4px);
box-shadow:0 8px 20px rgba(0,0,0,0.12);
}
.card__link{
display:block;
text-decoration:none;
color:inherit;
}
.card img{
width:100%;
height:240px;
object-fit:cover;
}
.card__body{
padding:20px 24px;
text-align:center;
}
.card__body h3{
font-size:20px;
margin-bottom:8px;
font-weight:700;
border-left:none;
padding-left:0;
margin-top:0;
}
.card__body p{
color:var(--muted);
font-size:14px;
line-height:1.7;
text-align: left;
}

/* ===== Price ===== */
.section--tint .price-grid{margin-top:32px}
.price-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
max-width:700px;
margin:0 auto;
}
.price{
background:#fff;
border:none;
border-radius:16px;
padding:32px 24px;
text-align:center;
display:flex;
flex-direction:column;
}
.price:first-child .price__value{
font-size:66px;
color:#e85d5d;
}
.price:last-child .price__value{
font-size:50px;
color:#297358;
}
.price__label{
color:var(--muted);
font-weight:700;
font-size:16px;
margin-bottom:0;
}
.price__value{
font-weight:800;
margin:0;
line-height:1;
margin-top:auto;
padding-top:16px;
}
.price__value small{
font-size:0.5em;
margin-left:4px;
}

.review-banner{
max-width:700px;
margin:32px auto 120px;
border-radius:20px;
overflow:hidden;
background:#F9EFE4;
padding:40px;
}

.review-banner__content{
display:flex;
align-items:center;
justify-content:space-between;
gap:24px;
flex-wrap:wrap;
}

.review-banner__icon{
width:60px;
height:60px;
flex-shrink:0;
}

.review-banner__icon svg{
width:100%;
height:100%;
}

.review-banner__text{
flex:1;
min-width:200px;
}

.review-banner__text h3{
font-size:24px;
font-weight:700;
color:#666;
margin:0 0 4px 0;
}

.review-banner__text p{
font-size:16px;
color:#666;
margin:0;
}

.review-banner__stars{
flex-shrink:0;
}

.review-banner__stars svg{
width:100px;
height:20px;
}

.review-banner__content .btn--outline-green{
flex-shrink:0;
}

.review-banner__link {
display:block;
text-decoration:none;
transition:opacity .3s;
}

.review-banner__link:hover {
opacity:0.9;
}

.review-banner__link img {
width:100%;
height:auto;
display:block;
}

/* ===== CTA ===== */
.cta{
background:#E96B6B;
padding:48px 0;
border:none;
}
.cta__container{
max-width:700px;
margin:0 auto;
padding:0 20px;
}
.cta__grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px;
}
.cta__btn{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:12px;
background:#fff;
border:none;
color:#666;
border-radius:20px;
padding:32px 20px;
text-decoration:none;
font-weight:700;
font-size:20px;
transition:all .2s;
min-height:140px;
}
.cta__btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,.15);
}
.cta__icon{
display:flex;
align-items:center;
justify-content:center;
width:48px;
height:48px;
}
.cta__icon svg{
width:100%;
height:100%;
}
.cta__note{
margin:24px auto 0;
text-align:center;
color:#666;
font-size:14px;
display:flex;
align-items:center;
justify-content:center;
gap:12px;
background:#fff;
border-radius:20px;
padding:20px 32px;
width:100%;
}
.cta__note svg{
width:40px;
height:40px;
flex-shrink:0;
}

.mini-hours h3{
font-size:18px;
margin-bottom:16px;
font-weight:700;
}
.mini-hours ul{
list-style:none;
margin:0;
padding:0;
}
.mini-hours li{
display:grid;
grid-template-columns:80px 1fr;
gap:16px;
padding:8px 0;
border-bottom:1px dashed var(--line);
font-size:14px;
}
.mini-hours li:last-child{
border-bottom:none;
}
.mini-hours li span:first-child{
font-weight:600;
}

/* ===== Access ===== */
.access{
background:#F8F8F8;
padding:64px 0;
}
.access__grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:24px;
max-width:980px;
margin:0 auto 32px;
}
.access__grid img,
.access__photo img,
.access__map img,
.access__map iframe{
width:100%;
height:280px;
object-fit:cover;
border-radius:16px;
border:1px solid #dde3df;
}

.access__map iframe{
display:block;
}

.access__info{
max-width:980px;
margin:0 auto;
display:grid;
grid-template-columns:1fr 1.5fr;
gap:40px;
align-items:start;
}

.access__left{
display:flex;
flex-direction:column;
}

.access__logo{
width:auto;
margin-bottom:32px;
}

.access__logo img{
width:100%;
height:auto;
}

.access__name{
font-size:18px;
font-weight:700;
margin:0 0 24px 0;
color:#666;
}

.access__contact-label{
font-size:14px;
color:#666;
margin:0 0 8px 0;
}

.access__tel{
margin:0 0 32px 0;
}

.access__tel a{
color:#E96B6B;
text-decoration:none;
font-weight:700;
font-size:clamp(24px, 4.2vw, 48px);
line-height:1.2;
white-space:nowrap;
}

.access__social{
display:flex;
gap:12px;
margin-top:8px;
}

.social__link{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
transition:transform .2s;
}

.social__link:hover{
transform:scale(1.1);
}

.social__link svg{
width:100%;
height:100%;
}

.access__right{
display:flex;
flex-direction:column;
gap:24px;
}

.hours--footer{
position:static;
background:transparent;
padding:0;
border-radius:0;
box-shadow:none;
max-width:none;
}

.access__details{
display:flex;
flex-direction:column;
gap:16px;
}

.access__detail-item{
display:flex;
align-items:center;
gap:12px;
font-size:14px;
color:#666;
}

.access__detail-item svg{
width:24px;
height:24px;
flex-shrink:0;
font-weight:700;
font-size:24px;
}

.mini-hours h3{
font-size:18px;
margin-bottom:16px;
font-weight:700;
}
.mini-hours ul{
list-style:none;
margin:0;
padding:0;
}
.mini-hours li{
display:grid;
grid-template-columns:80px 1fr;
gap:16px;
padding:8px 0;
border-bottom:1px dashed var(--line);
font-size:14px;
}
.mini-hours li:last-child{
border-bottom:none;
}
.mini-hours li span:first-child{
font-weight:600;
}

/* ===== Page Header ===== */
.page-header{
background:#F2F3F0;
padding:80px 0 40px;
text-align:center;
}

.page-header__title{
font-size:36px;
font-weight:700;
color:#666;
position:relative;
display:inline-block;
}

.page-header__title::after{
content:'';
display:block;
width:60px;
height:3px;
background:linear-gradient(90deg, #4CC764 0%, #4CC764 50%, #297358 50%, #297358 100%);
margin:16px auto 0;
border-radius:2px;
}

/* ===== About Intro ===== */
.about-intro{
display:grid;
grid-template-columns:2fr 1fr;
gap:48px;
max-width:980px;
margin:0 auto;
align-items:start;
}

.about-intro__content{
display:flex;
flex-direction:column;
gap:24px;
}

.about-intro__content p{
font-size:15px;
line-height:1.9;
color:#666;
margin:0;
}

.about-intro__photo{
display:flex;
flex-direction:column;
align-items:center;
gap:16px;
}

.about-intro__photo img{
width:100%;
max-width:320px;
height:auto;
border-radius:16px;
box-shadow:0 4px 12px rgba(0,0,0,.1);
}

.about-intro__name{
font-size:16px;
font-weight:700;
color:#666;
margin:0;
}

/* ===== Anchor Navigation ===== */
.section--nav{
padding-top:0;
padding-bottom:32px;
}

.anchor-nav{
display:flex;
justify-content:center;
gap:0;
border-bottom:2px solid #e7ece8;
max-width:980px;
margin-left:auto;
margin-right:auto;
}

.anchor-nav__item{
flex:1;
max-width:200px;
padding:16px 24px;
background:transparent;
border:none;
border-bottom:3px solid transparent;
font-size:16px;
font-weight:600;
color:#666;
text-decoration:none;
text-align:center;
cursor:pointer;
transition:all 0.3s ease;
white-space:nowrap;
position:relative;
margin-bottom:-2px;
display:block;
}

.anchor-nav__item:hover{
color:#297358;
background:#f8faf9;
}

.anchor-nav__item.active{
color:#297358;
border-bottom-color:#4CC764;
background:#fff;
}

/* ===== Symptom Section ===== */

.symptom{
display:block;
max-width:980px;
margin:0 auto;
}

.symptom::after{
content:'';
display:block;
clear:both;
}

.symptom__content{
display:flex;
flex-direction:column;
gap:24px;
}

.symptom__title{
font-size:28px;
font-weight:700;
color:#666;
margin:0 0 32px 0;
padding-bottom:12px;
border-bottom:3px solid #e7ece8;
position:relative;
}

.symptom__title::after{
content:'';
position:absolute;
bottom:-3px;
left:0;
width:80px;
height:3px;
background:#4CC764;
}

.symptom__text{
display:block;
}

.symptom__text p{
font-size:15px;
line-height:1.9;
color:#666;
margin:0 0 20px 0;
}

.symptom__image{
float:right;
width:40%;
margin:0 0 20px 32px;
}

.symptom__image img{
width:100%;
height:auto;
border-radius:16px;
object-fit:cover;
}

/* ===== Anchor Nav Submenu ===== */
.anchor-nav__group{
position:relative;
}

.anchor-nav__item{
position:relative;
}

.anchor-nav__arrow{
margin-left:8px;
font-size:12px;
transition:transform 0.3s ease;
}

.anchor-nav__group.is-open .anchor-nav__arrow{
transform:rotate(180deg);
}

.anchor-nav__submenu{
display:none;
position:absolute;
top:100%;
left:0;
right:0;
background:#fff;
border:2px solid #4CC764;
border-top:none;
border-radius:0 0 8px 8px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
z-index:10;
margin-top:-2px;
}

.anchor-nav__group.is-open .anchor-nav__submenu{
display:flex;
flex-direction:column;
}

.anchor-nav__subitem{
padding:12px 20px;
text-decoration:none;
color:#666;
font-size:14px;
font-weight:600;
border-bottom:1px solid #e7ece8;
transition:all 0.3s ease;
}

.anchor-nav__subitem:last-child{
border-bottom:none;
}

.anchor-nav__subitem:hover{
background:#f0f7f4;
color:#297358;
padding-left:24px;
}

/* ===== Column Article ===== */
.column{
background:var(--bg);
}

.column__container{
max-width:800px;
margin:0 auto;
padding:40px 20px 80px;
}

.column__eyecatch{
margin-bottom:40px;
border-radius:16px;
overflow:hidden;
}

.column__eyecatch img{
width:100%;
height:auto;
display:block;
}

.column__title{
font-size:32px;
font-weight:700;
line-height:1.5;
color:#666;
margin:0 0 32px 0;
text-align:left;
}

.column__lead{
margin-bottom:48px;
padding:24px;
background:#f8faf9;
border-left:4px solid #4CC764;
border-radius:8px;
}

.column__lead p{
font-size:16px;
line-height:1.9;
color:#666;
margin:0;
}

.column__section{
margin-bottom:48px;
}

.column__heading{
font-size:28px;
font-weight:700;
color:#666;
margin:0 0 24px 0;
padding-bottom:12px;
border-bottom:3px solid #e7ece8;
position:relative;
}

.column__heading::after{
content:'';
position:absolute;
bottom:-3px;
left:0;
width:80px;
height:3px;
background:#4CC764;
}

.column__subheading{
font-size:20px;
font-weight:700;
color:#666;
margin:32px 0 16px 0;
padding-left:16px;
border-left:4px solid #4CC764;
}

.column__section p{
font-size:15px;
line-height:1.9;
color:#666;
margin:0 0 20px 0;
}

.column__list{
margin:16px 0 24px 0;
padding-left:24px;
}

.column__list li{
font-size:15px;
line-height:1.9;
color:#666;
margin-bottom:12px;
position:relative;
padding-left:8px;
}

.column__list li::marker{
color:#4CC764;
}

.column__list li strong{
display:block;
font-size:18px;
font-weight:700;
color:#666;
margin-bottom:8px;
}

.column__list li .column__numbered-list{
margin-top:12px;
}

.column__list li p{
margin:0;
font-size:15px;
line-height:1.9;
color:#666;
}

.column__numbered-list{
margin:16px 0 24px 0;
padding-left:24px;
counter-reset:item;
list-style:none;
}

.column__numbered-list li{
font-size:15px;
line-height:1.9;
color:#666;
margin-bottom:12px;
position:relative;
padding-left:32px;
}

.column__numbered-list li::before{
content:counter(item) " ";
counter-increment:item;
position:absolute;
left:0;
color:#666;
font-weight:600;
}

.column__emphasis{
border-left:4px solid #FFC107;
padding:16px 20px;
margin:24px 0;
font-size:15px;
line-height:1.8;
color:#666;
border-radius:4px;
}

.column__image{
margin:48px 0;
border-radius:16px;
overflow:hidden;
}

.column__image img{
width:100%;
height:auto;
display:block;
}

.column__review-banner{
margin-top:0;
padding-top:0;
border-top:none;
}


/* ===== Column Article ===== */

.column__container{
max-width:740px;
margin:0 auto;
padding:48px 20px 80px;
}

.column__eyecatch{
margin-bottom:40px;
border-radius:16px;
overflow:hidden;
}

.column__eyecatch img{
width:100%;
height:auto;
display:block;
}

.column__title{
font-size:32px;
font-weight:700;
line-height:1.5;
color:#666;
margin:0 0 32px 0;
text-align:center;
}

.column__lead{
background:#f8faf9;
border-left:4px solid #4CC764;
padding:24px;
margin-bottom:48px;
border-radius:8px;
}

.column__lead p{
font-size:15px;
line-height:1.9;
color:#666;
margin:0;
}

.column__section{
margin-bottom:48px;
}

.column__heading{
font-size:24px;
font-weight:700;
color:#666;
margin:0 0 24px 0;
padding-bottom:12px;
border-bottom:3px solid #e7ece8;
position:relative;
}

.column__heading::after{
content:'';
position:absolute;
bottom:-3px;
left:0;
width:80px;
height:3px;
background:#4CC764;
}

.column__subheading{
font-size:20px;
font-weight:700;
color:#666;
margin:32px 0 16px 0;
padding-left:16px;
border-left:4px solid #4CC764;
}

.column__section p{
font-size:15px;
line-height:1.9;
color:#666;
margin:0 0 20px 0;
}

.column__section p:last-child{
margin-bottom:0;
}

.column__list{
margin:16px 0 24px 0;
padding-left:24px;
}

.column__list li{
font-size:15px;
line-height:1.9;
color:#666;
margin-bottom:12px;
}

.column__list li:last-child{
margin-bottom:0;
}

.column__emphasis{
background:#fff5f5;
border-left:4px solid #E96B6B;
padding:16px 20px;
margin:24px 0 !important;
color:#E96B6B !important;
font-weight:600;
border-radius:4px;
}

.column__image{
margin:48px 0;
border-radius:16px;
overflow:hidden;
}

.column__image img{
width:100%;
height:auto;
display:block;
}

.column__review-banner{
margin-top:64px;
}

/* ===== Column Pagination ===== */
.column__pagination{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:64px;
padding-top:32px;
border-top:2px solid #e7ece8;
gap:16px;
}

.column__pagination-link{
display:flex;
align-items:center;
gap:8px;
padding:12px 24px;
border-radius:8px;
background:#fff;
border:2px solid #e7ece8;
color:#666;
text-decoration:none;
font-size:15px;
font-weight:600;
transition:all 0.3s ease;
}

.column__pagination-link:hover{
background:#f0f7f4;
border-color:#4CC764;
color:#297358;
}

.column__pagination-link.disabled{
opacity:0.4;
pointer-events:none;
cursor:not-allowed;
}

.column__pagination-link--list{
background:#4CC764;
border-color:#4CC764;
color:#fff;
}

.column__pagination-link--list:hover{
background:#3db355;
border-color:#3db355;
color:#fff;
}

.column__pagination-arrow{
font-size:18px;
}


/* ===== Footer ===== */
.site-footer{
background:#2d3d35;
color:#fff;
padding:24px 0;
border:none;
margin-top:120px;
}
.footer-inner{
display:flex;
justify-content:center;
align-items:center;
}
.footer-inner small{
color:#a8b5af;
font-size:14px;
}

/* ===== レスポンシブ ===== */
@media (max-width: 1440px) {

@media (max-width: 1200px) {
  .hours {
    padding: 30px 40px;
    max-width: 650px;
    width: min(650px, calc(100% - 40px));
  }

  .hours__table th.th-label,
  .hours__table th.time {
    width: 120px;
    min-width: 120px;
  }

  .hours__head th { font-size: 16px; }
  .hours__head .th-label { font-size: 16px; }
  .hours__table th.time { font-size: 16px; }

  .dot { width: 16px; height: 16px; }
  .dash { font-size: 16px; }

  /* 既存のやつはそのまま */
  .hours__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hours__addr { font-size: 16px; }
  .fv__copy {
    margin-left: 60px;
    max-width: 480px;
  }
}

@media (max-width: 900px) {
  .hours--footer .hours__table th.th-label,
  .hours--footer .hours__table th.time {
    width: 52px;
    font-size: 12px;
    padding-right: 16px;
  }

  .hours--footer .hours__head .th-label .label-text {
    display: block;
    line-height: 1.3;
  }

  .hours--footer .hours__head th {
    font-size: 12px;
  }

  .hours--footer .hours__head th:not(.th-label) {
    min-width: 34px;
  }

  .hours--footer .hours__table th,
  .hours--footer .hours__table td {
    padding: 8px 2px;
  }

  .hours--footer .hours__table tbody td {
    min-width: 34px;
  }

  .hours--footer .hours_label {
    font-size: 10px;
    line-height: 1.2;
  }

  .time-break {
    display: inline;
  }

  .hours--footer .hours__table th.time {
    line-height: 1.4;
    font-size: 11px;
  }
}
  }
}

.hours__foot {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hours__addr {
  font-size: 16px;
}
.fv__copy {
  margin-left: 60px;
  max-width: 480px;
}

.access__right{
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 1100px) {
  .hours--index-only {
    display: none;
  }

  .fv {
    position: relative;
  }

  .fv__copy {
    position: absolute;
    bottom: 24px;
    left: 24px; /* もし左右中央にしたければ後述 */
    margin: 0;
  }
  
  
}

/* ===== Hamburger Menu ===== */
.hamburger{
display:none;
position:relative;
flex-direction:column;
gap:6px;
background:transparent;
border:none;
padding:8px;
cursor:pointer;
z-index:1001;
}

.hamburger__line{
width:28px;
height:3px;
background:#297358;
border-radius:2px;
transition:all 0.3s ease;
}

.hamburger.is-active .hamburger__line:nth-child(1){
transform:translateY(9px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2){
opacity:0;
}

.hamburger.is-active .hamburger__line:nth-child(3){
transform:translateY(-9px) rotate(-45deg);
}

.mobile-nav{
position:fixed;
top:0;
right:-100%;
width:80%;
max-width:400px;
height:100vh;
background:#fff;
z-index:1000;
transition:right 0.3s ease;
overflow-y:auto;
padding:80px 20px 40px;
box-shadow:-2px 0 10px rgba(0,0,0,0.1);
}

.mobile-nav.is-open{
right:0;
}

.mobile-nav__list{
list-style:none;
margin:0;
padding:0;
}

.mobile-nav__list li{
border-bottom:1px solid #e7ece8;
}

.mobile-nav__list a{
display:block;
padding:16px 0;
color:#666;
text-decoration:none;
font-size:16px;
font-weight:600;
transition:color 0.3s ease;
}

.mobile-nav__list a:hover,
.mobile-nav__list a.is-current{
  color:#297358;
  font-weight:700;
}

/* モバイルナビのサブメニュー */
.mobile-nav__item--parent{
position: relative;
}

.mobile-nav__link{
display: flex !important;
justify-content: space-between;
align-items: center;
}

.mobile-nav__toggle{
background: none;
border: none;
padding: 8px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}

.mobile-nav__arrow{
font-size: 12px;
color: #4CC764;
transition: transform 0.3s ease;
display: inline-block;
}

.mobile-nav__submenu{
display: none;
list-style: none;
padding: 0;
margin: 0;
background: #f0f7f4;
border-radius: 8px;
overflow: hidden;
}

.mobile-nav__item--parent.is-open .mobile-nav__submenu{
display: block;
}

.mobile-nav__submenu li{
border-bottom: 1px solid #e0ebe5;
}

.mobile-nav__submenu li:last-child{
border-bottom: none;
}

.mobile-nav__submenu a{
padding: 12px 20px;
font-size: 14px;
font-weight: 500;
color: #666;
}

.mobile-nav__submenu a:hover{
background: #e0ebe5;
color: #297358;
}

.mobile-nav__cta{
margin-top:32px;
display:flex;
flex-direction:column;
gap:12px;
}

body.menu-open{
overflow:hidden;
}

@media (max-width: 1200px) {
.topnav {
  display: none;
}

.topcta {
  display: none;
}

.hamburger {
  display: flex;
}
}

@media (max-width: 1024px) {
.topnav {
  display: none;
}

.hamburger.is-active .hamburger__line:nth-child(1){
  transform:translateY(9px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2){
  opacity:0;
}

.hamburger.is-active .hamburger__line:nth-child(3){
  transform:translateY(-9px) rotate(-45deg);
}

.fv__bg-wrapper {
  left: 60px;
  right: 30px;
}
.fv__bg {
  left: 0;
  right: 0;
}
.hours {
  position: static;
  transform: none;
  margin: 30px auto 0;
  width: calc(100% - 40px);
  max-width: 700px;
  border-radius: 30px;
}
.fv__inner {
  min-height: 600px;
  margin-bottom: 40px;
}
.fv__copy {
  margin-left: 40px;
  max-width: 450px;
}
}

@media (max-width: 768px) {
body {
  font-size: 14px;
  line-height: 2.0;
}

/* topbarのcontainerの右余白を削除、左右padding 20pxに */
.topbar .container {
  padding-right: 20px;
  padding-left: 20px;
}

.fv__inner {
  min-height: 500px;
  margin-bottom: 20px;
}
.fv__bg-wrapper {
  left: 20px;
  right: 20px;
  top: 30px;
  bottom: 30px;
}
.fv__bg {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.fv__logo {
  left: 20px;
  top: -60px;
}
.fv__logo img {
  width: 160px;
}
.fv__copy {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.hours {
  padding: 16px;
  width: calc(100% - 20px);
  max-width: none;
}
.hours--index-only {
  display: none;
}
.hours__table {
  font-size: 12px;
}
.hours__table th,
.hours__table td {
  padding: 8px 2px;
  font-size: 12px;
}
.hours__head th {
  font-size: 12px;
  padding-bottom: 8px;
}
.hours__head .th-label {
  font-size: 12px;
}
.hours__table th.th-label,
.hours__table th.time {
  width: auto;
  min-width: 80px;
  font-size: 11px;
  white-space: normal;
  word-break: break-all;
  line-height: 1.3;
}
.hours__table th.time {
  font-size: 10px;
  padding: 6px 2px;
}
.hours__table thead th:not(.th-label) {
  width: auto;
}
.hours__table tbody td {
  width: auto;
  padding: 8px 2px;
}
.hours_label {
  font-size: 10px;
}
.hours__addr {
  font-size: 13px;
}
.topcta {
  gap: 4px;
}
.btn {
  min-width: 140px;
  height: 52px;
  font-size: 16px;
  padding: 0 16px;
}

.page-header{
  padding:60px 0 32px;
}

.page-header__title{
  font-size:28px;
}

.about-intro{
  grid-template-columns:1fr;
  gap:32px;
}

.about-intro__photo{
  order:-1;
}

.about-intro__photo img{
  max-width:280px;
}

.news {
  padding: 24px;
}

.features{
  grid-template-columns:1fr;
  gap: 32px;
}

.cards{
  grid-template-columns:1fr;
}

.price-grid{
  grid-template-columns:1fr;
}

.cta__grid{
  grid-template-columns:1fr;
}

.access__grid{
  grid-template-columns:1fr;
}

.access__info{
  grid-template-columns:1fr;
}

.review-banner{
  flex-direction:column;
  text-align:center;
  padding: 24px;
}

.review-banner__content{
  flex-direction:column;
  text-align:center;
  gap:16px;
}

.review-banner__text h3{
  font-size:20px;
}

.review-banner__text p{
  font-size:14px;
}

.news__header{
  position:static;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin-bottom:16px;
}

.center {
  justify-content: center;
  padding-inline: 20px;
}

.section__title {
  font-size: 28px;
}

h1 {
  font-size: 28px;
}

.footer-inner {
  flex-direction: column;
  text-align: center;
  gap: 16px;
}

.footer-links {
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.anchor-nav{
  flex-wrap:wrap;
  gap:8px;
  border-bottom:none;
}

.anchor-nav__item{
  flex:1 1 calc(50% - 8px);
  max-width:none;
  border:2px solid #e7ece8;
  border-radius:8px;
  margin-bottom:0;
}

.anchor-nav__item.active{
  border-color:#4CC764;
  background:#f0f7f4;
}

.symptom{
  display:block;
}

.symptom__image{
  float:none;
  width:100%;
  margin:0 0 20px 0;
}

.symptom__title{
  font-size:24px;
}

.anchor-nav__submenu{
  position:static;
  border-radius:8px;
  margin-top:8px;
}

.anchor-nav__subitem{
  font-size:13px;
  padding:10px 16px;
}

.column__title{
  font-size:24px;
  margin-bottom:24px;
}

.column__heading{
  font-size:24px;
}

h2{
  font-size:24px;
}

.column__subheading{
  font-size:18px;
}

.column__container{
  padding:32px 20px 60px;
}

.column__eyecatch{
  margin-bottom:24px;
}

.column__lead{
  padding:16px;
  margin-bottom:32px;
}

.column__image{
  margin:32px 0;
}

.column__summary{
  padding:20px;
}

.column__review-banner{
  margin-top:48px;
}

.column__pagination{
  flex-direction:column;
  gap:12px;
}

.column__pagination-link{
  width:100%;
  justify-content:center;
  padding:12px 16px;
}

.column-card__link{
  flex-direction:column;
  padding:16px;
  gap:16px;
}

.column-card__image{
  width:100%;
  height:200px;
}

.column-card__title{
  font-size:18px;
}

.column-list{
  gap:20px;
  margin-bottom:48px;
}
}