@charset "UTF-8";
/* CSS Document */
/*==============================================
ハンバーガーメニュー
===============================================*/
.openbtn {
    position: fixed;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 99999;
    text-align: center;
}
/*ボタン内側*/
.openbtn span img {
    width: 100%;
    height: auto;
}
.openbtn span {
    position: relative;
    display: block;
}
.openbtn span::before,
.openbtn span::after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 600;
    color: var(--blue);
    font-family: "Barlow", sans-serif;
    font-style: normal;
    letter-spacing: 2px;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 1;
}
.openbtn span::before {
    content: 'MENU';
    top: 24px;
    opacity: 1;
    -webkit-transform: translateY(0)translateX(-50%);
    transform: translateY(0)translateX(-50%);
}
.openbtn span::after {
    content: 'CLOSE';
    top: 24px;
    opacity: 0;
    -webkit-transform: translateY(10px)translateX(-50%);
    transform: translateY(10px)translateX(-50%);
}
.openbtn.active span::before {
    opacity: 0;
    -webkit-transform: translateY(-10px)translateX(-50%);
    transform: translateY(-10px)translateX(-50%);
}
.openbtn.active span::after {
    opacity: 1;
    -webkit-transform: translateY(0)translateX(-50%);
    transform: translateY(0)translateX(-50%);
}
/*メニュー右寄せ ==============================================*/
.openbtn.rightBtn {
    right: 2.5%;
    top: 2.5%;
}
/*==============================================
OPENメニュー
===============================================*/
#menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ffd500;
    font-size: clamp(35px, (40vw/var(--pc)), 40px);
}
#menu.panelactive {
    z-index: 999;
}
#menu.panelactive #menu-list {
    position: fixed;
    z-index: 999;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#menu #menu-list,
#menu.panelactive #menu-list {
    z-index: 999;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/*メニュー右から左に ==============================================*/
#menu.slideLeft {
    z-index: 9999;
    top: 0;
    right: -120%;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}
#menu.slideLeft.panelactive {
    right: 0;
}
#menu.slideLeft.panelactive #menu-list {
    width: 100%;
}
.menu_img.bounce2.active#effect1{
	animation-delay:0.75s;
}
/*ナビゲーション ====================================================*/
#menu {
    text-align: right;
}
#menu ul {
    z-index: 999;
}
/*リストのレイアウト設定 ==============================================*/
#menu-list {
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
#menu-list a:hover {
    color: #000;
}
#menu-list .menu_logo {
    width: 100%;
    position: absolute;
    max-width: 170px;
    top: 20px;
    left: 20px;
}
#menu-list .list {
    display: inline-block;
    margin-left: auto;
    margin-right: 12%;
    margin-top: 10%;
}
#menu-list .list .flex {
    padding-bottom: 50px;
    border-bottom: 2px dotted #000
}
#menu-list .list .flex ul {
    margin-right: 80px;
}
#menu-list .list .flex ul li {
    list-style: none;
    text-align: left;
    white-space: nowrap;
    margin-bottom: 35px;
    line-height: 1;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
#menu-list .list .flex ul li:hover {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}
#menu-list .list .flex ul li:nth-last-child(1) {
    margin-bottom: 0;
}
#menu-list .list .flex ul li a {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    position: relative;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
#menu-list .list .flex ul li a span {
    display: block;
    font-size: 1.2rem;
    margin-top: 10px;
}
#menu-list .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 0;
    margin-bottom: 80px;
}
#menu-list .sns .title {
    font-size: clamp(35px, (40vw/var(--pc)), 40px);
    font-weight: 700;
    margin-right: 35px;
}
#menu-list .sns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
#menu-list .sns ul li {
    width: 100%;
    max-width: 35px;
    margin-right: 20px;
}
#menu-list .menu_footer {
    text-align: left;
    font-size: 1.2rem;
    padding-top: 35px;
}
#menu-list .menu_footer p.policy {
    margin-bottom: 35px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
}
#menu-list .menu_footer p.policy::before {
    content: '';
    width: 15px;
    height: 1px;
    display: inline-block;
    background-color: #000;
    margin-right: 10px;
    vertical-align: middle;
}
.menu_img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    line-height: 0;
    opacity: 0.6;
}
@media only screen and (max-width:820px) {
    /*==============================================
ハンバーガーメニュー
===============================================*/
    .openbtn {
        width: 40px;
        height: 40px;
    }
    .openbtn span::before,
    .openbtn span::after {
        font-size: 1.2rem;
    }
    .openbtn span::before {
        top: 20px;
    }
    .openbtn span::after {
        top: 20px;
    }
    /*メニュー右寄せ ==============================================*/
    .openbtn.rightBtn {
        right: 2.5%;
        top: 20px;
    }
    /*ナビゲーション ====================================================*/
    #menu {
        font-size: clamp(24px, (50vw/var(--sp)), 50px);
        text-align: left;
    }
    /*リストのレイアウト設定 ==============================================*/
    #menu-list .menu_logo {
        max-width: 120px;
    }
    #menu-list .list {
        margin-left: 5%;
        margin-right: auto;
        margin-top: 150px;
        padding-bottom: 10%;
    }
    #menu-list .list .flex {
        padding-bottom: 35px;
        border-bottom: 2px dotted #000
    }
    #menu-list .list .flex ul {
        margin-right: 35px;
    }
    #menu-list .list .flex ul li {
        margin-bottom: 30px;
    }
    #menu-list .list .flex ul li:hover {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    #menu-list .list .flex ul li a {
        letter-spacing: 0;
    }
    #menu-list .sns {
        margin-bottom: 50px;
    }
    #menu-list .sns .title {
        font-size: clamp(24px, (50vw/var(--sp)), 50px);
    }
    #menu-list .sns ul li {
        max-width: 22px;
    }
    #menu-list .menu_footer {
        padding-top: 25px;
    }
    #menu-list .menu_footer p.policy {
        margin-bottom: 15px;
        font-size: 1.2rem
    }
    .menu_img {
        width: 65%;
        max-width: 560px;
        opacity: 0.4;
    }
}