@charset "UTF-8";

/*---------------------
reset
---------------------*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,
small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video,textarea,input {
    margin:0;
    padding:0;
    border:none;
    outline:0;
    font-size:100%;
    -webkit-text-size-adjust: 100%;
    vertical-align:baseline;
    background:transparent;
    font: inherit;
    font-family:'Lucida Grande','Hiragino Kaku Gothic ProN',Meiryo, sans-serif;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary {
    display: block;
}
li {
    list-style:none inside;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*---------------------
clearfix
---------------------*/
.cf:after {
    clear:both;
    content:".";
    display:block;
    height:0;
    visibility:hidden;
}
* html .cf{
    height:1%;
}

/*---------------------
base
---------------------*/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body,div,p,th,td,dl,dt,dd,ul,ol,li {
    color:#555;
    font-size:1.6rem;
    line-height:2.0;
}
a:link {
    color:#08f;
    text-decoration:none;
}
a:visited {
    color:#08f;
    text-decoration:none;
}
a:hover {
    color:#08c;
    text-decoration:none;
}
a:active {
    text-decoration:none;
}


/*==================
common
==================*/
#btn-toTop {
    display:inline-block;
    position:fixed;
    bottom:30px;
    right:30px;
    background-color: #eee;
    border-top-right-radius:4px;
    border-top-left-radius:4px;
    width:80px;
    height:50px;
    text-align: center;
    padding-top: 8px;
}
#btn-toTop a {
    color:#555;
}

header {
    display: none;
    position: fixed;
    z-index: 10000;
    width:100%;
    border-bottom:1px solid #ccc;
    background-color: #fff;
    background:rgba(255,255,255,0.7);
}
.header-inner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}
.header-inner h1 {
    width:225px;
    padding: 2px 0 0 8px;
}
.header-inner h1 img {
    width:100%;
}
.header-inner nav.NavMenu{
    position: fixed;
    z-index: 12;
    top: 0;
    left: 0;
    background-color:rgba(0,0,0,0.8);
    text-align: center;
    width: 100%;
    height: 60%;
    display: none;
}
.header-inner nav.NavMenu ul{
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 50px;
    left: 0;
}
.header-inner nav.NavMenu ul li{
    width: 100%;
    padding-bottom: 0px;
}
.header-inner nav.NavMenu ul li:last-child{
    padding-bottom: 0;
}
.header-inner nav.NavMenu ul li a{
    display: block;
    color: #fff;
    padding: 15px 0;
    font-weight: bold;
    font-size: 1.8rem;
}
.header-inner .Toggle {
    position: fixed;
    right:18px;
    top: 3px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 13;
    display: block;
}
.header-inner .Toggle span {
    display: block;
    position: absolute;
    width: 35px;
    border-bottom: solid 2px #aaa;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}
.header-inner .Toggle span:nth-child(1) {
    top: 9px;
}
.header-inner .Toggle span:nth-child(2) {
    top: 20px;
}
.header-inner .Toggle span:nth-child(3) {
    top: 31px;
}
.header-inner .Toggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: solid 2px #fff;
}
.header-inner .Toggle.active span:nth-child(2),
.header-inner .Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    border-bottom: solid 2px #fff;
}
.title-bnr {
    margin-bottom:50px;
}
.title-bnr img {
    width:100%;
    height:auto;
}

footer {
    background-color: #eee;
    padding:10px;
    text-align: center;
}
footer ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
footer li a {
    display: inline-block;
    border-right:1px dotted #aaa;
    padding:0 5px;
    white-space: nowrap;
}
footer li:last-of-type a {
    border-right:0;
}
footer li a:link {
    font-size:1.2rem;
    color:#555;
}
footer li a:visited {
    font-size:1.2rem;
    color:#555;
}
footer small {
    font-size:1.0rem;
}

/*=======================
メディアクエリ　768px〜
=======================*/
@media screen and (min-width: 768px) {
    .header-inner .Toggle {
        margin-top: 8px;
    }
}

/*=======================
メディアクエリ　960px〜
=======================*/
@media screen and (min-width: 960px) {

    .header-inner .Toggle {
        display: none;
    }
    .header-inner nav.NavMenu {
        position: static;
        display: block;
        background-color: transparent ;
    }
    .header-inner nav.NavMenu ul {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        width: auto;
        position: static;
        margin-right:30px;
    }
    .header-inner nav.NavMenu ul li {
        margin-right:30px;
    }
    .header-inner nav.NavMenu ul li a {
        color:#555;
        font-weight:normal;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .header-inner nav.NavMenu ul li a::before {
        content: "";
        position: absolute;
        width: 0;
        background: #555;
        left: 45%;
        height: 2px;
        bottom: 12px;
        transition: all .3s;
    }
    .header-inner nav.NavMenu ul li a:hover {
        text-decoration: none;
    }
    .header-inner nav.NavMenu ul li a:hover::before {
        width: 100%;
        left: 0;
    }
    .header-inner h1 {
      width:276px;
      padding: 2px 0 0 40px;
  }
}