@charset "utf-8";
/* ===================================================================
CSS information
 file name  :  menu.css
 style info :  スタイル指定
=================================================================== */

.li-in-page ul::after {
    content: "";
    display: block;
    width: 0%;
}

/* header menu
----------------------------------------------------------------------------- */
nav.menu{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	background-color: #fff;
    z-index: 200;
	border-bottom: 1px solid #EAEAEA;
}
nav.menu.fixed{
	position: fixed;
	display: block;
}
nav.menu h1{
    line-height: 50px;
    width: 100%;
    text-align: right;
    padding: 0 17px;
    font-size: 11px;
}
nav.menu h1.close{
    display: none;
}
/* title
----------------------------------------------------------------------------- */
.title{
    margin-top: 100px;
    width: 100%;
    height: 166px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F4F2EA;
}

/* BreakPoint 1200px
=============================================================*/
@media only screen and (max-width: 1200px) {
.title {
    margin-top: 86px;
}
}

/* BreakPoint 1000px
=============================================================*/
@media only screen and (max-width: 1000px) {
h2{
    font-size: 14px;
}

.title {
    margin-top: 40px;
    height: 60px;
}



}