@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: #b0c4de;
}

nav {
	background: #ffb6c1;
}

main {
	padding: 30px;
}

footer {
	padding: 20px 16px 10px 16px;
	background-color: #db7093;
}


.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: #db7093;
}

h2 {
padding: 7px 15px;
box-shadow: 5px 5px #f4b5ff;
border: 3px solid  #fff;
border-radius: 10px;
background-color: #ffb6c1;
color: #212121;
font-size: 24px;
font-weight: bold;
text-align: center;
margin-bottom: 20px;
}


h3 {
color:black;
line-height: 2.0;
-webkit-box-reflect: below -10px -webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0) 10%,rgba(0, 0, 0, 0.6));
}


/* 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%;
}

.fuwafuwa {
	z-index: 9;
position: absolute;
animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
background: url(img/choucho.png) no-repeat center center / 70px auto;
display: inline-block;
transition: 1.5s ease-in-out;
width: 70px;
height: 70px;
margin-top: 15px;
}

@keyframes fuwafuwa {
0% {
transform:translate(0, 0) rotate(-7deg);
}
50% {
transform:translate(0, -7px) rotate(0deg);
}
100% {
transform:translate(0, 0) rotate(7deg);
}
}
