@charset "UTF-8";

/* ==========================================================================
   Variables - Dark Asian Theme (Grey, Shu-iro, Beige)
   ========================================================================== */
:root {
    /* Gray/Light Palette */
    --color-bg: #fdfdfb;
    /* Soft Paper White */
    --color-bg-light: #ffffff;
    /* Pure White */
    --color-bg-section: #f7f7f5;
    /* Soft Foggy Grey */

    /* Text Colors */
    --color-text: #333333;
    /* Deep Charcoal */
    --color-text-muted: #7c7c7c;
    /* Ash Grey */

    /* Colors: Grey, Shu-iro (Vermillion), Beige */
    --color-grey: #8a8a8a;
    --color-vermillion: #c73c28;
    /* 朱色 */
    --color-beige: #c4b5a2;

    --color-primary: var(--color-grey);
    --color-primary-dark: #6b6b6b;
    --color-primary-light: #a8a8a8;

    --color-accent: var(--color-vermillion);
    --color-accent-light: #e96d5a;
    --color-accent-dark: #a52a1a;

    --color-sub: var(--color-beige);

    /* Borders & Overlays */
    --color-border: rgba(138, 138, 138, 0.12);
    /* Soft Ash Border */
    --color-overlay: rgba(253, 253, 251, 0.9);
    /* Light Luminous Overlay */

    --font-base: 'Noto Sans JP', sans-serif;
    --font-serif: 'Shippori Mincho', serif;

    --shadow-soft: 0 15px 40px rgba(138, 138, 138, 0.08);
    --shadow-glow: 0 0 25px rgba(199, 60, 40, 0.15);
    --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   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);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 2.0;
    /* Increased line-height for elegance */
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Background Texture Pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(212, 184, 150, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(199, 60, 40, 0.03) 0%, transparent 40%),
        repeating-linear-gradient(45deg, rgba(212, 184, 150, 0.02) 0, rgba(212, 184, 150, 0.02) 1px, transparent 1px, transparent 10px);
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--easing);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: cover;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Header
   ========================================================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 0px 30px;
    transition: padding 0.3s;
}

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

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

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

.pc-nav {
    display: none;
}

@media (min-width: 1024px) {
    .pc-nav {
        display: block;
    }

    .pc-nav ul {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    .pc-nav a {
        font-family: var(--font-serif);
        font-size: 0.95rem;
        position: relative;
    }

    .pc-nav a:not(.btn-reserve)::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--color-primary);
        transition: width 0.3s;
    }

    .pc-nav a:not(.btn-reserve):hover::after {
        width: 100%;
    }

    .btn-reserve {
        background: var(--color-accent);
        color: #fff;
        padding: 10px 28px;
        border: none;
        border-radius: 2px;
        font-weight: 600;
        box-shadow: var(--shadow-glow);
        transition: all 0.3s var(--easing);
    }

    .btn-reserve:hover {
        transform: translateY(-2px);
        background: var(--color-accent-dark);
        box-shadow: 0 6px 20px rgba(196, 181, 162, 0.3);
    }

    .hamburger {
        display: none;
    }
}

/* Mobile Menu */
.hamburger {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1002;
    margin-left: auto;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    /* Thinner lines */
    background-color: var(--color-text);
    transition: all 0.4s var(--easing);
}

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

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

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

.hamburger.active span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 11px;
    background-color: var(--color-primary);
}

.hamburger.active span:nth-of-type(2) {
    opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
    transform: rotate(-45deg);
    bottom: 12px;
    background-color: var(--color-primary);
}

.sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    /* Match theme bg */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--easing);
    z-index: 1001;
    /* Behind hamburger */
    border-left: 1px solid var(--color-border);
}

.sp-nav.active {
    opacity: 1;
    pointer-events: auto;
}

.sp-nav ul {
    text-align: center;
}

.sp-nav li {
    margin: 40px 0;
    overflow: hidden;
}

.sp-nav a {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-text);
    /* Ash/Gray text */
    display: block;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s var(--easing), opacity 0.5s;
}

.sp-nav.active a {
    transform: translateY(0);
    opacity: 1;
}

/* Delay for staggered animation */
.sp-nav.active li:nth-child(1) a {
    transition-delay: 0.1s;
}

.sp-nav.active li:nth-child(2) a {
    transition-delay: 0.2s;
}

.sp-nav.active li:nth-child(3) a {
    transition-delay: 0.3s;
}

.sp-nav.active li:nth-child(4) a {
    transition-delay: 0.4s;
}

.sp-nav.active li:nth-child(5) a {
    transition-delay: 0.5s;
}

/* SP Web予約 Button */
.sp-reserve {
    margin-top: 50px !important;
}

.btn-sp-reserve {
    background: var(--color-accent) !important;
    color: #fff !important;
    padding: 15px 50px !important;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: 0 10px 25px rgba(196, 181, 162, 0.3);
}


/* ==========================================================================
   FV (First View)
   ========================================================================== */
#fv {
    position: relative;
    width: 100%;
    margin-top: 81px;
    /* Height of the fixed header */
    height: auto;
    overflow: hidden;
    background: #000;
}

.fv-swiper {
    width: 100%;
    height: auto;
}

.fv-swiper .swiper-slide {
    position: relative;
    height: auto;
}

.fv-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.fv-text-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    /* Vertical Text */
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.vertical-text {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 0.5em;
    line-height: 1.8;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border-right: 1px solid var(--color-accent);
    /* Line next to text */
    padding-right: 20px;
}

@media (max-width: 768px) {
    #fv {
        margin-top: 81px;
        /* Matches fixed header height */
    }

    .fv-text-overlay {
        left: auto;
        right: 10%;
    }

    .vertical-text {
        font-size: 1.8rem;
    }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 40px;
    /* Changed to right bottom */
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    transform: rotate(90deg);
    transform-origin: right bottom;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-down::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Common Layouts
   ========================================================================== */
.section-margin {
    margin-bottom: 150px;
    padding: 0 15px;
    /* Reduced for SP */
}

.section-full-width {
    margin-bottom: 150px;
    width: 100%;
}

@media (min-width: 768px) {
    .section-margin {
        padding: 0 20px;
        /* Restore to original for Tablet/PC */
    }
}

@media (min-width: 1024px) {
    .section-margin {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

.section-head {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 10px 0;
    margin-bottom: 150px;
    background: url('../img/master_4-1.jpg') repeat center center fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.jp-title {
    font-size: 0.9rem;
    color: #ffffff;
    letter-spacing: 0.5em;
    font-weight: 700;
    position: relative;
    z-index: 3;
    margin-bottom: 0;
    background: transparent;
    padding: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.en-title {
    font-family: var(--font-serif);
    font-size: 6rem;
    color: #ff9468;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
    position: relative;
    z-index: 2;
    margin-top: -30px;
}

@media (max-width: 768px) {
    .section-head {
        padding: 5px 0;
        margin-bottom: 40px;
        background-attachment: scroll;
    }

    .en-title {
        font-size: 3rem;
        margin-top: -15px;
        opacity: 0.2;
    }

    .jp-title {
        font-size: 0.8rem;
    }
}

.dark-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.dark-grid-img {
    position: relative;
    border-radius: 2px;
    /* Sharp corners */
    overflow: hidden;
}

.dark-grid-img img {
    width: 100%;
    filter: brightness(0.9);
    transition: transform 0.8s var(--easing);
}

.dark-grid-container:hover .dark-grid-img img {
    transform: scale(1.05);
}

.dark-grid-text {
    background: var(--color-bg-light);
    padding: 40px 20px;
    /* Reduced for SP */
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
    margin-top: -60px;
    /* Overlap */
    margin-left: 10px;
    /* Reduced for SP */
    margin-right: 10px;
    /* Reduced for SP */
}

/* Modifier: No Overlap for Specific Sections */
.no-overlap .dark-grid-text {
    margin: 0;
    padding: 40px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dark-grid-text h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.concept-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 15px;
    color: var(--color-text-muted);
}

.concept-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    transform: rotate(45deg);
    /* Diamond shape bullet */
}

@media (min-width: 1024px) {
    .dark-grid-container {
        grid-template-columns: 1.2fr 1fr;
        /* Asymmetric */
        align-items: center;
        gap: 0;
    }

    .dark-grid-container.no-overlap {
        grid-template-columns: 1fr 1fr;
        /* Even columns */
        align-items: stretch;
        gap: 30px;
    }

    .dark-grid-container.no-overlap .dark-grid-img,
    .dark-grid-container.no-overlap .dark-grid-text {
        width: 100%;
        margin: 0;
    }

    .dark-grid-container.reverse {
        grid-template-columns: 1fr 1.2fr;
        direction: rtl;
    }

    .dark-grid-container.reverse>* {
        direction: ltr;
        /* Reset text direction */
    }

    .dark-grid-text {
        margin: 0;
        margin-left: -50px;
        padding: 80px 60px;
    }

    .dark-grid-container.reverse .dark-grid-text {
        margin-left: 0;
        margin-right: -50px;
    }
}


/* ==========================================================================
   SV Banner
   ========================================================================== */
#sv a {
    display: block;
    position: relative;
    overflow: hidden;
}

.sv-bg-wrapper {
    height: 300px;
    overflow: hidden;
}

.sv-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(1.1) contrast(0.9);
    /* Soft B&W */
    transition: filter 0.5s, transform 0.8s;
}

#sv a:hover .sv-bg-wrapper img {
    filter: grayscale(0%) brightness(0.8);
    transform: scale(1.08);
}

.sv-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
}

.sv-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.sv-text p {
    color: var(--color-text);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-swiper .swiper-slide {
    width: 250px;
    height: auto;
    /* Changed from 350px to auto to show text */
    padding-bottom: 15px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-light);
    transition: all 0.4s var(--easing);
    overflow: hidden;
}

.gallery-swiper .swiper-slide p {
    margin-top: 15px;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--color-text);
    text-align: center;
}

.gallery-swiper .swiper-slide:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(212, 184, 150, 0.2);
}

/* ==========================================================================
   Service
   ========================================================================== */
.service-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
    position: relative;
}

.service-img {
    position: relative;
    width: 100%;
    align-self: stretch;
    /* Ensure image stretches to match text height */
}

.service-img img {
    height: 100%;
    /* Fill the container */
    object-fit: cover;
}

.service-num {
    position: absolute;
    top: -80px;
    left: 20px;
    font-family: var(--font-serif);
    font-size: 10rem;
    color: #ffffff;
    -webkit-text-stroke: 1px var(--color-accent);
    line-height: 1;
    z-index: 3;
    opacity: 0.4;
}

.service-text {
    padding-top: 30px;
}

.service-text h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-text h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

@media (min-width: 1024px) {
    .service-item {
        flex-direction: row;
        gap: 60px;
        align-items: stretch;
        /* Match height */
    }

    .service-item.reverse {
        flex-direction: row-reverse;
    }

    .service-img {
        width: 50%;
    }

    .service-text {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center text vertically */
        padding: 40px 0;
    }
}

/* ==========================================================================
   Menu Lists (List View instead of Grid)
   ========================================================================== */
.recommend-inner {
    background: linear-gradient(rgba(253, 253, 251, 0.9), rgba(247, 247, 245, 0.95)), url('../img/master_16-9.jpg') fixed center/cover;
    padding: 80px 0;
    /* Removed horizontal padding for SP */
    position: relative;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.recommend-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 184, 150, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .recommend-inner {
        padding: 100px 20px;
    }
}

.recommend-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .recommend-container {
        flex-direction: row;
    }
}

.recommend-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    flex: 1;
    position: relative;
    transition: all 0.4s var(--easing);
    overflow: hidden;
}

.recommend-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.recommend-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.recommend-info {
    padding: 25px;
    text-align: center;
}

.recommend-info h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-family: var(--font-serif);
}

.recommend-info .desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.price {
    font-size: 1.5rem;
    color: var(--color-accent);
}

/* UPDATE: Menu Section - 2 Column Image | Table */
.menu-section-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .menu-section-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.menu-side-image {
    width: 100%;
}

@media (min-width: 1024px) {
    .menu-side-image {
        width: 40%;
        position: sticky;
        top: 100px;
    }
}

.menu-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.menu-table-wrapper {
    width: 100%;
}

@media (min-width: 1024px) {
    .menu-table-wrapper {
        width: 60%;
    }
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
}

.menu-table tr.menu-desc-row td {
    border-bottom: 1px solid var(--color-border);
    padding-top: 5px;
    /* Bring description closer to title */
    padding-bottom: 30px;
    /* Space between items */
}

.menu-table tr:last-child td {
    border-bottom: none;
}

.menu-table th,
.menu-table td {
    padding: 18px 10px;
    vertical-align: middle;
}

@media (max-width: 768px) {

    .menu-table th,
    .menu-table td {
        padding: 18px 5px;
        /* Minimize horizontal padding on SP */
    }
}

.menu-main-row th,
.menu-main-row td {
    padding-bottom: 0;
}

/* Category Header */
.menu-category-row th {
    font-size: 1.5rem;
    color: var(--color-accent);
    padding: 40px 10px 15px;
    border-bottom: 2px solid var(--color-accent);
    text-align: left;
    letter-spacing: 0.2em;
    font-family: var(--font-serif);
}

.menu-category-row+.menu-main-row th,
.menu-category-row+.menu-main-row td {
    padding-top: 30px;
}

.menu-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: left;
}

.menu-price {
    text-align: right;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-accent);
    white-space: nowrap;
}

.menu-item-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}


/* ==========================================================================
   Voice / Access / Forms
   ========================================================================== */
/* UPDATE: Voice Slider Styles */
.voice-swiper {
    padding-bottom: 40px;
}

.voice-slide {
    height: auto;
}

.voice-box {
    background: var(--color-bg-light);
    padding: 30px 15px;
    /* Reduced for SP */
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 100%;
    /* Stretch for slider */
    justify-content: center;
}

@media (min-width: 768px) {
    .voice-box {
        padding: 40px;
        /* Original padding */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .voice-box {
        flex-direction: row;
        gap: 40px;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .voice-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

.voice-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
}

.voice-box p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
}

.voice-attr {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.voice-stars {
    color: #ffb400;
    /* Gold for stars */
    margin: 5px 0;
    font-size: 1.1rem;
}

.voice-meta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.btn-view-more {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-family: var(--font-serif);
    transition: all 0.3s var(--easing);
    border-radius: 2px;
}

.btn-view-more:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
}

.voice-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
}

.voice-link {
    display: inline-block;
    color: var(--color-accent-dark);
    margin-top: 15px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-accent-dark);
    transition: all 0.3s var(--easing);
}

.voice-link:hover {
    color: var(--color-accent-light);
    border-bottom-color: var(--color-accent-light);
}

/* UPDATE: Access Map/Table alignment */
.access-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .access-wrapper {
        flex-direction: row;
        gap: 0;
        border: 1px solid var(--color-border);
        align-items: stretch;
        /* Match height */
    }

    .access-info {
        flex: 1;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .access-map-frame {
        flex: 1;
    }
}

.access-table {
    width: 100%;
    border-collapse: collapse;
}

.access-table th,
.access-table td {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

.access-table th {
    width: 25%;
    /* SP width */
    padding-right: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: normal;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .access-table th {
        width: 1%;
        white-space: nowrap;
        padding-right: 40px;
    }
}

.access-table td {
    font-size: 1.05rem;
    line-height: 1.6;
}

.tel-link {
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s var(--easing);
    border-bottom: 1px solid transparent;
}

.tel-link:hover {
    color: var(--color-accent-dark);
}

.access-map-frame iframe {
    height: 100%;
    min-height: 450px;
    display: block;
}

.sns-area br {
    display: none;
}

@media (max-width: 1023px) {
    .sns-area {
        text-align: center;
        margin-top: 20px;
    }
}

.sns-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-right: 10px;
    padding: 10px 20px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.85rem;
    transition: all 0.3s var(--easing);
    background: #fff;
    border-radius: 4px;
}

.sns-btn-dark:hover {
    background: var(--color-bg-section);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.sns-btn-line {
    border-color: #06C755;
    color: #06C755;
}

.sns-btn-line:hover {
    background: #06C755;
    color: #fff;
}

.sns-btn-hp {
    border-color: #FF0000;
    color: #FF0000;
}

.sns-btn-hp:hover {
    background: #FF0000;
    color: #fff;
}

.sns-btn-gn {
    border-color: #FF3300;
    color: #FF3300;
}

.sns-btn-gn:hover {
    background: #FF3300;
    color: #fff;
}

.sns-btn-tb {
    border-color: #FA8C16;
    color: #FA8C16;
}

.sns-btn-tb:hover {
    background: #FA8C16;
    color: #fff;
}

/* ==========================================================================
   CTA / Staff / Footer
   ========================================================================== */
.cta-section {
    text-align: center;
    margin-top: 5em;
    /* UPDATE: Center buttons */
}

.staff-card {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-section) 100%);
    border: 1px solid var(--color-border);
    padding: 30px 15px;
    /* Reduced for SP */
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
    .staff-card {
        padding: 40px;
    }
}

@media (min-width: 768px) {
    .staff-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .staff-img-box {
        width: 200px;
        height: 200px;
        flex-shrink: 0;
    }
}

.staff-img-box img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%);
    border: 3px solid var(--color-border);
    transition: all 0.4s var(--easing);
}

.staff-img-box img:hover {
    filter: grayscale(0%);
    border-color: var(--color-accent);
}

.btn-tel,
.btn-web {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 64px;
    /* geometric buttons */
    position: relative;
    font-weight: 600;
    letter-spacing: 0.12em;
    font-family: var(--font-serif);
    border-radius: 4px;
    /* Slight rounding for premium feel */
}

.cta-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    /* Ensure centering */
}

@media (min-width: 768px) {
    .cta-inner {
        flex-direction: row;
    }
}

.btn-tel {
    border: 1px solid var(--color-border);
    color: var(--color-text);
    background: var(--color-bg-light);
    transition: all 0.33s var(--easing);
    box-shadow: var(--shadow-soft);
}

.btn-tel:hover {
    background: var(--color-bg-section);
    transform: translateY(-2px);
}

.btn-web {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    border: none;
    transition: all 0.3s var(--easing);
}

.btn-web:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 138, 138, 0.2);
}

/* Footer */
footer {
    background: var(--color-bg-section);
    padding: 60px 15px 100px;
    /* Reduced for SP */
    text-align: center;
    border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    footer {
        padding: 60px 20px 100px;
    }
}

.footer-logo {
    font-family: var(--font-serif);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--color-text);
    position: relative;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.copyright {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
}

/* Fixed CTA SP */
.fixed-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 990;
    box-shadow: 0 -5px 25px rgba(138, 138, 138, 0.15);
    /* Soft shadow */
}

.fixed-btn {
    width: 50%;
    text-align: center;
    padding: 18px;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
}

.fixed-btn.tel {
    background: var(--color-bg-light);
    color: var(--color-text);
    border-top: 1px solid var(--color-border);
}

.fixed-btn.web {
    background: var(--color-accent);
    color: #fff;
    border-top: 1px solid var(--color-accent);
}

@media (min-width: 1024px) {
    .fixed-cta {
        display: none;
    }

    footer {
        padding-bottom: 60px;
    }
}

/* Scroll Top */
#scrollToTop {
    position: fixed;
    bottom: 90px;
    /* Raised to be above the fixed CTA on mobile */
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-light);
    /* Clean light bg */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1000;
    /* Higher than fixed-cta (990) */
}

#scrollToTop.show {
    opacity: 1;
}

@media (min-width: 1024px) {
    #scrollToTop {
        bottom: 30px;
        right: 30px;
    }
}

#scrollToTop .arrow {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-primary);
    border-left: 2px solid var(--color-primary);
    transform: rotate(45deg);
    margin-top: 5px;
}