@charset "UTF-8";

/* =========================================
   Base Variables & Reset
   ========================================= */
:root {
    --c-deep-blue: #0e1c2c; /* 日本海の深さを表現する濃紺 */
    --c-sand: #fcfbf9;      /* 砂浜のようなオフホワイト */
    --c-text-main: #333333;
    --c-text-muted: #888888;
    --c-accent: #b83b3b;    /* 越前がにの赤 */
    --font-mincho: 'Shippori Mincho', serif;
    --font-gothic: 'Zen Kaku Gothic New', sans-serif;
    --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-gothic);
    background-color: var(--c-sand);
    color: var(--c-text-main);
    line-height: 1.8;
    overflow-x: hidden;
    opacity: 0; /* JSでフェードイン */
    transition: opacity 1.5s var(--easing);
}

body.loaded {
    opacity: 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

img, video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =========================================
   Typography & Utilities
   ========================================= */
.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: var(--font-mincho);
}

.section-title {
    font-family: var(--font-mincho);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--c-text-main);
    background: transparent;
    font-family: var(--font-mincho);
    font-size: 1rem;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--easing);
    cursor: pointer;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c-deep-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--easing);
    z-index: -1;
}

.btn:hover {
    color: white;
    border-color: var(--c-deep-blue);
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =========================================
   Hero Section (First View)
   ========================================= */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
    filter: brightness(0.8) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 28, 44, 0.3);
    z-index: -1;
}

.hero-content {
    z-index: 10;
    color: white;
    text-align: center;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    width: 200px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.hero-copy {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.1em;
    line-height: 1.6;
    font-size: clamp(1.2rem, 5vh, 2.5rem);
    margin: 0 auto;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    font-weight: 500;
    max-height: 60vh;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #fff, transparent);
    margin-top: 10px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   Intro Section (About)
   ========================================= */
#intro {
    padding: 8rem 0;
    background: var(--c-sand);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.intro-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
}

.intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 1s var(--easing), transform 1.5s ease-out;
}

.intro-image-wrapper:hover .intro-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.intro-text {
    padding: 0 1rem;
}

.intro-head {
    font-size: 1.8rem;
    font-family: var(--font-mincho);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* =========================================
   Menu Section (Highlight)
   ========================================= */
#menu {
    padding: 6rem 0;
    background: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.menu-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.menu-item img {
    transition: transform 0.6s var(--easing);
}

.menu-item:hover img {
    transform: scale(1.1);
}

.menu-caption {
    padding: 1.5rem 0;
}

.menu-title {
    font-family: var(--font-mincho);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.menu-desc {
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

/* =========================================
   Location Section (Parallax Window)
   ========================================= */
#location {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* ★変更：WebP画像に指定 */
    background-image: url('assets/img/enkai_i_sekigamieruosekide-min-300x200.webp'); 
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.location-content {
    z-index: 2;
    position: relative;
    background: rgba(255,255,255,0.9);
    padding: 3rem;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* =========================================
   Hosts Section
   ========================================= */
#hosts {
    padding: 8rem 0;
    background-color: #fdfbf7;
}

.hosts-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hosts-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: var(--c-deep-blue);
    color: white;
    padding: 5rem 0 2rem;
    text-align: center;
}

.footer-logo {
    width: 200px;
    margin-bottom: 2rem;
    filter: none;
}

.footer-info {
    margin-bottom: 3rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.copyright {
    font-size: 0.7rem;
    opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    width: 90%;
    margin: 0 auto;
}

/* =========================================
   Responsive Design (Desktop)
   ========================================= */
@media (min-width: 768px) {
    .hero-copy {
        font-size: clamp(2rem, 7vh, 4.5rem);
    }

    .intro-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .intro-text {
        padding-left: 3rem;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }

    #location {
        height: 80vh;
    }
    
    .location-content {
        margin-left: auto;
        margin-right: 10%;
    }
}

/* =========================================
   Menu Page Styles
   ========================================= */

.menu-page {
    background-color: var(--c-sand);
    opacity: 1;
    padding-top: 0;
}

/* Header for Subpages */
.page-header {
    background-color: var(--c-deep-blue);
    padding: 1.5rem 0;
    text-align: center;
    color: white;
}

.header-logo {
    width: 120px;
    margin-bottom: 0.5rem;
    filter: none;
}

.page-title {
    font-family: var(--font-mincho);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
}

/* Section Common */
.menu-section {
    padding: 5rem 0;
}

.section-white {
    background-color: white;
}

.section-header-wrapper {
    display: flex;
    margin-bottom: 3rem;
    gap: 3rem;
    align-items: flex-start;
}

.menu-section-title {
    font-family: var(--font-mincho);
    font-size: 2.2rem;
    color: var(--c-deep-blue);
    writing-mode: vertical-rl;
    text-orientation: upright;
    border-right: 1px solid #ccc;
    padding-right: 2rem;
    height: 250px;
    margin: 0;
}

.section-lead {
    padding-top: 1rem;
    font-size: 0.95rem;
    line-height: 2;
}

.lead-emphasis {
    font-weight: bold;
    color: var(--c-deep-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.menu-category-divider {
    font-family: var(--font-mincho);
    font-size: 1.6rem;
    color: var(--c-deep-blue);
    border-bottom: 2px solid var(--c-deep-blue);
    margin: 4rem 0 3rem;
    padding-bottom: 0.5rem;
}

/* Notice Box */
.notice-box {
    border: 1px solid var(--c-accent);
    padding: 2rem;
    background-color: #fffafa;
    margin-bottom: 3rem;
}

.notice-title {
    color: var(--c-accent);
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.notice-list {
    list-style: none;
    font-size: 0.9rem;
}

.notice-list li {
    margin-bottom: 0.5rem;
    padding-left: 1em;
    text-indent: -1em;
}

.accent-red {
    color: var(--c-accent);
    font-weight: bold;
}

/* Card List Layout (Courses) */
.menu-card-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.menu-card {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 4px;
}

.menu-card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-content {
    padding: 2rem;
    flex: 1;
}

.menu-name {
    font-family: var(--font-mincho);
    font-size: 1.4rem;
    color: var(--c-deep-blue);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.menu-tag {
    font-size: 0.7rem;
    color: white;
    background-color: var(--c-accent);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    font-family: var(--font-gothic);
}

.menu-price {
    font-family: var(--font-mincho);
    font-size: 1.6rem;
    margin: 1rem 0;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 1rem;
}

.menu-price-multi {
    font-family: var(--font-mincho);
    font-size: 1.3rem;
    margin: 1rem 0;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 1rem;
}

.menu-price-multi p {
    margin-bottom: 0.5rem;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 0.5rem;
}

.detail-items {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-items li {
    font-size: 0.95rem;
}

.detail-items li::after {
    content: ' /';
    color: #ccc;
    margin-left: 0.5rem;
}
.detail-items li:last-child::after { content: ''; }

.menu-note, .menu-note-small, .menu-sub {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.menu-note { color: var(--c-accent); margin-bottom: 0.5rem; }

/* Two Column Layout for Single/Set Meals */
.menu-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.simple-item {
    margin-bottom: 3rem;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 2rem;
}

.simple-item:last-child { border-bottom: none; }

.simple-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.simple-head h4 {
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--c-deep-blue);
}

.simple-price {
    font-family: var(--font-mincho);
    font-size: 1.1rem;
    white-space: nowrap;
}

.simple-desc {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.teishoku-img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.simple-imgs {
    margin-top: 1rem;
}
.simple-imgs img {
    max-width: 100%;
    border-radius: 4px;
    height: auto;
}

.simple-imgs-row {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.simple-imgs-row img {
    width: 48%;
    border-radius: 4px;
    height: 150px;
    object-fit: cover;
}

.simple-list {
    list-style: none;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--c-text-main);
}

.special-box {
    border: 3px double var(--c-deep-blue);
    padding: 1.5rem;
    background-color: white;
}

.special-img-wrap {
    margin-bottom: 1rem;
}

.bottom-notice {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

/* Responsive */
@media (min-width: 768px) {
    .menu-card-list {
        grid-template-columns: 1fr 1fr;
    }
    .menu-two-col {
        grid-template-columns: 1fr 1fr;
    }
    .simple-item {
        margin-bottom: 2.5rem;
    }
}

/* =========================================
   Echizen Gani Story Page Styles
   ========================================= */

.story-page {
    background-color: var(--c-sand);
    padding-top: 0;
}

/* Story Hero */
.story-hero {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.story-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 4rem;
}

.story-hero-text {
    flex: 1;
    position: relative;
    padding-left: 2rem;
}

.story-title {
    font-size: 2.5rem;
    color: var(--c-deep-blue);
    line-height: 1.4;
    height: 300px;
    margin-bottom: 0;
    float: left;
    margin-right: 3rem;
}

.story-lead {
    font-size: 1rem;
    line-height: 2.2;
    color: var(--c-text-main);
    padding-top: 2rem;
}

.story-hero-img {
    flex: 1;
    position: relative;
}

.story-hero-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0px rgba(14, 28, 44, 0.1);
}

/* Story Section Layout */
.story-section {
    padding: 6rem 0;
}

.bg-deep-blue {
    background-color: var(--c-deep-blue);
    color: white;
}

.text-white {
    color: white !important;
}

.story-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.story-row.reverse {
    flex-direction: row-reverse;
}

.story-col-img {
    flex: 1;
}

.frame-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.border-white {
    border: 5px solid rgba(255,255,255,0.1);
}

.caption {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-top: 0.5rem;
    text-align: right;
}

.story-col-text {
    flex: 1;
}

.story-head {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    color: var(--c-deep-blue);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.story-col-text p {
    margin-bottom: 1.5rem;
    line-height: 2;
    text-align: justify;
}

.text-white .story-head {
    color: white;
}

.highlight-gold {
    color: #d4af37;
    font-weight: bold;
    border-bottom: 1px solid #d4af37;
}

.small-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1rem;
}

.center-head {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

/* Image Grid */
.image-grid-story {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.image-grid-story img {
    width: 45%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.image-grid-story img:hover {
    transform: scale(1.03);
}

/* Season Table */
.season-table-wrapper {
    overflow-x: auto;
    margin-bottom: 4rem;
}

.season-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.season-table th {
    background-color: var(--c-deep-blue);
    color: white;
    padding: 1.2rem;
    font-family: var(--font-mincho);
    font-weight: normal;
    text-align: left;
}

.season-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.season-table .name {
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    color: var(--c-deep-blue);
    white-space: nowrap;
}

.season-table .sub-name {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    font-family: var(--font-gothic);
}

.cta-area {
    text-align: center;
    background-color: #fdfbf7;
    padding: 4rem 2rem;
    border: 1px solid #eee;
}

.cta-area p {
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .story-hero-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .story-hero-text {
        padding-left: 0;
    }
    
    .story-title {
        height: auto;
        float: none;
        writing-mode: horizontal-tb;
        margin-right: 0;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .story-row, .story-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .image-grid-story {
        flex-direction: column;
    }
    
    .image-grid-story img {
        width: 100%;
    }
    
    .season-table th, .season-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* =========================================
   Tourism Page Styles
   ========================================= */

.tourism-page {
    background-color: var(--c-sand);
    padding-top: 0;
}

/* Sticky Navigation */
.tourism-nav {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    z-index: 100;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(5px);
}

.tourism-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.tourism-nav li {
    margin: 0;
}

.tourism-nav a {
    display: block;
    padding: 1rem 1.5rem;
    font-family: var(--font-mincho);
    color: var(--c-deep-blue);
    font-size: 0.9rem;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tourism-nav a:hover {
    border-bottom-color: var(--c-accent);
    background: rgba(14, 28, 44, 0.05);
}

/* Tourism Hero Text */
.tourism-hero-text {
    padding: 6rem 0;
    text-align: center;
}

.tourism-lead {
    font-family: var(--font-mincho);
    font-size: 2rem;
    color: var(--c-deep-blue);
    margin: 0 auto 2rem;
    display: inline-block;
    text-align: left;
    height: 150px;
}

.tourism-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 2;
}

/* Section Common */
.tourism-section {
    padding: 6rem 0;
}

.bg-sand { background-color: var(--c-sand); }
.bg-white { background-color: white; }
.bg-deep-blue { background-color: var(--c-deep-blue); color: white; }

/* 1. SPOTS Grid */
.spot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.spot-card {
    background: white;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.spot-card:hover {
    transform: translateY(-5px);
}

.spot-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.spot-img-tall {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.spot-img-group {
    display: flex;
    height: 250px;
}
.spot-img-group img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.spot-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.spot-content h3 {
    font-family: var(--font-mincho);
    color: var(--c-deep-blue);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.spot-content p {
    font-size: 0.9rem;
    line-height: 1.8;
}

/* 2. PLAY Section */
.play-hero {
    position: relative;
    margin-bottom: 3rem;
}

.play-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.play-hero-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(5deg);
}

.play-hero-overlay img {
    height: 150px;
}

.play-hero-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    max-width: 80%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.play-hero-caption h3 {
    font-family: var(--font-mincho);
    color: var(--c-deep-blue);
    margin-bottom: 0.5rem;
}

.play-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.play-item {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 4px;
}

.play-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.play-item h4 {
    color: var(--c-deep-blue);
    margin-bottom: 0.5rem;
    font-family: var(--font-mincho);
    font-size: 1.2rem;
}

/* 3. FISHING Section */
.fishing-intro {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}

.fishing-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 100px);
    gap: 10px;
    width: 100%;
}

.fishing-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.f-img-1 { grid-column: 1 / 3; grid-row: 1 / 3; height: 100% !important;}
.f-img-2 { grid-column: 3 / 5; grid-row: 1 / 2; }
.f-img-3 { grid-column: 3 / 4; grid-row: 2 / 3; }
.f-img-4 { grid-column: 4 / 5; grid-row: 2 / 3; }

.fishing-text h3 {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.5rem;
}

.center-head { text-align: center; font-family: var(--font-mincho); font-size: 1.8rem; margin-bottom: 1rem;}
.center-desc { text-align: center; margin-bottom: 3rem; opacity: 0.8; }

.leisure-content-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.leisure-visual img {
    width: 100%;
    border-radius: 4px;
}

.fishing-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.type-box {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 1.5rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.type-box:hover {
    background: rgba(255,255,255,0.1);
}

.type-box h4 {
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #87ceeb;
}

.fishing-calendar {
    background: white;
    color: var(--c-text-main);
    padding: 2rem;
    border-radius: 4px;
}

.fishing-calendar h4 {
    font-family: var(--font-mincho);
    font-size: 1.3rem;
    color: var(--c-deep-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.fishing-calendar table {
    width: 100%;
    border-collapse: collapse;
}

.fishing-calendar th, .fishing-calendar td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 0.9rem;
}

.fishing-calendar th {
    white-space: nowrap;
    color: var(--c-deep-blue);
    width: 30%;
    background: #f9f9f9;
}

/* 4. CALENDAR Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    border-left: 2px solid var(--c-deep-blue);
    padding-left: 2rem;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0;
    width: 1rem;
    height: 1rem;
    background: white;
    border: 2px solid var(--c-deep-blue);
    border-radius: 50%;
}

.highlight-item::before {
    background: var(--c-accent);
    border-color: var(--c-accent);
}

.timeline-date {
    font-family: var(--font-mincho);
    font-weight: bold;
    color: var(--c-deep-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-item .timeline-date {
    color: var(--c-accent);
    font-size: 1.3rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.timeline-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.multi-event-img {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}
.multi-event-img img {
    width: 50%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 0;
}

.timeline-content h3 {
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.calendar-link {
    text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
    .spot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .spot-card.large-card {
        grid-column: span 2;
        flex-direction: row;
    }
    
    .spot-card.large-card .spot-img-group {
        width: 50%;
        height: auto;
        flex-direction: column;
    }
    .spot-card.large-card .spot-img-group img {
        width: 100%;
        height: 50%;
    }
    
    .spot-card.large-card .spot-content {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .spot-card.large-card.reverse {
        flex-direction: row-reverse;
    }
    
    .play-grid { grid-template-columns: 1fr 1fr; }
    
    .fishing-intro { flex-direction: row; align-items: center;}
    .fishing-collage { width: 50%; }
    .fishing-text { width: 50%; padding-left: 3rem; }
    
    .leisure-content-grid { flex-direction: row; }
    .leisure-visual { width: 40%; }
    .fishing-types-wrapper { width: 60%; }
    .fishing-types { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   About / Access Page Styles
   ========================================= */

.about-page {
    background-color: var(--c-sand);
    padding-top: 0;
}

/* About Hero */
.about-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 0;
}

.about-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(255,255,255,0.85);
    padding: 3rem 2rem;
    writing-mode: vertical-rl;
}

.about-lead {
    font-family: var(--font-mincho);
    font-size: 2rem;
    color: var(--c-deep-blue);
    letter-spacing: 0.2em;
    margin: 0;
    height: auto;
}

/* Section Common */
.about-section {
    padding: 6rem 0;
}

/* Interior Grid */
.interior-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.interior-item {
    background: white;
}

.interior-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}

.interior-caption {
    padding: 1.5rem 0;
}

.interior-caption h3 {
    font-family: var(--font-mincho);
    color: var(--c-deep-blue);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.interior-caption p {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Street View */
.street-view-wrapper {
    margin-top: 4rem;
    text-align: center;
}

.center-sub-head {
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--c-text-muted);
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Info Box (Hours/Seats) */
.info-box {
    background: white;
    padding: 3rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
}

.info-title {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--c-deep-blue);
}

.info-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: bold;
    color: var(--c-deep-blue);
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-value {
    width: 100%;
}

.note {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.hours-list dt {
    float: left;
    width: 80px;
    font-weight: 500;
}
.hours-list dd {
    margin-left: 80px;
    margin-bottom: 0.5rem;
}

.seats-list {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.total-seats {
    font-weight: bold;
    border-top: 1px dashed #ccc;
    padding-top: 0.5rem;
    display: inline-block;
}

/* Access Grid */
.access-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.access-map iframe {
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.address-box {
    margin-bottom: 2rem;
}

.zip { font-size: 0.9rem; margin-bottom: 0; opacity: 0.8;}
.address { font-size: 1.2rem; font-weight: bold; margin-bottom: 0.5rem; }
.landmark { font-size: 0.9rem; opacity: 0.8; margin-bottom: 1rem; }
.tel-link { 
    font-family: var(--font-mincho); 
    font-size: 1.8rem; 
    color: white; 
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.direction-box {
    margin-bottom: 2rem;
    border-left: 2px solid rgba(255,255,255,0.3);
    padding-left: 1.5rem;
}

.direction-box h4 {
    font-family: var(--font-mincho);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #87ceeb;
}

.direction-box p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Bus Tour Highlight */
.bus-tour-wrapper {
    border: 2px solid var(--c-accent);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.bus-tour-header {
    background: var(--c-accent);
    color: white;
    text-align: center;
    padding: 1.5rem;
}

.bus-tour-header h3 {
    font-family: var(--font-mincho);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bus-tour-content {
    padding: 2rem;
}

.bus-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.bus-details {
    background: #fff9f9;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.bus-row {
    display: flex;
    margin-bottom: 1rem;
    border-bottom: 1px dashed #eec;
    padding-bottom: 1rem;
}
.bus-row:last-child { border-bottom: none; }

.bus-row .label {
    width: 30%;
    font-weight: bold;
    color: var(--c-accent);
}
.bus-row .val {
    width: 70%;
}

.bus-schedule {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.schedule-box {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
}

.schedule-box h4 {
    color: var(--c-deep-blue);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.route {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mincho);
}

.point { font-weight: bold; font-size: 1.1rem; }
.time { font-size: 0.9rem; color: #666; }
.arrow { color: var(--c-accent); }

.bus-link { text-align: center; }
.btn-small {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--c-text-main);
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-small:hover { background: var(--c-deep-blue); color: white; }

/* Responsive */
@media (min-width: 768px) {
    .interior-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .info-row {
        flex-direction: row;
    }
    .info-label { width: 30%; margin-bottom: 0; }
    .info-value { width: 70%; }
    
    .access-grid {
        grid-template-columns: 1fr 1fr;
    }
    .access-info { padding-left: 2rem; }
    
    .bus-schedule {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   Reservation Page Styles
   ========================================= */

.reservation-page {
    background-color: var(--c-sand);
    padding-top: 0;
}

/* Hero */
.reservation-hero {
    position: relative;
    height: 50vh;
    /* ★変更：WebP画像に指定 */
    background-image: url('assets/img/image0-2-e1626710369258-300x200.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 28, 44, 0.4);
}

.reservation-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.reservation-lead {
    font-family: var(--font-mincho);
    font-size: 2.5rem;
    height: 200px;
    margin: 0 auto 1rem;
    display: inline-block;
}

.reservation-sub {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Section Common */
.reservation-section {
    padding: 5rem 0;
}

/* Intro Box */
.intro-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-box p {
    margin-bottom: 2rem;
    line-height: 2;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
    text-align: left;
}

.info-item h4 {
    color: var(--c-deep-blue);
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

.info-item dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
}

.important-note {
    color: var(--c-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Method Selector */
.method-selector {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.method-card {
    background: white;
    padding: 3rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.method-card h3 {
    font-family: var(--font-mincho);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--c-deep-blue);
}

.method-desc {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--c-text-muted);
}

.tel-btn {
    display: block;
    font-size: 2rem;
    font-family: var(--font-mincho);
    color: var(--c-deep-blue);
    margin-bottom: 1rem;
    font-weight: bold;
}

.scroll-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--c-deep-blue);
    color: white;
    border-radius: 4px;
    transition: opacity 0.3s;
}
.scroll-btn:hover { opacity: 0.8; }

.address-text {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.method-or {
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    color: var(--c-text-muted);
    position: relative;
}

/* Web Form */
.form-container {
    max-width: 800px;
}

.form-head {
    text-align: center;
    font-family: var(--font-mincho);
    font-size: 2rem;
    color: var(--c-deep-blue);
    margin-bottom: 1rem;
}

.form-notice {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1rem;
    background: #fff9f9;
    border: 1px solid var(--c-accent);
    color: var(--c-text-main);
    font-size: 0.9rem;
}

.form-notice .red {
    color: var(--c-accent);
    font-weight: bold;
    display: block;
    margin-top: 0.5rem;
}

.booking-form {
    background: #fdfbf7;
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: bold;
    color: var(--c-deep-blue);
}

.required {
    background: var(--c-accent);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-gothic);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--c-deep-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 28, 44, 0.1);
}

.date-time-inputs {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.input-with-unit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.input-with-unit input { width: 100px; }

/* Course List */
.course-list {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 1rem;
}

.course-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed #eee;
    flex-wrap: wrap;
    gap: 1rem;
}

.course-item:last-child { border-bottom: none; }

.c-name { flex: 1; font-weight: 500; min-width: 200px; }
.c-price { font-family: var(--font-mincho); margin-right: 1rem; }
.c-input { display: flex; align-items: center; gap: 0.5rem; }
.c-input input { width: 70px; padding: 0.5rem; text-align: center; }

.special-course {
    background: #f0f8ff;
    padding: 1rem;
    border-radius: 4px;
}
.special-course .c-sub-option {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}
.special-course select {
    width: auto;
    padding: 0.5rem;
}

.field-note {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-top: 0.5rem;
}

/* Agreement */
.agreement-box {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.checkbox-label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-text {
    font-weight: bold;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: var(--c-deep-blue);
    color: white;
    width: 100%;
    max-width: 300px;
    border: none;
    font-size: 1.2rem;
}
.submit-btn::after { background: white; }
.submit-btn:hover { color: var(--c-deep-blue); }

/* Responsive */
@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .method-selector {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
    
    .method-or { margin: 0 1rem; align-self: center;}
    
    .booking-form { padding: 4rem; }
}

/* =========================================
   Global Navigation Styles (Final Touch)
   ========================================= */

/* Menu Trigger Button (Fixed Top-Right) */
.nav-trigger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.nav-trigger:hover {
    transform: scale(1.1);
}

.nav-trigger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--c-deep-blue);
    margin: 3px 0;
    transition: all 0.4s;
}

.menu-label {
    font-size: 0.6rem;
    font-family: var(--font-gothic);
    letter-spacing: 0.1em;
    margin-top: 2px;
    color: var(--c-deep-blue);
}

/* Button Animation (Open State) */
.nav-open .nav-trigger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-open .nav-trigger span:nth-child(2) {
    opacity: 0;
}
.nav-open .nav-trigger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.nav-open .menu-label {
    display: none;
}

/* Full Screen Overlay */
.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--c-deep-blue);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-open .global-nav {
    opacity: 1;
    visibility: visible;
}

/* Nav Background Image (Optional Effect) */
.nav-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 動画GIFは最適化せずそのまま使用 */
    background-image: url('assets/img/spmovie-compressor-300x169.gif');
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

/* Nav List */
.nav-list {
    list-style: none;
    text-align: center;
}

.nav-list li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* Staggered Animation for list items */
.nav-open .nav-list li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.nav-open .nav-list li:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.nav-open .nav-list li:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.nav-open .nav-list li:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.nav-open .nav-list li:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.nav-open .nav-list li:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

.nav-list a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.3s;
}

.nav-list a:hover {
    opacity: 0.7;
    color: var(--c-sand);
}

.nav-list .en {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.2rem;
}

.nav-list .ja {
    font-size: 0.9rem;
    font-family: var(--font-gothic);
    opacity: 0.7;
}

.nav-footer {
    position: absolute;
    bottom: 30px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    font-size: 0.8rem;
    font-family: var(--font-mincho);
}

/* =========================================
   Instagram Section
   ========================================= */
#instagram {
    padding: 6rem 0;
    background-color: #fcfbf9;
    text-align: center;
}

.section-lead-text {
    margin-bottom: 3rem;
    font-size: 0.95rem;
    color: var(--c-text-main);
    line-height: 2;
}

.instagram-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .snapwidget-widget {
        height: 100vw !important;
        max-height: 510px;
    }
}

.insta-btn-area {
    margin-top: 2rem;
}

.btn-insta {
    border-color: var(--c-deep-blue);
    color: var(--c-deep-blue);
}

.btn-insta:hover {
    background-color: var(--c-deep-blue);
    color: white;
}

/* Form Style */
#simpleForm {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}