@charset "UTF-8";

body {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Noto Serif JP', serif;
    line-height: 2.1;
    letter-spacing: 0.03em;
    color: #fff;
    background-color: #000;
}

/*==============================================================
nav
==============================================================*/
nav {
    width: 100%;
    padding: 28px 0 29px;
    line-height: 1;
    background-color: rgb(0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
}

nav > div {
    width: 90%;
    margin: 0 auto;
}

nav > div > a {
    float: left;
    transition-duration: 0.3s;
}

nav > div > a:hover {
    opacity: 0.6;
}

nav > div > a > img {
    width: auto;
    height: 33px;
}

nav > div > ul {
    margin-top: 2px;
    float: right;
}

nav > div > ul > li {
    margin-left: 9px;
    display: inline-block;
}

nav > div > ul > li > a {
    text-align: center;
    display: inline-block;
}

nav > div > ul > li > a > span:first-child {
    margin-bottom: 3px;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-block;
    transition-duration: 0.3s;
}

nav > div > ul > li > a:hover > span:first-child {
    color: rgb(210, 150, 0);
}

nav > div > ul > li > a > span:last-child {
    font-size: 10px;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    letter-spacing: 1px;
    color: rgb(240, 240, 240);
}

nav > div > button,
#toggle_menu {
    display: none;
}

/* OFF
@media screen and (max-width:1024px) {
*/
    nav > div > a > img {
        height: 29px;
    }

    nav > div {
        width: 96%;
    }

    nav > div > ul {
        margin-top: 0;
    }

    nav > div > ul > li {
        margin-left: 6px;
    }

    nav > div > ul > li > a > span:first-child {
        margin-bottom: 1px;
        font-size: 13px;
    }
/*
}
*/

/* OFF
@media screen and (max-width:896px) {
*/
    nav {
        padding: 20px 0;
    }

    nav > div > a > img {
        height: 30px;
    }

    nav > div > ul {
        display: none;
    }
    #toggle_btn {
        width: 45px;
        height: 30px;
        float: right;
        display: block;
        position: relative;
    }

    #toggle_btn > span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        display: block;
        position: absolute;
        right: 0;
        transition-duration: 0.3s;
    }

    #toggle_btn > span:nth-child(1) {
        top: 18%;
    }

    #toggle_btn.on > span:nth-child(1) {
        top: 50%;
        margin-top: -1px;
        transform: rotate(36deg);
    }

    #toggle_btn > span:nth-child(2) {
        margin-top: -1px;
        top: 50%;
    }

    #toggle_btn.on > span:nth-child(2) {
        width: 0;
    }

    #toggle_btn > span:nth-child(3) {
        bottom: 18%;
    }

    #toggle_btn.on > span:nth-child(3) {
        bottom: 50%;
        margin-top: 1px;
        transform: rotate(-36deg);
    }

    #toggle_menu {
        width: 100%;
        height: 100%;
        padding: 70px 0;
        line-height: 1;
        background-color: rgb(0, 0, 0);
        display: block;
        overflow-y: scroll;
        box-sizing: border-box;
        opacity: 0;
        position: fixed;
        top: 0;
        left: 100%;
        z-index: 4900;
        transition-duration: 0.3s;
        -webkit-overflow-scrolling: touch;
    }

    #toggle_menu.on {
        opacity: 1;
        left: 0;
    }

    #toggle_menu > div {
        width: 96%;
        margin: 0 auto;
    }

    #toggle_menu > div > p:first-child {
        margin: 45px 0;
        font-size: 24px;
        text-align: center;
        letter-spacing: 3px;
    }

    #toggle_menu > div > ul {
        margin-bottom: 54px;
    }

    #toggle_menu > div > ul > li {
        padding: 24px 0;
        border-bottom: 1px dashed rgb(120, 120, 120);
        text-align: center;
    }

    #toggle_menu > div > ul > li:first-child {
        border-top: 1px dashed rgb(120, 120, 120);
    }

    #toggle_menu > div > ul > li > a {
        font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
        letter-spacing: 3px;
    }

    #toggle_menu > div > div {
        width: 100%;
        max-width: 450px;
        margin: 0 auto 30px;
    }

    #toggle_menu > div > div > a {
        width: 45%;
        padding: 18px 0;
        border: 1px solid #fff;
        text-align: center;
        font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
        letter-spacing: 3px;
        background-color: rgb(45, 45, 45);
        display: block;
    }

    #toggle_menu > div > div > a:first-child {
        float: left;
    }

    #toggle_menu > div > div > a:last-child {
        float: right;
    }

    #toggle_menu > div > p.info {
        font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
        font-size: 12px;
        line-height: 1.8;
        text-align: center;
        letter-spacing: 2px;
    }

/*
}
*/

@media screen and (max-width:480px) {

    nav > div {
        width: 93%;
    }

    #toggle_btn > span:nth-child(1) {
        top: 9%;
    }

    #toggle_btn > span:nth-child(3) {
        bottom: 9%;
    }

    #toggle_menu > div {
        width: 93%;
    }

    #toggle_menu > div > p:first-child {
        margin: 30px 0;
        font-size: 21px;
    }

    #toggle_menu > div > ul {
        margin-bottom: 30px;
    }

    #toggle_menu > div > ul > li {
        padding: 18px 0;
    }

    #toggle_menu > div > div > a {
        width: 46%;
        background-color: rgb(0, 0, 0);
    }

}

/*==============================================================
header
==============================================================*/
header {
    margin-top: 90px;
    margin-bottom: 80px;
}

header > .page_img {
    margin-bottom: 30px;
}

header > .page_img > img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: top center;
}

header > .page_title {
    width: 90%;
    margin: 0 auto;
    line-height: 1;
}

header > .page_title > p {
    margin-bottom: 21px;
    margin-left: -10px;
    font-size: 115px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 0 9px rgba(0, 0, 0, 0.3);
}

header > .page_title > h1 {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: rgb(210, 210, 210);
}

@media screen and (max-width:1024px) {

    header {
        margin-top: 86px;
        margin-bottom: 120px;
    }

    header > .page_img {
        margin-bottom: 30px;
    }

    header > .page_title {
        width: 93%;
    }

    header > .page_title > p {
        margin-bottom: 30px;
    }

}

@media screen and (max-width:896px) {

    header {
        margin-top: 70px;
        margin-bottom: 90px;
    }

    header > .page_img > img {
        height: 300px;
    }

    header > .page_title > p {
        font-size: 75px;
        letter-spacing: 3px;
    }

}

@media screen and (max-width:480px) {

    header {
        margin-bottom: 60px;
    }

    header > .page_img {
        margin-bottom: 25px;
    }

    header > .page_img > img {
        height: 210px;
    }

    header > .page_title {
        width: 90%;
    }

    header > .page_title > p {
        margin-left: -3px;
        margin-bottom: 20px;
        font-size: 42px;
        letter-spacing: 1px;
    }

    header > .page_title > h1 {
        font-size: 10px;
        letter-spacing: 1px;
    }

}

/*==============================================================
banner
==============================================================*/
#banner {
    padding: 6% 0 4.5%;
    border-top: 1px solid rgb(150, 150, 150);
    border-bottom: 1px solid rgb(150, 150, 150);
}

#banner > ul {
    width: 93%;
    max-width: 750px;
    margin: 0 auto 4.5%;
}

#banner > ul > li {
    width: 30%;
    margin-right: 5%;
    float: left;
}

#banner > ul > li:last-child {
    margin-right: 0;
}

#banner > div {
    width: 93%;
    max-width: 120px;
    margin: 0 auto 3%;
}

#banner > div > a {
    width: 35%;
    float: left;
}

#banner > div > a:first-child {
    margin-right: 30%;
}

#banner > p {
    font-size: 18px;
    text-align: center;
    letter-spacing: 3px;
}

#banner a:hover {
    opacity: 0.75;
}

@media screen and (max-width:1024px) {

    #banner {
        padding: 7.5% 0 6%;
    }

}

@media screen and (max-width:896px) {

    #banner > div {
        max-width: 100px;
        margin: 0 auto 2%;
    }

    #banner > ul > li {
        width: 28%;
        margin-right: 8%;
    }

}

@media screen and (max-width:480px) {

    #banner {
        padding: 15% 0 12%;
    }

    #banner > ul {
        margin: 0 auto 5%;
    }

    #banner > ul > li {
        width: 32%;
        margin-right: 2%;
    }

    #banner > div {
        max-width: 75px;
        margin: 0 auto 6%;
    }

}

/*==============================================================
footer
==============================================================*/
#footer {
    padding: 4.5% 0;
}

#footer > div {
    width: 93%;
    margin: 0 auto;
}

#footer > div > ul {
    margin-right: 60px;
    line-height: 1;
    float: left;
}

#footer > div > ul > li {
    margin-bottom: 18px;
}

#footer > div > ul > li:last-child {
    margin-bottom: 0;
}

#footer > div > ul > li > a {
    text-decoration: underline;
}

#footer > div > ul > li > a:hover {
    text-decoration: none;
}

#footer > div > div#calendar {
    width: 210px;
    margin-right: 60px;
    float: left;
}

#footer > div > iframe {
    width: 600px;
    height: 408px;
    float: left;
}

#footer > div > div#link {
    width: 250px;
    float: right;
}

#footer > div > div#link > a {
    display: block;
}

#footer > div > div#link > a:first-child {
    margin-bottom: 30px;
}

@media screen and (max-width:1024px) {

    #footer {
        padding: 6% 0;
    }

    #footer > div > iframe {
        width: 500px;
        height: 330px;
        float: right;
    }

    #footer > div > div#link {
        display: none;
    }

}

@media screen and (max-width:896px) {

    #footer > div > div#calendar {
        display: none;
    }

}

@media screen and (max-width:480px) {

    #footer {
        padding: 15% 0 12%;
    }

    #footer > div {
        width: 90%;
    }

    #footer > div > ul {
        margin-bottom: 9%;
        margin-right: 0;
        text-align: center;
    }

    #footer > div > ul > li {
        margin-right: 9px;
        margin-bottom: 21px;
        display: inline-block;
    }

    #footer > div > div#calendar {
        width: 100%;
        margin: 0 auto 12%;
    }


    #footer > div > iframe {
        width: 100%;
        height: 420px;
        margin-bottom: 6%;
        float: none;
    }

    #footer > div > div#link {
        width: 100%;
    }

    #footer > div > div#link > a {
        width: 47%;
        float: left;
    }

    #footer > div > div#link > a:first-child {
        margin-right: 6%
    }

    #footer > div > div#calendar,
    #footer > div > div#link {
        display: block;
    }

}

/*==============================================================
copyright
==============================================================*/
small {
    width: 100%;
    padding: 18px 0;
    font-size: 12px;
    text-align: center;
    letter-spacing: 5px;
    color: rgb(180, 180, 180);
    background-color: rgb(45, 45, 45);
    display: block;
}

/*==============================================================
goup
==============================================================*/
#goup {
    width: 45px;
    height: 45px;
    background-image: url(../img/scroll.gif);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
}

#goup:hover {
    background-image: url(../img/scroll_on.gif);
}

/*==============================================================
content｜下層ページ枠
==============================================================*/
#content {
    width: 90%;
    margin: 0 auto 15%;
}

@media screen and (max-width:1024px) {

    #content {
        width: 93%;
    }

}

@media screen and (max-width:480px) {

    #content {
        width: 90%;
        margin: 0 auto 20%;
    }

}

/*==============================================================
レスポンシブ｜表示・非表示
==============================================================*/
@media screen and (min-width:961px) {
    .pc {
        display: block
    }

    .tb {
        display: none
    }

    .mb {
        display: none
    }

    .pc_tb {
        display: block
    }

    .tb_mb {
        display: none
    }
}

@media screen and (max-width:960px) {
    .pc {
        display: none
    }

    .tb {
        display: block
    }

    .mb {
        display: none
    }

    .pc_tb {
        display: block
    }

    .tb_mb {
        display: block
    }
}

@media screen and (max-width:480px) {
    .pc {
        display: none
    }

    .tb {
        display: none
    }

    .mb {
        display: block
    }

    .pc_tb {
        display: none
    }

    .tb_mb {
        display: block
    }
}


/* anime */
.hover-opa a {
   -webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.hover-opa a:hover {
	 opacity:0.7;
}

