/*******************************************
****  共通パーツ
*******************************************/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.mt_70{
    margin-top: 70px !important;
}
.mt_15{
    margin-top: 15px !important;
}
.mb_0{
    margin-bottom: 0px !important;
}
body{
    font-family: "Noto Sans JP";
    letter-spacing: 0.08em;
    color: #121212;
    line-height: 1.6;
    font-size: 18px;
}
a{
    color: #121212;
    transition: 0.3s linear;
}
a:hover{
    opacity: .7;
    cursor: pointer;
}
h1,h2,h3{
    font-weight: normal;
}
li{
    list-style: none;
}
.flex_reverse{
    flex-wrap: wrap-reverse;
}
.frame{
    position: fixed;
    background: #96b996;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000001;
}
.frame.frame_top{
    height: 8px;
    bottom: inherit;
}
.frame.frame_right{
    width: 8px;
    left: inherit;
}
.frame.frame_left{
    width: 8px;
    right: inherit;
}
.frame.frame_bottom{
    height: 8px;
    top: inherit;
}
.frame_top_inner{
    height: 8px;
    width : -webkit-calc(100% - 16px);
    top: 8px;
    left: 8px;
    background: #e60073;
    position: fixed;
    z-index: 999999;
}
.frame_right_inner{
    width: 8px;
    height: 100%;
    left: 8px;
    background: #e60073;
    position: fixed;
    z-index: 999999;
}
.frame_left_inner{
    width: 8px;
    height: 100%;
    right: 8px;
    background: #e60073;
    position: fixed;
    z-index: 999999;
}
.frame_bottom_inner{
    height: 8px;
    width : calc(100% - 16px);
    bottom: 8px;
    background: #e60073;
    position: fixed;
    z-index: 999999;
}
.frame_inner{
    position: fixed;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    z-index: 0;
}
header{
    position: fixed;
    top: 16px;
    left: 16px;
    padding-top: 4vw;
    background: #ffffff;
    width: 100%;
    width : -webkit-calc(100% - 32px);
    width : calc(100% - 32px);
    z-index: 100;
}
.logo_img{
    text-align: center;
    margin: 0;
}
.logo_img a{
    line-height: 1;
}
.logo_img img{
    width: 210px;
    padding-top: 20px;
}

/*メニュー部分*/
nav{
    display: none;
    position: absolute;
    top:0px;
    width: 100%;
    left: 0;
    background: #ebebeb;
}
header nav ul{
    display: block;
    margin: 0 auto;
    width: 100%;
}
header nav ul li{
    margin: 0 auto;
    text-align: center;
    border-bottom: 2px solid #a0a0a0;
    line-height: 11vh;
}
header nav ul li:last-child{
    border: none;
}
header nav ul li:first-child{
    line-height: 11vh;
}
header nav ul li a{
    display: block;
    color: #000000;
    font-family: 'Lora', serif;
    font-size: 5vw;
}
#blank{
    padding-top: 149px;
}
/****
ふわっとするやつ用CSS
__________________________*/
.fuwatAnime {
    -webkit-animation-fill-mode:both;
    -ms-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:1.5s;
    -ms-animation-duration:1.5s;
    animation-duration:1.5s;
    -webkit-animation-name: fuwatAnime;
    -ms-animation-name: fuwatAnime;
    animation-name: fuwatAnime;
    visibility: visible !important;
}
@-webkit-keyframes fuwatAnime {
    0% { opacity: 0; -webkit-transform: translateY(10px); }
    100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fuwatAnime {
    0% { opacity: 0; -webkit-transform: translateY(10px); -ms-transform: translateY(10px); transform: translateY(10px); }
    100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}


/*開閉ボタン*/
#nav_toggle{
    display: block;
    width: 50px;
    height: 36px;
    position: absolute;
    top: 35px;
    right: 35px;
    z-index: 100000;
}
#nav_toggle:hover{
    cursor: pointer;
}
#nav_toggle div {
    position: relative;
}
#nav_toggle span{
    display: block;
    height: 4px;
    background: #000;
    position:absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;	
}
#nav_toggle span:nth-child(1){
    top:0px;
}
#nav_toggle span:nth-child(2){
    top:16px;
}
#nav_toggle span:nth-child(3){
    top:32px;
}
/*開閉ボタンopen時*/
.open #nav_toggle span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #a0a0a0;
}
.open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}
.open #nav_toggle span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #a0a0a0;
}
section{
    /* width : -webkit-calc(100% - 32px);
    width : calc(100% - 32px); */
    margin: 0 auto;
}
#loading{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width:70px;
    height:75px;
}
#loader-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #FFF;
    z-index: 1;
}
/*******************************************
****  PC(750px以上の時！！)
*******************************************/
@media (min-width: 750px) {
    body{
        font-size: 18px;
    }
    header{
        padding-top: 30px;
    }
    header nav ul li a {
        font-size: 40px;
    }
}

.pc_mode{
    display:none;
}