@charset "utf-8";

body {
	margin: 0;
	font-family: sans-serif;
	color: #444;
	line-height: 1.7;
}
.container {
	margin: 0 auto 0 auto;
	max-width: 1000px;
	padding: 0 10px;
}



/* レイアウト */

header {
background: purple;
}

nav {
	background: blue;
}

main {
	padding: 30px;
}

footer {
	padding: 20px 16px 10px 16px;
	background-color: red;
}


.copyright {
	margin: 0;
	color: #fff;
	text-align: center;
}


/* ヘッダー内のアイテムを横並び */
.header-inner {
	padding: 20px;
		display: flex;
	justify-content: space-between;
	align-items: center;
}
.hamburger {
	border: none;
	width: 50px;
	height: 50px;
	background: url(../images/btn.png) no-repeat;
	background-size: contain;
}




/* ※06ナビゲーションバー */

.navbar {
	display: none;
	margin: 0;
	padding: 0;
	list-style-type: none;

}
.navbar li a {
	display: block;
	padding: 10px 40px;
	color: #fff;
	text-decoration: none;
}
.navbar li a:hover {
	background: #8b0000;
}

@media only screen and (min-width: 768px) {

	/* ナビゲーション */
	.hamburger {
		display: none;
	}
	.navbar {
		display: flex !important;
	/* justify-content: xxx; */
	}

}


/* tittle見出し */
h1 {
	margin: 0;
	color:darkseagreen;
}

h2 {
padding: 7px 15px;
box-shadow: 0 7px #212121;
border: 3px solid #212121;
border-radius: 10px;
background-color:gold;
color: #212121;
font-size: 24px;
font-weight: bold;
text-align: center;
}

h3 {
padding-bottom: .5em;
border-bottom: 1px solid #dc143c;
color: #dc143c;
font-size: 120%;
}

/* link color */
a{
margin:0;
padding:0;
text-decoration:none;
outline:0;
vertical-align:baseline;
background:transparent;
font-size:100%;
color:#3399ff;
}

a:hover, a:active{
outline: none;
color:#66cc00;
}

/* テキスト color */
.brown {
	font-weight: bold;
	color: #663300;
}

.pink {
	font-weight: bold;
	color: #cc3399;
    font-size: 120%;
}

/* 写真を横に並べるボックス */
.bigbox {
  display: flex;
  justify-content: flex-start;
	flex-wrap: wrap;
}

.item {
  width: 280px;
}

.bigbox .item {
  margin: 10px
}

.item-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: bold;
  color: #ea5550;
}



/* 画像へテキストの回り込み */
img.aligncenter {
display: block;
margin:5px auto;
}

img.alignright, img.alignleft{
margin: 10px 10px 15px 15px;
display:inline;
}

img.alignleft{margin:10px 15px 15px 10px;}

.alignright{float:right;}
.alignleft{float:left;}

@media only screen and (max-width:767px){
img.alignright, img.alignleft{
display:block;margin:5px auto;
}
.alignright,.alignleft{
float:none;
}
}

/* 写真がはみ出たとき */
.clearfloat {
	font-size: 1px;
	line-height: 0px;
	height: 0px;
	clear: both;
}

/* 画像をレスポンシブにする */
img{
max-width:100%;
height:auto;
}

/* テーブル */
table {
	width: 90%;
	margin-bottom: 1em;
	margin-top: 2em;
	border-collapse: collapse;
	border: 1px solid #ddd;
}
th {
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #ddd;
	background: #fff0f5;
}
td {
	padding: 10px;
	text-align: left;
	border: 1px solid #ddd;
}

/* google mapをレスポンシブにする */
.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
