@charset "UTF-8";
/* CSS Document */


* {
    box-sizing: border-box;
}



body {
    margin: 0 auto;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 14px;
}


/*ーーーーーPC画面用ーーーーー*/
.container {
    max-width: 1170px;
    min-width: 960px;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
}

.clear {
    clear: left;
    clear: right;
}

/*ヘッダー*/

header {
    height: 65px;
    width: 100%;
    background-color: rgba(360, 360, 360, 0.8);
    position: fixed;
    top: 0;
    z-index: 100;
}

.header-left {
    float: left;
    line-height: 65px;
    width: 220px;
}

.header-left img {
    padding: 0 0 5px;
    width:100%;
}

.header-right {
    float: right;
    line-height: 65px;
}

.header-right a {
    margin-left: 20px;
    color: #000000;
    font-size: 16px;
    padding: 10px 10px;
    transition: all 0.2s ease-out;
    text-decoration: none;
    font-family: 'Philosopher', sans-serif;
    /*font-family: 'Viga', sans-serif;*/
    letter-spacing: 0.1em;
}

.header-right a:hover {
    color: white;
}

.menu-icon {
    display: none;
}

.close {
    display: none;
}

.iphone-menu-wrap {
    display: none;
}


/*フッター画面*/

footer {
    background-color: #1a1a1a;
    height: auto;
    padding: 70px 0 20px;
    text-align: center;
}

.footer-title {
    padding: 0 0 40px;
}

.footer-title h2 {
    font-size: 35px;
    color: white;
    font-family: 'Philosopher', sans-serif;
    letter-spacing: 0.1em;
}

.follow-wrap img {
    padding: 0 30px;
}

.last {
    padding: 40px 0 0 0;
}

.last p{
    font-size: 32px;
    color: white;
    font-family: 'Philosopher', sans-serif;
    letter-spacing: 0.1em;
}

footer .notes{
    height: auto;
    display: inline-block;
    padding-top: 40px;
}

footer p{
    color: white;
    text-align: center;
    font-size: 7px;
    display: inline-block;
}

small{
    color: white;
    text-align: center;
    padding: 10px 0 0;
    display: inline-block;
    width: 100%;
}

/*ページトップボタン*/
footer .pagetop {
    position: fixed;
    bottom: 20px;
    right: 50px;
    display: none;
    animation: pagetop-out 0.2s linear 0s;
}

footer .pagetop.active {
    display: block;
    animation: pagetop-in 0.21s linear 0s;
}







/*ーーーーースマホ画面用ーーーーー*/

@media(max-width:768px) {
    /*max-width:768pxはスマホ対応に適した幅*/

    .container {
        max-width: 768px;
        min-width: 300px;
        margin: 0 auto;
        padding: 0 30px;
    }

    header {
        height: 100px;
        max-width: 100%;
    }

    .header-left {
        line-height: 100px;
        margin: 0 0 0 -15px;
        width: 210px;
    }

    .header-left img {
        padding: 0 0 0px;
    }

    .header-right {
        line-height: 100px;
        width: 50px;
    }

    .header-menu a {
        display: none;
    }

    .menu-icon {
        display: inline-block;
        cursor: pointer;
        height: 50px;
        width: 50px;
    }

    .menu-icon .bars {
        display: inline-block;
        width: 50px;
        height: 50px;
    }

    .iphone-menu-wrap {
        display: block;
        width: 150px;
        height: 320px;
        background-color: rgba(153, 153, 153, 0.7);
        position: absolute;
        position: fixed;
        top: -320px;
        right: 0px;
        z-index: 1;
        text-align: center;
        display: none;
        font-family: 'Philosopher', sans-serif;
        letter-spacing: 0.1em; 
    }

    .close {
        width: 50px;
        height: 50px;
        display: none;
    }

    .iphone-menu-wrap a {
        width: 100%;
        height: 25%;
        padding: 25px 0;
        color: #000000;
        font-size: 30px;
        transition: all 0.2s ease-out;
        text-decoration: none;
        float: left;
        display: inline-block;
        border-bottom: 1px solid #4D4D4D;
    }

    .iphone-menu-wrap a:active {
        color: white;
    }

    .iphone-menu-wrap a:last-child {
        border-bottom: none;
    }
