@charset "utf-8";

/*********************************
初期設定
*********************************/


/***body内の背景画像と背景色の設定***/
body {
	background-color: #000; /*背景色を設定(デフォルトは白)*/
	background-image: url(../img/exterior.jpg); /*背景画像を設定*/
	background-size: cover;
	background-position-x: center;
	background-repeat:no-repeat;
}

/***header内の背景色とフォントカラーの設定***/
header {
	background-color: #000; /*背景色を設定(デフォルトはbody背景色と同じ)*/
}
h1 {
	color: #fff; /*タイトルのフォントカラーを設定(デフォルトは黒)*/
  }

@media screen and (max-width: 767px) {
	body {
	background-size: cover;
    background-position: 40%;
	}
}

/*********************************
default
*********************************/

body {
	list-style-type: none;
	-webkit-text-size-adjust: 100%;
	margin: 0 auto;
	line-height: 1.3;
}

li {
	list-style: none;
}
img {
	width: 100%;
	display: block;
}
/*********************************
main
*********************************/
.info_box {
	text-align: center;
}
.img {
	line-height: 0;
}
.review_btn {
}
.review_btn p {
	font-size: 18px;
	padding-bottom: 10px;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
}
.review_btn ul {
	display: flex;
	justify-content: space-around;
	    font-size: 0;
}

ul li img {
  vertical-align: bottom;
}

/*.info_box h2 {
	font-size: 24px;
}
.info_box p {
	font-size: 16px;
}*/

/*********************************
addition
*********************************/

h1 {
  padding-top: 5px;
  padding-bottom: 3px;
  }
 header .logo {
    margin-left: 30px;
    font-size: 30px;
}
header {
    /* max-height: 100px; */
    flex-wrap: nowrap;
    z-index: 999;
}
header .logo {
}

@media screen and (max-width: 767px) {
header .logo {
    margin: 0 auto;
    width: 100%;
    padding-top: 5px;
    font-size: 18px;
    text-align: center;
}
}