@charset "UTF-8";

/* 共通&SPレイアウト */

@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

body {
    width: 100%;
	font-family: 'Noto Sans Japanese','sans-serif';
}

p {
    color: #505050;
}

a {
    text-decoration: none;;
}

#ctjc a {
    font-color: #707070;
}

/*-------------------- ヘッダー　--------------------*/

header {
    height: 70px;
    background-color: #e7e7e7;
    border: 1px solid #707070;
}

header h1 {
    color: #707070;
    font-weight: 400;
    font-size: 12px;
}


/*-------------------- ハンバーガーメニュー　--------------------*/

.hamburger ol,ul {
    list-style: none;
    list-style-type: none;
}

.hamburger a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0.1em;
}

.hamburger {
    margin: 20px auto 0;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
}


.hamburger .btn-gNav {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 9999;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #ffffff;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span:nth-child(1) {
    top: 0;
}

.hamburger .btn-gNav span:nth-child(2) {
    top: 10px;
}

.hamburger .btn-gNav span:nth-child(3) {
    top: 20px;
}

.hamburger .btn-gNav.open span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger .btn-gNav.open span:nth-child(2),
.hamburger .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


.btn-gNav {
    display: none;
}

.gNav .gNav-menu {
    display: flex;
    justify-content: space-between;
}

.gNav .gNav-menu li {
    margin: 0 auto;
    padding: 0 5px;
}

a#ctjc {
    color: #707070;
}



@media screen and (max-width: 960px) {
    .btn-gNav {
        display: block;
    }

    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        font-size: 16px;
        box-sizing: border-box;
        z-index: 9998;
        padding-top: 50px;
        transition: .3s;
    }

    .gNav.open {
        right: 0;
    }

    .gNav .gNav-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
        
    }

    .gNav .gNav-menu li {
        width: 86%;
        padding: 15px;
        border-bottom: #525252 1px solid;
    }

}


@media screen and (min-width: 961px) {

    .hamburger a {
        color: #3c3c3c;
        font-size: 14px;
    }

    .hamburger a:hover {
        color: #9f9f9f;
        border-bottom: 1px solid #707070;
    }

    a#ctjc {
        border-bottom: none;
    }
    

}









/*-------------------- フッター　--------------------*/

footer {
    /*height: 400px;*/
    background-color: #000000;
}

footer {
    margin-top:70px;
    display: grid;
    grid-template-columns: 1fr;
}

footer p {
    color: #ffffff;
    font-weight: 600;
}

footer .footerlogo {
    margin: 0 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ffffff;
}

footer .abbreviation {
    font-size: 80px;
    font-family: 'Shippori Mincho', serif;
    text-align: center;
}

footer .japanese {
    font-family: 'Shippori Mincho', serif;
    text-align: center;
}

footer .address {
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
}

footer .address div p {
     margin: 12px 0;
}

footer .copyright p {
    
}

footer .copyright {
    text-align: center;
}



/* タブレットレイアウト */

@media screen and (min-width: 480px) {

    header h1 {
        font-size: 20px;
    }
    
    
}


/* PCレイアウト */

@media screen and (min-width: 768px) {

    a#ctjc {
        font-size: 20px;
    }
    

    footer {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 60px;
        grid-template-areas: "footerlogo address" "copyright copyright";
    }

    footer .footerlogo {
        grid-area: footerlogo;
        border-bottom: none;
    }

    footer .address {
        grid-area: address;
    }

    footer .copyright {
        grid-area: copyright;
        word-break: break-word;
    }

    footer .copyright  p {

    }
}