@charset "utf-8";


/* 基本レイアウト
******************************/
* {
    box-sizing: border-box;
}
body {
	margin: 10px 0;
	font: 14px "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", "メイリオ", Sans-Serif;  
}
.wrapper {
	width: 960px;
	margin: 0 auto;
}

a{
	color: #000;
}
a:hover{
	color: #006666;
}
a:hover img {
	opacity: 0.8;
}

h1{
	text-align:center;
	font-size:20px;}
h2{
	text-align:center;
	font-size:25px;}
/* ヘッダー部分
******************************/
.header {
  overflow: hidden;
	margin-bottom: 10px;
}

/* サイト名 */
.title {
	float: left;
  margin-bottom: 20px;
}
.title h1 {
	margin: 0;
}
.title h1 a img{
  width: 200px;
}
/* ナビゲーション */
.navigation {
	float: left;
  justify-content: space-around;
}
.navigation ul {
}
.navigation li {
	float: left;
}
.navigation li a {
	display: block;
	margin-left: 20px;	
	color: #fff;
}
.navigation li a:hover {
	color: #fff;
}


/* スライド設定
******************************/
.main_image img {
	width: 960px;
}
#slideshow {
	position: relative;
	height: 700px;
}
#slideshow IMG {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.0;
}
#slideshow IMG.active {
	z-index: 3;
	opacity: 1.0;
}
#slideshow IMG.last-active {
	z-index: 2;
}


/* コンテンツ部分
******************************/
.item {
  display: flex;
	flex-wrap:wrap;
  justify-content: space-around;
}
.item_box {
	width: 210px;
  height: 265px;
	margin-bottom: 20px;
  overflow: hidden;
}
.item_box img {
	width: 210px;
	height: auto;
}
.item_box h2 {
  margin: 5px 0 0;
	font-size: 16px;
}
.item_box p {
  font-size: 14px;
}
.item_box a {
  display: block;
	color: #86b12e;
}
.item_box a:hover {
	color: #4f4f4f;
}
.item_box p{
  float: right;
}

/* フッター
******************************/
.footer{
  clear: both;
  position: relative;
  padding: 10px 0px 20px;
	border-top: dashed 1px;
  color: #4f4f4f;	
}
.footer_navigation {
	clear: both;
  display: flex;
}
.footer_navigation ul {
	margin: 10px 43px;
	padding: 2px 0 0;
	font-size: 14px;
  text-align: right;
}
.footer_navigation li {
	display: inline-flex;
	list-style-type: none;
}
.footer_navigation a {
	color: #FFF;
	padding-right: 6px;
	margin-right: 3px;
	text-decoration: none;
}
.footer_navigation a:hover {
	color: #fff;
}
.sharepanel-field{
  display: inline-block;
}
span.sharepanel-btns{
  display: flex;
  line-height:6em;
}
/* コピーライト */
.copyright {
  position: absolute;
  bottom: 0;
  font-size: 12px;
}
.bottom_deta{
	background: rgba(0,0,0,.7);
	color:#fff;
	}
.bottom_deta p{
	text-align:center;
	color:#fff;
	line-height:2em;}

/* 詳細ページ用
******************************/
.content{
	width: 960px;
	margin-bottom: 25px;
}
.content h2{
	font-size: 22px;
	color: gray;
  text-align: center;
}
.content h3{
	font-size: 16px;
	color: #86b12e;
}
.content p{
  margin-bottom: 2em;
	font-size: 16px;
	line-height: 1.75em;
	text-align: justify;
	font-family:"ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}
.content h2 img{
	height: 30px;
	width: 30px;
	margin: 0 5px 5px 0;
}
.content h3 img{
	height: 20px;
	width: 20px;
	margin: 0 5px 5px 0;
}
.content_txt_box{
  width: 55%;
  float: left;
}
.content_img_box{
  width: 45%;
  float: left;
  margin-left:250px;
}
.content_img_box img{
  float: right;
  margin: 3px 0 10px;
}
p.link a{
	color:#F781F3;
	}
span.link a{
	color:#F781F3;
	}



/*回転設定*/
a.button {
  line-height: 32px;
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
  text-align: center;
  color: #fff;
  float: right;
}
a.button span {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  margin: 2px;
  height: 30px;
  background: #FE72AB;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
a.button span::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FE72AB;
  content: attr(data-hover);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
a.button:hover span,
a.button:focus span {
  -webkit-transform: rotateX(90deg) translateY(-22px);
  -moz-transform: rotateX(90deg) translateY(-22px);
  transform: rotateX(90deg) translateY(-22px);
}
a.button:hover span::before,
a.button:focus span::before {
  background: #FE72AB;

}
/*to-top*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 77%;
  z-index: 9999;
}
#page-top a {
  background: #666;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 20px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
  border-bottom: none;
}
#page-top a:hover {
  text-decoration: none;
  background: #999;
  opacity: 0.9;
}
@import url(https://fonts.googleapis.com/css?family=Oswald);
@import url(https://fonts.googleapis.com/css?family=Quattrocento);

.snip1361 {
  font-family: 'Quattrocento', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 2%;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  height: 400px;
  color: #141414;
  text-align: left;
  line-height:1em;
  font-size: 14px;
}
.snip1361 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.snip1361 img {
  max-width: 100%;
  vertical-align: top;
}
.snip1361 figcaption {
  position: absolute;
  top: calc(85%);
  width: 100%;
  background-color: #ffffff;
  padding: 15px 25px 65px;
}
.snip1361 figcaption:before {
  position: absolute;
  content: '';
  z-index: 2;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: -webkit-linear-gradient(top, transparent 0%, #ffffff 100%);
  background-image: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}
.snip1361 h3,
.snip1361 p {
  margin: 0 0 10px;
}
.snip1361 h3 {
  font-weight: 300;
  font-size: 1.4em;
  line-height: 1.2em;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
}
.snip1361 p {
  font-size: 0.9em;
  letter-spacing: 1px;
  opacity: 0.9;
}
.snip1361 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.snip1361:hover figcaption,
.snip1361.hover figcaption {
  top: 150px;
}
/*bottoms html*/
.main_image{
  text-align: center;
}
/*map用*/
.sharepanel-btns_map{
	display:inline-flex;
	}
.sharepanel-field_map{
	width:450px;
	}
#map1{
	height:600px;
	margin:0 auto;
	position:relative;
	overflow:hidden;
		}
.nav_map{
	padding-left:50px;
}
/*bottoms*/

.target {
	transition: .85s ;
	-webkit-transform: rotateY( 0deg ) ;
	transform: rotateY( 0deg ) ;
}

.parent:hover .target {
	-webkit-transform: rotateY( 360deg ) ;
	transform: rotateY( 360deg ) ;
}

.image {
	width: 100px ;
	height: 100px ;
}

.parent:not(:first-child) {
	margin-top: 24px ;
}

.remove-hover {
	font-weight: 700 ;
	color: #00f ;
	cursor: pointer ;
	text-decoration: underline ;
	font-size: 16px ;
}
span.price{
  color:#FF0000;
  font-weight: bold;
  text-decoration:underline;
}
.content_txt_box{
	width:100%;
}
.ctr{
	text-align:center;
	font-size:20px;
	font-weight:bold;
	padding-right:30px;
	border:2px solid;
	display:flex;
	width:240px;
	border-radius:20px;
	margin:auto;
	margin-bottom:15px;
	}
.ctr a{
	color:#000;
	padding-left:30px;
}
.ctr:hover{
	background:#F5A9F2;}
	
/*loading*/
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 99999;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #000;
  z-index: 99999;
}
/*about*/
.about_h2{
	font-family: serif;
  font-size: 30px;
  text-align: start;
	margin-bottom:15px;
}

/* ==========================
  ローディング画面
========================== */
.bl_loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #444;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.bl_loading.loaded {
  opacity: 0;
  visibility: hidden;
}
@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bl_loadingCircle {
  animation: 3s linear loading infinite;
  height: 30px;
  width: 30px;
  border: 1px solid #fff;
  border-top: 1px solid #aaa;
  border-radius: 50%;
  content: "";
  margin-bottom: 10px;
}

/* ==========================
  コンテンツの中身
========================== */
.ly_inner {
  width: 100%;
  max-width: 1080px;
  margin: 100px auto;
  padding: 20px;
  background-color: #ccc;
}
.ly_inner h2 {
  font-size: 150%;
  font-weight: bold;
  margin-bottom: 30px;
}
.md_textblock > * + * {
  margin-top: 10px;
}