@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,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,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:16px;
	font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height:1.6;
}

header {
	width:100%;
	height:90px;
}
section {
	width:100%;
	background-color: #ffffff;
}
#contents {
	width:980px;
	margin:0 auto;
	padding-top:0.5em;
	padding-bottom:8em;
}

a {
	color:#ff8c00;
	text-decoration: none;
}
a:hover {
	color:#b22222;
}

h1 {
	font-size:28px;
}

h2 {
	padding: .75em 1em;
	border: 1px solid #ccc;
	border-top: 3px solid #3498db;
	background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
	background: linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
	box-shadow: 0 -1px 0 rgba(255, 255, 255, 1) inset;
	margin-top:3em;
	margin-bottom:3em;
	font-size:24px;
	font-weight:bold;
}

h3 {
	position: relative;
	padding: .25em 0 .5em .75em;
	border-left: 6px solid #3498db;
	font-size:20px;
	font-weight:bold;
	margin-top:3em;
	margin-bottom:3em;
}
h3::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 1px solid #ccc;
}
h4 {
	position: relative;
	padding-bottom: .5em;
	border-bottom: 4px solid #ccc;
	font-size:18px;
	font-weight:bold;
	margin-top:3em;
	margin-bottom:3em;
}
h4::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	z-index: 2;
	content: '';
	width: 20%;
	height: 4px;
	background-color: #3498db;
}
h5 {
	position: relative;
	text-align: center;
	font-size:24px;
	margin-top:8em;
	margin-bottom:3em;
}
h5 span {
	position: relative;
	z-index: 2;
	display: inline-block;
	margin: 0 2.5em;
	padding: 0 1em;
	background-color: #fff;
	text-align: left;
	font-weight:bold;
}
h5::before {
	position: absolute;
	top: 50%;
	z-index: 1;
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #ccc;
}

h6 {
	margin-top:1em;
	margin-bottom:0.25em;
	padding-left:5px;
	font-size:18px;
	font-weight:bold;
	color:#ff8c00;
}

p {
	margin:0 0 1em 0;
}

img {
	vertical-align:bottom;
}

em {
	font-weight:bold;
}

strong {
	font-weight:bold;
	color:#ff0000;
}

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 {
	list-style:none;
}
ol li {
	list-style:decimal;
}
li {
	margin-left:4em;
	line-height:2em;
}

dt {
	margin-bottom:0.5em;
	border-bottom:1px dotted #ddd;
}
dd {
	margin-bottom:1em;
}

table {
	width:100%;
	margin-bottom:1em;
	border-collapse:collapse;
	border:1px solid #ddd;
}
th {
	padding:10px;
	text-align:center;
	vertical-align:middle;
	border:1px solid #ddd;
	background:#f1f1f1;
}
td {
	padding:10px;
	text-align:left;
	border:1px solid #ddd;
	background-color:#fff;
}
.left {
	float:left;
}
.right {
	float:right;
	padding-top:1em;
	margin-left:2em;
}
.center {
	text-align:center;
	margin-bottom:2em;	
}
#float {
	width:600px;
	height:auto;
	overflow:hidden;
	padding-left:3em;
	padding-right:3em;
	margin:0 auto;
}
#float #left {
	float:left;
	padding:2em;
}
#float #right {
	float:right;
}
#topmargin {
	margin-top:3em;
}
/*================================================
 *  汎用クラス
 ================================================*/
/* 写真中央寄せ */
.imgC {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
	text-align:center;
}
.imgC img {
	border-radius:5px;
	margin-bottom:0.5em;
}

/* 写真左寄せ */
.imgL {
	max-width:70%;
	clear:both;
	overflow:hidden;
	margin:0 auto;
}
.imgL img {
	float:left;
	margin:0 1em 0.5em 0;
	border-radius:5px;
}

/* 写真右寄せ */
.imgR {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}
.imgR img {
	float:right;
	margin:0 0 1em 0.5em;
	border-radius:5px;
}

/* 2カラム（スマートフォンでは1カラム) */
.twoCol {
	overflow:hidden;
	margin-bottom:50px;
}
.twoColInner {
	overflow:hidden;
	margin-right:-2%;
}
.twoColInner div {
	width:41%;
	float:left;
	margin-right:2%;
	text-align:center;
}
.twoColInner div p{
	text-align:left;
}
.twoColInner div:nth-child(2n+1) {
	clear:both;
}
.twoColInner img {
	width:auto;
	margin-bottom:1em;
}

/* 3カラム（スマートフォンでは1カラム) */
.threeCol {
	overflow:hidden;
	margin-bottom:50px;
}
.threeColInner {
	overflow:hidden;
	margin-right:-3%;
}
.threeColInner div {
	width:31%;
	float:left;
	margin-right:2%;
}
.threeColInner div:nth-child(3n+1) {
	clear:both;
}
.threeColInner img {
	width:50%;
	margin-bottom:0.5em;
	border-radius:5px;
}

/* ボタン（タイプ1） */
.btn01 a {
	display:block;
	padding:4% 2% 4% 50px;
	color:#fff;
	text-decoration:none;
	border-radius:5px;
	background:#4fc4f4
 url('../images/bg_arrow_white.png') 20px 50% no-repeat;
	transition:all 0.2s ease 0s;
}
.btn01 a:hover {
	background:#87cefa url('../images/bg_arrow_white.png') 20px 50% no-repeat;
	transition:all 0.2s ease 0s;
}

/* ボタン（タイプ2） */
.btn02 a {
	display:block;
	padding:2%;
	color:#1b1b1b;
	text-decoration:none;
	border-radius:5px;
	background: -moz-linear-gradient(top,#4fc4f4
 0%,#4682b4);
	background: -webkit-gradient(linear, left top, left bottom, from(#4fc4f4
), to(#4682b4));
	background: linear-gradient(to bottom, #4fc4f4, #4682b4);/* IE10+, W3C */
	border: 2px solid #FFF;
	color: #FFF;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	transition:all 0.2s ease 0s;
	font-size:24px;
	font-weight:bold;
	text-align:center;
}
.btn02 a:hover {
	color:#fff;
	background: -moz-linear-gradient(top,#f5f5f5 0%,#c0c0c0);
	background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#c0c0c0));
		background: linear-gradient(to bottom, #f5f5f5, #c0c0c0);/* IE10+, W3C */
	border: 2px solid #FFF;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	color: #FFF;
	transition:all 0.2s ease 0s;
}

/* ボタン（タイプ3） */
.btn03 {
	background: -moz-linear-gradient(top,#ffa500 0%,#d2691e);
	background: -webkit-gradient(linear, left top, left bottom, from(#ffa500), to(#d2691e));
	border: 2px solid #FFF;
	color: #FFF;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	width: 230px;
	padding: 10px 0;
	text-align:center;
}
.btn03 a{
	font-size:16px;
	font-weight:bold;
	color:#fff;
}

/* ボックス） */
.box {
    background-color: #53C0F2
;
    border: 2px dashed #dcdcdc;
    border-radius: 8px;
    box-shadow: 0 0 0 4px #53C0F2
;
    color: #696969;
    margin: 3em 0;
    padding: 2em;
	text-align:center;
}
.box02 {
    background-color: #fff;
    border: 2px dashed #ccc;
    border-radius: 8px;
    box-shadow: 0 0 0 4px #fff;
    color: #696969;
    margin: 0.6em 0;
    padding: 2em;
	height:17em;
}
.box03 {
    background-color: #fff;
    margin: 5em 0;
    padding: 2em;
    position: relative;
    z-index: 1;
	height:16em;
}
.box03::before,
.box03::after {
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
}
.box03::before {
    background-color: rgba(255, 255, 255, .5);
    left: 0;
    top: 0;
    z-index: -1;
}
.box03::after {
    background-color: #f5f5f5;
    top: 5px;
    left: 5px;
    z-index: -2;
}
.box04 {
    background-color: #fff;
    border: 2px dashed #ccc;
    border-radius: 8px;
    box-shadow: 0 0 0 4px #fff;
    color: #696969;
    margin: 0.6em 0;
    padding: 2em;
	height:auto;
}
/*================================================
 *  ヘッダー
 ================================================*/

#header{
position:fixed;
width:100%;
background-color:#fff;
background-image:url(../images/square_bg.png);
background-repeat:repeat;
	z-index: 3;
}

#headwrap{
padding:10px 0 0 0;
width:100%;
min-width:1200px;
border-bottom:2px solid #4fc4f4;
}

#headwrap #head{
margin:0 auto;
max-width:1200px;
height:90px;
}

#headwrap #head #logo{
position:relative;
float:left;
margin:0 0 0 10px;
width:auto;
height:auto;
}

#headwrap #head #info{
	float:right;
	overflow:hidden;
	width:20%;
	padding:0;
	}
/*--TOP BUTTON--*/
#side_btn02 a.button img.arrow {
    width: 6px;
    height: auto;
	margin: 5px 10px 5px 7px;
}
#side_btn02 {
	float:right;
}
#side_btn02 a {  
   padding:10% 0 10%;
	color:#1b1b1b;
	text-decoration:none;
	border-radius:5px;
	background: -moz-linear-gradient(top,#4fc4f4
 0%,#4682b4);
	background: -webkit-gradient(linear, left top, left bottom, from(#4fc4f4
), to(#4682b4));
	background: linear-gradient(to bottom, #4fc4f4, #4682b4);/* IE10+, W3C */
	border: 2px solid #FFF;
	color: #FFF;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	transition:all 0.2s ease 0s;
	display:block;
	width: 12em;
  height: 2em;
}
 
#side_btn02 a:hover {
	/* 反転 */
	color: #fff;
	background: -moz-linear-gradient(top,#f5f5f5 0%,#c0c0c0);
	background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#c0c0c0));
	background: linear-gradient(to bottom, #f5f5f5, #c0c0c0);/* IE10+, W3C */
	border: 2px solid #FFF;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	color: #FFF;
	transition: all 0.2s ease 0s;
	text-align: left;
}


/*--------------------------------------
メイン画像
--------------------------------------*/
#mainvisualwrap {
	width:100%;
	height:auto;
	background-image:url(../images/sora.png);
background-size: 100% 150%;
background-position:center;
background-repeat:repeat;
}
#mainvisual{
width:100%;
max-width:1200px;
height:auto;
margin:0 auto;
}
#mainvisual img {
	width:100%;
}
#mainvisual #mainvisualinner{
position:relative;
width:1200px;
height:auto;
margin:0 auto;
}


/*================================================
 *  メイン
 ================================================*/
main {
	width:100%;
}

section {
	margin-bottom:0.5%;
	background-color: #ffffff;
	background-image:url(../images/brillant.png);
background-repeat:repeat;
}

/*================================================
 *  フッター
 ================================================*/
footer {
	width:100%;
	clear:both;
	padding:2% 0;
	font-size:11px;
	text-align:center;
	color:#fff;
	background-color:#333;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position:fixed;
	bottom:15px;
	right:15px;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {
	background:#000;
}
.totop img:hover {
	background:#333;
}

/*================================================
 *  スライドショー
 ================================================*/
.slide {
	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;
}


/*================================================
 *  メインページ
 ================================================*/
.maplink {
	text-align:center;
}
.photoText {
	text-align:center;
}
/*================================================
 *  フォーム
 ================================================*/
table th span {
	margin: 0 auto;
	color: #ba0000;
	font-size: 11px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	text-align: left;
}
#contact-submit {
    clear: both;
    margin: 0;
}
input[type=text] {
    padding: 4px;
    width: 95%;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    -webkit-box-shadow: 0 0 5px #dddddd inset;
	-ms-box-shadow: 0 0 5px #dddddd inset;
    box-shadow: 0 0 5px #dddddd inset;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	-ms-border-radius: 5px;
    border-radius: 5px;
}
input {
    font-size: 13px;
    color: #222222;
    font-family: "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
    text-align: left;
}
textarea {
    padding: 4px;
    width: 95%;
    height: 152px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    -webkit-box-shadow: 0 0 5px #dddddd inset;
	 -ms-box-shadow: 0 0 5px #dddddd inset;
    box-shadow: 0 0 5px #dddddd inset;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    resize: vertical;
}
textarea {
    font-size: 13px;
    color: #222222;
    font-family: "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
    text-align: left;
}
.column2{
	max-width:800px;
}
.box04 div{
	text-align:center;
}
.box04 div input[type="button"], .box04 div input[type="submit"] {
    padding: 10px 0;
    width: 250px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #ccc;
	border-radius: 5px;
}
.box04 div input[type="button"], .box04 div input[type="submit"] {
    padding: 10px 0;
    width: 250px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #ccc;
	border-radius: 5px;
}




/*================================================
 *  タブレット向けデザイン
 ================================================*/
/* スクロールバーを考慮して20px大きいサイズで切り替え */
@media screen and (max-width:979px) {
	#contents {
		box-sizing:border-box;
		width:100%;
		padding:0 10px;
	}
	
	#headwrap #head #info{
	float:right;
	width:39%;
	height: auto;
	}
	#side_btn02 {
	float:none;
	width: 50%;	
	height: auto;
	padding: 1em;		
}
	#side_btn02 a {
		padding: 1em 0 1em;
		width: 80%;
		margin-right: 2em;
	}
	#mainvisualwrap {
		margin-top: 5em;
		}
}

/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:767px) {
	h2 {
		margin-top:30px;
	}

	.imgC {
		margin-bottom:30px;
	}
	.imgC img {
		max-width:100%;
	}

	.imgL {
		margin-bottom:30px;
	}
	.imgL img {
		float:none;
		max-width:100%;
		margin-right:0;
	}

	.imgR {
		margin-bottom:30px;
	}
	.imgR img {
		float:none;
		max-width:100%;
		margin-left:0;
	}

	.twoCol {
		margin-right:0;
		margin-bottom:30px;
	}
	.twoColInner {
		margin-right:0;
	}
	.twoColInner div {
		float:none;
		width:100%;
	}

	.threeCol {
		margin-bottom:30px;
	}

	.threeColInner {
		margin-right:0;
	}
	.threeColInner div {
		float:none;
		width:100%;
	}
#headwrap #head{
	height:10em;
}
	#headwrap #head #logo img{
		float: none;
		width: 50%;
	}
	#headwrap #head #info{
	float: none;
	width: 100%;
	height: auto;
	}
#headwrap #head #info .info {
    float: none;
    width: 100%;
}
#side_btn02 a {
		width: 100%;
		padding: 1em 01em;
	}
	#mainvisualwrap {
	margin-top: 5em;
	}
}

@media screen and (max-width:414px) {
	#headwrap #head {
	height: auto;
	}
	#headwrap #head #logo img{
		float: none;
		width: 30%;
	}
	#headwrap #head #info{
	float: none;
	width: 50%;
	height: auto;
	}
#headwrap #head #info .info {
    float: none;
    width: 100%;
}
#side_btn {
    float: none;
}
#side_btn a {
    width: 100%;
    height: auto;
    padding: 2%;
}
#side_btn02 {
    float: none;
}
#side_btn02 a {
    width: 90%;
	margin: 0 auto;
    height: auto;
    padding: 2%;
}
#mainvisualwrap {
	margin-top: 3.5em;
	}
}

