@charset "UTF-8";

/* Variables */
:root {
    --color-black: #111111;
    --color-brown: #3e2723;
    --color-dark-brown: #2b1810;
    --color-beige: #F4EEDC;
    --color-yellow: #E6A817;
    --color-red: #C82A2A;
    --font-en: 'Anton', sans-serif;
    --font-ja: 'Noto Sans JP', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ja);
    font-size: 16px;
    color: var(--color-beige);
    background-color: var(--color-black);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

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

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

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

.section {
    padding: 100px 0;
}

/* Section Title */
.section-title {
    font-family: var(--font-en);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: var(--color-yellow);
    text-transform: uppercase;
}

.section-title span {
    display: block;
    font-family: var(--font-ja);
    font-size: 1.25rem;
    font-weight: 700;
    color: inherit;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(17, 17, 17, 0.9);
    padding: 15px 0;
}

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

.logo {
    font-family: var(--font-en);
    font-size: 1.8rem;
    color: var(--color-yellow);
    text-shadow: 2px 2px 0 var(--color-red);
}
.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-text {
    color: var(--color-yellow);
}
.logo img {
    height: 40px;
    vertical-align: middle;
}

.hamburger {
    display: none;
}
.global-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.global-nav a {
    font-family: var(--font-en);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.global-nav a:hover {
    color: var(--color-yellow);
}

/* FV */
.fv {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    overflow: hidden;
    padding-top: 70px;
}

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

.fv-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

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

.sp-only {
    display: none;
}

.fv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 1;
}

.fv-left {
    flex: 1;
    align-self: center;
    max-width: 650px;
    padding-bottom: 40px;
}

.fv-catch {
    display: inline-block;
    background-color: rgba(17, 17, 17, 0.9);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 10px 30px;
    transform: skew(-10deg);
    margin-bottom: 15px;
}

.fv-catch-inner {
    display: inline-block;
    transform: skew(10deg);
}

.fv-catch-inner span {
    color: var(--color-yellow);
}

.fv-title {
    font-family: var(--font-en);
    font-size: clamp(5rem, 8vw, 8.5rem);
    color: var(--color-beige);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    text-shadow: 
        -2px -2px 0 #7C1818,  
         2px -2px 0 #7C1818,
        -2px  2px 0 #7C1818,
         2px  2px 0 #7C1818,
         5px  5px 0 #3e2723;
}

.fv-subtitle {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.fv-subtitle span {
    color: #fff;
    font-size: 1.1em;
}

.fv-info-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border: 1px solid #fff;
    padding: 15px 20px;
    margin-bottom: 20px;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
}

.fv-info-item {
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fv-info-divider {
    width: 1px;
    height: 20px;
    background-color: #999;
    transform: rotate(15deg);
}

.fv-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
}

.fv-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 25px;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 4px;
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}

.fv-btn i:first-child {
    margin-right: 10px;
}

.fv-btn .arrow {
    position: absolute;
    right: 20px;
}

.fv-btn-menu {
    background-color: var(--color-yellow);
    color: #000;
    border: 2px solid var(--color-yellow);
}

.fv-btn-menu:hover {
    background-color: rgba(230, 168, 23, 0.8);
}

.fv-btn-schedule {
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    border: 2px solid #fff;
}

.fv-btn-schedule:hover {
    background-color: #fff;
    color: #000;
}

.fv-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50vw;
    max-width: 600px;
    z-index: 0;
}

.fv-owner-img {
    width: 100%;
    height: auto;
    display: block;
    transform-origin: bottom;
}

/* About */
.about {
    background-color: var(--color-beige);
    color: var(--color-brown);
    position: relative;
    overflow: hidden;
}

.paw-mark {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(20%, -50%) rotate(15deg);
    font-size: 30rem;
    color: rgba(62, 39, 35, 0.05);
    z-index: 0;
    pointer-events: none;
}

.access .paw-mark {
    color: rgba(255, 255, 255, 0.12);
}

.about .section-title {
    color: var(--color-red);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--color-yellow);
    z-index: 0;
}

.about-img img {
    position: relative;
    z-index: 1;
    box-shadow: 10px 10px 0 var(--color-brown);
}

.about-text {
    flex: 1;
}

.about-text .desc {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Service */
.service {
    background-color: var(--color-black);
    background-image: radial-gradient(var(--color-brown) 1px, transparent 1px);
    background-size: 20px 20px;
}

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

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

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

.service-img {
    flex: 1.5;
    position: relative;
    z-index: 1;
}

.service-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.service-item:not(.reverse) .service-img img {
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
}
.service-item:not(.reverse) .service-img::before {
    content: "";
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    background-color: var(--color-beige);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
    z-index: -1;
}

.service-item.reverse .service-img img {
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
}
.service-item.reverse .service-img::before {
    content: "";
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    background-color: var(--color-beige);
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .service-img {
        flex: 1;
    }
}

.service-content {
    flex: 1;
}

.service-num {
    font-family: var(--font-en);
    font-size: 5rem;
    color: var(--color-yellow);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 var(--color-red);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--color-beige);
    border-bottom: 2px solid var(--color-red);
    padding-bottom: 10px;
    display: inline-block;
}

/* Menu */
.menu {
    background-color: var(--color-dark-brown);
}

.menu .section-title {
    color: var(--color-beige);
}

.menu-inner {
    max-width: 900px;
    margin: 0 auto;
}

.menu-cat-title {
    font-family: var(--font-en);
    font-size: 2.5rem;
    color: var(--color-yellow);
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px dashed var(--color-yellow);
    padding-bottom: 10px;
}

.menu-recommend {
    margin-bottom: 60px;
}

.menu-item-large {
    background-color: var(--color-beige);
    color: var(--color-brown);
    border: 4px solid var(--color-red);
    padding: 20px;
    border-radius: 10px;
}

.menu-item-large .menu-img {
    margin-bottom: 20px;
}

.menu-name {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.menu-price {
    font-family: var(--font-en);
    font-size: 2rem;
    color: var(--color-red);
    margin-bottom: 15px;
}

.menu-flex {
    display: flex;
    gap: 50px;
}

.menu-col {
    flex: 1;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(244, 238, 220, 0.2);
    padding: 15px 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-list .price {
    font-family: var(--font-en);
    color: var(--color-yellow);
    font-size: 1.3rem;
}

/* Owner */
.owner {
    background-color: var(--color-beige);
    color: var(--color-brown);
}

.owner .section-title {
    color: var(--color-red);
}

.owner-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse;
}

.owner-img {
    flex: 1;
    position: relative;
    text-align: center;
}

.owner-img img {
    border-radius: 50%;
    border: 8px solid var(--color-yellow);
    box-shadow: 10px 10px 0 var(--color-red);
    position: relative;
    z-index: 1;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.owner-text {
    flex: 1;
}

.owner-text .desc {
    font-weight: 700;
    margin-bottom: 30px;
}

.owner-sign {
    font-family: var(--font-en);
    font-size: 4.5rem;
    color: var(--color-yellow);
    text-shadow: 2px 2px 0 var(--color-red);
    position: absolute;
    bottom: -5%;
    left: -10%;
    z-index: 2;
    transform: rotate(15deg);
}

/* Access */
.access {
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.access-inner {
    display: flex;
    gap: 50px;
    background-color: var(--color-dark-brown);
    padding: 40px;
    border: 4px solid var(--color-yellow);
    position: relative;
    z-index: 1;
}

.access-info {
    flex: 1;
}

.access-info dl {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(244, 238, 220, 0.2);
}

.access-info dt,
.access-info dd {
    padding: 20px 0;
    border-bottom: 1px solid rgba(244, 238, 220, 0.2);
}

.access-info dt {
    width: 30%;
    font-weight: 700;
    color: var(--color-yellow);
}

.access-info dd {
    width: 70%;
    font-weight: 700;
}

.access-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-beige);
    color: #999;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid var(--color-red);
}

.footer .copy {
    font-family: var(--font-en);
    color: var(--color-yellow);
    letter-spacing: 0.1em;
}

/* Instagram App Icon */
.ig-btn i {
    font-size: 3.5rem;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}
.ig-btn:hover i {
    transform: scale(1.1);
}

/* Page Top Button */
.page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-yellow);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 90;
}
.page-top.is-show {
    opacity: 1;
    visibility: visible;
}
.page-top:hover {
    transform: translateY(-5px);
    opacity: 1;
}

/* Animations */
.js-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.js-fade.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* Fixed Bottom Bar */
.fixed-bottom-bar {
    display: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .logo-text {
        display: none;
    }
    body {
        font-size: 14px;
        padding-bottom: 60px;
    }
    .owner-sign {
        left: 0%;
    }
    .sp-only {
        display: inline;
    }
    .fv {
        height: auto;
        min-height: 100vh;
        padding-top: 60px;
        flex-direction: column;
    }
    .fv-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 2;
    }
    .fv-left {
        align-self: flex-start;
        padding-top: 30px;
        padding-bottom: 20px;
        text-align: left;
    }
    .fv-catch {
        font-size: 1.1rem;
        padding: 6px 20px;
    }
    .fv-title {
        font-size: clamp(4.5rem, 20vw, 7rem);
        line-height: 0.95;
        margin-bottom: 20px;
    }
    .fv-subtitle {
        font-size: 1.3rem;
        position: relative;
        display: inline-block;
        padding-bottom: 5px;
    }
    .fv-subtitle::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--color-yellow);
        border-radius: 2px;
    }
    .fv-info-box {
        flex-direction: column;
        align-items: flex-start;
        border: none;
        background: transparent;
        padding: 0;
        width: auto;
        gap: 10px;
        margin-bottom: 25px;
    }
    .fv-info-item {
        border: 1px solid #fff;
        background-color: rgba(0,0,0,0.8);
        padding: 8px 15px;
        border-radius: 5px;
        font-size: 1rem;
    }
    .fv-info-divider {
        display: none;
    }
    .fv-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
        position: relative;
        z-index: 3;
    }
    .fv-btn {
        width: 100%;
        min-width: 280px;
    }
    .fv-right {
        position: absolute;
        bottom: 150px;
        right: -25%;
        width: 90%;
        max-width: 400px;
        z-index: 1;
        margin-top: 0;
    }
    .about-flex,
    .service-item,
    .service-item.reverse,
    .owner-flex,
    .access-inner {
        flex-direction: column;
        gap: 30px;
    }
    .menu-flex {
        flex-direction: column;
        gap: 30px;
    }
    .access-info dt {
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
    }
    .access-info dd {
        width: 100%;
        padding-top: 10px;
    }
    .section-title {
        font-size: 3rem;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 101;
    }
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--color-beige);
        transition: all 0.3s ease;
    }
    .hamburger.is-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.is-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .global-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(17, 17, 17, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 100;
    }
    .global-nav.is-active {
        opacity: 1;
        visibility: visible;
    }
    .global-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .fixed-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 102;
    }
    .fixed-bottom-bar a {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-weight: bold;
        font-size: 16px;
        color: #fff;
    }
    .btn-tel {
        background-color: var(--color-black);
    }
    .btn-ig {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }
    .page-top {
        bottom: 80px;
    }
}
