/* ===================================
RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Noto Sans JP",sans-serif;
    font-size:16px;
    color:#2f2925;
    background:#faf8f5;
    line-height:1.9;
    letter-spacing:.05em;
}

img{
    display:block;
    width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

/* ===================================
SECTION
=================================== */

section{
    padding:120px 0;
    overflow:hidden;
}

/* ===================================
TYPOGRAPHY
=================================== */

.section-title{
    margin-bottom:70px;
}

.section-title span{
    display:block;
    margin-bottom:18px;
    font-size:13px;
    letter-spacing:.25em;
    color:#9d8d7b;
}

/* 見出しを統一 */

.section-title h2,
.ordercake-content h3,
.round-content h3,
.gift-content h2,
.kitchencar-content h2{

    font-size:clamp(30px,3vw,42px);
    font-weight:300;
    line-height:1.4;

}

/* 本文を統一 */

p{

    font-size:16px;
    line-height:2;
    color:#666;

}

/* ===================================
BUTTON
=================================== */

.btn{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    padding:18px 42px;

    border:1px solid #2f2925;
    border-radius:999px;

    font-size:15px;
    letter-spacing:.08em;

    position:relative;
    overflow:hidden;

    transition:.35s;

    z-index:1;

}

.btn::before{

    content:"";

    position:absolute;
    inset:0;

    background:#2f2925;

    transform:translateX(-100%);
    transition:.35s;

    z-index:-1;

}

.btn:hover::before{

    transform:translateX(0);

}

.btn:hover{

    color:#fff;

}

/* ===================================
HEADER
=================================== */

#header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    transition:.35s;

}

#header.active{

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

#header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:90px;

}

.logo img{

    width:170px;

}

.pc-nav ul{

    display:flex;

    gap:45px;

}

.pc-nav a{

    position:relative;

    font-size:13px;

    letter-spacing:.18em;

}

.pc-nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:1px;

    background:#2f2925;

    transition:.3s;

}

.pc-nav a:hover::after{

    width:100%;

}

/* ===================================
HAMBURGER
=================================== */

.hamburger{

    display:none;

    background:none;
    border:none;

    cursor:pointer;

}

.hamburger span{

    display:block;

    width:28px;
    height:2px;

    margin:6px 0;

    background:#2f2925;

}

/* ===================================
HERO
=================================== */

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.hero-slider{

    position:absolute;

    inset:0;

}

.hero-slider img{

    width:100%;
    height:100%;

    object-fit:cover;

    animation:zoom 12s linear infinite;

}

@keyframes zoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.25);

    z-index:1;

}

.hero-copy{

    position:relative;

    z-index:2;

    width:min(1200px,90%);
    height:100%;

    margin:auto;

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.hero-sub{

    color:#fff;

    font-size:15px;

    letter-spacing:.25em;

    margin-bottom:25px;

}

.hero h1{

    color:#fff;

    font-size:clamp(44px,6vw,72px);

    font-weight:300;

    line-height:1.3;

    margin-bottom:60px;

}

.scroll{

    display:inline-block;

    width:max-content;

    color:#fff;

    font-size:13px;

    letter-spacing:.25em;

}

.scroll::after{

    content:"";

    display:block;

    width:1px;
    height:70px;

    margin:18px auto 0;

    background:#fff;

    animation:scroll 2s infinite;

}

@keyframes scroll{

    0%{

        transform:translateY(0);

        opacity:0;

    }

    50%{

        opacity:1;

    }

    100%{

        transform:translateY(18px);

        opacity:0;

    }

}

/* ===================================
ORDER CAKE
=================================== */

.ordercake{
    background:#faf8f5;
}

.ordercake-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.ordercake-image{
    overflow:hidden;
    border-radius:16px;
}

.ordercake-image img{
    aspect-ratio:4 / 3;
    object-fit:cover;
    transition:1s;
}

.ordercake-image:hover img{
    transform:scale(1.05);
}

.ordercake-content{
    max-width:520px;
    margin:auto;
    text-align:center;
}

.ordercake-content p{
    margin:30px 0;
}

.order-banner{
    width:100%;
    max-width:500px;
    margin:35px auto;
    border-radius:16px;
}


/* ===================================
ABOUT
=================================== */

.about{
    background:#faf8f5;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:16px;
}

.about-image img{
    aspect-ratio:4 / 3;
    object-fit:cover;
    transition:1s;
}

.about-image:hover img{
    transform:scale(1.05);
}

.about-text{
    max-width:520px;
}

.about-text p{
    margin-bottom:24px;
}


/* ===================================
ROUND
=================================== */

.round{
    background:#fff;
}

.round-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;
}

.round-image{
    overflow:hidden;
    border-radius:16px;
}

.round-image img{
    aspect-ratio:4 / 3;
    object-fit:cover;
    transition:1s;
}

.round-image:hover img{
    transform:scale(1.05);
}

.round-content p{
    margin-bottom:22px;
}

.flavor{
    margin-top:45px;
}

.flavor h4{
    font-size:15px;
    color:#9d8d7b;
    letter-spacing:.2em;
    margin-bottom:25px;
}

.flavor ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.flavor li{
    background:#f5f2ed;
    padding:18px 24px;
    border-radius:10px;
    transition:.3s;
}

.flavor li:hover{
    background:#2f2925;
    color:#fff;
}


/* ===================================
IMAGE HOVER（共通）
=================================== */

.ordercake-image img,
.about-image img,
.round-image img{
    transition:1s;
}

.ordercake-image:hover img,
.about-image:hover img,
.round-image:hover img{
    transform:scale(1.05);
}


/* ===================================
TABLET
=================================== */

@media (max-width:1024px){

.ordercake-wrapper,
.about-wrapper,
.round-wrapper{
    grid-template-columns:1fr;
    gap:60px;
}

.ordercake-content,
.about-text,
.round-content{
    max-width:100%;
}

}


/* ===================================
SMART PHONE
=================================== */

@media (max-width:768px){

.ordercake-wrapper,
.about-wrapper,
.round-wrapper{
    grid-template-columns:1fr;
    gap:35px;
}

.ordercake-content,
.about-text,
.round-content{
    max-width:100%;
    text-align:center;
}

.ordercake-image img,
.about-image img,
.round-image img{
    aspect-ratio:4 / 3;
}

.flavor ul{
    grid-template-columns:1fr;
}

}

/* ===================================
GIFT
=================================== */

.gift{
    background:#f6f1ea;
}

.gift-wrapper{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:80px;
    align-items:center;
}

.gift-content p{
    margin:25px 0;
}

.gift-image{
    overflow:hidden;
    border-radius:16px;
}

.gift-image img{
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
    transition:1s;
}

.gift-image:hover img{
    transform:scale(1.05);
}

/* ---------- Price Card ---------- */

.gift-price{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:45px 0;
}

.price-card{
    background:#fff;
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.price-card:hover{
    transform:translateY(-5px);
}

.price-card h3{
    font-size:18px;
    font-weight:500;
    margin-bottom:10px;
    color:#2f2925;
}

.price-card p{
    margin:0;
    font-size:26px;
    font-weight:700;
    color:#8b5d34;
    line-height:1.4;
}

.gift-note{
    font-size:15px;
    color:#777;
}


/* ===================================
INSTAGRAM
=================================== */

.instagram{
    background:#fff;
    text-align:center;
}

.insta-text{
    max-width:700px;
    margin:0 auto 60px;
}

.instagram-feed{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:60px;
}

.instagram-feed iframe,
.instagram-feed .elfsight-app{
    width:100%;
}

.insta-button{
    margin-top:20px;
}


/* ===================================
KITCHEN CAR
=================================== */

.kitchencar{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    background:#faf8f5;
}

.kitchencar-image{
    overflow:hidden;
}

.kitchencar-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.kitchencar-image:hover img{
    transform:scale(1.05);
}

.kitchencar-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:80px;
}

.kitchencar-content p{
    margin-bottom:20px;
}

.kitchencar-list{
    margin:30px 0;
}

.kitchencar-list li{
    padding:12px 0;
    border-bottom:1px solid #e5ddd3;
}


/* ===================================
TABLET
=================================== */

@media (max-width:1024px){

.gift-wrapper{
    grid-template-columns:1fr;
    gap:60px;
}

.instagram-feed{
    grid-template-columns:repeat(2,1fr);
}

.kitchencar{
    grid-template-columns:1fr;
}

.kitchencar-image{
    height:450px;
}

.kitchencar-content{
    padding:60px;
}

}


/* ===================================
SMART PHONE
=================================== */

@media (max-width:768px){

.gift-wrapper{
    grid-template-columns:1fr;
    gap:35px;
}

.gift-content{
    text-align:center;
}

.gift-price{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.price-card{
    padding:20px 12px;
}

.price-card h3{
    font-size:16px;
    line-height:1.4;
}

.price-card p{
    font-size:22px;
}

.instagram-feed{
    grid-template-columns:1fr;
    gap:20px;
}

.kitchencar{
    grid-template-columns:1fr;
}

.kitchencar-image{
    height:300px;
}

.kitchencar-content{
    padding:50px 8%;
    text-align:center;
}

}

/* ===================================
ACCESS
=================================== */

.access{
    background:#f6f1ea;
}

.access-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:start;
}

.access-info table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:40px;
}

.access-info th,
.access-info td{
    padding:18px 0;
    border-bottom:1px solid #ddd;
    vertical-align:top;
}

.access-info th{
    width:120px;
    font-weight:500;
    text-align:left;
}

.access-map{
    display:flex;
    gap:30px;
}

.access-map iframe{
    width:60%;
    min-height:420px;
    border:none;
    border-radius:16px;
}

.access-map img{
    width:40%;
    border-radius:16px;
    object-fit:cover;
}

/* ===================================
FOOTER
=================================== */

footer{
    background:#2f2925;
    color:#fff;
    padding:80px 0 40px;
}

.footer-logo{
    text-align:center;
    margin-bottom:35px;
}

.footer-logo img{
    width:180px;
    margin:auto;
}

.footer-nav ul{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
    margin-bottom:35px;
}

.footer-nav a{
    color:#fff;
    font-size:14px;
    transition:.3s;
}

.footer-nav a:hover{
    opacity:.7;
}

.sns{
    text-align:center;
    margin-bottom:30px;
}

.sns a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:50px;
    height:50px;
    border:1px solid rgba(255,255,255,.4);
    border-radius:50%;
    transition:.3s;
}

.sns a:hover{
    background:#fff;
    color:#2f2925;
}

.copyright{
    text-align:center;
    font-size:12px;
    opacity:.7;
}

/* ===================================
FADE ANIMATION
=================================== */

.fade{
    opacity:0;
    transform:translateY(40px);
    transition:1s ease;
}

.fade.active{
    opacity:1;
    transform:translateY(0);
}

/* ===================================
MOBILE MENU
=================================== */

.mobile-nav{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:#faf8f5;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;
    z-index:998;
}

.mobile-nav.active{
    right:0;
}

.mobile-nav ul{
    text-align:center;
}

.mobile-nav li{
    margin:22px 0;
}

.mobile-nav a{
    font-size:20px;
    letter-spacing:.15em;
}

/* ===================================
TABLET
=================================== */

@media (max-width:1024px){

.access-wrapper{
    grid-template-columns:1fr;
}

.access-map{
    flex-direction:column;
}

.access-map iframe,
.access-map img{
    width:100%;
}

}

/* ===================================
SMART PHONE
=================================== */

@media (max-width:768px){

body{
    font-size:15px;
}

section{
    padding:80px 0;
}

/* Header */

#header .container{
    height:72px;
}

.logo img{
    width:145px;
}

.pc-nav{
    display:none;
}

.hamburger{
    display:block;
}

/* Hero */

.hero{
    height:90vh;
}

.hero-copy{
    width:90%;
}

.hero-sub{
    font-size:12px;
}

.hero h1{
    font-size:clamp(34px,8vw,44px);
}

.scroll{
    font-size:11px;
}

/* 共通 */

.section-title{
    margin-bottom:40px;
}

.section-title h2,
.ordercake-content h3,
.round-content h3,
.gift-content h2,
.kitchencar-content h2{
    font-size:2rem;
}

/* Access */

.access-wrapper{
    grid-template-columns:1fr;
}

.access-map{
    flex-direction:column;
}

.access-map iframe,
.access-map img{
    width:100%;
}

.access-map iframe{
    height:320px;
    min-height:auto;
}

/* Footer */

.footer-nav ul{
    flex-direction:column;
    gap:15px;
}

.footer-logo img{
    width:150px;
}

}