:root{
  --green:#4CAF93;
  --green-dark:#3b9b83;
  --orange:#FF9E00;

  --bg:#ffffff;
  --bg-soft:#f4faf8;
  --text:#243430;
  --muted:#6b7f78;
  --line:#e3efea;
}

*{box-sizing:border-box;}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN","Noto Sans JP",sans-serif;
  color:var(--text);
  line-height:1.8;
	padding-bottom: 60px;
}

a{text-decoration:none;color:inherit;}
img{width:100%;display:block;}

.container{
  width:min(1100px,92%);
  margin:0 auto;
}

/* ===== Header ===== */
.site-header{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid var(--line);
  z-index:50;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:90px;
}

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

.logo img{
  height:65px;   /* 42 ? 1.5 */
  width:auto;
}
.footerlogo{
  text-align:center;
  margin-bottom:5px;
}

.footerlogo img{
  height:70px;   /* 好きなサイズに調整 */
  width:auto;
  display:inline-block;
}
.site-nav{
  display:flex;
  gap:20px;
  align-items:center;
}
.nav-reserve{
  background:var(--orange);
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-weight:700;
}

/* Mobile nav */
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:4px;
  background:none;
  border:none;
}
.nav-toggle span{
  width:22px;
  height:2px;
  background:#333;
}

/* ===== Hero ===== */
.hero{
  background:var(--bg-soft);
}
.slider{
  position:relative;
  height:70vh;
  min-height:420px;
  overflow:hidden;
}
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:.5s;
}
.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
}
.slide.active{opacity:1;}
.slide-inner{
  position:relative;
  z-index:1;
  color:#fff;
  padding:80px 8%;
  max-width:600px;
}
.slide h1,.slide h2{
  margin:0 0 10px;
}
.slide p{
  margin-bottom:20px;
}

/* Buttons */
.btn{
  display:inline-block;
  padding:12px 22px;
  border-radius:999px;
  font-weight:700;
}
.btn.reserve{
  background:var(--orange);
  color:#fff;
}

/* Dots */
.slider-dots{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}
.slider-dots button{
  width:10px;
  height:10px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.5);
}
.slider-dots button.active{
  background:#fff;
}

/* ===== Section ===== */
.section{
  padding:10px 0;              
  background:#FEFFFC;
}



.section-title{
  text-align:center;
  margin-bottom:40px;
  color:var(--green-dark);
font-size: 40px;
}

/* ===== Menu ===== */
.menu-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.menu-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  text-align:center;
}
.menu-card h3{
  margin:14px 0 6px;
}
.menu-card p{
  margin-bottom:14px;
  color:var(--muted);
}

/* ===== Footer ===== */
.site-footer{
  background:var(--bg-soft);
  border-top:1px solid var(--line);
	padding: 30px 0;
}
.footer-inner{
  display:grid;
  grid-template-columns: auto auto;
  justify-content:center;   /* ? space-between?? */
  gap:120px;
}
.footer-inner h3 {
  font-size: 16px;
	margin: 0;
}
.footer-inner p {
  font-size: 14px;
	margin: 0;
}
.footer-links{
  display:grid;
  grid-template-columns: auto auto;
  column-gap:50px;
  row-gap:2px;
  justify-content:center;   /* ? 追加 */
	padding-top: 50px;
}
.footer-links a{
  font-size:15px;
  font-weight:500;
  color:var(--text);
  transition:.2s;
}
.footer-links a:hover{
  color:var(--green-dark);
  transform:translateX(3px);
}
.footer-bottom{
  text-align:center;
  padding:10px 0;
  font-size:12px;
  color:var(--muted);
}

/* ===== Fixed reserve (mobile) ===== */
.fixed-reserve{
  position:fixed;
  bottom:12px;
  left:12px;
  right:12px;
  display:none;
}
.fixed-reserve a{
  display:block;
  background:#A95052;
  color:#fff;
  text-align:center;
  padding:14px;
  border-radius:999px;
  font-weight:800;
}
/* ================= 下固定バー ================= */
.bottom-fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1C7841;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
}

.bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-item {
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  color: #fff;
  font-size: 14px;
}

.bottom-item a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.bottom-item.reserve {
  background: #F97B00;
}

.bottom-item.reserve a {
  display: block;
  width: 100%;
  height: 100%;
}

.bottom-item.tel {
  border-right: 1px solid rgba(255,255,255,0.2);
}

.bottom-item.hours {
  border-right: 1px solid rgba(255,255,255,0.2);
}
.footer-hours {
  overflow-x: auto;
 margin: 10px auto;
	text-align: center;
}

.footer-hours table {

  width: 100%;
  border-collapse: collapse;
}

.footer-hours th,.footer-hours td {
  border: 1px solid #EAEAEA;
  padding: 2px 4px;
  text-align: center;
	font-size: 13px;
}

.footer-hours thead th {
  background: #DAF6E8;
  color: #444;
 
}

.footer-hours tbody td:first-child {
  text-align: center;
  background: #f0f7f4;
}
/* ===== 下層ペ?ジヒ?ロー ===== */
.page-hero{
  background-image:url('../img/top/slider/top_image1.jpg');
  background-size:cover;
  background-position:center;
  height:240px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
 background:rgba(0,0,0,.05);
}

.page-hero-inner{
  position:relative;
  text-align:center;
	color:#fff;
}

.page-hero h1{
  font-size:34px;
  letter-spacing:.1em;
  color:#fff !important;
  font-weight:700;
  text-shadow:0 3px 8px rgba(0,0,0,0);
}
.breadcrumb{
  background:#f4faf8;   /* ?グリーン系 */
  padding:6px 0;
  font-size:14px;
  margin-bottom:40px;
  border-radius:6px;
}

.breadcrumb a{
  color:var(--green-dark);
  text-decoration:none;
}

.breadcrumb span{
  margin:0 8px;
  color:#999;
}
.breadcrumb-wrap{
  background:#f4faf8;
  padding:0;
}
/* ===== Responsive ===== */
@media(max-width:900px){
  .menu-grid{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .logo img{
    height:50px;
  }
  .site-nav{
    display:none;
    position:absolute;
    top:64px;
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
  }
  .site-nav.open{display:flex;}
  .nav-toggle{display:flex;}
  .fixed-reserve{display:block;}
  .bottom-item.hours {
    display: none;
  }

  .bottom-inner {
    display: flex;
  }

  .bottom-item {
    flex: 1;
    font-size: 16px;
  }
}
