@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 15px;
    font-family: "Shippori Mincho", serif;
}
body{
    background-color: #fff;
    animation: loading 0.8s;
}
@keyframes loading {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.mainFlex{
    display: flex;
    width: 100%;
}
.mainFlex header{
    width: 160px;
    height: 100vh;
    position: fixed;
    border-right: 0.5px solid rgba(0, 0, 0, 0.3);
    border-left: 0.5px solid rgba(0, 0, 0, 0.3);
    background-color: #fff;
    z-index: 2;
}
.mainFlex .burger{
    display: none;
}
.menuLogo{
    width: 50%;
    margin: auto;
    margin-top: 30px;
}
.menuLogo img{
    width: 100%;
}
.menuLogo h1{
    display: none;
}
.mainmenu{
    width: calc(100% - 1px);
    height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.menunav{
    width: 100%;
    height: 55px;
    margin-top: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0);
    cursor: pointer;
}
.menunav a{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
    text-decoration: none;
    color: #000;
    transition: color 1.5s;
}
.menunav a .aFlex{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.menunav:hover{
    background-color: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 1);
    transition: all 0.5s;
}
.mne{
    font-size: 0.7rem;
    color: #000;
    transition: color 1.5s;
}
.mainmenu .onlineBut{
    width: 85%;
    height: 55px;
    margin: auto;
    margin-top: 30px;
    display: block;
    color: #000;
    transition: all 1.5s;
}
.mainmenu .onlineBut a{
    display: block;
    width: 100%;
    height: 100%;
    color: #000;
    text-decoration: none;
}
.mainmenu .onlineBut a .item{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mainmenu .onlineBut a .item .log{
    width: 12px;
    height: 12px;
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border-radius: 50%;
    transition: all 1.5s;
}
.mainmenu .onlineBut a .item .log .Triangle{
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 5px solid #fff;
    border-right: 0;
    transition: all 1.5s;
}
.mainmenu .onlineBut a .item div p:nth-child(1){
    font-size: 1.2rem;
}
.mainmenu .onlineBut a .item div p:nth-child(2){
    font-size: 0.8rem;
}
.mainmenu .onlineBut a .item .hoverAnime div{
    transition: all 0.4s;
    background-color: #000;
}
.mainmenu .onlineBut a .item .hoverAnime div:nth-child(1){
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.mainmenu .onlineBut a .item .hoverAnime div:nth-child(2){
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
}
.mainmenu .onlineBut a .item .hoverAnime div:nth-child(3){
    width: 1px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}
.mainmenu .onlineBut a .item .hoverAnime div:nth-child(4){
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.mainmenu .onlineBut:hover a .item .hoverAnime div:nth-child(1),
.mainmenu .onlineBut:hover a .item .hoverAnime div:nth-child(3){
    width: 1px;
    height: 15px;
}
.mainmenu .onlineBut:hover a .item .hoverAnime div:nth-child(2),
.mainmenu .onlineBut:hover a .item .hoverAnime div:nth-child(4){
    width: 15px;
    height: 1px;
}
.sub_menu{
    width: calc(100% - 1px);
    height: 15%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.sub_menu .menunav{
    margin-top: 10px;
}
.snslink{
    width: 55%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    margin-top: 10px;
}
.snslink div{
    width: 40%;
    aspect-ratio: 1;
    border-radius: 50%;
}
.snslink a{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
}
.snslink a img.snsFFF{
    display: none;
}
.snslink a img.snsBLK{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    transition: all 1.3s;
}
/*laptop*/
@media screen and (max-width: 1280px){
    .menu_cont{
        position: absolute;
        width: 100%;
        height: calc(100% - 109px);
    }
    .mainmenu{
        display: inline-block;
        min-height: 50%;
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .sub_menu{
        bottom: 20px;
    }
    .sub_menu .menunav{
        margin-top: 0;
    }
    .snslink{
        margin-top: 0;
    }
}
@media screen and (max-height: 700px){
    .menu_cont{
        position: absolute;
        width: 100%;
        height: calc(100% - 109px);
    }
    .mainmenu{
        display: inline-block;
        min-height: 50%;
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .mainmenu .menunav{
        margin-top: 10px;
    }
    .mainmenu .onlineBut{
        margin-top: 15px;
    }
    .sub_menu{
        display: inline-block;
        min-height: 15%;
        max-height: 30%;
        margin-bottom: 20px;
    }
    .sub_menu .menunav{
        margin-top: 0;
    }
    .snslink{
        margin-top: 5px;
    }
}

/*MAIN_ITEMS*/
.mainFlex section{
    width: 100%;
    position: relative;
}
section .container{
    display: inline-block;
    width: 100%;
    min-height: 70vh;
    position: relative;
}
/*Footer Item*/
section footer{
    display: inline-flex;
    width: 100%;
    min-height: 40vh;
    align-items: center;
    position: relative;
    background-color: #222;
}
footer .foot{
    display: inline-block;
    min-width: 50%;
    max-width: calc(100% - 160px);
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}
footer .topInfo{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-left: 5px;
    padding-right: 5px;
}
footer .topInfo .logoArea{
    display: flex;
    align-items: center;
    color: #fff;
}
footer .topInfo .logoArea h1{
    padding-left: 20px;
    font-size: 2.2rem;
    white-space: nowrap;
    color: #fff;
}
footer .topInfo .logoArea img{
    width: 80px;
}
footer .topInfo .address{
    padding-left: 60px;
    font-size: 0.8rem;
    white-space: nowrap;
    color: #fff;
}
footer .topInfo .SNSlink{
    display: inline-flex;
    margin-left: 60px;
}
footer .topInfo .SNSlink .linkBut{
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 15px;
    transition: 0.4s;
}
footer .topInfo .SNSlink .linkBut:nth-child(2){
    margin-left: 20px;
}
footer .topInfo .SNSlink .linkBut:hover{
    background-color: rgba(255, 255, 255, 0.2);
}
footer .topInfo .SNSlink .linkBut a{
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
footer .topInfo .SNSlink .linkBut img{
    width: 65%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
footer .foot .menuLink{
    display: flex;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 40px;
}
footer .foot .menuLink a{
    color: #fff;
    transition: all 0.2s;
}
footer .foot .menuLink a:nth-child(2),
footer .foot .menuLink a:nth-child(3),
footer .foot .menuLink a:nth-child(4),
footer .foot .menuLink a:nth-child(5),
footer .foot .menuLink a:nth-child(6){
    margin-left: 60px;
}
footer .foot .menuLink a:hover{
    color: #999;
}
footer .foot .menuLink a .linkFlex{
    display: flex;
    align-items: center;
}
footer .foot .menuLink a i{
    font-size: 0.8rem;
}
footer .foot .online{
    width: 100%;
    padding: 0 5px 25px 5px;
    margin-top: 20px;
    border-bottom: 1px solid #cccccc;
}
footer .foot .online a{
    color: #fff;
    transition: all 0.2s;
}
footer .foot .online a:hover{
    color: #999;
}
footer .foot .online a i{
    font-size: 0.8rem;
}
footer .foot .company{
    display: flex;
    width: 45%;
    justify-content: space-evenly;
    padding: 20px 5px 20px 5px;
    margin: auto;
    color: #fff;
}
footer .foot .company a{
    font-size: 0.8rem;
    color: #fff;
}
footer .foot .company a i{
    padding-left: 5px;
    font-size: 0.7rem;
}
footer .foot .company a:hover{
    color: #999;
}
footer p.rights{
    padding: 0;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #999;
}
/*レスポンシブ（タブレット）*/
@media screen and (max-width:1025px){
    .mainFlex{
        display: block;
        width: 100%;
        /*仮　消す*/
        overflow-x: hidden;
    }
    .mainFlex header{
        display: flex;
        width: 100%;
        height: 7vh;
        justify-content: center;
        align-items: center;
        border-left: none;
        border-right: none;
    }
    .mainFlex header .burger{
        display: flex;
        height: 100%;
        align-items: center;
        position: absolute;
        top: 0;
        left: 20px;
        z-index: 10;
    }
    .mainFlex header .burger .burgerBorder,
    .mainFlex header .burger .burgerBorder02{
        width: 40px;
        height: 2px;
        margin: 10px;
        background-color: #004410;
        transition: transform 0.3s;
    }
    .burger .burgerBorder.opened{
        transform: rotate(43deg) translate(4px, 5px);
    }
    .burger .burgerBorder02.opened2{
        transform: rotate(-43deg) translate(4px, -5px);
    }
    .mainFlex header .menuLogo{
        width: auto;
        height: 100%;
        margin: 0;
    }
    .mainFlex header .menuLogo a{
        display: block;
        width: 100%;
        height: 100%;
    }
    .mainFlex header .menuLogo a div{
        display: flex;
        width: 100%;
        height: 100%;
        justify-content: space-between;
        align-items: center;
    }
    .mainFlex header .menuLogo img{
        height: 85%;
        width: auto;
        object-fit: cover;
    }
    .mainFlex header .menuLogo h1{
        display: block;
        padding-left: 10px;
        font-size: 1.6rem;
        white-space: nowrap;
    }
    .mainFlex header .menu_cont{
        display: flex;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        position: absolute;
        top: 0;
        right: 0;
        transform: translateX(110%);
        background-color: #252525;
        transition: transform 0.6s;
    }
    .mainFlex header .menu_cont.opened{
        transform: translateX(0);
    }
    .mainFlex header .menu_cont .mainmenu{
        display: flex;
        height: auto;
        flex-direction: column;
        align-items: center;
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }
    .mainFlex header .menu_cont .mainmenu .menunav{
        width: 400px;
        height: auto;
        margin-top: 0;
        margin-bottom: 10px;
        border-right: none;
    }
    .mainFlex header .menu_cont .mainmenu .menunav a{
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .mainFlex header .menu_cont .mainmenu .onlineBut{
        width: 400px;
        height: 80px;
    }
    .mainmenu .onlineBut a .item .log{
        background-color: #fff;
    }
    .mainmenu .onlineBut a .item .log .Triangle{
        border-left: 5px solid #000;
    }
    .mainmenu .onlineBut a .item .hoverAnime div{
        background-color: #fff;
    }
    .mainFlex header .menu_cont .mainmenu p{
        font-size: clamp(1rem, 0.636rem + 1.82vw, 1.8rem);
        color: #fff;
    }
    .mainmenu .onlineBut a .item div:nth-child(1){
        text-align: center;
    }
    .mainmenu .onlineBut a .item div p:nth-child(1){
        font-size: clamp(1rem, 0.636rem + 1.82vw, 1.8rem);
    }
    .mainmenu .onlineBut a .item div p:nth-child(2){
        font-size: clamp(1rem, 0.773rem + 1.13vw, 1.5rem);
    }
    .mainFlex header .menu_cont .sub_menu{
        display: flex;
        width: 100%;
        min-height: auto;
        height: auto;
        flex-direction: column;
        align-items: center;
        position: relative;
        bottom: 0;
    }
    .mainFlex header .menu_cont .sub_menu .menunav{
        width: 400px;
        height: 80px;
        margin-bottom: 10px;
        border-right: none;
    }
    .mainFlex header .menu_cont .sub_menu p{
        font-size: clamp(1rem, 0.636rem + 1.82vw, 1.8rem);
        color: #fff;
    }
    .mainFlex header .menu_cont .sub_menu .snslink{
        width: 130px;
    }
    .mainFlex header .menu_cont .sub_menu .snslink .facebook,
    .mainFlex header .menu_cont .sub_menu .snslink .instagram{
        width: auto;
        height: auto;
    }
    .mainFlex header .menu_cont .sub_menu .snslink div a{
        display: flex;
        width: 50px;
        height: 50px;
        justify-content: center;
        align-items: center;
    }
    .mainFlex header .menu_cont .sub_menu .snslink img.snsBLK{
        display: none;
    }
    .mainFlex header .menu_cont .sub_menu .snslink img.snsFFF{
        display: block;
        width: 92%;
        height: 92%;
    }
    .mainFlex section .container{
        margin-top: 7vh;
    }
    section footer{
        min-height: auto;
        height: auto;
    }
    section footer .foot{
        max-width: 95%;
    }
    section footer .topInfo{
        flex-direction: column;
        padding: 0;
    }
    footer .topInfo .logoArea{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    footer .topInfo .address{
        padding: 0;
    }
    footer .topInfo .SNSlink{
        margin-top: 20px;
        margin-left: 0;
    }
    section footer .foot .menuLink{
        flex-direction: column;
        padding: 0;
    }
    footer .foot .menuLink a{
        display: block;
        width: auto;
    }
    footer .foot .menuLink a:nth-child(2), 
    footer .foot .menuLink a:nth-child(3), 
    footer .foot .menuLink a:nth-child(4), 
    footer .foot .menuLink a:nth-child(5), 
    footer .foot .menuLink a:nth-child(6){
        margin-left: 0;
    }
    footer .foot .menuLink a .linkFlex{
        width: 100%;
        height: 55px;
        justify-content: space-between;
        border-bottom: 1px solid #cccccc;
    }
    footer .foot .online{
        width: 100%;
        height: 55px;
        margin: 0;
        padding: 0;
    }
    footer .foot .online a{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    footer .foot .company{
        width: 100%;
    }
    footer p.rights{
        white-space: nowrap;
    }
    @media screen and (max-width:480px){
        .mainFlex header .burger{
            left: 5px;
        }
        .mainFlex header .burger .burgerBorder,
        .mainFlex header .burger .burgerBorder02{
            width: 32px;
        }
        .mainFlex header .menu_cont .mainmenu .menunav,
        .mainFlex header .menu_cont .sub_menu .menunav{
            width: 300px;
            border-right: none;
        }
        .mainFlex header .menu_cont .mainmenu .onlineBut{
            width: 300px;
            height: 70px;
        }
        section footer .foot .menuLink{
            align-items: center;
        }
        footer .foot .menuLink a{
            width: 88%;
        }
        footer .foot .online{
            width: 88%;
            margin: auto;
        }
    }
}
/*レスポンシブ対応済み　スマホ、タブレット*/