@charset "UTF-8";

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fdfdfd;
}

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

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #09653a;
}

/* 共通項目 */
.sub-en {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}


/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.8); /* 白背景＋80%不透明 */
    backdrop-filter: blur(8px); /* 背景をぼかして高級感 */
    -webkit-backdrop-filter: blur(8px); /* Safari対応 */
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* 下線で見切れを強調（任意） */

}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    display: block;
}

header .logo img {
    height: 80px;
    width: auto;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 40px;
}

header nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #09653a;
}

/* Responsive (for Hamburger Menu) */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background-color: #555;
    height: 3px;
    width: 25px;
    border-radius: 2px;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

@media (max-width: 768px) {
    header .container {
        position: relative;
    }

    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        width: 100%;
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 400ms ease-in-out;
    }

    header nav ul {
        flex-direction: column;
    }

    header nav ul li {
        margin-left: 0;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-toggle-label {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .nav-toggle:checked ~ nav {
        transform: scale(1, 1);
    }

    .nav-toggle:checked ~ .nav-toggle-label span {
        background-color: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        bottom: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* Concept Section for Mobile */
    .concept-content {
        flex-direction: column;
    }

    .concept-content img {
        width: 100%; /* 画面幅の100%に設定 */
        max-width: 100% !important;
        height: auto; /* 縦横比を維持 */
        margin: 0 auto 20px; /* 中央寄せと下マージン */
        display: block; /* 中央寄せのためにブロック要素に */
    }
}




/* Hero */
/* Heroセクション基本 */
#hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 18rem 0;
  margin-top: 65px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* スライドごとの背景画像 */
.slide-1 { background-image: url('images/1.png'); }
.slide-2 { background-image: url('images/2.png'); }
.slide-3 { background-image: url('images/3.png'); }
.slide-4 { background-image: url('images/4.png'); }
.slide-5 { background-image: url('images/5.png'); }

.hero-content {
  position: relative;
  z-index: 1;
}

#hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  font-weight: 800;
  color: #fff;
}

#hero p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.5em 1em;
  border-radius: 8px;
  display: inline-block;
}

.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #fff;
}


/* News Section */
#news {
    background-color: #fff8e6;
}

.news-list {
    list-style: none;
    padding: 0;
    width: 80%;
    margin: 0 auto;
}

.news-list li {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    display: flex;
    justify-content: center; /* 中央寄せを追加 */
    align-items: center;
    transition: background-color 0.3s;
}

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

.news-list li:hover {
    background-color: #f0f0f0;
}

.news-date {
    font-size: 0.9rem;
    color: #777;
    margin-right: 20px;
    flex-shrink: 0;
}

.news-list li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    flex-grow: 1;
}

.news-list li a:hover {
    color: #09653a;
}

.news-more {
  text-align: center;
  margin-top: 45px;
  font-size: 0.95rem;
}

.news-more a {
  color: #09653a;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.news-more a:hover {
  color: #0c8a4a;
}


/* Menu */
#menu {
    background-color: #ffffff;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.menu-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: scale(1.1); /* ホバーで少し拡大 */

}

.menu-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px; /* 角丸を追加 */
    transition: transform 0.3s ease;
}


.menu-item h3 {
    font-size: 1.6rem;
    font-weight: 700;      /* 太字で視認性UP */
    margin: 0 0 15px;
    color: #222;
}

.menu-item p {
    padding: 0 20px;
    font-size: 0.95rem;
}

.menu-item .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin: 15px 0 25px;
}

.menu-item .price-note {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: -5px;
}

.menu-item .menu-sub {
    font-size: 0.9rem;
    color: #777;
    margin: -10px 20px 10px;
}

.topping-title-wrapper {
  text-align: center;
}


.topping-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 60px auto 40px auto;
  color: #333; 
  border-bottom: 2px solid #0c7b35; /* 緑など */
  display: inline-block;
  padding-bottom: 8px;
}


/* Scroll Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Concept */
.concept-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;

}

.concept-content img {
    max-width: 45%;
    border-radius: 8px;
}

#concept {
    background-color: #fff8e6;
}

section .concept-text h3 {
  margin-bottom: 20px; /* もしくは 16px〜24px程度がおすすめ */
  font-size: 24px;
}

.concept-content.reverse {
  flex-direction: row-reverse;
}

.concept-text {
  flex: 1;
}


/* SNS */
#sns {
    text-align: center;
    background-color: #f8f8f8;
    padding: 60px 0;
}

.instagram-gallery {
    margin-bottom: 30px;
}

.instagram-gallery img {
    max-width: 500px;
    width: 90%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sns-text {
    margin-top: 30px;
    margin-bottom: 45px;
    font-size: 1.1rem;
}

.btn-instagram {
    display: inline-block;
    background-color: #a31e25;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-instagram:hover {
    background-color: #d02d4c;
}


/* Contact */
#contact {
    background-color: #fdfaf6;
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 45px;
}

.contact-info .email {
    font-size: 1.5rem;
    font-weight: bold;
    color: #09653a;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Page Top Button */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* 初期状態は非表示 */
    background-color: #09653a;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s, opacity 0.3s;
    z-index: 999;
}

#page-top:hover {
    background-color: #074a2c;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.event-section {
  background-color: #fff6e6;
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
  max-width: 600px;
}

.event-section h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
  position: relative;
  display: inline-block;
}

.event-section h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #f4b400;
  margin: 8px auto 0;
  border-radius: 2px;
}

.event-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-section ul li {
  font-size: 16px;
  margin: 15px 0;
  color: #333;
  letter-spacing: 0.05em;
}
