@font-face {
	font-family: 'MkPOP';
	src: url(../font/mkpop/851MkPOP_101.ttf) format('truetype');
}
@font-face {
    font-family: 'Hannari';
	src: url(../font/hannari/HannariMincho-Regular.otf) format('opentype');
}
@font-face {
	font-family: 'italianno';
	src: url(../font/italianno/Italianno-Regular.ttf) format('truetype');
}

/* debug */
* {
	outline: 0px solid magenta;
}

.wrapper {
	overflow-x: hidden;
}

html {
    /* size */
    /* https://www.crystage.com/content/resolution/  */
    max-width : 3200px;       /* HTML maximum width  */
    min-width : 1200px;       /* HTML minimum width  */
    /*min-height: 2000px;*/   /* HTML minimum height */

    margin:0 auto;            /* Page margins */
    width:100%;               /* Page width */	
    text-align:center;        /* Center the entire page */
}

body{
	/*background : #f5b7b754;*/
    /*background-image: url(../img/back_img2.jpeg);*/
	background-size: 100%;

    font-family: Meiryo;
	font-size  : 15px;

    padding:0;
    margin:0 auto;            /* Body margins */
    min-width: 1000px;        /* Body minimum width */
    text-align:left;          /* Align the inside of the Body to the left */

    overflow-x: hidden;
	min-width : 1200px;
}

/************************************************************/
/* Style:ヘッダー                                            */
/************************************************************/
.header{
	display   : flex;
	text-align: center;
	justify-content: space-between;
	
    background: rgb(255, 255, 255);
	z-index: 99;

    align-items: flex-end;		/*下揃え*/

	/*border: 1px solid#000;*/
	/*border-style: dotted;*/
}
.header img{
	height: 100%;
}
.header ul{
	font-family: Hannari;
    font-size:20px;
    padding-right:5%;
}
.header a{
    margin:0px;
    font-size: 2vmin;
}
.header div{
    display: flex;
    flex-direction: column;
    margin-right :5%;
    margin-bottom:1%;
}


/************************************************************/
/* Style:フッター                                            */
/************************************************************/
.footer{
	background: rgb(90, 90, 90);
    color:white;
    
	display: flex;
    justify-content:space-between;

    padding-bottom:5%;
    padding-left:10%;
    padding-right:10%;
}
.footer h1{
    font-size:2vmin;
}
.footer p{
    font-size:1.5vmin;
}
.footer article{
    margin:30px;
}
.footer div{
    margin:30px;
}
.copyright{
	background: rgb(60, 60, 60);
	font-size : 1.5vmin;
    color     : white;
    text-align: center;
}

/************************************************************/
/* Style:メニューバー                                        */
/************************************************************/
.menu ul{
    /*background-color: rgb(255, 44, 44);*/
    background: -webkit-linear-gradient(#c40000, #ff8989);

    display    : flex;
	text-align : center;
    align-items: center;
	justify-content: space-between;

    padding:0px 150px;
    margin:0;

    height: 50px;
}
.menu li{
    display    : flex;
    align-items: center;
	width  :20%;
    height: 50px;
}
.menu li:hover{
    background-color: #ff8989;
	text-shadow: 2px 2px 2px black;
}
.menu a{
	width  :100%;
    height : 50px;

    text-decoration: none;
    color:rgb(255,255,255);
	font-family: Hannari;
	/*font-size  : 2.5vmin;*/
    font-size: 25px;
	padding-top: 15px;
}
/* css for javascript */
.posfixed{
	position: fixed !important;
	z-index : 100;
	top  :0px;
	left :0px;
	width: 100%;
}

/************************************************************/
/* Style:問い合わせ                                          */
/************************************************************/
.inquiry{
	display        : block;
    text-align     : center;
	justify-content: center;

	background-image: url('../img/q.jpg');
	background-size: 100%;
	background-position: center bottom;

	/*outline: solid 1px black;*/
	border-top: solid 3px red;
	margin-top:5%;
	padding-bottom:5%;
}
.inquiry a{
    background-color: white;
	font-family: Hannari;
	font-size: 3vmin;
    font-weight: bold;
    color:black;

    text-decoration: none;
    border:solid 3px red;
	border-radius: 45px;

    padding: 10px 30px;
    z-index:50;

    position:relative;
	bottom  :17px;
}
.inquiry p{
    text-align : left;
	font-family: Hannari;
    font-size  : 2vmin;
    font-weight: bold;
    color      : black;

    margin-top   : 3%;
    margin-bottom: 5%;
    margin-left  : 45%;
    margin-right : 3%;
}