@charset "utf-8";

body {
	margin: 0 ;
	font-family: sans-serif;
}
.container {
	margin: 0 auto 0 auto;
	max-width: 1000px;
	padding: 0 10px;
}

/* ※01画像をレスポンシブにする */

img{
max-width:100%;
height:auto;
}


/* ※02ヘッダーをフルスクリーン */
header {
background:  #afeeee;
}


main {
	padding: 30px;
}

/* ※03フッターをフルスクリーン */
footer {
	background: #afeeee;
	margin-top: 30px;
}


.footer-inner {
	padding: 20px 16px 10px 16px;

}

/* ※04ヘッダー内のアイテムを横並び */

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}

.hamburger {
	border: none;
	width: 50px;
	height: 50px;
	background: url(../images/hamburger.png) no-repeat;
	background-size: contain;
}


/* ※06ナビゲーションバーをフルスクリーン */

nav {
	background: #48d1cc;
}
.navbar {
	display: none;
	margin: 0;
	padding: 0;
	list-style-type: none;

}
.navbar li a {
	display: block;
	padding: 10px 20px;
	color: #fff;
	text-decoration: none;
}
.navbar li a:hover {
	background: #20b2aa;
	color: #fff;
}


@media only screen and (min-width: 768px) {
	.container {
		padding: 0 20px;
	}
	main {
		padding: 20px 30px;
		background: #fff;
	}

	/* ナビゲーション */
	.hamburger {
		display: none;
	}
	.navbar {
		display: flex !important;
	/* justify-content: xxx; */
	}

}

/* フレックスボックスレイアウトCSS */
.item {
  width: 30%;
}

.item-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: bold;
  color: #999;
}
.item-body p {
  font-size: 14px;
  color: #333;
}

.items {
  display: flex;
  justify-content: space-between;
	flex-wrap: wrap;
}
.items .item {
  margin: 10px;
}

@media screen and (max-width: 767px) {
  .item {
    flex-direction: column;
  }
	
.items .item {
  width: 100%;
}
}

/* マウスオーバーで画像を拡大 */
.img_wrap1{
  width: 280px;
  height: 205px;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}
.img_wrap1 img{
  width: 100%;
  transition-duration: 0.5s;
}
.img_wrap1:hover img{
  transform: scale(1.2);
  transition-duration: 0.5s;
}

/* トピックス */

.topics dl {
padding: 15px 0;
border-bottom: 1px solid #ccc;
}

.topics dt {
padding-bottom: 5px;
}

@media screen and (min-width: 768px) {
.topics dt {
clear: left;
float: left;
width: 12%;
}
.topics dd {
margin-left: 11%;
}
}


/* PC電話No */
@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

/* わかりやすくするために適用しているCSS */
.blue-box {
	background-color: #b0e0e6;
	padding: 20px;
	border-radius: 10px;
}

/* わかりやすくするために適用しているCSS */
body {
	color: #444;
}

main p:last-child {
	margin-bottom: 0;
}
.main-title {
	margin: 0;
}
.copyright {
	margin: 0;
	color: #48d1cc;
	text-align: center;
}

/* tittle */
h1 {
	margin: 0;
	color: #48d1cc;
}

h2 {
color: #20b2aa;
margin: 10px 0;
}

h3 {
padding-bottom: 5px;
border-bottom: 1px solid #20b2aa;
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;
}

/* text color */
.brown {
	font-weight: bold;
	color: #663300;
}



/* テキストに写真を入れる */
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;}

/* 写真がはみ出たとき */
.clearfloat {
	font-size: 1px;
	line-height: 0px;
	height: 0px;
	clear: both;
}



/* page top
------------------------------------------------------------*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
}
.pagetop a {
    display: block;
    background-color: #999;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding: 10px 10px 5px;
	border-radius: 20px;
 filter: alpha(opacity=90);
-moz-opacity:0.9;
 opacity:0.9;
}
 
.pagetop a:hover {
    display: block;
    background-color: #de82a7;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:10px 10px 5px;
}

