@charset "utf-8";

/* ========================================
common
===========================================*/
:root {
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
    --primaryBlack: #282E24;
    --primaryWhite: #FAFAF2;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "IBM Plex Sans",
        "Rokkitt",
        "IBM Plex Sans JP",
        sans-serif,
        serif;
    font-style: normal;
    color: var(--primaryBlack, #282E24);
    background-color: var(--primaryWhite, #FAFAF2);
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
} 


.section {
    padding: 60px var(--contentPadding) 80px;
}

.companyName {
    font-family: Rokkitt;
}

.topic {
    text-align: center;
    font-family: Rokkitt;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 8px auto 0;
}

.subtopic {
    text-align: center;
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 14px auto 0;
}

.sectionTitle img {
    display: block;
    width: 51px;
    height: 14px;
    margin: 0 auto;
}

.nav__btn {
    border-radius: 50px;
    border: 2px solid var(--primaryBlack, #282E24);
    display: inline-block;
    width: 128px;
    height: 48px;
    padding: 12px 0 15px;
    text-align: center;

    font-family: "IBM Plex Sans";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
}

.nav__btn--Onlineshop {
    background-color: #F2E5D5;
}

.nav__btn--contact {
    color: var(--primaryWhite, #FAFAF2);
    background-color: #5A3303;
}

.nav__btn--contactSection,
.nav__btn--OnlineshopSection {
    width: 191px;
    height: 56px;
    font-size: 2rem;
    padding: 13px 0 14px;
}

/* :hoverが使える端末を想定 */
@media (hover: hover) {
    .nav__btn:hover,
    .btn--form:hover {
        /* background-color: rgba(250, 250, 242, 0.5); */
        background-color: rgba(90, 51, 3, 0.2);
        color: #FAFAF2;
        border: 2px solid var(--primaryWhite, #FAFAF2);
    }
}

/* :hoverが使えない端末を想定 */
@media (hover: none) {
    .nav__btn:active,
    .btn--form:active {
        /* background-color: rgba(250, 250, 242, 0.5); */
        background-color: rgba(90, 51, 3, 0.2);
        color: #FAFAF2;
        border: 2px solid var(--primaryWhite, #FAFAF2);
    }
}

/* section__btn設定 */
.section__btn {
    display: flex;
    justify-content: center;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a.btn {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    height: 56px;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.02em;
    color: var(--primaryBlack);
    border-radius: 0.5rem;
}

a.btn-border-shadow--radius {
    border-radius: 100vh;
}

a.btn-border-shadow {
    padding: calc(1.5rem - 12px) 3rem 1.5rem;

    background: #CEF0B3;
}

a.btn-border-shadow:before {
    position: absolute;
    top: -8px;
    left: -8px;

    width: 100%;
    height: 100%;

    content: "";
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;

    border: 2px solid var(--primaryBlack);
    border-radius: 0.5rem;
}

a.btn-border-shadow--radius:before {
    border-radius: 100vh;
}

a.btn-border-shadow:hover {
    padding: calc(1.5rem - 6px) 3rem;
}

a.btn-border-shadow:hover:before {
    top: 0;
    left: 0;
}

/* common pc */
@media screen and (min-width: 769px) {
    .section {
        padding: 80px 5.5% 100px;
    }
    
    .topic {
        font-size: 4.2rem;
    }
    
    .subtopic {
        font-size: 2rem;
    }
    
    .sectionTitle img {
        width: 73px;
        height: 20px;
    }

    .spBr {
        display: none;
    }
    
}
/* pc 769px */

/* ========================================
header
===========================================*/
.header {
    padding: 0 var(--contentPadding);
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 250, 242, 0.85);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
}

.header__topic,
.nav__topic {
    width: 46px;
    height: 46px;
}

/* nav初期表示 */
.nav {
    background: linear-gradient(0deg, rgba(250, 250, 242, 0.70) 0%, rgba(250, 250, 242, 0.70) 100%), #F2E5D5;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__emblellishment {
    display: block;
    width: 52px;
    height: 14px;
    margin: 4px auto 0;
}

.nav__item {
    text-align: center;
    font-family: "IBM Plex Sans";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 32px;
}

.nav__btn--Onlineshop,
.nav__btn--contact {
    margin-top: 4px;
}

.nav__gif {
    display: block;
    margin: 0 auto;
    max-width: 200px;
}

.nav__header {
    padding: 0 var(--contentPadding);
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn,
.sp__btn {
    display: block;
    width: 24px;
    height: 24px;
}

/* header pc */
@media screen and (min-width: 769px) {
    .header {
        width: 100%;
        height: 82px;
        padding: 0 5.5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .header__topic {
        width: 64px;
        height: 64px;
    }

    .nav {
        width: 260px;
        height: 680px;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        z-index: 100;
        transform: translateX(260px);
        transition: transform 0.4s;

        background-color: rgba(242, 229, 213, 0.8);
        border-radius: 0 0 0 12px;

    }

    .nav.active {
        transform: translateX(0);
    }

    .nav__header {
        height: 82px;
        justify-content: flex-end;
        padding-right: 5.5vw;
    }


    .nav__topic {
        display: none;
    } 
}


@media screen and (min-width: 960px) {
    .header {
        width: 100%;
        height: 82px;
        padding: 0 5.5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .header__topic {
        width: 64px;
        height: 64px;
    }

    .nav__header {
        display: none;
    }

    .nav__emblellishment {
        display: none;
    }

    .nav__gif {
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        position: static;
        transform: translateX(0);
    }

    .header__btn {
        display: none;
    }

    .nav__list {
        display: flex;
        align-items: center;
        gap: 22px;
    }

    .nav__item {
        margin-top: 0;

        font-feature-settings: 'calt' off;
        font-size: 1.5rem;
        line-height: 1.5;
        letter-spacing: -0.01em; 
    }

    .nav__item:hover {
        text-decoration: underline solid rgba(178, 51, 3, 0.50) 1.5px ;
        text-underline-offset: 6px;
    }

    .nav__btn--Onlineshop,
    .nav__btn--contact {
        margin-top: 0;
    }   
}
/* pc 960px */


/* ========================================
footer
===========================================*/
.footer {
    background-color: #5A3303;
    padding: 80px 0;
}

.footer__topic {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.snsTxt {
    color: var(--primaryWhite);
    font-family: "IBM Plex Sans";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;

    text-align: center;
    margin-top: 64px;
}

.sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
}

.sns__item:nth-child(3) {
    width: 26px;
}

.copy {
    color: #FAFAF2;
    font-family: Rokkitt;
    font-size: 1.4rem;
    font-weight: 400;

    text-align: center;
    margin-top: 84px;
}

.copy::before {
    content: '';
    display: block;
    width: var(--contentWidth);
    height: 1px;
    background: #F2E5D5;
    margin: 0 auto 64px;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer {
        padding: 80px 5.5%;
    }
    
    .footer__topic {
        display: block;
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .copy {
        text-align: right;
        margin-top: 64px;
    }
    
    .copy::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #F2E5D5;
        margin: 0 auto 64px;
    }

}