@charset "UTF-8";

/* Reset & Variables */
:root {
    --text-color: #f5f5f5;
    --bg-color: #0b0c10;
    --accent-color: #c5a059; /* Gold */
    --accent-color-hover: #e0b462;
    --font-main: 'Noto Serif JP', serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

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

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

img, svg {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    color: var(--accent-color);
}


.section-title span {
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 12, 16, 0.9);
    backdrop-filter: blur(5px);
    z-index: 100;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s ease;
}

.header.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    font-size: 1rem;
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 200;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    left: 0;
    transition: all 0.3s;
}

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

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

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

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

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(11, 12, 16, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 199;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-list li {
    margin: 30px 0;
}

.mobile-nav-list a {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* First View */
.fv {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 769px) {
    .fv {
        height: auto;
        display: flex;
        flex-direction: column;
    }
}




.fv-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media screen and (min-width: 769px) {
    .fv-image-container {
        position: relative;
        height: auto;
    }
}


.fv-image-container .fv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 769px) {
    .fv-image-container .fv-img {
        width: 100%;
        height: auto;
        object-fit: unset;
    }
}





/* .fv-left-overlay is removed to satisfy user request */
.fv-left-overlay {
    display: none !important;
}




/* FV Swiper Slides */
.fv-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 769px) {
    .fv-swiper .swiper-slide {
        height: auto;
    }
}


.fv-swiper picture {
    display: block;
    width: 100%;
    height: 100%;
}

/* FV Bottom Left Menu & Contact */
.fv-bottom-left {
    position: absolute;
    bottom: 50px;
    left: 5%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fv-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fv-nav a {
    display: flex;
    align-items: baseline;
    gap: 15px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 2px 2px 5px rgba(0, 0, 0, 0.8);
    transition: color 0.3s;
}

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

.fv-nav .jp {
    font-size: 1.1rem;
    font-weight: 700;
}

.fv-nav .en {
    font-size: 0.85rem;
    opacity: 0.8;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fv-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.fv-tel {
    display: flex;
    flex-direction: column;
}

.tel-label {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.tel-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
    letter-spacing: 0.05em;
    display: flex;
    align-items: baseline;
}

.tel-text {
    font-size: 1.2rem;
    margin-right: 8px;
}

.line-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #06C755;
    color: #fff;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 4px;
    text-shadow: none;
    text-decoration: none;
    width: max-content;
    transition: opacity 0.3s;
    font-size: 0.95rem;
    margin-top: 5px;
}

.line-btn:hover {
    opacity: 0.8;
    color: #fff;
}

.line-icon {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    margin-right: 8px;
}

.fv-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
}

.fv-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.5s forwards 0.5s;
}

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

/* About */
.about {
    background-image: url('../img/aboutbackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-swiper {
    width: 100%;
    height: 550px;
    border-radius: 8px;
    overflow: hidden;
}

.about-swiper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1.5;
}

.about-text {
    flex: 1;
}

.about-lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--accent-color);
    line-height: 1.6;
}

.about-text p {
    font-size: 1rem;
    color: #ccc;
    line-height: 2;
}

/* Service */
.service {
    background-image: url('../img/servicebackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #111;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-img {
    width: 100%;
    height: auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.service-image {
    flex: 1.8;
    position: relative;
}

.service-content {
    flex: 1;
}

.service-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    display: block;
    margin-bottom: -15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-title {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-desc {
    color: #333;
    font-size: 1rem;
    line-height: 1.9;
}

/* Menu */
.menu-box-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    color: #333;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    text-align: center;
}

.menu-decor {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
}
.menu-decor.top-left {
    top: 0; left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.menu-decor.top-right {
    top: 0; right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.menu-tax-notice {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.menu-main-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0b6845;
    line-height: 1.3;
    margin-bottom: 20px;
}
.menu-main-price .amount {
    font-size: 3.5rem;
    margin: 0 5px;
}
.menu-main-price .unit {
    font-size: 2rem;
}
.menu-highlight {
    font-size: 2.2rem;
    font-weight: bold;
    color: #c9171e;
    margin: 30px 0 20px;
}
.menu-sub-notice {
    font-size: 1rem;
    font-weight: bold;
}
.menu-badge {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    top: 50%;
    transform: translateY(-50%);
}
.badge-left {
    left: -65px;
    background-color: #c9171e;
}
.badge-right {
    right: -65px;
    background-color: #0b6845;
}

/* Voice */
.voice {
    background-image: url('../img/servicebackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.voice-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.voice-item {
    background-color: rgba(11, 12, 16, 0.85);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
}
.voice-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}
.voice-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--accent-color);
}
.voice-star {
    color: #ffb400;
}
.voice-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ddd;
}
.voice-more {
    text-align: center;
    margin-top: 50px;
}
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: #0b0c10;
    font-weight: bold;
    border-radius: 30px;
    transition: transform 0.3s, opacity 0.3s;
}
.btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Access */
.access-inner {
    display: flex;
    gap: 40px;
}
.access-map {
    flex: 1;
    min-height: 350px;
    border-radius: 8px;
    overflow: hidden;
}
.access-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.access-content {
    flex: 1;
    background: rgba(11, 12, 16, 0.6);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
}
.access-list {
    display: flex;
    flex-wrap: wrap;
    line-height: 2;
    font-size: 1.1rem;
}
.access-list dt {
    width: 30%;
    font-weight: bold;
    color: var(--accent-color);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 15px 0;
}
.access-list dd {
    width: 70%;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 15px 0;
}
.access-list a:hover {
    color: var(--accent-color-hover);
}

/* Footer */
.footer {
    background-color: #050608;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
}

/* SP Fixed Nav */
.sp-fixed-nav {
    display: none;
}

/* Page Top Button */
.page-top {
    position: fixed;
    right: 20px;
    bottom: -60px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: #0b0c10;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 100;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.page-top.show {
    bottom: 30px;
    opacity: 0.9;
    visibility: visible;
}

.page-top:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .fv {
        height: 85vh;
    }

    .fv-title {
        font-size: 2rem;
    }

    .fv-bottom-left {
        display: none;
    }

    .logo {
        font-size: 1.1rem;
    }

    .about-inner {
        flex-direction: column;
        gap: 40px;
    }

    .about-lead {
        font-size: 1.3rem;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .section {
        padding: 60px 0;
    }

    .access-inner {
        flex-direction: column;
    }

    .about-swiper {
        height: 250px;
    }

    .menu-main-price .amount {
        font-size: 2.4rem;
    }

    .menu-main-price .unit {
        font-size: 1.4rem;
    }

    .menu-highlight {
        font-size: 1.6rem;
    }

    .menu-badge {
        position: static;
        width: 100%;
        height: auto;
        border-radius: 8px;
        padding: 15px;
        margin-top: 15px;
        transform: none;
        font-size: 1rem;
    }

    .badge-left, .badge-right {
        left: auto;
        right: auto;
    }

    .menu-box-wrapper {
        padding: 30px 15px;
    }

    .access-map {
        flex: none;
        width: 100%;
        height: 450px;
        min-height: 450px;
    }

    /* SP Fixed Nav */
    body {
        padding-bottom: 60px;
    }

    .sp-fixed-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    }
    .sp-nav-btn {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        gap: 8px;
    }
    .sp-tel {
        background-color: #111;
        color: var(--accent-color);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    .sp-line {
        background-color: #06C755;
    }
    .sp-nav-icon {
        font-size: 1.2rem;
    }
    .sp-nav-text {
        font-size: 0.95rem;
    }
    .page-top.show {
        bottom: 80px;
    }
}
