@charset "UTF-8";

/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --color-primary: #333;
    --color-accent: #cf2e2e;
    /* Red from inline styles */
    --color-beige: #f5f5f0;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-main: 'Noto Serif JP', serif;
    --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    margin: 0;
    padding: 0;
    line-height: 1.8;
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.bg-beige {
    background-color: var(--color-beige);
}

.bg-white {
    background-color: var(--color-white);
}

.inner-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}

.flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.h1 h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.line.vertical {
    width: 1px;
    height: 40px;
    background-color: var(--color-primary);
    margin: 0 auto 40px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.header-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mainmenu {
    display: flex;
    gap: 30px;
}

.mainmenu li a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.header .tel {
    text-align: right;
}

.header .tel p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--color-text-light);
}

.header .tel span {
    font-size: 1.2rem;
    font-weight: bold;
    font-family: var(--font-sans);
}

/* ==========================================================================
   Main / Hero Section
   ========================================================================== */
.content.main {
    padding-top: 80px;
    /* Space for fixed header */
    position: relative;
    overflow: hidden;
}

.content.main .inner-box {
    padding: 0;
    max-width: 100%;
}

.content.main .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 200px;
}

.mainimage {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
}

.slide-wrapper,
.slide-item {
    width: 100%;
    height: 100%;
}

.slide-item {
    background-size: cover;
    background-position: center;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.content.about {
    text-align: center;
}

.edoya img {
    width: 120px;
    margin-bottom: 30px;
}

.about-shape {
    margin-bottom: 40px;
}

.about-shape .line {
    width: 1px;
    height: 30px;
    background-color: var(--color-primary);
    margin: 0 auto 10px;
}

.about-shape .shape {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
}

.content.about p {
    font-size: 1.1rem;
    line-height: 2.2;
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu-imgs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-img {
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.menu-img:hover {
    transform: translateY(-5px);
}

.menu-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.menu-img p {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 10px;
}

.menu-img span {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-accent);
}

.menu-img span::after {
    content: '円';
    font-size: 0.8rem;
    margin-left: 2px;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.content.news {
    text-align: center;
}

.content.news p {
    font-size: 1rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.content.contact {
    text-align: center;
}

.address.tel .inner {
    display: inline-block;
    border: 1px solid var(--color-primary);
    padding: 20px 40px;
    background: #fff;
}

.address.tel .txt {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.address.tel .number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: var(--font-sans);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.about-content .logo {
    margin-bottom: 20px;
}

.about-content .logo img {
    height: 40px;
    margin-right: 15px;
}

.about-content .address span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu .button {
    display: block;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    width: 200px;
    transition: background 0.3s;
}

.footer-menu .button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.copyright {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.pagetop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .header-menu {
        flex-direction: column;
        padding: 10px;
    }

    .mainmenu {
        margin-bottom: 10px;
        gap: 15px;
        font-size: 0.8rem;
    }

    .about-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-menu {
        margin-top: 30px;
    }

    .h1 h1 {
        font-size: 1.8rem;
    }
}