@charset "utf-8";


:root {
    
    --color-ink:        #2a2420;
    --color-ink-light:  #6b6560;
    --color-ground:     #faf8f4;
    --color-ground-alt: #f2efe8;
    --color-accent:     #8c7a5e;
    --color-border:     rgba(42, 36, 32, 0.15);

    --fs-xs:   13px;  
    --fs-sm:   15px;  
    --fs-base: 16px;  
    --fs-md:   20px;  
    --fs-lg:   26px;  
    --fs-xl:   34px;  

    --lh-body:    2.0;   
    --lh-heading: 1.5;
    --ls-wide:    0.15em; 
    --ls-body:    0.05em;

    --space-sm:  32px;
    --space-md:  64px;
    --space-lg: 120px;

}

/* 共通 */

body {
    font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    font-size: var(--fs-base);
    line-height: var(--lh-body);
    letter-spacing: var(--ls-body);
    color: var(--color-ink);
    background: var(--color-ground);
    overflow-x: hidden;
}

.section-title {
    font-size: var(--fs-lg);
    letter-spacing: var(--ls-wide);
    color: var(--color-ink);
}

  /* FVキャッチコピー */
.fv-copy {
    font-size: var(--fs-xl);
    letter-spacing: 0.2em; 
}


/* インスタ・予約ボタン共通 */
.instagram-button,
.contact-button {
border: 1px solid var(--color-ink-light); 
color: var(--color-ink);
letter-spacing: var(--ls-wide);
font-size: var(--fs-sm);
transition: background-color 0.4s ease, color 0.4s ease;
}

.instagram-button:hover,
.contact-button:hover {
background: var(--color-accent); 
color: #faf8f4;
border-color: var(--color-accent);
transform: none; 
}


.section-title::after {
opacity: 0.6; 
}

.sp-only {
    display: none;
}

.tap-guide {
    display: none !important;
}

.btn-phone {
    text-decoration: none !important; 
    color: inherit !important;      
}

.btn-phone:link, 
.btn-phone:visited, 
.btn-phone:hover, 
.btn-phone:active {
    text-decoration: none;
    color: inherit;
}

.logo a {
    color: inherit;       
    text-decoration: none;  
}

@media screen and (max-width: 1024px) {

    .container {
        width: 90%;
    }

    nav ul {
        gap: 20px;
    }

    .grid img {
        width: 280px;
    }

    h2 {
        font-size: 24px;
    }

    .fv-copy h2 {
        font-size: 26px;
    }
}


.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section {
    text-align: center;
}

.kodawari-section,
#menu {
    padding-top:    var(--space-md) !important;
    padding-bottom: var(--space-md) !important;
}

.owner-section,
.course-section,
.sake-section,
.info-section,
.contact-section,
#greeting {
padding-top:    var(--space-lg) !important;
padding-bottom: var(--space-lg) !important;
}


@media (max-width: 768px) {
    .kodawari-section,
    .owner-section,
    #menu,
    .course-section,
    .sake-section,
    .info-section,
    .contact-section,
    #greeting {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}


.section-title {
    text-align: center;
    font-size: 24px;
    letter-spacing: var(--ls-wide);
    margin-bottom: var(--space-sm);
    color: var(--color-ink);
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    margin: 40px auto 0;
    background: url("../img/kamon-gray.png") no-repeat center / contain;
    opacity: 0.6;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--color-ink);
    position: relative;
}

.logo::before {
    content: "";
    width: 1.2em;
    height: 1.2em;
    background: url("../img/kamon-gray.png") no-repeat center / contain;
    opacity: 0.7;
    flex-shrink: 0;
}


h2 {
    font-family: "Shippori Mincho", "游明朝", serif;
    font-size: 24px;
    margin-bottom: 40px;
}

p {
    line-height: 1.8;
}


/* =============================
    SP共通
============================= */
@media (max-width: 768px) {

    body {
        font-size: 16px;
    }

    h2 {
        font-size: 22px;
    }


    .sp-only {
        display: block;
    }
    .pc-only {
        display: none;
    }

    .contact-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 16px; 
        font-weight: bold;
        width: 90%;
        max-width: 280px;
        height: 55px !important;
        padding: 0 20px;
        margin: 0 auto 15px;
        box-sizing: border-box;
        text-decoration: none;
        border-radius: 8px; 
        border: 1px solid var(--color-ink-light);
        transition: background-color 0.3s ease;
    }

    .insta-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 16px; 
        font-weight: bold;
        width: 90%;
        max-width: 280px;
        height: 55px !important;
        padding: 0 20px;
        margin: 0 auto 15px;
        box-sizing: border-box;
        text-decoration: none;
        border-radius: 8px; 
        border: 1px solid var(--color-ink-light);
        transition: background-color 0.3s ease;
    }

    
    .btn-phone {
        display: flex !important;
        flex-wrap: wrap;        
        align-items: center;
        justify-content: center;
        
        width: 90%;
        max-width: 280px;
        height: auto !important;
        padding: 12px 10px;
        margin: 0 auto 15px;
        
        font-size: 20px !important;
        font-weight: bold;
        text-decoration: none;
        border-radius: 8px;     
        box-sizing: border-box;
    }

    .contact-section .btn-phone {
        background-color: #fff; 
        color: var(--color-ink);         
        border: 1px solid var(--color-ink) !important; 
    }



    .phone-icon, .footer-phone-icon {
        width: 20px !important;
        height: 20px !important;
        margin-right: 10px !important;
        margin-bottom: 0 !important;
    }

    .tap-guide {
        display: block !important;
        width: 100%;
        text-align: center;
        font-size: 11px;
        font-weight: normal;
        margin-top: 4px;
        opacity: 0.8;
    }

}

.fadein {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fadein.show {
    opacity: 1;
    transform: translateY(0);
}



/* ヘッダー */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 244, 0.85); 
    backdrop-filter: blur(12px);            
    border-bottom: 1px solid var(--color-border); 
    z-index: 10;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--color-ink);
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    opacity: 0.7;
}

.nav-phone-number {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-ink);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.nav-phone-number .nav-phone-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {

    header .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
    }

}

/* =============================
ハンバーガーボタン（共通）
============================= */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--color-ink);
    border-radius: 3px;
    transition: 0.3s;
}

/* 開閉アニメーション */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

.nav-buttons {
    display: none;
}


/* SP */

@media screen and (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 80%;
        background: var(--color-ink);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.4s ease;
        text-align: center;
        padding: 40px 0 60px;
        z-index: 100;
    }

    nav::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("../img/kamon.png");
        background-repeat: repeat;
        background-size: 100px;
        opacity: 0.25;
        z-index: 0;
    }

    .nav>* {
        position: relative;
        z-index: 1;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav a {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
    }

    .nav-phone-number {
        display: none;
    }

    .nav-phone-number img {
        display: none !important;
    }

    /* SP */
    .nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
        padding: 0 30px;
    }

    .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 14px 0;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        color: var(--color-ink);
        background: transparent;
        -webkit-tap-highlight-color: transparent;
        gap: 10px;
    }

    .nav-buttons .btn.phone {
        background-color: #c0bcb2;   
    }

    .nav-buttons .btn.reserve {
        background-color: #ffffff; 
        color: #333333;          
        border: 2px solid #ffffff; 
        font-weight: bold;        
    }


}

#nav {
    z-index: 9999 !important; 
}

.hamburger {
    z-index: 10000 !important; 
}

#nav a {
    position: relative;
    z-index: 10001;
    display: block; 
}

/* FV */

.section-fv {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

.fv-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.fv-copy {
    position: absolute;
    top: 18%; 
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-ink);
    text-align: center;
    font-size: var(--fs-xl);
    letter-spacing: 0.2em;
    line-height: 1.8;
    z-index: 3;
    width: 100%; 
}

.fv-copy h2 {
    font-family: "Shippori Mincho", "游明朝", serif;
    font-size: inherit; 
    margin: 0;
    
    opacity: 0; 
    animation: fvFade 2.5s ease-out 0.8s forwards;
}

@keyframes fvFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);         
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* --- SP--- */
@media screen and (max-width: 768px) {
    .section-fv {
        height: 90vh;
        margin-top: 60px;
    }

    .fv-copy {
        top: 45%; 
        font-size: 26px;
    }
    .fv-copy h2 {
        animation: fvFade 1.0s ease-out 0.1s forwards !important;
        color: #fff !important;
        text-shadow: 0 0 15px rgba(0,0,0,0.5);
    }

    .section-fv {
        margin-top: 40px; 
    }
}

.scroll-down {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: "Shippori Mincho", "游明朝", serif;
    cursor: default;
    z-index: 4;
    color: #fff;
}

.scroll-down .line {
    display: block;
    position: relative;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent 0%, #fff 50%, transparent 100%);
    margin: 0 auto 10px;
    overflow: hidden;
}

.scroll-down .line::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLine 2s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes scrollLine {
    0% {
        top: -100%;
        opacity: 0;
    }

    30% {
        top: 0;
        opacity: 1;
    }

    70% {
        top: 100%;
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Scroll テキスト */
.scroll-down .text {
    display: block;
    font-size: 13px;
    letter-spacing: 0.15em;
    opacity: 0.7;
    animation: textFade 2s infinite ease-in-out;
}

@media screen and (max-width: 768px) {

    .scroll-down {
        bottom: 30px; 
        bottom: max(30px, env(safe-area-inset-bottom));
        color: #fff; 
    }

    .scroll-down .line {
        background: linear-gradient(to bottom, transparent 0%, #e1e0e0 50%, transparent 100%);
    }

    .scroll-down .line::before {
        background: #e1e0e0; 
    }
}




/* ご挨拶 */

.random-kamon {
    position: relative;
    overflow: hidden;
}

#greeting::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: url("../img/kamon.png") no-repeat center / contain;
    opacity: 0.6;
    top: 30%;
    left: 10%;
    z-index: 0;
}

#greeting::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: url("../img/kamon.png") no-repeat center / contain;
    opacity: 0.5;
    bottom: 5%;
    right: 10%;
    z-index: 0;
}

#greeting>.container {
    position: relative;
    z-index: 1;
}

#greeting {
    position: relative;
    margin-top: -30px;
    background-color: #fff;
    z-index: 3;
    min-height: 300px;
}


@media (max-width: 768px) {
    #greeting::before {
        width: 90px;
        height: 90px;
        opacity: 0.04;
    }

    #greeting::after {
        width: 120px;
        height: 120px;
        opacity: 0.03;
    }
}


/* こだわりセクション */

.kodawari-section {
    max-width: 1200px;
}

.kodawari-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

/* 画像 */
.kodawari-image {
    flex: 1;
    margin-left: -100px;
}


.kodawari-image img {
    width: 40%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.kodawari-textbox {
    position: absolute;
    right: 0%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    padding: 40px 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 420px;
    transform: translateY(20px);
}


.kodawari-textbox p {
    font-size: 16px;
    color: var(--color-ink);
    line-height: 1.8;
}

.kodawari-container.reverse {
    flex-direction: row-reverse;
}

.kodawari-container.reverse .kodawari-image {
    margin-left: 0;
    margin-right: -100px;
}

.kodawari-container.reverse .kodawari-textbox {
    left: 0%;
    right: auto;
}


/* スマホ対応 */
@media (max-width: 768px) {

.kodawari-section {
    width: 100%;
}

.kodawari-container,
.kodawari-container.reverse {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}

.kodawari-image,
.kodawari-container.reverse .kodawari-image {
    width: 90vw !important; 
    margin: 0 !important;
}

.kodawari-container:nth-of-type(odd) .kodawari-image {
    align-self: flex-start;
    margin-left: calc(50% - 50vw) !important;
}

.kodawari-container:nth-of-type(even) .kodawari-image {
    align-self: flex-end;
    margin-right: calc(50% - 50vw) !important;
}

.kodawari-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 0; 
}


.kodawari-textbox,
.kodawari-container.reverse .kodawari-textbox {
    position: relative;
    width: 90%;         
    background: none;   
    box-shadow: none;   
    backdrop-filter: none;
    padding: 15px 10px;  
    margin-top: 10px;    
    transform: none !important;
}

.kodawari-container:nth-of-type(odd) .kodawari-textbox,
    .kodawari-container:nth-of-type(even) .kodawari-textbox {
        position: relative;
        border: none !important;
        text-align: left;
        width: 90%;
        margin-top: 10px;
    }

    .kodawari-container:nth-of-type(odd) .kodawari-textbox {
        align-self: flex-end;
        padding-left: 15px; 
    }
    .kodawari-container:nth-of-type(odd) .kodawari-textbox::before {
        content: "";
        position: absolute;
        top: 10px;         
        left: 0;
        width: 1px;
        height: 50px;
        background: #CCC;
    }

    .kodawari-container:nth-of-type(even) .kodawari-textbox {
        align-self: flex-start;
        padding-right: 15px; 
    }
    .kodawari-container:nth-of-type(even) .kodawari-textbox::before {
        content: "";
        position: absolute;
        top: 10px;
        right: 0;
        width: 1px;
        height: 50px;
        background: #CCC;
    }


    .kodawari-textbox p {
        font-size: 15px;
        line-height: 2.2;
        text-align: justify;
        word-break: break-all;
    }

    #concept {
        padding-top: 50px !important;   
        padding-bottom: 40px !important; 
    }

    .kodawari-section {
        margin-bottom: 0 !important;
    }
    
    .kodawari-container:last-of-type {
        margin-bottom: 0 !important;
    }

}


/* メニューセクション */

.menu-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;   
}

.menu-image img {
    width: 90%;
    height: 500px;
    object-fit: cover;
    margin-top: 60px;
    margin-bottom: 80px;
}

.course-section {
    background-color: var(--color-ground-alt) !important;
    padding: 60px;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.course-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.course-image {
    flex: 0 0 400px;
}

.course-content {
    flex: 1;
    max-width: 600px;
}


/* 各コースブロック */
.course-block {
    margin-bottom: 60px;
}

.course-content h3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--color-ink);
    margin-bottom: 20px;
    position: relative;
}

.course-content h3::before {
    content: "";
    width: 1em;
    height: 1em;
    background: url("../img/kamon-gray.png") no-repeat center / contain;
    opacity: 0.6;
    flex-shrink: 0;
}

@media (max-width: 768px) {

    .course-content h3 {
        font-size: 20px;
        gap: 8px;
    }

    .course-content h3::before {
        opacity: 0.5;
    }

    .items-title {
        margin-top: 50px;
    }
    
}

.course-block .desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.course-block .desc2 {
    margin-top: 20px;
}

.course-block .desc3 {
    margin-top: 20px;
}

.course-block .price {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-ink);
    margin-top: 0;
}

.items-title {
    font-size: var(--fs-md);     
    font-family: "Shippori Mincho", "游明朝", serif;
    font-weight: bold;
    margin-top: 80px;
    text-align: center;
}

.food-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}


.food-item {
    flex: 1;
    min-width: 320px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.food-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.food-item h3 {
    font-size: 20px;
    margin: 20px 0 10px;
}

.food-item p {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 20px;
}

.items-desc {
    text-align: center;
    margin-top: 80px;
}

/* SP対応 */
@media (max-width: 768px) {

    .menu-image {
        display: none;
    }

    .menu-lead {
        width: 90%;          
        margin: 0 auto 40px; 
        line-height: 2;      
        font-size: 15px;
        text-align: center;
    }

    .section .container {
        padding: 0 15px;     
    }

    .course-section {
        width: 100%;       
        margin-left: 0;    
        margin-right: 0;  
        padding: 40px 15px;  
        box-sizing: border-box;
        background-color: var(--color-ground-alt);
    }

    .course-content {
        width: 100%;
        text-align: left;
    }

    .course-container {
        flex-direction: column;
        gap: 30px;
    }

    .course-image {
        flex: none;
        width: 100%;
        margin: 0;
    }

    .course-image img {
        width: 100%;
        height: 400px; 
        object-fit: cover;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }


    .course-block {
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px dotted #ccc; 
    }
    

    .food-container {
        display: flex;
        flex-direction: row; 
        flex-wrap: nowrap;   
        overflow-x: auto;    
        scroll-snap-type: x mandatory; 
        gap: 15px;
        padding: 20px 0;
        -webkit-overflow-scrolling: touch; 
}

    .food-item {
        flex: 0 0 85%; 
        scroll-snap-align: center; 
        min-width: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
    }


    .food-container::-webkit-scrollbar {
        display: none;
    }

    .food-item img {
        height: 220px; 
    }

    .food-item p {
        padding: 15px;
        font-size: 14px; 
    }

    #menu {
        padding-top: 50px !important;    
        padding-bottom: 40px !important; 
    }

    #menu .section-title {
        margin-top: 0;
        margin-bottom: 20px; 
    }
}



/* お酒 */
.sake-section {
    text-align: center;
    background-color: #fff;
}


.sake-bg {
    background: url("../img/sake.jpg") no-repeat center center;
    background-size: contain;
    position: relative;
    padding: 80px 20px;
    color: var(--color-ink);
    text-align: center;
    overflow: hidden;
    margin-top: 50px;
}


.sake-text {
    background: rgba(252, 252, 252, 0.561);
    display: inline-block;
    padding: 30px 50px;
    position: relative;
    z-index: 2;
}

.sake-text {
    backdrop-filter: blur(4px);
}


.sake-bg h3,
.sake-bg p {
    position: relative;
    z-index: 2;
}

.sake-bg h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.sake-bg p {
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .sake-bg {
        background-size: cover; 
        background-position: center;
        margin-top: 40px;
        padding: 60px 20px; 
        width: 100%;      
        margin-left: 0;   
        box-sizing: border-box; 
    }

    .sake-text {
        width: 90%; 
        padding: 20px 20px; 
        background: rgba(255, 255, 255, 0.4); 
    }

    .sake-bg h3 {
        font-size: 1.25rem; 
        margin-bottom: 15px;
    }

    .sake-bg p {
        font-size: 0.9rem; 
        text-align: left; 
        line-height: 1.7;
    }


}



/* オーナーセクション */
.owner-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.owner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.owner-textbox {
    flex: 1;
}

.owner-message {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-ink);
    margin-bottom: 30px;
}



.owner-subtext {
    font-size: 15px;
    color: var(--color-ink-light);
}

.owner-image {
    flex: 1;
    text-align: right;
}

.owner-image img {
    width: 100%;
    height: auto;
    max-width: 360px;
    object-fit: cover;
    margin-top: 30px;
}

.owner-quote {
    margin-bottom: 40px; 
}

/* SP */
@media (max-width: 768px) {
    .owner-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    }

    .owner-textbox {
    display: contents;
    }

    .owner-message {
    order: 1;
    margin: 20px 0 20px !important;
    padding: 0 10px;
    }

    .owner-quote {
    order: 2;
    margin-top: 0;
    margin-bottom: 10px;
    }

    .owner-image {
    order: 3;
    margin: 0 0 20px 0 !important;
    }

    .owner-image img {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    }

    .insta-btn {
    order: 4;
    margin: 10px auto;
    display: inline-block;
    }

    .owner-subtext {
    order: 5;
    margin-bottom: 40px;
    margin-top: 0 !important;
    }
}


/* 店舗情報 */

.info-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.info-container-bg {
    position: relative;
    background: url("../img/information.jpg") center center / cover no-repeat;
    padding: 60px 0;
    color: var(--color-ink);
    margin-top: 60px;
}


.info-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 50px;
    padding: 0 40px;
}

/* MAP部分 */
.info-map {
    max-width: 400px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
}

/* 店舗情報 */
.info-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shop-name {
    font-size: 24px;             
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
    color: var(--color-ink);
    text-align: left;
}



/* リスト */
.shop-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-info li {
    display: flex;
    align-items: baseline;
    text-align: left;
    font-size: 16px;
    color: var(--color-ink);
    line-height: 1.8;
    padding: 10px 0;
    border-bottom: 1px solid rgba(37, 37, 37, 0.4);
}

.shop-info .label {
    display: inline-block;
    width: 90px;
    font-weight: 500;
    color: var(--color-ink);
}

.shop-info .value {
    flex: 1;
}


/* SP*/
@media screen and (max-width: 768px) {
    
    .info-container-bg {
        background: var(--color-ground-alt) ;
        padding: 60px 0;
    }

    .info-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px; 
    }

    .info-map img {
        box-shadow: none; 
        border: 1px solid #dcdcdc; 
    }

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

/* ご予約 */
.contact-section {
    padding-top: 100px;
    padding-bottom: 80px; 
    background: var(--color-ground-alt);
    text-align: center;
}

/* 内容全体 */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* 説明文 */
.contact-text {
    font-size: 18px;
    color: var(--color-ink);
    line-height: 1.8;

}

/* 電話番号 */
.phone-number {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-ink);
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.phone-number .phone-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}


/* 受付時間 */
.reception-time {
    font-size: 15px;
    color: var(--color-ink-light);
    margin-bottom: 40px;
}

/* ボタン */
.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 280px; 
    height: 60px;
    background-color: #4b443f;
    color: #fff; 
    text-decoration: none;
    font-size: 18px;
    border: 1px solid transparent; 
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #fff;
    border: 1px solid var(--color-ink);
    color: var(--color-ink);
    transform: translateY(-3px);
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 280px;
    height: 60px;
    background-color: #fff; 
    color: var(--color-ink);
    border: 1px solid var(--color-ink-light);
    font-size: 18px;
    text-decoration: none;
}

.phone-icon {
    width: 24px;
    height: 24px;
}

/* SP */
@media (max-width: 768px) {

    .contact-section {
        padding-top:var(--space-sm);
        padding-bottom: 60px; 
        background: none;
    }

    .phone-icon {
        width: 20px;
        height: 20px;
        margin: 0; /
    }

    .contact-button {
        display: inline-flex;
        flex-direction: row;      
        align-items: center;
        justify-content: center;              
        text-decoration: none;
        width: 90%; 
        max-width: 300px;
        font-size: 16px; 
        padding: 0 10px; 
    }
    
    .btn-phone {
        width: 90%;
        max-width: 300px;
        font-size: 16px;
    }

    .contact-text {
        font-size: 16px;
        color: var(--color-ink);
        line-height: 1.6
    }

}



/* フッター */
.footer {
    padding-top: 80px;    
    padding-bottom: 60px;
    background: var(--color-ink);
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/kamon.png");
    background-repeat: repeat;
    background-size: 160px;
    opacity: 0.15; 
    z-index: 0;
}

.footer * {
    position: relative;
    z-index: 1;
}

.footer-logo-area {
    margin-top: 0;    
    margin-bottom: 30px;
}

.footer-logo {
    width: 140px; 
    height: auto;
    border-radius: 50%;
}

.footer-inner {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-left, .footer-right {
    text-align: left;
}

.footer-name {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-address {
    line-height: 1.8;
    font-size: 15px;
}

.footer-contact {
    font-size: 14px;
    margin-bottom: 10px;
}


.footer-copy {
    font-size: var(--fs-xs);
}

.insta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    color: var(--color-ink);            
    border: 1px solid var(--color-ink-light); 
    padding: 12px 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.insta-btn:hover {
    background: var(--color-ink);
    transform: translateY(-3px);
    color: #fff;
}

/* --- SP--- */
@media (max-width: 768px) {
    .footer {
        padding-top:var(--space-sm);   
    }

    .footer-logo {
        width: 100px; 
    }

    .footer-inner {
        flex-direction: column; 
        gap: 30px; 
        align-items: center; 
        margin-bottom: 40px;
    }

    .footer-left, .footer-right {
        text-align: center; 
    }

    .footer-phone-number {
        justify-content: center; 
        margin-bottom: 20px;
    }

    .footer-contact {
        margin-top: 10px; 
    }

    .footer-copy {
        margin-top: 40px;
        font-size: 12px;
    }

}

.footer-note {
    margin-top: 20px;
    color: #ddd;
    font-size: 14px;
    text-align: center;
}

.page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.page-top.active {
    opacity: 1;
    visibility: visible;
}

.page-top a,
.page-top a:visited {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.7); 
    color: var(--color-ink);                          
    text-decoration: none;
    font-size: 12px;
    font-family: "Shippori Mincho", serif;
    border: 1px solid rgba(51, 51, 51, 0.3);
    border-radius: 50%;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    -webkit-tap-highlight-color: transparent;
}

.page-top a:hover {
    background: rgba(51, 51, 51, 0.8); 
    color: #fff;                      
    border-color: var(--color-ink);
}

.page-top a:focus,
.page-top a:active {
    background: rgba(255, 255, 255, 0.7) !important; 
    color: var(--color-ink) !important;                         
    outline: none;                                 
}

.page-top a:hover {
    background: rgba(51, 51, 51, 0.8) !important;
    color: #fff !important;
}

@media screen and (max-width: 768px) {
    .page-top {
        right: 15px;
        bottom: 15px;
    }
    .page-top a {
        width: 45px;
        height: 45px;
    }
}


#concept {
    padding-top: 120px !important;    
    padding-bottom: 20px !important;  
}

#concept .section-title {
    margin-bottom: 20px !important;
}


@media (max-width: 768px) {
    #concept {
        padding-top: 90px !important;   
        padding-bottom: 20px !important;
    }
    
    #concept .section-title {
        margin-bottom: 20px !important;
    }
}
