@charset "UTF-8";
/*
Theme Name: Goryokaku Fudemura Theme
Author: Assistant
Description: Custom theme for Goryokaku Fudemura LP
Version: 1.0
*/

/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #FF9800;
    /* Orange */
    --color-primary-dark: #F57C00;
    --color-secondary: #FFEB3B;
    /* Yellow */
    --color-accent: #4CAF50;
    /* Green */
    --color-text: #333333;
    --color-bg: #FFFDF5;
    /* Cream/Off-white */
    --color-white: #FFFFFF;

    /* Typography */
    --font-base: "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

    /* Layout */
    --header-height: 70px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.u-sp-only {
    display: block;
}

@media (min-width: 768px) {
    .u-sp-only {
        display: none;
    }
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary-dark);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn--header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn--fv {
    background-color: var(--color-secondary);
    color: var(--color-text);
    font-size: 1.2rem;
    padding: 15px 40px;
    border: 2px solid var(--color-primary);
}

/* ==========================================================================
   Header & Mobile Menu
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

/* Mobile Nav Styles */
.header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background-color: var(--color-white);
    padding-top: 80px;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.header__nav.is-active {
    right: 0;
}

.header__nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

.header__nav-contact {
    margin-top: 20px;
    padding: 0 20px;
    text-align: center;
}

.btn--nav-tel {
    background-color: var(--color-accent);
    /* Green for phone */
    display: block;
    width: 100%;
}

.header__nav-item a {
    font-weight: 500;
    color: var(--color-text);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    /* Above nav */
}

.header__hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hamburger Animation */
.header__hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Desktop Header Overrides */
@media (min-width: 768px) {
    .header__nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding-top: 0;
        box-shadow: none;
        display: block;
    }

    .header__nav-list {
        flex-direction: row;
        gap: 30px;
        padding: 0;
        border: none;
    }

    .header__nav-item a {
        padding: 0;
        border: none;
    }

    .header__hamburger {
        display: none;
    }
}

/* ==========================================================================
   FV
   ========================================================================== */
.fv {
    position: relative;
    height: 100vh;
    min-height: 600px;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fv__content {
    position: relative;
    z-index: 2;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.fv__copy {
    margin-bottom: 20px;
    line-height: 1.4;
}

.fv__copy-sub {
    font-size: 1.2rem;
    font-weight: 500;
}

.fv__copy-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

/* Background Slider usually handled by JS, but setting base here */
.fv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ==========================================================================
   Sections (TV, About)
   ========================================================================== */
.tv {
    background-color: var(--color-white);
}

.tv__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.tv__text {
    flex: 1;
}

.tv__list {
    margin-bottom: 30px;
}

.tv__list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.tv__list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.tv__lead {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.tv__img {
    flex: 1;
    width: 100%;
}

.tv__img img {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ==========================================================================
   Service Section
   ========================================================================== */
.service {
    background-color: var(--color-bg);
}

.service__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service__item {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service__img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service__body {
    padding: 25px;
}

.service__head {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-primary-dark);
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 10px;
    display: inline-block;
}

@media (min-width: 768px) {
    .service__list {
        flex-direction: row;
        gap: 30px;
    }

    .service__item {
        flex: 1;
    }

    /* TV Section Split */
    .tv__inner {
        flex-direction: row;
    }

    .tv__text {
        text-align: left;
    }

    .tv__lead {
        text-align: left;
    }
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu {
    background-color: var(--color-white);
}

.menu__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.menu__card {
    border: 2px solid var(--color-secondary);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #fff;
    transition: transform 0.3s;
}

.menu__card:hover {
    transform: translateY(-5px);
}

.menu__img {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
}

.menu__img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.menu__card--featured {
    border-color: var(--color-primary);
    background-color: #FFF8E1;
    grid-row: span 1;
}

.menu__card--featured .menu__img img {
    height: 200px;
}

.menu__name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
}

.menu__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.menu__desc {
    font-size: 0.9rem;
}

.menu__note {
    margin-top: 30px;
    font-size: 0.8rem;
    text-align: right;
    color: #666;
}

@media (min-width: 768px) {
    .menu__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu__card--featured {
        grid-column: span 2;
    }
}

/* ==========================================================================
   Message Section
   ========================================================================== */
.message {
    background-color: var(--color-bg);
}

.message__inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    border: 4px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.message__inner::before {
    content: "“";
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    color: var(--color-secondary);
    line-height: 0;
    font-family: serif;
    z-index: 2;
}

.message__img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--color-secondary);
}

.message__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message__text {
    font-size: 1.1rem;
    line-height: 2;
    text-align: center;
}

@media (min-width: 768px) {
    .message__inner {
        flex-direction: row;
        text-align: left;
    }

    .message__text {
        text-align: left;
    }
}

/* ==========================================================================
   Q&A Section
   ========================================================================== */
.qa {
    background-color: var(--color-white);
}

.qa__list {
    max-width: 800px;
    margin: 0 auto;
}

.qa__item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.qa__question {
    background-color: var(--color-secondary);
    padding: 15px 20px;
    font-weight: 700;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qa__question::before {
    content: "Q.";
    margin-right: 10px;
    color: var(--color-primary-dark);
}

/* Accordion Icon */
.qa__question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s;
}

.qa__question.is-open::after {
    transform: rotate(45deg);
}

.qa__answer {
    padding: 20px;
    background-color: #fff;
    display: none;
    /* Hidden by default */
}

/* JS will toggle this class or use slideToggle logic. 
   If using raw CSS display toggle: */
.qa__answer.is-open {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.qa__answer::before {
    content: "A.";
    margin-right: 10px;
    color: var(--color-accent);
    font-weight: 700;
}

/* ==========================================================================
   Access Section
   ========================================================================== */
.access {
    background-color: var(--color-bg);
}

.access__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.access__info {
    flex: 1;
}

.access__list {
    margin-bottom: 30px;
}

.access__row {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.access__row:first-child {
    border-top: 1px solid #ddd;
}

.access__row dt {
    width: 100px;
    font-weight: 700;
}

.access__row dd {
    flex: 1;
}

.access__cta {
    text-align: center;
}

.access__map {
    flex: 1;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .access__inner {
        flex-direction: row;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 20px 0;
    text-align: center;
}

.footer__copyright {
    font-size: 0.9rem;
}

/* ==========================================================================
   FV Slider Animation Styles
   ========================================================================== */
.fv__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.fv__slide.is-active {
    opacity: 1;
    z-index: 1;
}

/* Switch between PC and SP images */
.fv__slide--pc {
    display: none;
}

.fv__slide--sp {
    display: block;
}

@media (min-width: 768px) {
    .fv__slide--pc {
        display: block;
    }

    .fv__slide--sp {
        display: none;
    }
}