/* common  */

html{
    font-size: 14px;
}

body{
    line-height: 1.6;
    /*font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;*/
    /*font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
    font-family:"Yu Gothic","YuGothic","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
    box-sizing: border-box;
    color: #333;
}

img{
    vertical-align: top;
}

h1 img{
    width: 200px;
}

a:link,
a:hover,
a:visited{
	color: #333;
	text-decoration: none;
}

.fwb{
    font-weight: bold;
}


.mfp-bg {
    background: #ccc;
}


/* section */
section{
    margin-top: 30px;
}
section h3{
    font-size: 1.3rem;
    font-weight: bold;
}


/* header */
header{
    position: fixed;
    top:0;
    width:100%;
    z-index:1000;
    -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
    -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
    -o-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
header.active{
    background: rgba(255,255,255,0.9);
    margin-top: -43.5px;
}
header .title{
    background: #333;
    color:#fff;
    transition: .4s;
}
header .title{
    display: flex;
    justify-content: center;
    align-items:center;
    font-family: 'Allura', cursive;
    font-size: 1.4rem;
}
header .title p{
    padding-top: 8px;
}
header .title img{
    width: 50px;
    padding-right: 1rem;
}
header .title_hide{
    position: absolute;
    top:-100px;
}
header .header_inner{
   position: relative;
}

/* humberger menu */
header .header_inner .humMenu{
    width: 42px;
    height: 32px;
    display: block;
    position: absolute;
    top: 24px;
    z-index: 3;
    right: 15px;
}
header .header_inner .humMenu span{
    width: 25px;
    height: 2.5px;
    display: block;
    background: #333;
    position: absolute;
    left: 50%;
    top: 15px;
    margin-left: -15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
header .header_inner .humMenu .top {
    -webkit-transform: translateY(-10px) scale(1);
    -ms-transform: translateY(-10px) scale(1);
    transform: translateY(-10px) scale(1);
}
header .header_inner .humMenu .middle {
    background: none;
    position: relative;
}
header .header_inner .humMenu .middle:before,
header .header_inner .humMenu .middle:after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    content: "";
    width: 25px;
    height: 2.5px;
    background: #333;
    display: block;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    position: absolute;
}  
header .header_inner .humMenu .bottom {
    -webkit-transform: translateY(10px) scale(1);
    -ms-transform: translateY(10px) scale(1);
    transform: translateY(10px) scale(1);
}
header .header_inner .humMenu.is-open .top {
    -webkit-transform: translateY(0px) scale(0);
    -ms-transform: translateY(0px) scale(0);
    transform: translateY(0px) scale(0);
} 
header .header_inner .humMenu.is-open .bottom {
    -webkit-transform: translateY(0px) scale(0);
    -ms-transform: translateY(0px) scale(0);
    transform: translateY(0px) scale(0);
}
header .header_inner .humMenu.is-open .middle:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}  
header .header_inner .humMenu.is-open .middle:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#pageTop{
   position: relative; 
   display: none;
}
#pageTop a{
    position: fixed;
    right:20px;
    bottom: 20px;
}

#backlayer{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index:999;
}


@media all and (min-width: 768px) {

    html{
        font-size: 16px;
    }

    header .humMenu{
        display: none !important;
    }

    /* inner */
    .inner{
        max-width: 1000px;
        margin: 0 auto;
    }

    /* header */
    header .header_inner{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header_inner ul{
        display: flex;
        font-size: 0.875rem;
    }

    /* globalMenu */
    #globalMenu li{
        padding: 0 1rem;
    }

    /* section */
    section{
        margin-top: 120px;
    }
    section h3{
        font-size: 1.875rem;
    }

}
