@charset "UTF-8";
/*pc*/
@media (min-width: 751px) {

    nav{
        width: 100%;
        background: #fff;
        border-bottom: 1px solid #DBDBDB;
    }

    .menu_box{
        width: min(90% ,780px);
        margin: 0 auto;
        padding: 30px 0 25px 0;
        align-items: center;
        vertical-align: middle;
    }
    .menu_list{width: 75%;}
    .menu_list ul li{width: 20%;}
    .menu_list ul li a{
        text-align: center;
        display: block;
        width: 100%;
    }

    .menu_list ul li a div{
        width: 75px;
        height: 75px;
        margin: 0 auto 10px auto;
        text-align: center;
    }

    .menu_list ul li a div img{
        text-align: center;
        width: 100%;
    }

    .menu_list ul li a p{
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
    @media screen and (min-width: 900px) and (max-width: 1100px){
        .menu_list ul li a p{
            font-size: 0.9rem;
            letter-spacing: 0rem;
        }
    }

    @media screen and (min-width: 751px) and (max-width: 900px){
        .menu_list ul li a p{
            font-size: 0.75rem;
            letter-spacing: 0rem;
        }
    }

    .sns{
        width: 18%;
    }

    @media screen and (min-width: 751px) and (max-width: 900px){
        .sns{
            width: 20%;
        }
    }

    .sns ul li{ width: 30%;}
    .sns ul li a{
        width: 40px;
        height: 40px;
        display: block;
    }
}



/*sp*/
@media (max-width: 751px) {
    header{
        width: 100%;
        height: 65px;
        position: fixed;
        top: 0;
        z-index: 999;
        box-sizing: border-box;
    }

    nav {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        position: relative;
    }

    nav .menu_box{
        justify-content: center;
        align-items: center;
    }

    .menu_btn {
        width: 60px;
        height: 60px;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 999;
    }

    .menu {
        width: 60px;
        height: 60px;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 0 15px 10px rgba(0,0,0,0.05);
    }


    /*非表示部分*/
    #nav {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0px;
        left: 0;
        opacity: 0;
        visibility: hidden;
        background: rgba(14, 145, 159, 0.96);
        transition: all 0.5s ease-in-out;
    }


    #nav.active {
        opacity: 1;
        visibility: visible;
    }


    /*メニュー内コンテンツ*/
    nav .menu_list>ul {padding: 90px 0 30px 0;}
    nav .menu_list ul li {
        width: 100%;
        margin: 0 0 30px 0;
        text-align: center;
    }


    nav .menu_list ul li a {
        position: relative;
        width: 40%;
        margin: 0 auto;
        display: block;
        font-size: 0.95rem;
        line-height: 0.95rem;
        font-weight: 500;
        color: #fff;
        letter-spacing: 0.05rem;
        padding-bottom: 15px;
    }


    nav .menu_list ul li a {border-bottom: 1px solid #fff;}

    /*+-ボタン
    .toggle:before, .toggle:after {
        display: block;
        content: '';
        background-color: #fff;
        position: absolute;
        width: 12px;
        height: 1px;
        top: 25%;
        right: 10px;
        transform: translate(0, -50%);
    }

    .toggle:before {
        width: 1px;
        height: 12px;
        right: 15px;
    }
    .toggle.active:before {
        content: normal;
    }*/





    /*メニューボタン*/
    .menu_btn .menu span {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 30px;
        height: 2px;
        background-color: #09A3B3;
        transition-duration: 0.3s;
    }
    .menu span:nth-of-type(1) {top: 20px;}
    .menu span:nth-of-type(2) {top: 30px;}
    .menu span:nth-of-type(3) {bottom: 18px;}
    .menu.active span:nth-of-type(1) {
        background-color: #09A3B3;
        -webkit-transform: translateY(20px) rotate(-45deg);
        transform: translateY(12px) rotate(-45deg);
    }
    .menu.active span:nth-of-type(2) {opacity: 0;}
    .menu.active span:nth-of-type(3) {
        background-color: #09A3B3;
        -webkit-transform: translateY(-20px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
    }


    .sns{
        width: 36%;
        margin: 0 auto;
    }

    .sns ul li{ width: 30%;}
    .sns ul li a{
        width: 40px;
        height: 40px;
        display: block;
    }


}
