@charset "UTF-8";

/* CSS カスタムプロパティ */
:root{
    --main-yellow: #B79022;
    --sub-yellow: #6E5715;
    --background-yellow: #F9F4E3;
    --white: #FFF;
    --text-yellow: #4A3A0D;
    --text-mute: #908A79;
}

body{
    font-family: "Poppins", "Noto Sans JP", sans-serif;
}

.information{
    position: relative;
    width: 100%;
    height: 40px;
    background-color: var(--main-yellow);
    text-align: center;
}

.information-text{
    color: var(--white);
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0.05em;
}

.close-icon{
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}

.header{
    /* position: fixed; */
    position: sticky;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 96px;
    /* margin-top: 40px; */
    padding: 32px 40px;
    background-color: transparent;
}

.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-title{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0.1em;
    line-height: 1;
}

.nav-contents{
    display: flex;
    column-gap: 16px;
}

.main-contents{
    margin-top: -96px;
}


.hero-img{
    width: 100%;
}

.section{
    padding-top: 64px;
    padding-bottom: 96px;
}

.contents-area{
    max-width: 1200px;
    margin: 0 auto;
}

.section-head{
    margin-bottom: 16px;
    color: var(--text-yellow);
    font-size: 32px;
}

.switch-menu{
    display: flex;
    column-gap: 8px;
    margin-bottom: 32px;
}

.btn-rounded{
    padding: 0.5em 1em;
    border: 1px solid var(--text-yellow);
    border-radius: 9999px;
    color: var(--text-yellow);
    font-size: 12px;
}

.active{
    border: 1px solid var(--main-yellow);
    color: var(--main-yellow);
}

.product-contents{
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 24px;
    margin-bottom: 64px;
}

.product{
    width: 288px;
}

.product-img{
    aspect-ratio: 3/4;
    object-fit: cover;
    width: 100%;
    margin-bottom: 8px;
}

.product-name{
    margin-bottom: 4px;
    color: var(--text-yellow);
    font-size: 16px;
}

.product-price{
    color: var(--text-mute);
    font-size: 14px;
}

.btn{
    display: block;
    width: fit-content;
    padding: 1em 2em;
    margin: 0 auto;
    border: 1px solid var(--main-yellow);
    color: var(--main-yellow);
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:hover{
    background-color: var(--main-yellow);
    color: var(--white);
}

.about{
    background-color: var(--background-yellow);
}

.about .section-head{
    margin-bottom: 80px;
}

.about-contents{
    position: relative;
    height: 672px;
}

.overlay-text{
    position: absolute;
    top: -64px;
    z-index: 1;
    color: var(--white);
    font-size: 128px;
    line-height: 1;
    opacity: 0.8;
}

.about-img{
    position: absolute;
    top: 0;
    left: -120px;
    width: 864px;
}

.about-shop{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 592px;
    padding: 48px 32px;
    background-color: var(--white);
}

.about-shop-head{
    margin-bottom: 32px;
    color: var(--text-yellow);
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
}

.about-shop-text{
    color: var(--text-yellow);
    font-size: 16px;
    line-height: 1.75;
}

.news{
    line-height: 1;
}

.news-contents{
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 24px;
    margin-bottom: 72px;
}

.news-img{
    margin-bottom: 8px;
}

.news-date{
    margin-bottom: 8px;
    color: var(--text-yellow);
    font-size: 12px;
}

.news-title{
    margin-bottom: 16px;
    color: var(--text-yellow);
    font-size: 16px;
}

.more-link{
    color: var(--text-mute);
    font-size: 14px;
}

.cta{
    position: relative;
    z-index: 1;
    padding: 144px 0;
    background: url("img/cta-background.jpg") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.cta-contents{
    display: flex;
    column-gap: 60px;
}

.cta-card{
    position: relative;
    width: 360px;
    height: 120px;
    line-height: 1;
}

.cta-card::after{
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    right: -8px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: var(--sub-yellow);
    transition: all 0.3s ease;
}

.cta-card:hover::after{
    top: 0;
    right: 0;
}

.cta-link{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: var(--white);
}

.cta-label{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.cta-icon{
    margin-right: 4px;
}

.cta-title{
    color: var(--text-yellow);
    font-size: 16px;
}

.cta-text{
    color: var(--text-yellow);
    font-size: 14px;
}

.footer{
    padding: 64px 0;
    background-color: var(--main-yellow);
    line-height: 1;
}

.footer-inner{
    width: fit-content;
    margin: 0 auto;
}

.footer-nav{
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--white);
}

.footer-nav-contents{
    display: flex;
    column-gap: 32px;
}

.footer-nav-list{
    color: var(--white);
    font-size: 16px;
}

.footer-bottom-contents{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright{
    color: var(--white);
}

.copyright-title{
    font-size: 16px;
    font-weight: 400;
}

.copyright-text{
    font-size: 12px;
    font-weight: 300;
}
.footer-link{
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.pc-none{
    display: none;
}

.display-off{
    display: none;
}

.reset-margin{
    margin-top: 0;
}

.change-background{
    background-color: var(--main-yellow);
    box-shadow: 0px 1px 2px rgba(0,0,0, 0.15);
    transition: 0.3s;
}