@charset "utf-8";
/* ======================================
common
====================================== */
:root {
    --primary-brown: #A18A7E;
    --primary-darkBrown: #805E4D;
    --primary-beige: #E1D8C7;
    --primary-whiteBeige: #FEFBF2;
    --primary-white: #FFFFFF;
    --primary-whiteLow: #FBFBFB;
    --primary-black: #696969;
    --contentWidth: 89.3%;
    --contentPadding: 5.3%;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 
        "Zen Maru Gothic",
        sans-serif,
        "Zen Antique Soft",
        serif,
        "Oooh Baby",
        cursive,
        "Poetsen One",
        "Bangers",
        system-ui;
    color: var(--primary-black, #696969);
    background-color: var(--primary-whiteBeige, #FEFBF2);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.topic {
     color: var(--primary-brown, #A18A7E);
     text-align: center;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #A18A7E;
    font-family: "Oooh Baby";
    font-size: 5.3rem;
    margin: -14px auto 0;
}

.subTopic {
    color: var(--primary-brown, #A18A7E);
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 10px 60px;
    text-decoration: none;
    background: #FFFFFF;
    color: #696969;
    border: 1px solid #696969;
    border-bottom: 4px solid #696969;
    border-radius: 50px;
    text-align: center;
    font-size: 1.9rem;
    font-weight: 700;
}

.btn:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

/* body pc */
@media screen and (min-width: 1120px) {
    body {
        overflow: hidden;
    }
}

/* ======================================
header
====================================== */
.header {
    position: sticky;
    top: 0;
    height: 70px;
    z-index: 100;
    background: var(--primary-beige, #E1D8C7);
    padding: 30px 5.3% 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* .nav初期表示 */
.nav {
    background: var(--primary-white, #FFFFFF);
    width: 100%;
    height: 100vh;
    border: 2px solid var(--primary-darkBrown, #805E4d);
    border-radius: 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    text-align: right;
    padding-right: 10.9%;
    margin-top: 40px;
}

.nav__title {
    margin-top: 40px;
    color: var(--primary-darkBrown);
    text-align: center;
    font-family: Bangers;
    font-size: 4.6rem;
    letter-spacing: 2.3px;
}

.nav__list {
    margin-top: 40px;
}

.nav__item {
    color: var(--primary-darkBrown, #805E4D);
    text-align: left;
    padding-left: 19.7%;
    font-size: 3rem;
    font-weight: 900;
    position: relative;
    margin-top: 28px;
}

.nav__subItem {
    align-items: center;
    color: rgba(128, 94, 77, 0.70);
    font-size: 1.4rem;
    font-weight: 700;
    margin-left: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.nav__sns {
    margin: 50px 0;
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 22px;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
    overflow: scroll;
}

.header__btn {
    display: block;
    width: 39px;
    height: 30px;
}

/* nav pc */
@media screen and (min-width: 1120px) {
    .header {
        height: 850px;
        padding: 30px 5%;
    }

    .header__topic,
    .nav__header,
    .header__btn {
        display: none;
    }

    .nav {
    height: auto;
    position: static;
    transform: translateX(0);
    }

    .nav__sns {
        margin-bottom: 40px;
    }
}
/* 1120px pc*/

/* ======================================
 Footer
====================================== */
.footer__item {
    background: #E1D8C7;
    padding: 40px 5.3% 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__logo {
    width: 116px;
    height: auto;
}

.footer__barcode {
    width: 80px;
    height: auto;
}