/* =========================================================================
   Variables & Reset
   ========================================================================= */
:root {
    --color-bg: #fef7e7;
    /* Cream off-white */
    --color-text: #5c4a31;
    /* Brownish gray */
    --color-accent1: #f4c042;
    /* Yellow/Gold */
    --color-accent2: #2c4c3b;
    /* Deep Forest Green for reliable/male tone */
    --color-white: #ffffff;
    --font-heading: 'Noto Serif JP', 'Yu Mincho', serif;
    --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
    --font-accent: 'Kiwi Maru', serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: rgba(255, 255, 255, 0.5);
}

/* =========================================================================
   Typography & Shared Elements
   ========================================================================= */
.vertical-text {
    writing-mode: vertical-rl;
    font-family: var(--font-heading);
    letter-spacing: 0.2em;
    line-height: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent2);
    margin-bottom: 5px;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--color-accent1);
    letter-spacing: 0.1em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn--reserve {
    background-color: var(--color-accent1);
    color: var(--color-text);
}

.btn--reserve:hover {
    background-color: #e5b02b;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--color-accent2);
    color: var(--color-accent2);
}

.btn--outline:hover {
    background-color: var(--color-accent2);
    color: var(--color-white);
}

/* =========================================================================
   Header
   ========================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(254, 247, 231, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.header__logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent2);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--color-accent2);
}

.nav-reserve .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.is-active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    max-width: 800px;
    z-index: -1;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.5s forwards;
}

.blob-shape {
    width: 100%;
    height: 100%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    animation: blobMorph 15s ease-in-out infinite alternate;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 40px;
    border-radius: 10px;
    box-shadow: none;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease 1s forwards;
    left: -50px;
    top: 30px;
}

.hero__catchphrase {
    font-size: 2.1rem;
    height: 350px;
    color: var(--color-accent2);
}

.hero__catchphrase span {
    display: inline-block;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-down span {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.scroll-down .line {
    width: 1px;
    height: 60px;
    background-color: var(--color-text);
    position: relative;
    overflow: hidden;
}

.scroll-down .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent1);
    animation: scrollLine 2s infinite ease-in-out;
}

/* =========================================================================
   Concept
   ========================================================================= */
.concept__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.concept__text-box {
    flex: 1;
}

.concept__lead {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-accent2);
    margin-bottom: 30px;
    line-height: 1.6;
}

.concept__text {
    margin-bottom: 40px;
}

.concept__image-box {
    flex: 1;
    position: relative;
}

.image-mask {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.concept__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.blob-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent1);
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    z-index: 1;
    opacity: 0.3;
}

/* =========================================================================
   News
   ========================================================================= */
.news {
    padding: 55px 0 35px;
    /* Reduced by 50px total */
}

.news__inner {
    width: 100%;
    max-width: 560px;
    /* Reduced from default container to approx 70% of max */
    margin: 0 auto;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 240px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
}

/* Custom scrollbar for news list */
.news-list::-webkit-scrollbar {
    width: 6px;
}

.news-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.news-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.news-list::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 25px 0;
    background: transparent;
    border-bottom: 1px dashed #ccc;
    transition: background-color 0.3s ease;
}

.news-item:first-child {
    border-top: 1px dashed #ccc;
}

.news-item__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 180px;
    margin-right: 20px;
}

.news-item__date {
    font-family: var(--font-accent);
    color: #666;
    font-size: 0.95rem;
}

.news-item__badge {
    background-color: var(--color-accent1);
    color: var(--color-text);
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.news-item__title {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.6;
}

.news-item__content {
    display: none;
    margin-top: 10px;
    color: #555;
    font-size: 0.95rem;
    background: transparent;
    /* Remove the inner grey background */
    padding: 15px 0 0 0;
    /* Adjust padding since there's no background box anymore */
}

.news-item.is-open .news-item__content {
    display: block;
}

.news-item__toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-accent2);
    padding: 5px;
}

.no-news {
    text-align: center;
    color: #888;
    padding: 30px 0;
}

/* =========================================================================
   Admin / Login
   ========================================================================= */
.admin-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.login-box {
    max-width: 400px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-accent2);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-accent1);
}

.admin-main {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.admin-form .form-group {
    margin-bottom: 20px;
}

.admin-list {
    margin-top: 40px;
}

.admin-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    margin-bottom: 10px;
    border-radius: 5px;
}

.admin-list__info {
    flex: 1;
}

.admin-list__actions {
    display: flex;
    gap: 10px;
}

.btn--small {
    padding: 5px 15px;
    font-size: 0.85rem;
}

.btn--danger {
    background-color: #d0021b;
    color: white;
}

.admin-news-item-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.admin-news-item-date {
    font-size: 0.85rem;
    color: #666;
}

/* =========================================================================
   Reviews
   ========================================================================= */
.reviews__inner {
    width: 100%;
}

.reviews__list {
    margin-bottom: 50px;
    overflow: hidden;
}

.reviews-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
}

.reviews-slider-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.reviews-nav {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(58, 82, 67, 0.2);
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-accent2);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    flex: 0 0 auto;
}

.reviews-nav:hover {
    background: var(--color-accent2);
    color: var(--color-white);
    transform: translateY(-1px);
}

.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.reviews-track.is-animated {
    animation: reviews-slide 112s linear infinite;
}

.reviews-track.is-animated:hover {
    animation-play-state: paused;
}

.review-item {
    background: var(--color-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 4px solid var(--color-accent1);
    flex: 0 0 clamp(342px, 34.2vw, 423px);
    min-height: 170px;
}

.review-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-item__name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-accent2);
}

.review-item__meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-item__stars {
    color: #f4c042;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-item__date {
    font-size: 0.85rem;
    color: #888;
}

.review-item__body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.no-reviews {
    text-align: center;
    color: #888;
    padding: 30px 0;
    background: var(--color-white);
    border-radius: 10px;
}

@keyframes reviews-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 10px));
    }
}

@media (max-width: 767px) {
    .reviews-slider-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .reviews-slider {
        order: 1;
    }

    .reviews-nav {
        width: 100%;
        border-radius: 14px;
        height: 40px;
    }

    .review-item {
        flex: 0 0 min(324px, calc(100vw - 48px));
    }
}

.review-form-box {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px;
    border-radius: 15px;
    border: 1px dashed var(--color-accent1);
}

.review-form-title {
    text-align: center;
    font-size: 1.4rem;
    color: var(--color-accent2);
    margin-bottom: 5px;
}

.review-form-desc {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* =========================================================================
   Information
   ========================================================================= */
.info__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card__title {
    font-size: 1.1rem;
    color: var(--color-accent2);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-accent1);
    display: inline-block;
    padding-bottom: 5px;
}

/* =========================================================================
   Reservation
   ========================================================================= */
.reserve {
    background-color: var(--color-white);
}

.reserve__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--color-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.reserve__text {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.reserve__text small {
    display: block;
    margin-top: 15px;
    color: var(--color-accent2);
}

.reserve__action {
    display: flex;
    justify-content: center;
}

.btn--large {
    padding: 20px 60px;
    font-size: 1.3rem;
    flex-direction: column;
    gap: 5px;
}

.btn--large small {
    font-size: 0.8rem;
    font-weight: normal;
}

/* =========================================================================
   Contact
   ========================================================================= */
.contact__inner {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact__text {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-weight: 500;
    color: var(--color-accent2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.required {
    background-color: #d0021b;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.optional {
    background-color: #888;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent1);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(244, 192, 66, 0.2);
}

textarea.form-control {
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.form-submit .btn {
    border: none;
    width: 100%;
    max-width: 300px;
}

/* =========================================================================
   Access
   ========================================================================= */
.access {
    background-image: radial-gradient(var(--color-accent1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.access__inner {
    display: flex;
    gap: 50px;
    background-color: var(--color-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.access__info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block__title {
    font-family: var(--font-accent);
    color: var(--color-accent2);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid var(--color-accent1);
}

.phone-number a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent2);
    font-weight: 600;
}

.phone-number a:hover {
    color: var(--color-accent1);
}

.note {
    font-size: 0.85rem;
    color: #888;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    text-align: center;
}

.hours-table th,
.hours-table td {
    border: 1px solid #eee;
    padding: 10px 5px;
}

.hours-table th {
    background-color: var(--color-bg);
    font-weight: 500;
}

.hours-table th.sat,
.hours-table td.sat {
    color: #4385ba;
    background-color: #f0f7fb;
}

.hours-table th.sun,
.hours-table td.sun {
    color: #d14d4d;
    background-color: #fbf0f0;
}

.hours-table tbody tr:hover {
    background-color: rgba(144, 169, 137, 0.05);
    background-color: var(--color-bg);
}

.hours-notes {
    font-size: 0.85rem;
    color: #666;
}

.hours-table tbody td:first-child {
    font-size: 0.9rem;
    background-color: var(--color-bg);
}

.hours-notes {
    font-size: 0.85rem;
    color: #666;
}

.access__map {
    flex: 1;
}

.map-wrapper {
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
    background-color: var(--color-accent2);
    color: var(--color-white);
    padding: 80px 0 30px;
    position: relative;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer__nav ul {
    display: flex;
    gap: 30px;
}

.footer__nav a:hover {
    color: var(--color-accent1);
}

.btn--footer {
    background-color: var(--color-accent1);
    color: var(--color-text);
}

.btn--footer-outline {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn--footer-outline:hover {
    background-color: var(--color-white);
    color: var(--color-accent2);
}

.footer__copyright {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.back-to-top {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent1);
    color: var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* =========================================================================
   Animations
   ========================================================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blobMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* =========================================================================
   Responsive
   ========================================================================= */
@media screen and (max-width: 992px) {

    .concept__inner,
    .access__inner {
        flex-direction: column;
    }

    .info__features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hamburger {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(254, 247, 231, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
    }

    .header__nav.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        font-size: 1.2rem;
    }

    .hero__catchphrase {
        font-size: 1.4rem;
        height: 250px;
    }

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

    .news-item {
        flex-direction: column;
        gap: 10px;
    }

    .news-item__meta {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .contact__inner,
    .access__inner {
        padding: 30px 20px;
    }

    .map-wrapper {
        min-height: 300px;
    }

    .hours-table {
        font-size: 0.8rem;
    }
}