@charset "UTF-8";
/*===============レイアウト===============
     1:全ページ共通
     2:ヘッダ
     3:フッタ
/*==================================
    ■ 1:全ページ共通
==================================*/
/*ログイン表示（フラッシュメッセージ）*/
#notice{
    z-index: 10001;
    width:100%;
    height:125px;
    line-height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;    
    position: absolute;
    font-size: 18px;
    padding: 20px;
    display: none;
    text-align:center;
}

#notice p{
    color:#FFF;
    font-size:18px;
    font-weight:bold;
}

@media screen and (max-width: 767px) {
    #notice{
        height:60px;
        padding: 0;
    }

    #notice p{
        font-size:17px;
    }
}


/*ドロワー*/
.drawer-menu {
    width: 90%;
    padding-bottom: 40px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.drawer-menu.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.close-bar {
    background-color: #e8e8e8;
    height: 60px;
    position: relative;
}
.close-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}
.close-btn i {
    cursor: pointer;
    font-size: 30px;
}
.drawer-menu nav ul {
    background-color: #fff;
}
.drawer-menu nav ul li {
    border-top: 1px solid #d2d2d2;
}
.drawer-menu nav ul li a {
    position: relative;
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}
.drawer-menu nav ul li a:after {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\f3d1";
    font-family: ionicons;
    display: block;
    color: #ddd;
    font-size: 16px;
}
.drawer-menu nav ul li a i {
    margin-right: 15px;
    font-size: 22px;
    vertical-align: -2px;
}
.sub-nav li:last-child {
    border-bottom: 1px solid #d2d2d2;
}

@media screen and (min-width: 768px) {
    .drawer-menu {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .drawer-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
    }
}


/*全体*/
.wrapper {
    width: 100%;
    box-shadow: -2px 0px 4px 0px rgba(119, 119, 119, 0.2);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    /*iPhone6 Plus対策*/
    border-radius: 1px;
}
.wrapper.close {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(90%)\9;
    -webkit-transform: translate3d(90%, 0, 1px);
    transform: translate3d(90%, 0, 1px);
}
@media screen and (max-width: 767px) {
    .wrapper {
        position: relative;
        padding-top: 60px;
    }
}

/*==================================
    ■ 2:ヘッダ
==================================*/
header {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 2px 3px 0.1px rgba(119, 119, 119, 0.2);
}
header h1 {
    height: 60px;
    padding: 8px 0;
    text-align: center;
}
header h1 img {
    width: auto;
    height: 100%;
    vertical-align: middle;
}
.menu-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}
.menu-btn i {
    cursor: pointer;
    font-size: 38px;
}
header nav {
    display: none;
}

@media screen and (min-width: 768px) {
    header {
    /*    height: 100%;*/
        min-height: 40px;
        padding: 12px 0;
    }
    .header-group {
        max-width: 960px;
        margin: 0 auto;
        /*display: table;*/

    }
    header h1 {
        display: table-cell;
        vertical-align: bottom;
        text-align: left;
        padding: 0;
    }
    header h1 img {
        vertical-align: bottom;
        max-width: 300px;
        width: auto;
        max-height: 200px;
        height: auto;
    }
    .menu-btn {
        display: none;
    }
    header nav {
        display: table-cell;
        vertical-align: bottom;
        text-align: right;
    	width:100%;
    }
    header nav ul li {
        display: inline-block;
    }
    header nav ul li + li {
        margin-left: 20px;
    }
    header nav ul li a {
        color: #333;
        font-size: 12px;
    }
    header nav ul li a i {
        margin-right: 7px;
    }
}
@media screen and (max-width: 767px) {
    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 10000;
    }
}

/*==================================
    ■ 3:フッタ
==================================*/
footer {
    width:100%;
    box-shadow: inset 0px 2px 3px 0.1px rgba(52, 52, 52, 0.2);
    padding: 25px 15px;
    color: #fff;
}
.category-group {
    box-shadow: 0px 1px 0px 0px rgba(234, 234, 234, 0.1);
    border-bottom: 1px solid rgba(79, 79, 79, 0.2);
    margin: 0 0 25px 0;
    padding: 0 0 15px 0;
    /*iPhone6 Plus対策*/
    border-radius: 1px;
}
footer h2 {
    display: none;
}
.category li {
    display: inline;
}
.category li ul {
    display: inline;
}
.category li ul li {
    display: inline;
}
.category a {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    margin: 0 10px 10px 0;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.1);
    border: solid 1px rgba(55,55,55,0.2);
    box-shadow: 0px 2px 2px 0.1px rgba(119, 119, 119, 0.2);
}
.category li ul li a:before {
    content: "\f2aa";
    font-family: ionicons;
    display: inline-block;
    margin-right: 5px;
    color: #fff;
    font-size: 12px;
}
.other-info {
    /*display: none;*/
}
.other-info a {
    color:#fff;
}
.facebook {
    width: 100%;
    text-align: center;
/*    height: 154px;
    line-height: 154px;
    background-color: #000;
    text-align: center;*/
    margin:0 auto 30px;
}
.sns-btn {
    text-align: center;
    box-shadow: 0px 1px 0px 0px rgba(234, 234, 234, 0.1);
    border-bottom: 1px solid rgba(79, 79, 79, 0.2);
    margin-bottom: 25px;
    padding-bottom: 25px;
    /*iPhone6 Plus対策*/
    border-radius: 1px;
}
.sns-btn li {
    display: inline-block;
}
.sns-btn li a {
    display: block;
    border-radius: 4px;
    width: 134px;
    height: 44px;
    line-height: 44px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    box-shadow: 0px 2px 2px 0.1px rgba(119, 119, 119, 0.2);
}
.sns-btn li a:hover {
    opacity: 0.6;
}
.twitter-btn a {
    background-color: #55acee;
    border: solid 1px #50a0dd;
    margin-right: 15px;
}
.twitter-btn a:before {
    content: "\f243";
    font-family: ionicons;
    display: inline-block;
    margin-right: 6px;
    color: #fff;
    font-size: 19px;
    vertical-align: -2px;
}
.facebook-btn a {
    background-color: #3b5a9a;
    border: solid 1px #334d85;
}
.facebook-btn a:before {
    content: "\f231";
    font-family: ionicons;
    display: inline-block;
    width: 15px;
    height: 17px;
    border-radius: 2px;
    line-height: 22px;
    background-color: #fff;
    margin-right: 6px;
    padding-left: 2px;
    color: #3b5a9a;
    font-size: 16px;
    vertical-align: -2px;
}
footer small {
    display: block;
    font-size: 10px;
    text-align: center;
}

@media screen and (min-width: 960px) {
    footer {
        padding: 47px 0;
    }
    .footer-group {
        width: 960px;
        margin: 0 auto;
    }
    footer h2 {
        display: inherit;
        font-size: 14px;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(79,79,79,0.2);
        box-shadow: 0px 1px 0px 0px rgba(234, 234, 234, 0.2);
    }
    footer h2 i {
        margin-right: 4px;
    }
    .category-group {
        width: 210px;
        float: left;
        margin: 0 18px 0 0;
        padding: 0 18px 0 0;
        border-bottom: none;
        border-right: 1px solid rgba(79,79,79,0.2);
        box-shadow: 1px 0px 0px 0px rgba(234, 234, 234, 0.2);
    }
    .category {
        line-height: 2.2;
    }
    .category li {
        display: block;
    }
    .category li ul {
        display: block;
    }
    .category li ul li {
        display: block;
        padding-left: 5px;
    }
    .category a {
        display: inline;
        font-size: 14px;
        padding: 0;
        margin: 0;
        border-radius: 0;
        background: none;
        border: none;
        box-shadow: none;
    }
    .category li ul li a:before {
        content: "\f3d1";
        font-family: ionicons;
        display: inline-block;
        margin-right: 4px;
        color: #fff;
        font-size: 8px;
    }
    .other-info {
        display: inherit;
        float: left;
        width: 230px;
    }
    .other-info li {
        margin-bottom: 12px;
    }
    .other-info a {
        color: #fff;
        font-size: 14px;
    }
    .other-info a:before {
        content: "\f3d1";
        font-family: ionicons;
        display: inline-block;
        margin-right: 4px;
        color: #fff;
        font-size: 8px;
    }
    .sns-group {
        float: right;
    }
    .facebook {
        width: 500px;
        text-align: left;
    /*    height: 224px;
        line-height: 224px;
        background-color: #000;
        text-align: center;*/
        margin:0 auto 22px;
    }
    .sns-btn {
        text-align: left;
        box-shadow: none;
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .sns-btn li {
        display: inline-block;
    }
    .sns-btn li a {
        width: 114px;
        height: 32px;
        line-height: 32px;
        font-size: 12px;
        text-align: center;
        text-decoration: none;
    }
    .twitter-btn a {
        margin-right: 50px;
    }
    .twitter-btn a:before {
        font-size: 14px;
    }
    .facebook-btn a:before {
        content: "\f231";
        font-family: ionicons;
        display: inline-block;
        width: 15px;
        height: 17px;
        border-radius: 2px;
        line-height: 23px;
        background-color: #fff;
        margin-right: 6px;
        padding-left: 2px;
        color: #3b5a9a;
        font-size: 15px;
        vertical-align: -4px;
    }
    footer small {
        clear: both;
        padding-top: 15px;
    }
}
