@charset "UTF-8";
/* CSS Document */

html {
    -webkit-text-size-adjust: 100%;
}


/* header 
---------------------------------------------------------------------------- */
#header {
    position: relative;
    max-width: 1200px;
    width: 100%;
    height: 250px;
    margin: 0 auto;
    overflow: hidden;
}

/* ロゴ */
.site_logo{
    position: absolute;
	height: 40%;
    width: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* メニュー帯 */
.menu_obi {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
}

/* 通常メニュー */
.n_menu {
    position: absolute;
    bottom: -25px;
    background-repeat: no-repeat;
    /* cursor: pointer; */
}
#menu01 {
    width: 36px;
    height: 126px;
    left: 7%;
    background-image: url("../images/common/menu/menu01.png");
    background-size: 36px 126px;
    /* cursor: default; */
}
#menu02 {
    width: 36px;
    height: 250px;
    left: 17%;
    background-image: url("../images/common/menu/menu02.png");
    background-size: 36px 250px;
}
#menu03 {
    width: 36px;
    height: 250px;
    left: 27%;
    background-image: url("../images/common/menu/menu03.png");
    background-size: 36px 250px;
}
#menu04 {
    width: 36px;
    height: 210px;
    left: 37%;
    background-image: url("../images/common/menu/menu04.png");
    background-size: 36px 210px;
}
#menu05 {
    width: 36px;
    height: 130px;
    left: 60%;
    background-image: url("../images/common/menu/menu05.png");
    background-size: 36px 130px;
}
#menu06 {
    width: 36px;
    height: 124px;
    left: 70%;
    background-image: url("../images/common/menu/menu06.png");
    background-size: 36px 124px;
}
#menu07 {
    width: 46px;
    height: 229px;
    left: 80%;
    background-image: url("../images/common/menu/menu07.png");
    background-size: 46px 229px;
}
#menu08 {
    width: 36px;
    height: 127px;
    left: 90%;
    background-image: url("../images/common/menu/menu08.png");
    background-size: 36px 127px;
}
#menu01:hover {background-image: url("../images/common/menu/menu01_hover.png");}
#menu01:active {background-image: url("../images/common/menu/menu01_active.png");}
#menu02:hover {background-image: url("../images/common/menu/menu02_hover.png");}
#menu02:active {background-image: url("../images/common/menu/menu02_active.png");}
#menu03:hover {background-image: url("../images/common/menu/menu03_hover.png");}
#menu03:active {background-image: url("../images/common/menu/menu03_active.png");}
#menu04:hover {background-image: url("../images/common/menu/menu04_hover.png");}
#menu04:active {background-image: url("../images/common/menu/menu04_active.png");}
#menu05:hover {background-image: url("../images/common/menu/menu05_hover.png");}
#menu05:active {background-image: url("../images/common/menu/menu05_active.png");}
#menu06:hover {background-image: url("../images/common/menu/menu06_hover.png");}
#menu06:active {background-image: url("../images/common/menu/menu06_active.png");}
#menu07:hover {background-image: url("../images/common/menu/menu07_hover.png");}
#menu07:active {background-image: url("../images/common/menu/menu07_active.png");}
#menu08:hover {background-image: url("../images/common/menu/menu08_hover.png");}
#menu08:active {background-image: url("../images/common/menu/menu08_active.png");}

/* ハンバーガーメニュー関連 */
#nav-drawer {
    display: none;
    position: absolute;
    top: 0;   /* 57.5px; */
    right: 0;
    margin: 20px 20px 0 0;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}
/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 35px;
    height: 35px;
    vertical-align: middle;
    cursor: pointer;
}
/*ハンバーガーアイコンをCSSで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 5px;/*線の太さ*/
    width: 35px;/*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
}
#nav-open span:before {
    bottom: -12px;
}
#nav-open span:after {
    bottom: -24px;
}
/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}
/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;/*最前面に*/
    width: 90%;/*右側に隙間を作る*/
    max-width: 330px;/*最大幅*/
    height: 100%;
    background: #fff;/*背景色*/
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(105%);
    transform: translateX(105%);/*右に隠しておく*/
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}
#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
/* メニュー */
ul.sidenav {
   list-style-type: none;
   margin: 0;
   padding: 0;
   width: 100%;
   background-color: #ffffff;
   position: relative;
   overflow: auto;
}
ul.sidenav li a {
   display: block;
   color: #000000;
   padding: 20px 16px;
   text-decoration: none;
   text-align: center;
   font-family: serif;
   font-weight: bold;
}
ul.sidenav li a.active {
   background-color: #da3c41;
   color: white;
}
ul.sidenav li a:hover:not(.active) {
   background-color: #1b2538;
   color: white;
}
div.content {
   margin-left: 25%;
   padding: 1px 16px;
   height: 1000px;
}

#closeHam {
    cursor: pointer;
}


/* 768px以下 */
@media screen and (max-width: 768px) {
    #header {
        height: 80px;
        /* transition: 1s; */
    }

    /* ロゴ */
    .site_logo{
        position: absolute;
        height: 80%;
        width: auto;
        margin: 5.5px 0 0 20px;
    }

    /* メニュー非表示 */
    #menu01,#menu02,#menu03,#menu04,
    #menu05,#menu06,#menu07,#menu08 {
        display: none;
    }

    /* メニュー帯 */
    .menu_obi {
        width: 768px;
        height: auto;
    }

    /* ハンバーガーメニュー */
    #nav-drawer {
        display: block;
    }
}





/* main 
---------------------------------------------------------------------------- */
#main {
    position: relative;
    width: 100%;
}





/* footer 
---------------------------------------------------------------------------- */
#footer {
    clear: both;
	background: #E4E4E4;
	/* padding: 40px 0; */
	z-index:200;
}
.f_area {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1200px;
    height: 100px;
    margin: 0 auto;
    overflow: hidden;
}
.copyright {
	color: #888;
	text-align: center;
    font-size: 12px;
    line-height: 100px;
}
.f_icon {
    position: absolute;
    display: block;
    width: 135px;
    height: auto;
    top: 0;
    bottom: 0;
    margin: auto;
}
#f_link01 {
    left: 0;
    margin-left: 30px;
}
#f_link02 {
    right: 0;
    margin-right: 30px;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .copyright {
        position: absolute;
        display: block;
        line-height: normal;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 10px;
    }
    .f_icon {
        width: 110px;
        height: auto;
        /* 初期化 */
        top: auto;
        bottom: auto;
        margin: 0;
    }
    #f_link01 {
        top: 25px;
        left: 0;
        right: 0;
        margin: auto;
        margin-left: 15%;
    }
    #f_link02 {
        top: 25px;
        left: 0;
        right: 0;
        margin: auto;
        margin-right: 15%;
    }
}


/* topup
---------------------------------------------------------------------------- */
.topup {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}
.topup img {
    width: 90px;
    height: 90px;
}
.topup a {
    display: block;
    padding: 20px 10px;
    opacity: 1;
}
.topup a:hover {
    display: block;
    padding:20px 10px;
    opacity: 0.8;
}
/* 768px以下 */
@media screen and (max-width: 768px) {
    .topup {
        bottom: 20px;
        right: 20px;
    }
    .topup img {
        width: 60px;
        height: 60px;
    }
}