@charset "utf-8";
:root {
	--color--black: #000000;
    --color--white: #fff;
}
body {
	min-height: 100vh;
	margin: 0px;
	padding: 0px;
	background-color: #ffffff;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	color: #140E00;
	font-family: "Shippori Mincho B1", serif;;
	font-weight: 500;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: 0.05em;
/*	font-feature-settings: "palt";*/
    background-image: url('../image/bg__pattern.webp');
    background-size: cover;
    background-repeat: repeat-y;
    background-position: center;
}
body.scroll-stop {
	overflow: hidden;
}
input{
    appearance: auto;
    -webkit-appearance: auto;
    accent-color: #eb6101;
}
#wrap{
    width: 100%;
    height: auto;
}
#l_wrapper{
    width: 100%;
    height: auto;
    overflow: hidden;
}
header{
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    pointer-events: none;
}
.global_nav{
    width: 90%;
    height: auto;
    margin: 0 auto;
}
    .global_nav__contents{
        width: 100%;
        height: auto;
        padding-top: 51px;
    }
        .global_nav_list{
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
            .global_nav_item{
                height: fit-content;
                position: relative;
                pointer-events: auto;
            }
            .online__shop .online__shop__link{
                color: #9F9F9F;
                text-shadow: unset;
                pointer-events: none;
            }
            .online__shop{
                pointer-events: none;
            }
            .global_nav_item::after{
                content: "";
                display: block;
                width: 0;
                height: 1px;
                margin-left: 10%;
                background-color: var(--color--white);
                background: linear-gradient( 90deg,#fff,#b6b6b6 );
                position: absolute;
                left: 0;
                bottom: -6px;
                transition: 0.5s ease-in-out;
                filter: blur(2px);
                transform-origin: left center;
            }
            .global_nav_item:hover::after{
                width: 80%;
                filter: blur(0);
            }
                .global_nav_item a{
                    display: block;
                    width: 100%;
                    height: 15px;
                    font-size: 18px;
                    letter-spacing: 0.3em;
                    line-height: 1;
                    cursor: pointer;
                    color: var(--color--white);
                    padding: 0 18px;
                    text-shadow: 1px 1px 5px #707070;
                    pointer-events: auto;
                }
                .global_nav_item:last-of-type a{
                    border-right: unset;
                }
    .hamburger{
        width: 55px;
        height: 13px;
        position: fixed;
        top: 47px;
        right: 97px;
        z-index: 1000;
        pointer-events: auto;
    }
        .hbg_btn{
            width: 100%;
            height: 100%;
            padding: 0;
            cursor: pointer;
            pointer-events: auto;
        }
            .hbg_btn__inner{
                width: 100%;
                height: 100%;
                position: relative;
            }
                
                .hbg_btn_icon_top{
                    display: block;
                    width: 100%;
                    height: 1px;
                    background-color: var(--color--white);
                    position: absolute;
                    top: 0;
                    left: 0;
                    transition: 0.4s;
                }
                .hbg_btn_icon_btm{
                    display: block;
                    width: 67%;
                    height: 1px;
                    background-color: var(--color--white);
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    transition: 0.4s;
                }
                .open .hbg_btn_icon_top{
                    animation: hbg_open_top 0.6s ease forwards;
                }
                .open .hbg_btn_icon_btm{
                    animation: hbg_open_btm 0.6s ease forwards;
                }
                @keyframes hbg_open_top {
                    0%{
                        top: 0;
                        left: 0;
                    }
                    50%{
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%);
                    }
                    100%{
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%) rotate(30deg);
                        background-color: #140E00;
                    }
                }
                @keyframes hbg_open_btm {
                    0%{
                        top: 0;
                        left: 0;
                    }
                    50%{
                        width: 100%;
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%);
                    }
                    100%{
                        width: 100%;
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%) rotate(-30deg);
                        background-color: #140E00;
                    }
                }
                .close .hbg_btn_icon_top{
                    animation: hbg_close_top 0.6s ease forwards;
                }
                .close .hbg_btn_icon_btm{
                    animation: hbg_close_btm 0.6s ease forwards;
                }
                @keyframes hbg_close_top {
                    0%{
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%) rotate(30deg);
                    }
                    50%{
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%);
                    }
                    100%{
                        top: 0;
                        left: 0;
                        transform: translate(0%, 0%) rotate(0deg);
                    }
                }
                @keyframes hbg_close_btm {
                    0%{
                        width: 100%;
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%) rotate(-30deg);
                    }
                    50%{
                        width: 100%;
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%);
                    }
                    100%{
                        bottom: 0;
                        left: 0;
                        transform: translate(0%, 0%) rotate(0deg);
                    }
                }
        .global_nav{
            width: 100%;
            height: 100svh;
            background-color: #fff;
            display: none;
            position: relative;
            pointer-events: auto;
        }
            .global_nav_logo{
                width: 62px;
                height: auto;
                position: absolute;
                left: 8%;
                bottom: 93px;
            }
                .global_nav_logo img{
                    width: 100%;
                    height: auto;
                }
            .global_nav__contents{
                width: 90%;
                height: 100%;
                margin: 0 auto;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 0;
            }
                .global_nav_list{
                    flex-direction: column;
                    row-gap: 48px;
                }
                    .global_nav_item a{
                        height: auto;
                        font-size: 18px;
                        position: relative;
                        z-index: 100;
                        color: #140E00;
                        text-shadow: unset;
                    }
                    .global_nav_item::after{
                        content: unset;
                    }
                .online__shop__txt{
                    color: #9F9F9F;
                    font-size: 14px;
                    text-align: center;
                }
                .ready__txt{
                    padding-top: 5px;
                }
footer{
    width: 100%;
    height: auto;
    background-color: #140E00;
    position: relative;
}
.profile__area{
    width: 100%;
    height: auto;
    background-color: #140E00;
    position: relative;
}
    .profile__inner{
        width: 100%;
        height: auto;
        margin: 0 auto;
        /* max-width: 1140px; */
        padding: 115px 0 127px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        column-gap: 100px;
        position: relative;
        background-color: #140E00;
    }
        .profile__contents{
            width: fit-content;
            height: auto;
            position: relative;
            display: flex;
            align-items: end;
            justify-content: flex-end;
            flex-direction: row-reverse;
        }
            .add__ttl{
                font-size: 2.8125vw;
                color: var(--color--white);
                writing-mode: vertical-rl;
                text-align: start;
                line-height: 2;
                letter-spacing: 0.3em;
                position: absolute;
                top: 0;
                right: 0;
                font-weight: 400;
            }
            .profile__txt{
                padding-top: 55px;
                writing-mode: vertical-rl;
                color: var(--color--white);
                font-size: 1.09vw;
                letter-spacing: 0.3em;
                line-height: 2.5;
                padding-right: 5.375vw;
            }
                .profile__txt span{
                    font-size: 1.25vw;
                }
                .top__wrap{
                    padding-bottom: 13px;
                }
                .btm__wrap{
                    padding-top: 13px;
                }
            .yohaku__sign{
                width: 44.8px;
                height: auto;
                margin: 0 28.3px -73px 0;
                min-width: 44.8px;
            }
            .insta_link{
                display: block;
                width: 19.98px;
                height: auto;
                margin: 0 16px -73px 0;
            }
                .insta_link img{
                    width: 100%;
                    height: auto;
                }
                .yohaku__sign img{
                    width: 100%;
                    height: auto;
                }
        .profile__image{
            width: 50%;
            height: auto;
        }
            .profile__image img{
                display: block;
                width: 100%;
                height: auto;
                aspect-ratio: 640 / 453;
            }
    .copy{
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color--white);
        font-size: 10px;
        letter-spacing: 0.08em;
        font-family: "Noto Sans JP", sans-serif;
    }
/* SP ================================================== */
@media all and (max-width:820px){
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    .hamburger{
        width: 32px;
        height: 8.8px;
        position: fixed;
        top: 34.4px;
        right: 18.3px;
        z-index: 1000;
        pointer-events: auto;
    }
        .hbg_btn{
            width: 100%;
            height: 100%;
            padding: 0;
            cursor: pointer;
            pointer-events: auto;
        }
            .hbg_btn__inner{
                width: 100%;
                height: 100%;
                position: relative;
            }
                
                .hbg_btn_icon_top{
                    display: block;
                    width: 100%;
                    height: 1px;
                    background-color: var(--color--white);
                    position: absolute;
                    top: 0;
                    left: 0;
                    transition: 0.4s;
                }
                .hbg_btn_icon_btm{
                    display: block;
                    width: 67%;
                    height: 1px;
                    background-color: var(--color--white);
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    transition: 0.4s;
                }
                .open .hbg_btn_icon_top{
                    animation: hbg_open_top 0.6s ease forwards;
                }
                .open .hbg_btn_icon_btm{
                    animation: hbg_open_btm 0.6s ease forwards;
                }
                @keyframes hbg_open_top {
                    0%{
                        top: 0;
                        left: 0;
                    }
                    50%{
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%);
                    }
                    100%{
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%) rotate(30deg);
                        background-color: #140E00;
                    }
                }
                @keyframes hbg_open_btm {
                    0%{
                        top: 0;
                        left: 0;
                    }
                    50%{
                        width: 100%;
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%);
                    }
                    100%{
                        width: 100%;
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%) rotate(-30deg);
                        background-color: #140E00;
                    }
                }
                .close .hbg_btn_icon_top{
                    animation: hbg_close_top 0.6s ease forwards;
                }
                .close .hbg_btn_icon_btm{
                    animation: hbg_close_btm 0.6s ease forwards;
                }
                @keyframes hbg_close_top {
                    0%{
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%) rotate(30deg);
                    }
                    50%{
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%);
                    }
                    100%{
                        top: 0;
                        left: 0;
                        transform: translate(0%, 0%) rotate(0deg);
                    }
                }
                @keyframes hbg_close_btm {
                    0%{
                        width: 100%;
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%) rotate(-30deg);
                    }
                    50%{
                        width: 100%;
                        top: 50%;
                        left: 0;
                        transform: translate(0%, -50%);
                    }
                    100%{
                        bottom: 0;
                        left: 0;
                        transform: translate(0%, 0%) rotate(0deg);
                    }
                }
        .global_nav{
            width: 100%;
            height: 100svh;
            background-color: #fff;
            display: none;
            position: relative;
        }
            .global_nav_logo{
                width: 41.8px;
                height: auto;
                position: absolute;
                left: 40.8px;
                bottom: 37.2px;
            }
                .global_nav_logo img{
                    width: 100%;
                    height: auto;
                }
            .global_nav__contents{
                width: 90%;
                height: 100%;
                margin: 0 auto;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 0;
            }
                .global_nav_list{
                    display: flex;
                    flex-direction: column;
                    row-gap: 46px;
                }
                    .global_nav_item a{
                        height: auto;
                        font-size: 14px;
                        position: relative;
                        z-index: 100;
                        color: #140E00;
                        text-shadow: unset;
                    }
                    .global_nav_item::after{
                        content: unset;
                    }
                .online__shop__txt{
                    color: #9F9F9F;
                    font-size: 12px;
                    text-align: center;
                }
                .ready__txt{
                    padding-top: 5px;
                }
    .profile__inner{
        padding: 54px 0;
        display: block;
        width: 90%;
        margin: 0 auto;
    }
        .profile__contents{
            width: 100%;
            justify-content: center;
            display: block;
        }
            .add__ttl{
                position: unset;
                writing-mode: horizontal-tb;
                font-size: 7.46666vw;
                padding: 0 0 8vw 0;
            }
            .profile__txt{
                writing-mode: horizontal-tb;
                padding: 0 0 55px 0;
                font-size: 3.4666vw;
                line-height: 2.46;
            }
                .profile__txt span{
                    font-size: 3.4666vw;
                }
            .profile__image{
                width: 100%;
                position: relative;
            }
                .yohaku__sign{
                    width: 8.48vw;
                    position: absolute;
                    left: 6%;
                    bottom: 3.9%;
                    min-width: unset;
                    margin: 0 auto;
                }
                    .profile__image img{
                        aspect-ratio: unset;
                    }
            .insta_link{
                margin: 11.9px 0 0 auto;
            }
}
/* SP ================================================== */
@media (min-width:599px) and (max-width:820px){
    .profile__txt{
        font-size: 2.4666vw;
    }
        .profile__txt span{
            font-size: 2.4666vw;
        }
}