@charset "UTF-8";
/*----------------------------------------------------
	style.css
	リセット・基本・共通スタイル
----------------------------------------------------*/

/*
	 http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 基本設定 */
html {
	width: 100%;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 400;
	font-size: 62.5%; /* 10(base font size) / 16(Browser Default font size) = 0.625em * 100 = 62.5% */
}
body {
	color: #1b1b1b;
	font-size: 1.0rem;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	position: relative;
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}
a { display: block; }
a:link {
	color: #1b1b1b;
	text-decoration: none;
	-webkit-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s; /* Edge対策のため省略しない */
	outline: none;
}
a:hover, a:visited, a:active { text-decoration: none; }
img { width: 100%; height: auto; vertical-align: top; }
hr { height: 0; margin: 0; padding: 0; border: 0; }
.imgL { float: left; }
.imgR { float: right; }
.txtL { text-align: left; }
.txtC { text-align: center; }
.txtR { text-align: right; }
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }

/* for IE8 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }

/* box-sizing */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

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

/* テキスト選択時の色 */
::selection { background: #d9f9e6;  }
::-moz-selection { background: #d9f9e6; }

#page {
	background: #fff;
	text-align: left;
	position: relative;
	overflow-x: hidden;
	z-index: 1100;
}

/*----------------------------------------------------
	SP　(599px以下)
----------------------------------------------------*/
#page { margin: 0 0 600px 0; }
#contents { padding: 120px 0 0 0; }

/* ---------- 共通 ---------- */
.pc { display: none; }
.sp , #bt_trigger { display: inline-block; }


/* ---------- header ---------- */
#gloval_header {
	width: 100%;
	height: 120px;
	padding: 0 30px;
	background: rgba(255, 255, 255, 0.9);
	position: fixed;
	top: 0;
	z-index: 10000;
	transition: .3s;
}
#gloval_header #logoarea {
	width: 300px;
	padding: 20px 0;
	float: left;
}
#gloval_header #logoarea a:hover,
#gloval_header #logoarea a:visited,
#gloval_header #logoarea a:active { color: #707070; }
#gloval_header #logoarea .txt {
	margin: 0 0 10px 0;
	font-size: 1.0rem;
	display: block;
}
#gloval_header #logoarea .logo {
	width: 240px;
	height: auto;
	display: block;
}
#gloval_header #gNav {
	width: 100%;
  height: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  position: fixed;
  display: table;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 50;
 }
#gloval_header #gNav ul {
	display: table-cell;
  vertical-align: middle;
}
#gloval_header #gNav ul li {
	width: 100%;
	font-size: 1.6rem;
	text-align: center;
}
#gloval_header #gNav ul li a {
	width: 100%;
	display: block;
}
#gloval_header #gNav ul li a:visited { color: #1b1b1b; }
#gloval_header #gNav ul li a:hover,
#gloval_header #gNav ul li a.on { color: #109853; }
	
/* メニュー[.openクラス付与] */
.open #gloval_header #gNav {
	padding: 60px 0 0 0;
	background: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: visible;
  opacity: 1;
}
#gloval_header #gNav ul li { opacity: 0; }
.open #gloval_header #gNav ul li {
	margin: 0 0 20px 0;
	opacity: 1;
}
#gloval_header #gNav ul li .txt { font-size: 1.2rem; }
#gloval_header #gNav ul li .num {
	font-size: 2.2rem;
	color: #109853;
}
.open #gloval_header #gNav ul li:nth-child(1) {
	-webkit-transition: opacity 1s ease .5s;
	transition: opacity 1s ease .5s;
}
.open #gloval_header #gNav ul li:nth-child(2) {
	-webkit-transition: opacity 1s ease .6s;
	transition: opacity 1s ease .6s;
}
.open #gloval_header #gNav ul li:nth-child(3) {
	-webkit-transition: opacity 1s ease .7s;
	transition: opacity 1s ease .7s;
}
.open #gloval_header #gNav ul li:nth-child(4) {
	-webkit-transition: opacity 1s ease .8s;
	transition: opacity 1s ease .8s;
}
.open #gloval_header #gNav ul li:nth-child(5) {
	-webkit-transition: opacity 1s ease .9s;
	transition: opacity 1s ease .9s;
}
.open #gloval_header #gNav ul li:nth-child(6) {
	-webkit-transition: opacity 1s ease .10s;
	transition: opacity 1s ease 1.0s;
}
.open #gloval_header #gNav ul li:nth-child(7) {
	-webkit-transition: opacity 1s ease .11s;
	transition: opacity 1s ease 1.1s;
}
.open #gloval_header #gNav ul li:nth-child(8) {
	-webkit-transition: opacity 1s ease .12s;
	transition: opacity 1s ease 1.2s;
}
	
/* ハンバーガーメニュー */
#gloval_header #nav_toggle {
	 position: fixed;
	 top: 40px;
	 right: 25px;
	 height: 32px;
	 cursor: pointer;
	 display: block;
}
#gloval_header #nav_toggle > div {
	 position: relative;
	 width: 40px;
}
#gloval_header #nav_toggle span {
	 width: 100%;
	 height: 6px;
	 left: 0;
	 display: block;
	 background: #109853;
	 position: absolute;
	 transition: top .5s ease, -webkit-transform .6s ease-in-out;
	 transition: transform .6s ease-in-out, top .5s ease;
	 transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
}
#gloval_header #nav_toggle span:nth-child(1) { top: 0; }
#gloval_header #nav_toggle span:nth-child(2) { top: 14px; }
#gloval_header #nav_toggle span:nth-child(3) { top: 28px; }
#gloval_header #nav_toggle:hover span:nth-child(1) { top: 4px; }
#gloval_header #nav_toggle:hover span:nth-child(3) { top: 24px; }
.open #gloval_header #nav_toggle span { background: #109853; }
.open #gloval_header #nav_toggle span:nth-child(1) {
	 top: 15px;
	 -webkit-transform: rotate(45deg);
	 transform: rotate(45deg);
}
.open #gloval_header #nav_toggle span:nth-child(2) {
	 top: 15px;
	 width: 0;
	 left: 50%;
}
.open #gloval_header #nav_toggle span:nth-child(3) {
	 top: 15px;
	 -webkit-transform: rotate(-45deg);
	 transform: rotate(-45deg);
}
#gloval_header #nav_toggle { z-index: 1000; }


/* ---------- contents 下層ページ共通 ---------- */
/* コンテンツ背景 */
.pageback {
	background-image: url(../images/bg_cont01_sp.png), url(../images/bg_cont03_sp.png), url(../images/bg_cont02_sp.png);
	background-size: 18% auto, 26% auto, 18% auto;
	background-repeat: no-repeat;
	background-position: 10px 5%, 96% 18%, 10px 52%;
}

/* 見出し */
.st_title_page {
	margin: 0 0 40px 0;
	font-size: 2.4rem;
	text-align: center;
	position: relative;
}
.st_title_page::after {
	content: "";
	width: 151px;
	height: 10px;
	background: url(../images/ic_line_title.png) no-repeat center center;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	bottom: -20px;
}

/* メインイメージ */
#mainimage_cont {
	width: calc(100% - 60px);
	height: 0;
	margin: 0 auto 40px auto;
	padding: 26% 0 0 0;
	position: relative;
}
#mainimage_cont h2 {
	width: 100%;
	color: #fff;
	font-size: 2.8rem;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

/* ---------- footer ---------- */
#gloval_footer {
	width: calc(100% - 60px);
	margin: 0 auto;
	padding: 0 0 80px 0;
}
#gloval_footer .txt { text-align: center; }
#gloval_footer .txt .logo {
	width: 100%;
	margin: 0 auto 30px auto;
}
#gloval_footer .txt dl {
	width: 100%;
	margin: 0 0 40px 0;
	text-align: center;
}
#gloval_footer .txt dl dt {
	font-size: 1.8rem;
	color: #109853;
}
#gloval_footer .txt dl dd { padding: 0 0 30px 0; }
#gloval_footer .txt dl dd p { font-size: 1.8rem; }
#gloval_footer .txt dl dd p .tel {
	font-size: 3.2rem;
	color: #da4c8d;
}
#gloval_footer .txt dl dd p .tel a:link { color: #da4c8d; }
#gloval_footer .txt dl dd p .day {
	margin: 0 10px 0 0;
	font-weight: 500;
}

	
/* カレンダー */
#gloval_footer #calendararea { width: 100%; }
#gloval_footer #calendararea .st_title {
	margin: 0 0 10px 0;
	font-size: 1.6rem;
	color: #006db5;
}
#gloval_footer #calendararea .calendar { height: 400px; }
#gloval_footer #calendararea .ex span {
	margin: 0 40px 0 0;
	padding: 0 0 0 30px;
	font-size: 1.6rem;
	position: relative;
}
#gloval_footer #calendararea .ex span::before {
	content: "";
	width: 23px;
	height: 23px;
	position: absolute;
	top: -2px;
	left: 0;
}
#gloval_footer #calendararea .ex span.ic_all::before {
	background: #f28c8c;
	border: 1px solid #ab413a;
}
#gloval_footer #calendararea .ex span.ic_am::before {
	background: #8cc6f2;
	border: 1px solid #1c6c96;
}
#gloval_footer #calendararea .ex span.ic_pm::before {
	background: #a9f28c;
	border: 1px solid #38a747;
}

#copy {
	padding: 0 0 20px 0;
	font-size: 1.1rem;
	color: #707070;
	text-align: center;
}

/* ---------- ページ最下部GoogleMap ---------- */
#maparea {
	width: 100%;
	height: 600px;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 1;
}
#maparea iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}


/*----------------------------------------------------
	Tablet　(600px 〜 )
----------------------------------------------------*/
@media screen and (min-width: 600px) {
	/* ---------- contents 下層ページ共通 ---------- */
	/* メインイメージ */
	#mainimage_cont { margin: 0 auto 100px auto; }
	#mainimage_cont h2 { font-size: 3.0rem; }
}


/*----------------------------------------------------
	Tablet　(850px 〜 )
----------------------------------------------------*/
@media screen and (min-width: 850px) {
	
	/* ---------- contents 下層ページ共通 ---------- */
	/* コンテンツ背景 */
	.pageback { background-position: 10px 10%, 96% 22%, 10px 54%; }
	
	/* ---------- footer ---------- */
	#gloval_footer .txt {
		width: calc((100% - 60px) / 2);
		float: left;
	}
	#gloval_footer .txt .logo { margin: 0 0 30px 0; }
	#gloval_footer .txt dl { text-align: left; }
	#gloval_footer .txt dl dd { padding: 0 0 15px 0; }
		
	/* カレンダー */
	#gloval_footer #calendararea {
		width: calc((100% - 60px) / 2);
		float: right;
	}
}


/*----------------------------------------------------
	PC　(1200px 〜 )
----------------------------------------------------*/
@media screen and (min-width: 1200px) {
	#page { margin: 0 0 600px 0; }
	#contents { padding: 140px 0 0 0; }
	
	/* ---------- 共通 ---------- */
	.sp, #bt_trigger { display: none; }
	.pc { display: inline-block; }
	.st_title_page {
		margin: 0 0 60px 0;
		font-size: 4.0rem;
	}
	.st_title_page::after {
		width: 302px;
		height: 20px;
		bottom: -30px;
	}
	
	
	/* ---------- header ---------- */
	#gloval_header {
		height: 140px;
		padding: 0 40px;
	}
	#gloval_header #logoarea { width: 350px; }
	#gloval_header #logoarea .txt { font-size: 1.2rem; }
	#gloval_header #logoarea .logo {
		width: 290px;
		margin: 15px 0 0 0;
	}
	
	/* gNav　sp表示解除 */
	#gloval_header #nav_toggle { display: none; }
	#gloval_header #gNav ul li { opacity: 1; }
	
	/* gNav */
	#gloval_header #gNav {
		width: calc(100% - 360px);
	  height: auto;
	  float: right;
	  -webkit-transition: inherit;
	  transition: inherit;
	  visibility: inherit;
	  position: relative;
	  display: block;
	  top: inherit;
	  left: inherit;
	  opacity: inherit;
	  z-index: 50;
	  }
	#gloval_header #gNav ul {
		padding: 40px 0 0 0;
		display: block;
		text-align: right;
	  vertical-align: inherit;
	}
	#gloval_header #gNav ul li {
		width: auto;
		margin: 0 0 0 10px;
		font-size: 1vw;
		text-align: left;
		display: inline-block;
		vertical-align: baseline;
	}
	#gloval_header #gNav ul li a {
		width: 100%;
		display: inline-block;
	}
	#gloval_header #gNav ul li .txt { font-size: 1vw; }
	#gloval_header #gNav ul li .num { font-size: 1.8vw; }
	
	
	/* ---------- contents 下層ページ共通 ---------- */
	/* コンテンツ背景 */
	.pageback {
		background-image: url(../images/bg_cont01.png), url(../images/bg_cont03.png), url(../images/bg_cont02.png);
		background-size: 232px auto, 338px auto, 183px auto;
		background-position: 10px 12%, 96% 24%, 10px 66%;
	}
	
	/* メインイメージ */
	#mainimage_cont { width: calc(100% - 90px); }
	#mainimage_cont h2 { font-size: 5.0rem; }
	

	/* ---------- footer ---------- */
	#gloval_footer {
		width: 1200px;
		padding: 0 0 140px 0;
	}
	#gloval_footer .txt .logo { width: 460px; }
	#copy {
		padding: 0;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		text-orientation: sideways;
		position: absolute;
		top: 8%;
		left: 10px;
	}
}


