@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  共通
 ================================================*/
body {
	font-size: 98%;
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
	line-height: 1.6;

	
}

@media screen and (max-width:767px) {
body {
	
	background: none;
	
}
}

#contents {
	width: auto;
	margin: 0 auto;
	
	
}

header + #contents {
	padding-top: 30px;
	
}

.inner {
	position: relative;
	width: 980px;
	margin: 0 auto;
}

.bg{
	background-image: linear-gradient(
    -45deg,
    #fff 25%,
    #ededed 25%, #ededed 50%,
    #fff 50%, #fff 75%,
    #ededed 75%, #ededed
  );
  /* 幅8px、高さ8pxで背景画像のサイズを指定 */
  background-size: 8px 8px;
}



a {
	color: #043771;
	text-decoration: none;
}
a:hover {
	color: #144d8d;
}

a[target=_blank]:not(.notex)::after {
   margin: 0 0 0 3px;
  font-family: "Font Awesome 5 Free";
  content: '\f35d';
  font-weight: 900;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-left: 5px;

}

h1 {
	font-size: 28px;
}

h2 {
margin: 0.25em 0;
	font-size: 150%;
	
	letter-spacing: 3px;
	font-weight:bold; 	
	
	
}




h4 {
	margin-top: 0.25em;
	margin-bottom: 0.25em;
	font-size: 15px;
	font-weight: bold;
}

h5 {
	margin-bottom: 0.25em;

	
	
}

h6 {
	margin-bottom: 0.25em;
	padding-left: 5px;
	font-size: 16px;
	font-weight: bold;
}

p {
	margin:0 0 1em 0;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

em {
	font-weight: bold;
}

pre {
	margin:1em 0;
	padding:1em;
}

blockquote {
	margin-bottom: 1em;
	padding: 1em;
	border: 1px dotted #ddd;
	border-left: 5px solid #ddd;
}

ul,ol,dl {
	margin: 0 0 1em 0;
}
ul li {
	
}
ol li {
	list-style: decimal;
}
li {
	margin-left: 2em;
}

dl{
  display: flex;
  flex-wrap: wrap;
	 margin: 0 0 20px 0;
	font-size: 110%;
}


dt{
  width: auto;
  padding: 0 15px 0 0;
	
  margin: 0 15px 10px 0;
	clear: both;
	border-right: 0.5px solid #000;
  
}

dd{
  width: 80%;
     padding:0;
  margin: 0;
	
	
  
}

@media screen and (min-width:768px) and (max-width:959px) {
dt{
  width: auto;
  clear: both;
  
}

dd{
  width: auto;


}

}

@media screen and (max-width: 767px) {
dt{
  width: auto;
 margin: 0 8px 10px 0;
   padding: 0 8px 0 0;
}

dd{
  width: auto;
     
}

}

table {
	width: 100%;
	margin-bottom: 1em;
	border-collapse: collapse;
	border: 1px solid #ddd;
	box-shadow: 5px 5px 10px #a9a9a9;
-webkit-box-shadow: 5px 5px 10px #a9a9a9;
-moz-box-shadow: 5px 5px 10px #a9a9a9;
}
th {
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #ddd;
	background: #f6f6f6;
	font-weight: bold;
}
td {
	padding: 10px;
	text-align: center;
	border: 1px solid #ddd;
	background: #fff;
}

.pc_none { display: block !important;}

.sp_none { display: none !important; }




/* 画面外にいる状態 */
.fadein {
	opacity : 0.1;
	transform : translate(0, 50px);
	transition : all 500ms;
}



/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}




/* オンマウスでアニメーション */
.css-fade4 {
/* アニメーション設定 */
    animation-name: fade-in4;
    animation-duration: 2s; /* アニメーション時間 */
    animation-timing-function: ease-out; /* アニメーションさせるイージング */
    animation-delay: 1s; /* アニメーション開始させる時間 */
    animation-iteration-count: 1; /* 繰り返し回数 */
    animation-direction: normal; /* 往復処理をするかどうか */
    animation-fill-mode: forwards; /* アニメーション後のスタイルをどうするか */
  }
/* アニメーション */
  @keyframes fade-in4 {
    0% {
      opacity: 0;
      transform: translate3d(30px, 0, 0);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }


/*
エフェクト
-------------------------------------------*/
.effect {
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha( opacity=0 )";
	transform: translateY(30px);
	-webkit-transform: translateY(30px);  
    -moz-transform: translateY(30px); 
	-webkit-transition: 1.0s ease-out;
	-moz-transition: 1.0s ease-out;
	transition: 1.0s ease-out;
}
.effect.d_02 {
transition-delay:0.2s;
-webkit-transition-delay:0.2s;
}
.effect.d_04 {
transition-delay:0.4s;
-webkit-transition-delay:0.4s;
}
.effect.d_06 {
transition-delay:0.6s;
-webkit-transition-delay:0.6s;
}
.effect.d_08 {
transition-delay:0.8s;
-webkit-transition-delay:0.8s;
}
.effect.start {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	transform: translateY(0px);
	-webkit-transform: translateY(0px);  
    -moz-transform: translateY(0px);    
}

.item {
  float: left;
border: 1px #fff solid;
  padding: 10px;
 margin: 0 15px;
 width: 33%;

  opacity: 0.9;
}

.item:nth-child(1) {
  -webkit-animation: example 0.5s ease 0.5s 1 forwards;
  animation: example 0.5s ease 0.5s 1 forwards;
}

.item:nth-child(2) {
  -webkit-animation: example 0.5s ease 1s 1 forwards;
  animation: example 0.5s ease 1s 1 forwards;
}

.item:nth-child(3) {
  -webkit-animation: example 0.5s ease 1.5s 1 forwards;
  animation: example 0.5s ease 1.5s 1 forwards;
}

.item:nth-child(4) {
  -webkit-animation: example 0.5s ease 2s 1 forwards;
  animation: example 0.5s ease 2s 1 forwards;
}

.item:nth-child(5) {
  -webkit-animation: example 0.5s ease 2.5s 1 forwards;
  animation: example 0.5s ease 2.5s 1 forwards;
}

.item:nth-child(6) {
  -webkit-animation: example 0.5s ease 3s 1 forwards;
  animation: example 0.5s ease 3s 1 forwards;
}

@-webkit-keyframes example {
  100% {
    opacity: 1;
  }
}
@keyframes example {
  100% {
    opacity: 1;
  }
}



/*見出し前アイコン
-------------------------------------------*/

/* チェック */

.dli-check {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 0.45em;
  border: 0.1em solid currentColor;
   border-top: 0;
  border-right: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(-45deg);
	margin: 0 15px;

}	
	
/* 矢印 */

.dli-arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 0.1em;
  background: currentColor;
	margin: auto 20px auto auto;
}

.dli-arrow-right::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* 三角下：お問い合わせフレーム */
.dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0.8em;
  height: 0.8em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
	margin: -5px 20px 0 0;
}

/* マップ */

.dli-pin {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  border: 0.1em solid currentColor;
  border-radius: 40% 60% 0% 100% / 40% 100% 0% 60%;
  box-sizing: content-box;
  transform: rotate(45deg);
	margin: -10px 15px 0 0;
}

.dli-pin::before {
  content: '';
  position: absolute;
  top: 18%;
  left: 18%;
  width: 0.336em;
  height: 0.336em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}



/* 囲みありリスト*/ 

.dli-feed {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 0.9em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-radius: 0.2em;
  box-sizing: content-box;
	margin: -10px 20px 0 0;
}

.dli-feed::before, .dli-feed::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 15%;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
}

.dli-feed::before {
  width: 70%;
  box-shadow: 0 0.25em 0 0 currentColor;
}

.dli-feed::after {
  margin-top: 0.5em;
  width: 45%;
}

/* 時計*/ 

.dli-clock {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
	margin: -10px 20px 0 0;
}

.dli-clock::before, .dli-clock::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 50%;
  background: currentColor;
  border-radius: 0.1em;
  transform: translate(-0.05em, 0.05em);
}

.dli-clock::before {
  width: 0.1em;
  height: 0.4em;
}

.dli-clock::after {
  width: 0.35em;
  height: 0.1em;
}

@media screen and (min-width:568px) and (max-width:959px) {
.pc_none { display: none !important; }
.tab_none { display: block !important; }
.sp_none { display: none !important; }
	

}


@media screen and (max-width:767px) {
h2 {
	margin-bottom: 1em;
	font-size: 250%;
	color: #333;
	text-align: center;
	line-height: 1.5em;
	letter-spacing: 5px;
	font-weight: bold;
}


th {
	text-align: left;
}
td {

	text-align: left;

	
}
.pc_none { display: none !important; }
.tab_none { display: none !important; }
.sp_none { display: block !important; }
	
}


/*================================================
 *  余白
 ================================================*/

.mt10{
	margin-top: 10px;
}

.mt20{
	margin-top: 20px;
}


.mt50{
	margin-top: 50px;
}

.mt100{
	margin-top: 100px;
}

.mb10{
	margin-bottom: 10px;
}



.mb30{
	margin-bottom: 30px;
}

.mb50{
	margin-bottom: 50px;
}


.mb80{
	margin-bottom: 80px;
}

.mb100{
	margin-bottom: 100px;
}

.ml10{
	margin-left: 10px;
}

/*================================================
 *  色指定、文字
 ================================================*/

.bg{
	background: #f6f6f6;
}

.em{
	font-weight: bold;
}

	
.bg_r{
	background: #ffc0cb;
}

.bg_p{
	background: #ffe4e1;

}

.bg_p_half{
	background: linear-gradient(transparent 50%, #ffe4e1 50%);
	font-weight: bold;
}

.bg_b{
	background: #e0ffff;
}

.bg_y{
	background: yellow;
}

.bg_y_half{
	background: linear-gradient(transparent 50%, yellow 50%);
	font-weight: bold;
}

.bg_w_half{
	background: linear-gradient(transparent 50%, #fff 50%);
	font-weight: bold;
}

.textRed{
	color: #ff6347;
	
	
}

.textWhite{
	color: #fff;
	
}

.under {
  background: linear-gradient(transparent 70%, #f9db00 70%);
	font-weight: bold;
}

.line_half_p{
	background: linear-gradient(transparent 50%, #ffe4e1 50%);
	font-weight: bold;
}


.zoom_c{
	font-size: 180%;
		letter-spacing: 3px;
	font-weight: bold;
	margin: 30px 0 15px 0;
	text-align: center;

	
}

.zoom_c1{
	font-size: 250%;
		letter-spacing: 2px;
	font-weight: bold;
	margin: 50px 0 0 0;
	text-align: center;
	

	
}

.zoom_r{
	font-size: 200%;
		letter-spacing: 10px;
	
}

.zoom_g{
	font-size: 115%;
		letter-spacing:2px;
	line-height:1.5em;
	font-weight: bold;
	margin: 30px 0 5px 0;
	
	
}

.zoom_w{
	font-size: 95%;
		letter-spacing:1px;
	font-weight: bold;
	margin: 0 0 15px 0;
	padding: 0;
	line-height: 2em;
	
	
}

.zoom_l{
	font-size: 130%;
		letter-spacing:1px;
	margin:0 0 5px 0;
	
	
	
	
}

.zoom_p{
	font-size: 180%;
	font-weight: bold;
	
	
}



.small{
	font-size: 90%;
}

.circle{
	border-radius: 100%;  /* 角丸半径を50%にする(=円形にする) */

}

@media screen and (min-width:769px) and (max-width:959px) {



}



@media screen and (max-width:767px) {
.zoom_c{
	font-size: 150%;
		letter-spacing: 1px;
	font-weight: bold;
	margin: 30px 15px 15px 15px;
	text-align: left;

	
}

.zoom_c1{
	font-size: 150%;
		letter-spacing: 1px;
	font-weight: bold;
	margin: 10px 0 50px 15px;
	text-align: left;

	
}
	
.zoom_t{
	font-size: 130%;
		letter-spacing: 1px;
	font-weight: bold;
	margin: 30px 0;
	
	
	
	
}

.zoom_g{
	font-size: 110%;
		letter-spacing:1px;
	line-height:2em;
	text-align:left;
	margin: 50px 0;
	
}
	
.zoom_l{
	font-size: 100%;
		
	line-height:1.5;
	
	margin: 10px 0;
	
}
	


}


/*================================================
 *  汎用クラス
 ================================================*/
/* 中央寄せ */
.center {
	text-align: center;
}

/* 左寄せ */
.left {
	text-align: left;
}

/* 右寄せ */
.right {
	text-align: right;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}



/* 写真中央寄せ */
.imgC {
	clear:both;
	overflow:hidden;
	margin: 0 auto 50px auto;
	margin-bottom:50px;
	text-align:center;
}
.imgC img {
	margin-bottom:10px;
}

/* 写真左寄せ */
.imgL {
	clear:both;
	overflow:hidden;
	margin:0 0 50px 0;
	padding: 15px;
	background-color: #fff;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
	width: 80%;
	
}
.imgL img {
	float:left;
	margin:0 20px 0 0;
	width: 50%;
	
}

@media screen and (max-width:767px) {
	.imgL {
		margin-bottom:20px;
	}
	.imgL img {
		float:none;
		margin:0 0 10px 0;
	}
}

/* 写真左寄せ、フレーム右寄せ */
.imgL2  {
	clear:both;
	overflow:hidden;
	margin:0 100px 50px 0;
	padding: 15px;
	background-color: #fff;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
	width: 80%;
	left: 200px;
	
}
.imgL2 img {
	float:left;
	margin:0 0 0 20px;
	width: 50%;
}

@media screen and (max-width:767px) {
	.imgL2 {
		clear:both;
		overflow:hidden;
		margin-bottom:20px;
	}
	.imgL2 img {
		float:right;
		margin:0 0 10px 0;
	}
}

/* 写真ズーム */
.zoom {
	overflow: hidden;
}
.zoom img {
	display: block;
	-moz-transition: -moz-transform 0.8s linear;
	-webkit-transition: -webkit-transform 0.8s linear;
	-o-transition: -o-transform 0.8s linear;
	-ms-transition: -ms-transform 0.8s linear;
	transition: transform 0.8s linear;
}
.zoom img:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.zoom img {
	margin-bottom: 0;
}

/* オーバーレイ */
.overlay {
	position: relative;
}
.overlay::after{
	background: rgba(0,0,0,.3);
	content: "　";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: all .3s ease-out;
	pointer-events: none;
}
.overlay:hover::after {
	background: rgba(0,0,0,.1);
	transition: all .3s ease-out;
}
.overlay img {
	margin-bottom: 0;
}

/* ボタン */
.btn a {
	position: relative;
	display: inline-block;
	padding: 15px 40px;
	margin: 30px 0;
width: 80%;
	text-align: center;
	text-decoration: none;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	z-index: 1;
	background: #f0f0f0;
	font-weight: bold;
}
.btn a:hover {
	color: #fff;
	background: #333;
}

@media screen and (min-width:568px) and (max-width:959px) {
.btn a {
	position: relative;
	display: inline-block;
	padding: 30px auto;
	margin: 30px auto;
width: 91%;
	text-align: center;
	text-decoration: none;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	z-index: 1;
	background: #f0f0f0;
	font-weight: bold;
}
}



/* 2カラム（スマートフォンでは1カラム) */
.twoCol {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position:relative;
	overflow:hidden;
	
}
.twoCol .inner {
	position: relative;
	overflow:hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: column-reverse;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	flex-direction: column;
	width: 48.98%;
	width: calc((440 / 980) *100%);
	height: auto;
	margin:0 20px;
}
.twoCol .inner h3 {
	width: 100%;
	margin:50px 0 20px 0;
	text-align: left;
	font-size: 170%;
	
}

.twoCol .inner h4 {
	width: 100%;
	margin:20px 0 0 0;
	text-align: left;
	font-size: 130%;
	font-weight:bold;
	
}
.twoCol .inner p {
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.twoCol .inner > a {
	width: 100%;
	height: 100%;
}
.twoCol .inner .image {
	width: 100%;
	min-height: 0%;
}
.twoCol .inner img {
	width:98%;
	border: 3px solid #fff;
	margin:0 0 20px 0;

	float: left;

	box-shadow: 2px 2px 4px #d3d3d3;
-webkit-box-shadow: 2px 2px 4px #d3d3d3;
-moz-box-shadow: 2px 2px 4px #d3d3d3;
}

.twoCol .inner .btn {
	margin-top: auto;
	padding-top: 20px;
	
	
}
.twoCol .inner .text {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 140%;
	font-weight: bold;
	color: #000;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
	border: 5px solid #ccc;
	border-radius: 10px;
	padding: 20px;
	width: 70%;
	background: #fff;
	opacity: 0.9;
}


@media screen and (max-width:959px) {
	.twoCol {
		display: block;
		margin-bottom:20px;
	}
	.twoCol .inner {
		width :100%;
		margin:0 0 30px 0;
	}
	.twoCol .inner p {
	padding: 0 15px;
	margin-bottom: 0;
	text-align: justify;
		width :93%
}
	.twoCol .inner h4 {
	width: 94%;
	margin:20px 0 0 0;
	text-align: left;
	font-size: 130%;
	font-weight:bold;
	padding: 0 15px;	
	
}
}

/* 3カラム（スマートフォンでは1カラム) */
.threeCol {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	
}
.threeCol .inner {
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 30%;
	background-color: #fff;
	filter: alpha(opacity=90);
	-moz-opacity: 0.9;
	opacity: 0.9;
	margin: 0 13px;
	
	
}
.threeCol .inner h4 {
	width: 100%;
	
	text-align: left;
}
.threeCol .inner p {
	width: 95%;
	margin-bottom: 15px;
	text-align: left;
	
}
.threeCol .inner > a {
	width: 100%;
	height: 100%;
}
.threeCol .inner .image {
	width: 100%;
	min-height: 0%;
}
.threeCol .inner img {
	width: 100%;
}



@media screen and (max-width:767px) {
	.threeCol {
		display: block;
		margin: 50px 0 0 0;
	}
	.threeCol .inner {
		width : 95%;
		margin: 0 0 50px 0;
	}
	
	.threeCol .inner p {
		
		margin: 10px;
		text-align: left;
	}
}


/*================================================
 *  記事フレーム
 ================================================*/
#wrapper{
	width: 1200px;
	margin: 0 auto;
	padding: 15px;
	background-color:#fff;
	border: 2px #000 solid;
	
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
	width:100%;
	height:75px;
	padding:15px 0 0 0;
	margin:-10px auto 0 auto;
	background:#fff;
	z-index: 9999;
  position: fixed;
	box-shadow: 2px 2px 4px #d3d3d3;
-webkit-box-shadow: 2px 2px 4px #d3d3d3;
-moz-box-shadow: 2px 2px 4px #d3d3d3;

}


header h1 {
	float: left;
	height:70px;
	margin: 0 10px 0 0;
	
}

header h1 img {
	vertical-align: middle;
	
}


@media screen and (max-width:768px) {
header {
	width:100%;
	height:60px;
	
	

}	

	
header h1 {
	text-align: left;
	
	}
	
header h1 img {
	
	width: 260px;
	height: 45px;
	padding: 0;
	margin: 0 0 0 10px;
	
	
}

}

/*================================================
 *  グローバルナビゲーション
 ================================================*/
/* PC用 */
@media print, screen and (min-width:1040px) {
	nav.gnav:after {
		content: '';
		display: block;
		clear: both;
	}
	nav.gnav {
		display: block !important;
		float: left;
		
	}

	/* 共通 */
	nav.gnav ul {
		margin: 0;
		padding: 0;
		
	}
	
	nav.gnav ul li {
		position: relative;
		
		margin: 0;
		
		list-style: none;
		
	
	}
	
	nav.gnav ul li a {
		display: block;
		color:#000;
		font-size: 94%;
		font-weight: bold;
		text-decoration: none;
		padding: 0 15px;
		margin:25px 0 0 0;
		letter-spacing: 1px;
		
	}
	
	nav.gnav ul li:hover > a {
		color: #a9a9a9;
		padding: 0 15px;
		margin:25px 0 0 0;

	}

	/* 1段目 */
	nav.gnav > ul > li {
		position: relative;
		width: auto;
		float: left;
		margin: 0;
	
		text-align: center;
		list-style: none;
		line-height: 45px;
		
		
	}
	nav.gnav > ul > li.subnav a {
		padding-right: 30px;
	}
	nav.gnav > ul > li.subnav > a:after {
		position: absolute;
		content: "";
		top: 50%;
		width: 0;
		height: 0;
		margin-top: -2.5px;
		margin-left: 10px;
		border: 5px solid transparent;
		border-top-color: #fff;
		color:#fff;
	}

	/* 2段目 */
	nav.gnav ul li ul {
		position: absolute;
		z-index: 3;
		top: 100%;
		left: 0;
		width: 170px;
		margin: 0;
		padding: 0;
	}
	nav.gnav ul li ul li {
		overflow: hidden;
		height: 0;
		color: #fff;
		transition: .2s;
	}
	nav.gnav ul li ul li a {
		padding: 0 15px;
		text-align: left;
		background: #000;
		font-weight: normal;
		color: #fff;
	}
	nav.gnav ul li ul li a:hover {
		background: #333;
		font-weight: bold;
	}
	nav.gnav ul li:hover > ul > li {
		overflow: visible;
		height: 40px;
		line-height: 40px;
		
	}
	nav.gnav ul li:hover ul li:last-child {
		border-bottom: none;
	}
	nav.gnav > ul > li:last-child > ul {
		left: -60px;
	}
	nav.gnav ul li ul li ul:before {
		position: absolute;
		content: "";
		top: 17.5px;
		left: -20px;
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-left-color: #fff;
	}
	nav.gnav > ul > li:last-child ul li ul:before {
		position: absolute;
		content: "";
		top: 17.5px;
		left: 200%;
		margin-left: -20px;
		border: 5px solid transparent;
		border-right-color: #fff;
	}

	/* 3段目 */
	nav.gnav ul li ul li ul {
		top: 0;
		left: 100%;
	}
	nav.gnav ul li ul li ul li {
		width: 100%;
	}
	nav.gnav ul li ul li:hover > ul > li {
		border-bottom: 1px solid #555;
	}
	nav.gnav > ul > li:last-child > ul li ul {
		left: -100%;
	}
	nav.gnav ul li ul li ul li a {
		background: #444;
	}
	nav.gnav ul li ul li ul li a:hover {
		background: #666;
	}

	/* 3段目 */
	nav.gnav > ul {
		display: block !important;
	}
	#spMenu {
		display: none;
	}
}

@media screen and (min-width:769px) and (max-width:1039px) {
	nav.gnav {
		display: none;
	}
	nav.gnav ul {
		margin: 0;
		padding: 0;
	}
	nav.gnav > ul {
		z-index: 2;
		overflow: auto;
		position: fixed;
		top: 47px;
		right: 0;
		width: 70%;
		height: 80%;
		height: -webkit-calc(100% - 50px);
		height: calc(100% - 50px);
	}
	nav.gnav li {
		position: relative;
		width: 100%;
		float: none;
		margin: 0;
		text-align: left;
		list-style: none;
		border-bottom: 1px solid #333;
		background: #222;
		opacity: 0.9; /* 2％ほど透過させる */
	}
	nav.gnav li:first-child {
		border-top: 0;
	}
	nav.gnav li:last-child {
		border-bottom: 0;
	}
	nav.gnav li a {
		display: block;
		padding: 10px 20px;
		color: #fff;
		text-decoration: none;
		background: #222;
		font-size: 110%;
	}
	nav.gnav li a:hover {
		color: #fff;
		background: #222;
	}
	nav.gnav ul ul {
		display: none;
		position: relative;
	}
	nav.gnav li li a {
		box-sizing: border-box;
		width: 100%;
		padding: 10px 30px 10px 34px;
		text-align: left;
	}
	nav.gnav li li li a {
		padding: 10px 20px 10px 48px;
	}

	nav.gnav .subnav > a:before {
		display: block;
		content: "";
		position: absolute;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 20px;
		right: 20px;
		width: 10px;
		height: 10px;
		margin-top: -5px;
		background: #f1f1f1;
	}
	nav.gnav .subnav > a:after {
		display: block;
		content: "";
		position: absolute;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 20px;
		right: 20px;
		width: 10px;
		height: 10px;
		margin-top: -10px;
		background: #000;
	}
	nav.gnav .subnav a:hover:after {
		background: #222;
	}
	nav.gnav .subnav.active > a:before {
		margin-top: 0;
	}
	nav.gnav .subnav.active > a:after {
		margin-top: 5px;
	}

	.spMenuWrap {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		-webkit-transition: all 1s;
		-moz-transition: all 1s;
		-ms-transition: all 1s;
		-o-transition: all 1s;
		transition: all 1s;
		background: transparent;
	}

	#spMenu {
		position: absolute;
		top: 10px;
		right: 10px;
	}

	#spMenu:hover {
		cursor: pointer;
	}

	#navBtn {
		display: inline-block;
		position: relative;
		width: 40px;
		height: 40px;
		border-radius: 5%;
		background: #333;
	}
	#navBtnIcon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 14px;
		height: 2px;
		margin: -1px 0 0 -7px;
		background: #f1f1f1;
		transition: .2s;
	}
	#navBtnIcon:before,
	#navBtnIcon:after {
		display: block;
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 14px;
		height: 2px;
		background: #f1f1f1;
		transition: 0.3s;
	}
	#navBtnIcon:before {
		margin-top: -6px;
	}
	#navBtnIcon:after {
		margin-top: 4px;
	}
	#navBtn .close {
		background: transparent;
	}
	#navBtn .close:before,
	#navBtn .close:after {
		margin-top: 0;
	}
	#navBtn .close:before {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	#navBtn .close:after {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
}


/* タブレット・スマートフォン用 */
@media screen and (max-width:768px) {
	nav.gnav {
		display: none;
	}
	nav.gnav ul {
		margin: 0;
		padding: 0;
	}
	nav.gnav > ul {
		z-index: 2;
		overflow: auto;
		position: fixed;
		top: 47px;
		right: 0;
		width: 70%;
		height: 80%;
		height: -webkit-calc(100% - 50px);
		height: calc(100% - 50px);
	}
	nav.gnav li {
		position: relative;
		width: 100%;
		float: none;
		margin: 0;
		text-align: left;
		list-style: none;
		border-bottom: 1px solid #333;
		background: #222;
		opacity: 0.9; /* 2％ほど透過させる */
	}
	nav.gnav li:first-child {
		border-top: 0;
	}
	nav.gnav li:last-child {
		border-bottom: 0;
	}
	nav.gnav li a {
		display: block;
		padding: 10px 20px;
		color: #fff;
		text-decoration: none;
		background: #222;
		font-size: 110%;
	}
	nav.gnav li a:hover {
		color: #fff;
		background: #222;
	}
	nav.gnav ul ul {
		display: none;
		position: relative;
	}
	nav.gnav li li a {
		box-sizing: border-box;
		width: 100%;
		padding: 10px 30px 10px 34px;
		text-align: left;
	}
	nav.gnav li li li a {
		padding: 10px 20px 10px 48px;
	}

	nav.gnav .subnav > a:before {
		display: block;
		content: "";
		position: absolute;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 20px;
		right: 20px;
		width: 10px;
		height: 10px;
		margin-top: -5px;
		background: #f1f1f1;
	}
	nav.gnav .subnav > a:after {
		display: block;
		content: "";
		position: absolute;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 20px;
		right: 20px;
		width: 10px;
		height: 10px;
		margin-top: -10px;
		background: #000;
	}
	nav.gnav .subnav a:hover:after {
		background: #222;
	}
	nav.gnav .subnav.active > a:before {
		margin-top: 0;
	}
	nav.gnav .subnav.active > a:after {
		margin-top: 5px;
	}

	.spMenuWrap {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		-webkit-transition: all 1s;
		-moz-transition: all 1s;
		-ms-transition: all 1s;
		-o-transition: all 1s;
		transition: all 1s;
		background: transparent;
	}

	#spMenu {
		position: absolute;
		top: 10px;
		right: 10px;
	}

	#spMenu:hover {
		cursor: pointer;
	}

	#navBtn {
		display: inline-block;
		position: relative;
		width: 40px;
		height: 40px;
		border-radius: 5%;
		background: #333;
	}
	#navBtnIcon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 14px;
		height: 2px;
		margin: -1px 0 0 -7px;
		background: #f1f1f1;
		transition: .2s;
	}
	#navBtnIcon:before,
	#navBtnIcon:after {
		display: block;
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 14px;
		height: 2px;
		background: #f1f1f1;
		transition: 0.3s;
	}
	#navBtnIcon:before {
		margin-top: -6px;
	}
	#navBtnIcon:after {
		margin-top: 4px;
	}
	#navBtn .close {
		background: transparent;
	}
	#navBtn .close:before,
	#navBtn .close:after {
		margin-top: 0;
	}
	#navBtn .close:before {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	#navBtn .close:after {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
}

/*================================================
 *  フッター
 ================================================*/
footer {
	clear: both;
	background-color:#f5f5f5;
	
}

footer ul{
	
	padding: 15px 0 0 0;
	
}

footer ul li{
	float: left;
	
	margin: 0 0 50px 0;
	width: 25%;
	padding: 0 0 10px 0;
	
}

footer ul li ul li{
	float: left;
	font-size: 94%;
	margin: 0;
	width: 100%;
	padding: 0 0 10px 0;
	font-weight: bold;
	list-style-type: circle;
	
}

footer ul li ul li a{
	font-size: 96%;
	color: #696969;
	
}

footer ul li ul li a:hover{
	
	font-size: 96%;
	color: #000;
	font-weight: bold;
}

.fnav {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	
	margin: 0;
	padding: 15px 0;
}

.fnav > ul {
	width: auto;
	margin-bottom: 0;
	font-size: 82%;
}
.fnav > ul li {
	text-align: left;
	float: left;
}

.copyright {
	padding: 20px 0;
	color: #fff;
	font-size: 80%;
	text-align: center;
	background: #000;
}

@media screen and (min-width:568px) and (max-width:959px) {
footer ul{
	
	padding: 15px 15px 0 15px;
	
}
	
footer ul li{
	float: left;
	
	margin: 0 0 30px 0;
	width: 33%;
	padding: 0 0 10px 0;
	
}
}

@media screen and (max-width:767px) {


	
footer ul{
	
	padding: 20px 0 0 0;
	
}


footer ul li{
	float: none;

	margin: 0 auto 20px auto;
	width: 95%;
	padding: 0;
	
	
}

footer ul li:last-child {
		border-bottom: none;
}

footer ul li ul li{
	float: left;
	font-size: 94%;
	margin: 0;
	width: auto;
	padding: 0 20px 5px 0;
	font-weight: bold;
	list-style-type: none;
	border: none;
	
}


	.fnav > ul {
		width: 100%;
	
	}
	.fnav ul li {
	
	float: left;
		
		
}
	

}


/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position:fixed;
	bottom:0;
	right:0;
	z-index:1;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {

 background:#000;


}
.totop img:hover {
	 background:#696969;
	
  
}


/*================================================
 *  スライドショー
 ================================================*/
.slide {
	padding-top: 80px;
	overflow: hidden;
	position: relative;
}
.slideInner {
	list-style: none;
	margin: 0;
	padding: 0;
}
.slideInner li {
	position: absolute;
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #fff;
	background-position: 50% 0;
	background-repeat: no-repeat;
}

/*================================================
 *  タブレット・スマートフォン向けデザイン
 ================================================*/
/* テンプレートより小さくなった場合に適用 */
@media screen and (max-width:979px) {
	.inner {
		width: 100%;
	}

	#contents {
		box-sizing: border-box;
		width: 100%;
		padding: 0 10px;
	}

	footer {
		width: 100%;
	}

	.lock {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
	}
}



/*================================================
 *  クリックで開閉：よくあるご質問
 ================================================*/

/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 30px 0 10px 0;
	display: block;
	color: #000;
	border-top:2px dotted #c0c0c0; 
	width: 93%;
	margin: 50px 0 0 0;
	font-size: 100%;
	font-weight: bold;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 10px;
	height: 10px;
	border-top: 4px solid #000;
	border-right: 4px solid #000;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 10px;
	transform: rotate(135deg);
	

}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
	width: 100%;
	font-size: 120%;
margin: 20px auto 0 auto;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}


.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
	margin: 0;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}



/*================================================
 * ご予約・お問い合わせ
 ================================================*/


#contact {
	
	position: relative;
  overflow: hidden;
  margin: 0;
	  padding:80px 0;
	
}

#contact .inner {
width: 75%;
	background: #fff;

	
}


#contact .contents_inner {
  box-sizing: border-box;
  width: 70%;
  max-width: 640px;
 margin: 0;
  color: #fff;
	
	
  
}

#contact .inner p {
  margin: 10px 0 5px 0;
	text-align: left;
	font-size: 110%;
	
  
}

#contact iframe {
width: 100%;
	height: 300px;

}




#contact h2{
	padding: 80px 0 70px 0;
	font-size: 180%;
	text-align:center;
	font-weight: bold;
margin: 0 0 50px 0;

	width: auto;
	letter-spacing:5px;
	color: #000;

}

#contact h3{
	
	font-size: 140%;
	
	font-weight: bold;
margin: 50px 0 20px 0;

	width: auto;
	letter-spacing:2px;

}
#ttl_r{
	background:url("../images/ttl_t.jpg") no-repeat;
	
	background-position: right bottom;
}


#ttl_t{
	background:url("../images/ttl_t.jpg") no-repeat;
	background-position: left bottom;
}


#contact table {
  margin: 20px auto 50px auto;
	width: 100%;
	font-size:98%;
	
	
}
#contact .tbl-r02 th {
  background: #f2f2f2;
 
  color: #000;
  padding: 10px;
	width: 25%;

}
#contact .tbl-r02 td {
　border: #999 1px dotted;
  padding: 10px;


}
 

/*sent.php*/
#submit article{
	padding:50px 0;
}
#submit table{
	width:60%;
	margin:0 auto;
	background:#FFF;
}
#submit table tr td{
	border:#AAA solid 1px;
	text-align:left;
}
#submit table tr .gray{
	background:#DDD;
	width:30%;
}
#submit .submit-box{
	text-align:center;
	font-size: 120%;
}


#submit .error{
	text-align:center;
	color:#F00;
}

@media screen and (max-width:767px) {
#contact {
		 padding: 60px 0; 
	}
	
#contact .inner {
width: 95%;
	padding:0 0 40px 0;
	
	
}

#contact iframe {
width: 100%;
	height: 260px;
	
}
	
#contact h2{
	padding: 80px 0;
	font-size: 130%;
	margin: 0 0 50px 0;
	text-align: center;
	font-weight: bold;
	letter-spacing: 2px;
	
}	

#ttl_r{
	background:url("../images/ttl_t.jpg") no-repeat;
	background-position: left bottom;
}


#ttl_t{
	background:url("../images/ttl_t.jpg") no-repeat;
	background-position: right bottom;
}


#contact .inner table {
	width: 95%;
	
}



#contact .inner .tbl-r02 {
    width: 95%;

  }

#contact .inner .tbl-r02 th,
#contact .inner .tbl-r02 td {
　　border-bottom: none;
    display: block;
    width: 95%;
	padding: 8px;
		
  }

	
input[type="text"]{
	width: 100%;
	max-width: 300px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

textarea {
	width: 100%;
	max-width: 400px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/*sent.php*/
#submit article{
	padding:50px 10px;

	
}
#submit table{
	width:95%;
	margin:0 auto;
	background:#FFF;
}
#submit table tr td{
	border:#AAA solid 1px;
	text-align:left;
}
#submit table tr .gray{
	background:#DDD;
	width:40%;
}
#submit .submit-box{
	text-align:center;
	font-size: 120%;
}
#submit .error{
	text-align:center;
	color:#F00;
}
}

/*CSSスライドショー設定：各3枚スライド：accessで使用
---------------------------------------------------------------------------*/
/*１枚目*/
@keyframes slide1 {
	0% {opacity: 0; transform: scale(1);}
	10% {opacity: 1;}
	40% {transform: scale(1.05);}
	50% {opacity: 1;}
	60% {opacity: 0;}
	100% {opacity: 0;}
}
/*２枚目*/
@keyframes slide2 {
	0% {opacity: 0;}
	25% {opacity: 0; transform: scale(1);}
	35% {opacity: 1;}
	65% {transform: scale(1.05);}
	75% {opacity: 1;}
	85% {opacity: 0;}
	100% {opacity: 0;}
}
/*３枚目*/
@keyframes slide3 {
	0% {opacity: 0;}
	50% {opacity: 0; transform: scale(1);}
	60% {opacity: 1;}
	80% {opacity: 1;}
	90% {opacity: 0; transform: scale(1.05);}
	100% {opacity: 0;}
}

/*mainimg
---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg, #subimg {
	clear: both;
	/*max-width: 1500px;*/
	width: 100%;	/*※マニュアル用に追加*/
	overflow: hidden;
	margin: 0 auto;
	/*position: absolute;*/
	position: relative;	/*※マニュアル用に追加*/
}
/*subimgブロックの画像*/
#subimg img {
	width: 100%;
	border: 3px solid #eeeeee;
	background-color: #eeeeee;
background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #F9F9F9), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #F9F9F9),color-stop(.75, #F9F9F9), color-stop(.75, transparent),to(transparent));
-webkit-background-size: 14px 14px;
	width: 70%;	
	
	padding: 20px 10px 10px 10px;
	margin: 0 auto 30px auto;
}
/*３枚画像の共通設定*/
.slide1,.slide2,.slide3 {
	animation-duration: 20s;	/*実行する時間。「s」は秒の事。*/
	animation-iteration-count:infinite;		/*実行する回数。「infinite」は無限に繰り返す意味。*/
	position: absolute;left:0px;top:0px;width: 100%;height: auto;
	animation-fill-mode: both;
	animation-timing-function: linear;
	animation-delay: 3s;
	
	
}
/*土台画像*/
.slide0 {
	position: relative;width: 100%;height: auto;
}
/*１枚目*/
.slide1 {
	animation-name: slide1;		/*上で設定しているキーフレーム（keyframes）の名前*/
}
/*２枚目*/
.slide2 {
	animation-name: slide2;		/*上で設定しているキーフレーム（keyframes）の名前*/
}
/*３枚目*/
.slide3 {
	animation-name: slide3;		/*上で設定しているキーフレーム（keyframes）の名前*/
}




 /*================================================
 * index
 ================================================*/

.bg1 {
  animation:slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:5s;
}

.content1 {
  background-color:rgba(255,255,255,.8);
  border-radius:.25em;
  box-shadow:0 0 .25em rgba(0,0,0,.25);
  box-sizing:border-box;
  left:50%;
  padding:10vmin;
  position:fixed;
  text-align:center;
  top:50%;
  transform:translate(-50%, -50%);
}


@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}


/* メイン画像*/
#imageBox {
	padding-top: 90px;
	background:url(../images/main.jpg) no-repeat;
background-position: center center;
	height:400px;

}


@media screen and (min-width:768px) and (max-width:959px) {
	
#imageBox {
	padding-top: 90px;
	background:url(../images/main_tab.jpg) no-repeat;
background-position: center center;
	height:400px;

}
}




@media screen and (max-width:767px) {
	
#imageBox {
	text-align:center;
	padding-top: 60px;
	background:url("../images/bg_body.png") repeat;
	height: auto;

}

	
}



	
/* 更新情報 */

#news {
	
	padding: 0;
	margin: 30px 0 0 0;
	
}




#news .news_l{
	
	width: 68%;
	height: auto;
	margin: 0 20px 0 0;
	float: left;


}



#news .news_l .flame{
	font-size: 110%;
	font-weight: bold;
	text-align:center;
	margin: 0 auto 20px auto;
	background: #fff;
	padding: 15px 0;
	border-top: 2px dotted #dcdcdc;
	border-bottom: 2px dotted #dcdcdc;
	width: 100%;
	letter-spacing: 2px;

}


/* バナー */
#news .news_r{
	float: left;
	width: 28%;
	height: auto;
	padding: 0;
	
}

#news .news_r ul {
	
	
}

#news .news_r ul li{
	margin: 0 0 10px 0;
	
}


#news .news_r ul li a:hover{
	opacity: 0.8;
	
}


@media screen and (min-width:768px) and (max-width:959px) {
#news {
	
	padding: 0 15px;
	
}
	
/* バナー */
#news .news_r{
	
	width: 27%;
	
}

	
}

@media screen and (max-width:767px) {
#news {
	
	padding: 20px 15px 0 15px;
	
	
	
}
	


#news .news_l{
	
	width: auto;
	height: auto;
	margin: 0;
	float: none;


}

/* バナー */
#news .news_r{
	
	display: none;
	
	

}
	
#news .news_l .flame{
	font-size: 105%;
	font-weight: bold;
text-align: center;
	margin: 0 auto 20px auto;
	background: #fff;
	padding: 15px 0;

	width: 100%;

}

}

/* SNS */
#sns{
	
	margin:  0;
	padding: 0;
	
	

}

#sns ul{
float: left;
	margin: 0;
	 
}

#sns ul li{
 
	width: auto;
	float:left;
	text-align: left;
	font-size: 140%;
	margin: 0 30px 0 0;

}

@media screen and (max-width:767px) {
#sns{
	
	margin:  0;
	padding: 0;
	
	

}

#sns ul{
float: left;
	margin: 0 auto;
	width: 100%; 
}

#sns ul li{
 float:left;
	text-align: left;
	font-size: 140%;
	margin: 0 30px 0 0;

}	
}

/* 動画2枚 */

.movieBox {
	margin: 180px 3% 30px 3%;

	
}
.movieBox iframe {
	width: 95%;
	height: 400px;
	background-color: #ECECEC;
background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #F9F9F9), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #F9F9F9),color-stop(.75, #F9F9F9), color-stop(.75, transparent),to(transparent));
-webkit-background-size: 14px 14px;
		padding:15px;
	border-radius: 10px;
	float: left;
	margin: 30px auto 30px auto;
	
}

@media screen and (min-width:768px) and (max-width:959px) {
.movieBox iframe {
	
width: 94%;
	height: 550px;
	background-color: #ECECEC;
background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #F9F9F9), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #F9F9F9),color-stop(.75, #F9F9F9), color-stop(.75, transparent),to(transparent));
-webkit-background-size: 14px 14px;
	padding:15px;
	border-radius: 10px;
	float: none;
	margin: 20px auto 40px auto;
	
}
}


@media screen and (max-width:767px) {

.movieBox {
	margin: 0;
	padding: 90px 0 0 0;
}

	
.movieBox iframe {
	width: 100%;
	height: 300px;
	
	background-color: none;
background-image:none;
	padding:0;	
	border-radius: 0;
	margin: 0;
}
}


/* 概要 */

#about{
	
	margin: 0;
	padding: 30px 0;
	

}

#about h2 {
	margin: 50px 0 1em 0;
	font-size: 220%;
	color: #333;
	text-align: left;
	line-height: 1em;
	letter-spacing: 4px;
	font-weight: bold;
	
}




#about p {
	
	
	font-size: 110%;
	margin: 0 0 10px 0;
	width: 100%;
	

}



#about img {
	width:45%;
	
	margin:0 30px 10px 0;
	padding: 15px;
	background: #fff;
	border: 0.5px dotted #ccc;

	float: left;
	box-shadow: 5px 5px 10px #a9a9a9;
-webkit-box-shadow: 5px 5px 10px #a9a9a9;
-moz-box-shadow: 5px 5px 10px #a9a9a9;

	

}




@media screen and (min-width:768px) and (max-width:959px) {

#about{
	
	margin: 0;
	padding: 40px 15px 0 15px;

}


#about h2 {
	margin: 50px 0 1em 0;
	font-size: 180%;
	color: #333;
	text-align: left;
	line-height: 1em;
	letter-spacing: 4px;
	font-weight: bold;
	
}


#about img {
	width:45%;
	border: 3px solid #fff;
	margin:0 20px 20px 0;

	float: left;

	box-shadow: 2px 2px 4px #d3d3d3;
-webkit-box-shadow: 2px 2px 4px #d3d3d3;
-moz-box-shadow: 2px 2px 4px #d3d3d3;

}
	
}


@media screen and (max-width:767px) {
	
#about{
	
	margin: 0;
	padding: 0 15px 0 15px;

}
	
#about h2 {
	margin-bottom: 1em;
	font-size: 180%;
	color: #333;
	text-align: left;
	line-height: 2em;
	letter-spacing: 2px;
	font-weight: bold;
	
}


	


#about p {
	
	margin: 0 0 10px 0;
	font-size: 100%;
	

}


#about img {
	width:91%;
	border: 3px solid #fff;
	margin:0 0 20px 0;

	float: none;

	box-shadow: 2px 2px 4px #d3d3d3;
-webkit-box-shadow: 2px 2px 4px #d3d3d3;
-moz-box-shadow: 2px 2px 4px #d3d3d3;

}
	
}


/* ギネス記録 */

#guinness{
	
	margin: 0;
	padding: 80px 0;
	

}

#guinness h2 {
	margin-bottom: 80px;
	font-size: 260%;
	color: #333;
	text-align: center;
	line-height: 1em;
	letter-spacing: 6px;
	font-weight: bold;
	
}



#guinness iframe {
	width: 100%;
	height: 550px;
	background-color: #ECECEC;
background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #F9F9F9), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #F9F9F9),color-stop(.75, #F9F9F9), color-stop(.75, transparent),to(transparent));
-webkit-background-size: 14px 14px;
	padding:15px;
	border-radius: 10px;
	float: left;
	margin: 20px auto 40px auto;
}




#guinness p {
	
	
	font-size: 115%;
	margin: 0 0 10px 0;
	

}







@media screen and (min-width:768px) and (max-width:959px) {

#guinness{
	
	margin: 0;
	padding: 40px 3% 0 3%;

}


#guinness iframe {
	width: 96%;
	height: 550px;
	background-color: #ECECEC;
background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #F9F9F9), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #F9F9F9),color-stop(.75, #F9F9F9), color-stop(.75, transparent),to(transparent));
-webkit-background-size: 14px 14px;
	padding:15px;
	border-radius: 10px;
	float: left;
	margin: 20px auto 40px auto;
}

#guinness p {
	
	margin: 0 0 10px 0;
	font-size: 110%;
	

}




	
}


@media screen and (max-width:767px) {
	
#guinness{
	
	margin: 0;
	padding:0 3%;

}
	
#guinness h2 {
	margin-bottom: 1em;
	font-size: 150%;
	color: #333;
	text-align: center;
	line-height: 2em;
	letter-spacing: 1px;
	font-weight: bold;
	
}


	


#guinness iframe {
	width: 100%;
	height: 250px;
	
	background-color: none;
background-image:none;
	padding:0;	
	border-radius: 0;
	margin: 0 0 30px 0;
}
	
}




/* お問い合わせフォーム */

#contact_i {
	width: auto;
	margin: 0;
	padding: 70px 0 50px 0;
	
}

#contact_i h2 {
	margin-bottom: 2em;
	font-size: 260%;
	color: #333;
	text-align: center;
	line-height: 1em;
	letter-spacing: 10px;
	font-weight: bold;
}

#contact_i h2 span {
	position: relative;
	font-size: 40%;
}





#contact_i p{
	
	color:#fff;
	text-align: center;
	font-size: 150%;

}

#contact_i #flame{
	width: auto;
	margin: 0 0 50px 0;
	padding: 0;
	

}

#contact_i #flame p{
	text-align: center;
	font-size: 130%;
	color:#000;
	margin:0 0 50px 0;
	letter-spacing:2px ;

	

}


#contact_i #flame ul{
	margin: 0;
}

#contact_i #flame ul li{
	
	
	text-align: center;
	font-weight: bold;
	width: 80%;
	margin: 0 auto 30px auto;
	
}

.Btn{
  position: relative;
  border: 5px solid #a9a9a9;
  margin: 0 auto;

  width: 100%;
  height: 50px;
  line-height: 48px;
  display: flex;
  text-align: center;
  background: #fff;
font-weight: bold;
	font-size: 140%;
	padding: 30px 0;
	

}

.Btn-Text{
  width: 780px;
  height: 50px;
  color: #000;
  z-index: 10;
	letter-spacing:4px;
}

.Btn-Text:before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #dcdcdc;
  z-index: -1;
  transition: .2s;
}

.Btn-Text:hover{
  color: #000;
	font-weight: bold;
}

.Btn-Text:hover:before{
  width: 100%;
}


#contact_i .triangle01 {
  display: table;
  width: 100%;
  height: 500px;
  background-color: #e8a337;
  transform: skewY(-10deg);
  margin-top: 10vw;
}
 

#contact_i .triangle01 p {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  color: #fff;
}
 

#contact_i .triangle01 > * {
  transform: skewY(10deg);
}




@media screen and (min-width:768px) and (max-width:959px) {
	
#contact_i #flame{
	width: 90%;
	margin: 50px auto 0 auto;
	background-color:#fff;
padding: 15px;
}

#contact_i #flame p{
	text-align: center;
	font-size: 140%;
	margin: 0;

}




#contact_i #flame ul li{
	
	
	padding: 20px 0;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	border:none;
	
	
}
.Btn{
  position: relative;
  border: 3px solid #a9a9a9;
  margin: 0 auto;

  width: 70%;
  height: 50px;
  line-height: 48px;
  display: flex;
  text-align: center;
  background: #fff;
font-weight: bold;
	font-size: 140%;
	padding: 30px 0;
	

}

.Btn-Text{
  width: 100%;
  height: 50px;
  color: #000;
  z-index: 10;
}

.Btn-Text:before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #dcdcdc;
  z-index: -1;
  transition: .2s;
}

.Btn-Text:hover{
  color: #000;
	font-weight: bold;
}

.Btn-Text:hover:before{
  width: 100%;
}


}


@media screen and (max-width:767px) {
	
#contact_i{
		margin: 0;
		padding: 50px 15px 30px 15px;
	
		

}
	
#contact_i h2 {
	margin-bottom: 2em;
	font-size: 180%;
	color: #333;
	text-align: center;
	line-height: 1em;
	letter-spacing: 5px;
	font-weight: bold;
}



#contact_i #flame{
	width: 100%;
	
	background-color:#fff;
padding: 0;

}

#contact_i #flame p{
	text-align: left;
	font-size: 110%;
	letter-spacing: 1px;

}




#contact_i #flame ul li{
	
	
	padding: 20px 0;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	border:none;
	
	
}
.Btn{
  position: relative;
  border: 3px solid #a9a9a9;
  margin: 0 auto;

  width: auto;
  height: 30px;
  line-height: 48px;
  display: flex;
  text-align: center;
  background: #fff;
font-weight: bold;
	font-size: 110%;
	padding: 30px 0;
	

}

.Btn-Text{
  width: 100%;
  height: 50px;
  color: #000;
  z-index: 10;

	
}

.Btn-Text:before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #dcdcdc;
  z-index: -1;
  transition: .2s;
}

.Btn-Text:hover{
  color: #000;
	font-weight: bold;
}

.Btn-Text:hover:before{
  width: 100%;
}

}



/* スケジュール */


#schedule {
	
	position: relative;
  overflow: hidden;
 padding: 60px 0;
	background:url("../images/bg_schedule.jpg") no-repeat;
background-position: top right;
	
}


#schedule h2 {
	margin-bottom: 80px;
	font-size: 260%;
	color: #333;
	text-align: center;
	line-height: 1em;
	letter-spacing: 15px;
	font-weight: bold;
}



#schedule h3{
	
	text-align: center;
	padding:0;
	font-size: 150%;
	font-weight: bold;
	
}	

#schedule h4{
	margin: 0 0 10px 0;
	text-align: left;
	padding:0;
	font-size: 120%;
	letter-spacing: 2px;
	
}	


#schedule p{
	
	padding: 0;
	margin-bottom: 0;

	
	
}




#schedule .tbl-r02 th {
  background: #f2f2f2;
  border: solid 1px #ccc;
  color: #000;
  padding: 20px;
	width: 20%;
	letter-spacing:3px;
	font-size: 110%;
}
#schedule .tbl-r02 td {
　border: #999 1px dotted;
  padding: 20px;
	text-align: left;
	font-size: 110%;
}



@media screen and (min-width:768px) and (max-width:959px) {

#schedule {
 padding: 30px;
}
	

#schedule h3{
	
	text-align: center;
	padding:0;
	font-size: 180%;
	font-weight: bold;
	
}	
	
#schedule ul li{
 position: relative;
padding: 10px 20px 20px 20px;
  background: #f3f3f3;
    box-shadow: 0px 0px 0px 8px #f3f3f3;
	border: dashed 2px #ccc;
    border-radius: 8px;
	margin: 20px 0 40px 0;
	width: auto;
	float: none;
}
	

	
}

 
@media screen and (max-width:767px) {
	
#schedule {
 
padding: 50px 15px 0 15px;
		background:none;


  
}

#schedule h2 {
	margin-bottom: 2em;
	font-size: 180%;
	color: #333;
	text-align: center;
	line-height: 1em;
	letter-spacing: 2px;
	font-weight: bold;
}
	
#schedule h3{
	
	text-align: center;
	padding:0;
	font-size: 130%;
	font-weight: bold;
	
}	

#schedule h4{
	margin: 0 0 10px 0;
	text-align: left;
	padding:0;
	font-size: 115%;
	letter-spacing: 2px;
	
}	

	
#schedule p{
	
	padding: 0;
	font-size: 92%;
	width: auto;
	
	
}

#schedule table {
	width: auto;
	
}




#schedule .tbl-r02 {
    width: auto;

  }


#schedule .tbl-r02 th,
#schedule .tbl-r02 td {
　　border-bottom: none;
    display: block;
    width: 95%;
	padding: 10px;
		
  }

}



/* お申し込みの流れ */


#guide {
	
	position: relative;
  overflow: hidden;
 padding: 50px 0 
	
}


#guide h2 {
	margin-bottom: 80px;
	font-size: 260%;
	color: #333;
	text-align: center;
	line-height: 1em;
	letter-spacing: 10px;
	font-weight: bold;
}



#guide h3{
	margin: 20px 0;
	text-align: center;
	padding:0;
	font-size: 160%;
	
}	

#guide h4{
	margin: 0 0 20px 0;
	text-align: left;
	padding:0;
	font-size: 130%;
	
}	





#guide .tbl-r02 th {
  background: #f2f2f2;
  border: solid 1px #ccc;
  color: #000;
  padding: 20px;
	width: 10%;
	letter-spacing:5px;
}
#guide .tbl-r02 td {
　border: #999 1px dotted;
  padding: 20px;
	text-align: left;
font-size: 110%;
	
}


#guide .tbl-r02 td p{
	
	padding: 0;
	margin: 0 0 10px 0;
	width: auto;
}



@media screen and (min-width:768px) and (max-width:959px) {

#guide {
 padding: 30px;
}
	
#guide ul li{
 position: relative;
padding: 10px 20px 20px 20px;
  background: #f3f3f3;
    box-shadow: 0px 0px 0px 8px #f3f3f3;
	border: dashed 2px #ccc;
    border-radius: 8px;
	margin: 20px 0 40px 0;
	width: auto;
	float: none;
}
	

	
}

 
@media screen and (max-width:767px) {
	
#guide {
 
padding: 0 15px;

  
}

#guide h2 {
	margin-bottom: 2em;
	font-size: 180%;
	color: #333;
	text-align: center;
	line-height: 1em;
	letter-spacing: 2px;
	font-weight: bold;
}
	
#guide p{
	
	padding: 0;
	font-size: 100%;
	width: auto;
	margin: 0 0 10px 0;
	
}

#guide table {
  
	font-size: 90%;
	text-align: center;
}
	

#guide .tbl-r02 th {
  background: #f2f2f2;
  border: solid 1px #ccc;
  color: #000;
  padding: 10px;
	width: 14%;
	letter-spacing:0;
	
	text-align: center;
}
#guide .tbl-r02 td {
　border: #999 1px dotted;
  padding: 10px;
	text-align: left;
	font-size: 100%;
}

}



/* アクセス*/

#access{
	
	margin: 0;
	padding: 30px 0 0 0;
		background:url("../images/bg_access.jpg") no-repeat;
background-position: bottom right;
	background-size: 80%;

}

#access h2 {
	margin: 50px 0 2em 0;
	font-size: 250%;
	color: #333;
	text-align: center;
	line-height: 1em;
	letter-spacing: 15px;
	font-weight: bold;
	
}



#access #flame{

	margin: 50px 0;
	
	
}

#access #flame #flame_r {
	
	margin: 0;
	width: 50%;
	float: right;
}

#access #flame #flame_r h3{
	margin: 0 0 20px 0;
	text-align: left;
	padding:0;
	font-size: 150%;
	letter-spacing: 2px;
	font-weight: bold;
	
}

#access #flame #flame_r p {
	
	margin: 0 0 10px 0;
	font-size: 110%;
	

}

#access #flame #flame_l {
	
	margin: 0;
	width: 45%;
	float: left;
}

#access #flame #flame_l img {
	width:98%;
	
	margin:0 0 20px 0;
	padding: 15px;

	float: left;

	box-shadow: 2px 2px 4px #d3d3d3;
-webkit-box-shadow: 2px 2px 4px #d3d3d3;
-moz-box-shadow: 2px 2px 4px #d3d3d3;

}

#access iframe{

	width: 450px;
	height: 350px;
	
	
}



@media screen and (min-width:768px) and (max-width:959px) {

#access{
	
	margin: 0;
	padding: 40px 15px 0 15px;
			background:none;


}


#access #flame #flame_r {
	
	margin: 0;
	width: auto;
	float: none;
}


#access #flame #flame_r p {
	
	margin: 0 0 10px 0;
	font-size: 100%;
	

}

#access #flame #flame_l {
	
	margin: 0;
	width: auto;
	float: none;
}

#access #flame #flame_l img {
	width:98%;
	border: 3px solid #fff;
	margin:0 0 20px 0;

	float: left;

	box-shadow: 2px 2px 4px #d3d3d3;
-webkit-box-shadow: 2px 2px 4px #d3d3d3;
-moz-box-shadow: 2px 2px 4px #d3d3d3;

}

#access iframe{

	width: 100%;
	height: 350px;
	margin: 0 0 30px 0;
	
	
}
	
}



@media screen and (max-width:767px) {
	
#access{
	
	margin: 0;
	padding: 10px 15px 0 15px;
	background: none;

}
	
#access h2 {
	margin-bottom: 1em;
	font-size: 180%;
	color: #333;
	text-align: left;
	line-height: 2em;
	letter-spacing: 2px;
	font-weight: bold;
	
}


	

	

#access #flame #flame_r {
	
	margin: 0;
	width: auto;
	float: none;
}


#access #flame #flame_r p {
	
	margin: 0 0 10px 0;
	font-size: 100%;
	

}

#access #flame #flame_l {
	
	margin: 0;
	width: auto;
	float: none;
}

#access #flame #flame_l img {
	width:98%;
	border: 3px solid #fff;
	margin:0 0 20px 0;

	float: left;

	box-shadow: 2px 2px 4px #d3d3d3;
-webkit-box-shadow: 2px 2px 4px #d3d3d3;
-moz-box-shadow: 2px 2px 4px #d3d3d3;

}

#access iframe{

	width: 100%;
	height: 350px;
	margin: 0 0 30px 0;
	
	
}
	
}



/* 斜めエリア：右上 */
.slant {
    width: 100%;
    margin: 0 0 80px 0;
    padding: 100px 0;
    position: relative;
    top: 60px;
	clip-path: polygon(0 0, 100% calc(0% + 5vw), 100% calc(100% - 5vw), 0 100%);
	height:auto;
}

.slant img {
    width: 45%;
   
}


.slant p {
    width: 80%;
    margin: 30px auto;
}

.slant::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
   background:url("../images/bg_b.jpg") repeat;
   
    z-index: -1;
}



/* 斜めエリア：左上 */
.slant2 {
    width: 100%;
    margin: 0 0 80px 0;
    padding: 100px 0 80px 0;
    position: relative;
    top: 80px;
	clip-path: polygon(0 0, 100% calc(0% + 5vw), 100% calc(100% - 5vw), 0 100%);
	height:auto;
}



.slant2 p {
    width: 80%;
    margin: 30px auto;
}

.slant2::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #F9F9F9), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #F9F9F9),color-stop(.75, #F9F9F9), color-stop(.75, transparent),to(transparent));
-webkit-background-size: 10px 10px;
   
    z-index: -1;
}


/* 斜めエリア：右上 */
.slant3 {
    width: 100%;
    margin: 0 0 80px 0;
    padding: 100px 0;
    position: relative;
    top: 60px;
	clip-path: polygon(0 0, 100% calc(0% + 5vw), 100% calc(100% - 5vw), 0 100%);
	height:auto;
}

.slant3 img {
    width: 45%;
   
}


.slant3 p {
    width: 80%;
    margin: 30px auto;
}

.slant3::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
   background:url("../images/bg_y.png") repeat;
   
    z-index: -1;
}
