@charset "utf-8";

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Maru Gothic', 'Yuu Gothic', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    color: #572D15;
    font-weight: 400;
}

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

a {
    text-decoration: none;
    cursor: pointer;
}

a,
a:hover,
a:visited {
    color: inherit;
}

.wrapper {
    width: 90%;
    max-width: 1220px;
    margin-right: auto;
    margin-left: auto;
}

.small_wrapper {
    width: 90%;
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.flex_center {
    display: flex;
    justify-content: center;
}

.section_title {
    font-size: 28px;
    font-weight: 500;
}

.fluffy {
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: transform 1s, opacity 1s, visibility 1s;
}

.is-fadein {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.move {
    display: inline-block;
    transition: all .4s ease 0s;
    text-decoration: none;
}

.move:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.8s;
    animation-fill-mode: forwards;
    opacity: 0.2;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0.4;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section_button_l {
    padding: 1em 4em 1em 2em;
    background-color: #F8E757;
    border-radius: 15px;
    color: #572D15;
    cursor: pointer;
    position: relative;
    min-width: 230px;
    border: 3px solid #F8E757;
}

.section_button_l span::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 30px;
    border-right: 1px dashed #572D15;
    top: 25%;
    right: 18%;
}

.section_button_l::after {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    background: url("../image/button_icon.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
    right: 6%;
    top: 32%;
}

.section_button_l:hover {
    background-color: #fff;
    transition: 0.3s;
}

.line_button {
    width: 10%;
    height: auto;

    position: fixed;
    z-index: 20;

    bottom: 1%;
    right: 0%;

    cursor: pointer;
    max-width: 400px;
}

.line_button img {
    height: auto;
    transition: transform .6s ease;
}

.line_button:hover img {
    transform: scale(1.1);
}

.header_bgi {
    position: absolute;
    width: 100%;
    height: 400px;
    top: 0;
    left: 0;
    z-index: -1;
}

.header_box {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.top_link {
    display: flex;
    align-items: center;
}

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

.shop_name {
    font-size: 24px;
    font-weight: 500;
    margin-left: 10px;
}

.header_sns {
    display: flex;
    align-items: center;
}

.sns_icon {
    width: 50px;
}

.header_nav {
    padding-top: 20px;
}

.nav_img {
    width: 100%;
    height: 45px;
}

.section_button {
    display: inline-block;
    padding: 1em 3.5em;
    background-color: #F8E757;
    border-radius: 15px;
    color: #38211A;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    min-width: 150px;
    border: 3px solid #F8E757;
}

.section_button span::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 20px;
    height: 30px;
    border-right: 1px dashed #572D15;
    top: 25%;
    right: 33%;
}

.section_button::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("../image/button_icon.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
    left: 76%;
    top: 32%;
}

.section_button:hover {
    background-color: #fff;
    transition: 0.3s;
}

.footer_bgi {
    margin-top: -100px;
}

.footer {
    background: #F8F0A6;
    margin-top: -30px;
    font-size: 14px;
}

.footer_cicle {
    width: 400px;
    height: 400px;
    background: #fff;
    border-radius: 50%;
}

.footer_title {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

.footer_text {
    margin-left: 55px;
}

.footer_logo {
    width: 160px;
    margin-left: 120px;
    margin-top: -50px;
}

.text_space {
    margin-left: 80px;
}

.footer_box02 {
    width: 60%;
    margin-top: 80px;
}

.footer_list {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: right;
    gap: 20px 25px;
}

.footer_list img {
    margin-right: 5px;
}

.footer_link {
    display: flex;
}

.footer_sns {
    text-align: right;
    margin-bottom: 60px;
}

.copyright {
    margin-top: 50px;
    font-size: 12px;
    padding-bottom: 10px;
}

@media (max-width: 600px) {
    .flex {
        flex-direction: column;
    }

    .sp_none {
        display: none;
    }

    .section_button_l {
        padding: 1em 4em 1em 1em;
    }

    .line_button {
        width: 30%;
    }

    .header {
        height: 60px;
        display: flex;
        z-index: 200;
    }

    .header_container {
        width: 100%;
    }

    .header_box {
        padding-top: 20px;
        display: inherit;
    }

    .header_flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header_logo {
        width: 40px;
        margin-left: 20px;
    }

    .header_nav {
        padding: 0;
        margin-top: -33px;
    }

    .shop_name {
        font-size: 18px;
    }

    .header_hamburger {
        position: relative;
        z-index: 300;
        height: 100%;
        display: flex;
        align-items: center;
        padding-right: 10px;
        right: 10px;
    }

    .header_hamburger::after {
        content: "\e5d2";
        color: #572D15;
        font-family: 'Material Icons';
        display: block;
        font-size: 30px;
        font-weight: 400;
        font-style: normal;
        line-height: 1;
    }

    .show .header_hamburger::after {
        content: "\e5cd";
    }

    .header_list {
        position: fixed;
        left: 100vw;

        width: 100%;
        height: 100%;
        background-color: #F8F0A6;

        transition: 0.4s;
        z-index: 150;
        justify-content: flex-start;

        top: 0;
        align-items: center;
        justify-content: center;
    }

    .show .header_list {
        left: 0;
    }

    .header_list li {
        margin-left: 0;
        padding-bottom: 20px;
        width: 60%;
        text-align: center;
    }

    .nav_img {
        height: 55px;
    }

    .sns_icon {
        margin-top: 30px;
    }

    .sp_img {
        width: 100%;
        height: auto;
        position: relative;
        z-index: -20;
        margin-top: 50px;
    }

    .sp_copy {
        font-size: 15px;
        background-color: #F8F0A6;
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
        line-height: 2;
        margin-top: -10px;
    }

    .section_button {
        max-width: 150px;
    }

    .footer_container {
        align-items: center;
    }

    .footer_cicle {
        width: 330px;
        height: 330px;
        position: relative;
        margin-top: 60px;
    }

    .footer_box02 {
        margin-top: 30px;
        width: 70%;
    }

    .footer_logo {
        position: absolute;
        margin: 0;
        width: 100px;
        right: 33%;
        top: -15%;
    }

    .footer_title {
        padding-top: 90px;
        font-size: 18px;
    }

    .footer_text {
        margin-left: 30px;
    }

    .footer_sns {
        text-align: center;
    }

    .footer_list {
        flex-direction: column;
        justify-content: flex-start;
    }

}

@media (min-width: 601px) {
    .pc_none {
        display: none;
    }

    .sp_br {
        display: none;
    }
}

@media (min-width: 660px) {}