@charset "UTF-8";

/* reset */
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, menu, nav, section, summary,
time, mark, audio, video {margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
body {line-height:1;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
nav ul{list-style:none;}
blockquote, q{quotes:none;}
blockquote:before, blockquote:after,q:before, q:after { content:'';content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
ins{background-color:#ff9;color:#000;text-decoration:none;}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}
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 #cccccc;margin:1em 0;padding:0;}
input, select{vertical-align:middle;}


/*======================================
	基本スタイル
======================================*/
html {
	font-size: 62.5%;
}

body {
	color: #333;
	line-height: 1.4;
	min-width: 1000px;
	font-size: 1.4rem;
	letter-spacing: 0.04rem;
	margin: 0;
	
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}


body, textarea, input, pre {
	font-family: 'Noto Serif JP', sans-serif;
	font-weight: 400;
}


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

a { text-decoration: none; }

ul { margin: 0; padding: 0; }

p {
	margin: 0;
	padding: 0;
	font-size: 1.4rem;
	line-height: 1.4;
}

sup {
	vertical-align: super;
	font-size: small;
}

li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	-webkit-backface-visibility: hidden;
}

.nblur {
	-webkit-backface-visibility: hidden;
}

h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; }


/*======================================
	debug
======================================*/
.debug {
}

.debug .disp {
	position: fixed;
	font-size: .8rem;
	width: 200px;
	height: 100px;
	background: #eee;
	bottom: 50px;
	
	z-index: 10000;
}
/*
.line1,
.line2 {
	position: fixed;
	width: 100%;
}

.line1 { border-top: 1px #f00 solid; }
.line2 { border-top: 1px #00f solid; }
*/

/*======================================
	breadcrumb
======================================*/
#breadcrumbList {
	padding: 10px 0;
}

/* リスト親 */
#breadcrumbList .list {
	display: flex;
}

#breadcrumbList .list .item {
	display: inline-flex;
	align-items: center;

}

#breadcrumbList .list .item:not(:last-of-type):after {
	content: "\e5e1";
	font-weight: bold;
	line-height: 1;
}


#breadcrumbList .list .item a {
	padding: 5px 10px;
	color: #000;
	font-size: 1.6rem;
}


/*======================================
	コンテンツ設定
======================================*/
#contents {
}


[id^="content-"] {
	width: 100%;
	padding: 30px 0 50px 0;
}

.cinner {
	width: 1000px;
	margin: 0 auto;
	padding: 20px 10px;
}

.tmargin {
	margin-top: 50px;
}

.middleContent {
	display: block;
	width: 1000px;
	margin: 0 auto;
}

/*======================================
	トップページへのリンク
======================================*/
.topLink {
	position: fixed;
	width: 50px;
	height: 50px;
	background: rgba( 33, 33, 33, .6 );
	bottom: 20px;
	right: -50px;
	border-radius: 5px;
	cursor: pointer;
	z-index: 98;
}

.topLink span {
	display: block;
	position: absolute;
	font-size: 2.6rem;
	color: #fff;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	text-align: center;
}

.animeTopLink1 {
	animation: animeTopLink1 .6s forwards;
}

.animeTopLink2 {
	animation: animeTopLink2 .6s forwards;
}


@keyframes animeTopLink1 {
	0% {
		opacity: 0;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
	}
	
	100% {
		opacity: 1;
		transform: translateX(-70px);
		-webkit-transform: translateX(-70px);
		-moz-transform: translateX(-70px);
		-ms-transform: translateX(-70px);
	}
	
}


@keyframes animeTopLink2 {
	0% {
		opacity: 1;
		transform: translateX(-70px);
		-webkit-transform: translateX(-70px);
		-moz-transform: translateX(-70px);
		-ms-transform: translateX(-70px);
	}
	
	100% {
		opacity: 0;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
	}
	
}



/*======================================
	アイコン設定
======================================*/

/* 疑似要素設定 */
.iconfas *::before,
.iconfas *::after,
.iconfas_b *::before,
.iconfas_f *::after {
	font-family: "Font Awesome 5 Free";
}


/* 疑似要素設定(brand) */
.iconfab *::before,
.iconfab *::after,
.iconfab_b *::before,
.iconfab_f *::after {
	font-family: "Font Awesome 5 Brands";
}


/* 疑似要素設定 */
.gicon::before,
.gicon::after,
.gicon *::before,
.gicon *::after,
.gicon_b *::before,
.gicon_f *::after {
	font-family: 'Material Icons';
}

/*======================================
	flex box
======================================*/
.fbox {
	display: flex;
}


/*======================================
	マージン
======================================*/
.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb50 { margin-bottom: 50px; }
.mb80 { margin-bottom: 80px; }

/*======================================
	画像の比率設定
======================================*/

/* 4:3 */
[class*="img-ratio"] {
	position: relative;
	display: block;
	width: 100%;
}

[class*="img-ratio"] img {
	position: absolute;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
}

[class*="img-ratio"]::before {
	content: "";
	display: block;
}

/* 4:3 */
.img-ratio01::before { padding-top: 75%; }

/* 16:9 */
.img-ratio02::before { padding-top: 56.25%; }


/*======================================
	コメントボックス
======================================*/
[class*="commentBox"] p {
	font-size: 1.6rem;
}

[class*="commentBox"] .mb {
	margin-bottom: 16px;
}

/* 自動マージン */
[class*="commentBox"].automb p:not(:last-child) {
	margin-bottom: 16px;
}

/*======================================
	サブコメントボックス
======================================*/
.subComment {
	border: 1px #aaa dotted;
	padding: 10px 20px;
	background: #fffbe3;
	
	border-radius: 5px;
}


/*======================================
	中央
======================================*/
.posMid {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

/*======================================
	その他
======================================*/
/* 表示,非表示 */
.chide { visibility: hidden; }
.cshow { visibility: visible; }


/* font */
.fset01 {
	font-family: 'Noto Serif JP', sans-serif;
	font-weight: 400;
}


/*---------------------------
　矢印
---------------------------*/

/* arrow01 */
.arrow01::before {
	position: absolute;
	content: "\f105";
	color: #f00;
	font-weight: bold;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: .4s;
}

.arrow01:hover:before {
	transform: translate(5px, -50%);
}

/* color */

/* 赤系 */
.sr00 { color: #f22; }

/* 青系 */
.sb00 { color: #00c; }

/* オレンジ系 */
.so00 { color: #ff9500; }

.tshadow01 {
	text-shadow: 1px 1px 1px #000 ;
}

/* 太字 */
.bold {
	font-weight: bold;
}

/* スマホのみの場合はPCは無効 */
.spbr { display: none; }

/* PCでは非表示 */
.pcHide { display: none; }

/* PC表示 */
.pcOnly { display: inline-block; }
.spOnly { display: none; }
/*======================================
	header
======================================*/
header {
	position: fixed;
	display: flex;
	width: 100%;
	height: 50px;
	
	justify-content: space-between;
	align-items: center;
	background: #fff;
	box-shadow: 0 2px 8px #333;
	
	top: 0;
	left: 0;
	
	z-index: 100;
}

/*======================================
	タイトル
======================================*/
header .title {
	position: relative;
	display: inline-block;
	left: 20px;
}

/* ロゴ */
header .title::before {
	position: absolute;
	content: "";
	width: 50px;
	height: 40px;
	background: url( "../img/logo01.png" ) no-repeat;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);

}


/* タイトル文字 */
header .title p {
	font-size: 1.8rem;
	line-height: 1;
	margin-left: 60px;
}

header .title a {
	color: #333;
}


/* 頭文字 */
header .title .big {
	font-size: 2.4rem;
}

/* オプション操作 */
header .option {
	position: relative;
	flex-basis: 200px;
	display: flex;
	justify-content: flex-end;
	right: 10px;
}

/* お問い合わせボタン */
header .option .contactButton {
	position: relative;
	display: inline-block;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
	background: #1782E6;
	padding: 5px 10px;
	border-radius: 5px;
}


header .option .contactButton::before {
	content: "\f0e0";
	font-size: 1.4rem;
	font-weight: bold;
	margin-right: 10px;
}

/*======================================
	リンクボタン
======================================*/

/* お問い合わせボタン */
.contactButton01 {
	position: relative;
	display: block;
	align-items: center;
	color: #fff;
	font-size: 1.6rem;
	background: #1782E6;
	padding: 5px 10px;
	border-radius: 5px;
}


.contactButton01::before {
	content: "\f0e0";
	font-size: 1.6rem;
	font-weight: bold;
	margin-right: 10px;
}

/* 電話 */
.phone.contactButton01::before {
	content: "\f879";
}


/*======================================
	各サブページヘッドライン
======================================*/
.subHeadline {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
}

/* filter */
.subHeadline::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba( 0, 0, 0, .3 );
	z-index: 1;
}


/* タイトル */
.subHeadline .title {
	position: absolute;
	display: inline-block;
	color: #fff;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	z-index: 1;
}

/* 各ラベル */
.subHeadline .title span {
	position: relative;
	display: block;
	opacity: 0;
}


/* 日本語 */
.subHeadline .title .ja {
	font-size: 3.4rem;
	font-weight: normal;
	line-height: 1.4;
	animation: animSubHeadLineJa 1s forwards;
}

/* 英語 */
.subHeadline .title .en {
	font-size: 2.4rem;
	font-weight: normal;
	animation: animSubHeadLineEn 1s forwards;
}


@keyframes animSubHeadLineJa {
	0% { opacity: 0; transform: translateY(-20px); }
	100% { opacity: 1; transform: translateY(0); }
}

@keyframes animSubHeadLineEn {
	0% { opacity: 0; transform: translateY(10px); }
	100% { opacity: 1; transform: translateY(0); }
}

/* 画像 */
.subHeadline img {
	position: absolute;
	width: 100%;
	max-width: initial;
	top: 50%;
	transform: translateY(-50%);
}




/*======================================
	フッター
======================================*/
footer {
	background: #777;
}

footer .cinner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px 10px;
}


/* ロゴボックス */
footer .logobox {
	padding-right: 20px;
}

footer .logobox .logo {
	position: relative;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 2.2rem;
	margin-bottom: 10px;
}

/* ロゴリンク */
footer .logobox a {
	color: #fff;
}

/* ロゴ画像 */
footer .logobox .image {
	width: 50px;
	margin-right: 10px;
}

footer .logobox .commentBox {
	padding: 0 10px;
}

footer .logobox .commentBox p {
	color: #fff;
}

footer .logobox .commentBox .sub {
	font-size: 1.4rem;
}


/* コンタクト */
footer .contact {
}

footer .contact .title {
	color: #fff;
	font-size: 1.4rem;
	margin-bottom: 5px;
}

/* リンク */
footer .contact .contactButton {
	display: block;
	color: #fff;
	width: 100%;
	font-size: 1.6rem;
	border: 1px #fff solid;
	padding: 8px 0;
	text-align: center;
	transition: .3s;
}

footer .contact .contactButton:hover {
	color: #000;
	background: #fff;
	
}


/* 下の帯 */
footer .band {
	background: #fff;
	text-align: center;
	padding: 5px 0;
}

footer .band a {
	color: #333;
}
/*================================================
	押し込んだ表現
================================================*/
.pressButton {
	outline: none;
	box-shadow: 2px 2px  #333;
	background: -webkit-linear-gradient( top, #eee 0%, #bbb 100% );
	background: -moz-linear-gradient( top, #eee 0%, #bbb 100% );
	background: -ms-linear-gradient( top, #eee 0%, #bbb 100% );
}

/* 押された時 */
.pressButton:active {
	box-shadow: 0 0 0 transparent;
	transform: translate( 2px, 2px );
}


/*================================================
	アンダーライン
================================================*/

/* 左右が透過 */
.uline01 {
	position: relative;
}

.uline01::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background: linear-gradient( to right, rgba( 255, 255, 255, 0 ) 0, #fff 10%, #fff 90%, rgba( 255, 255, 255, 0 ) 100% );
	background: -webkit-linear-gradient( left, rgba( 255, 255, 255, 0 ) 0, #fff 10%, #fff 90%, rgba( 255, 255, 255, 0 ) 100% );
	left: 50%;
	bottom: 0;
	transform: translateX( -50% );
}

/*================================================
	ボタン等に光を走らせる
================================================*/
.effectReflection {
	position: relative;
	display: block;
	overflow: hidden;
}

.effectReflection::before {
	position: absolute;
	content: "";
	width: 40px;
	height: 100%;
	background: #fff;
	top: -50px;
	left: -80px;
	z-index: 1;
	animation: effectReflection 2.6s infinite;
}

@keyframes effectReflection {
	0% {
		opacity: 0;
		transform: scale(0) rotate( 30deg );
	}
	
	30% {
		opacity: 0;
		transform: scale(0) rotate( 30deg );
	}

	31% {
		opacity: 1;
		transform: scale(2) rotate( 30deg );
	}


	100% {
		opacity: 0;
		transform: scale(50) rotate( 30deg );
	}
}


@keyframes effectReflectionDelay {
	0% {
		opacity: 0;
		transform: scale(0) rotate( 30deg );
	}
	
	30% {
		opacity: 0;
		transform: scale(0) rotate( 30deg );
	}

	31% {
		opacity: 1;
		transform: scale(2) rotate( 30deg );
	}


	70% {
		opacity: 0;
		transform: scale(50) rotate( 30deg );
	}

	100% {
		opacity: 0;
		transform: scale(50) rotate( 30deg );
	}

}



/*================================================
	マーカーアニメーション
================================================*/
.effectMarker01 {
	background-image: linear-gradient(to right, #ffff00 50%, transparent 50%);
	background-image: -webkit-linear-gradient(left, #ffff00 50%, transparent 50%);
	background-position: 100% 0;
	background-size: 200% auto;
	background-repeat: no-repeat;
}

@keyframes animeEffectMarker01 {
	0% { background-position: 100% 0; }
	100% { background-position: 0 0; }
}


/*================================================
　汎用アニメーション
================================================*/

/* beat */
@keyframes animBeat {
	0% { filter: drop-shadow( 0 0 0 #000 ); }
	100% { filter: drop-shadow( 0 0 12px transparent ); }
}

/* fade in */
@keyframes animFadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

/* fade out */
@keyframes animFadeOut {
	0% { opacity: 1; }
	100% { opacity: 0; }
}


/* 上から下へ移動 */
.effectMove01 {
	position: relative;
	animation: animeEffectMove01 1.6s forwards;
}

.effectInit01 {
	opacity: 0;
}

@keyframes animEffectMove01 {
	0% {
		opacity: 0;
		transform: translateY( -20px );
	}
	
	100% {
		opacity: 1;
		transform: translateY( 0 );
	}
}

/* zoom in */
@keyframes animZoomIn {
	0% { opacity: 0; transform: scale( .6, .6 ); }
	100% { opacity: 1; transform: scale( 1, 1 ); }
}


/*================================================
　縁取り
================================================*/
.textBorder01 {
	text-shadow: #ffffff 2px 0px,
				 #ffffff -2px 0px,
				 #ffffff 0px -2px,
				 #ffffff 0px 2px,
				 #ffffff 2px 2px,
				 #ffffff -2px 2px,
				 #ffffff 2px -2px,
				 #ffffff -2px -2px,
				 #ffffff 1px 2px,
				 #ffffff -1px 2px,
				 #ffffff 1px -2px,
				 #ffffff -1px -2px,
				 #ffffff 2px 1px,
				 #ffffff -2px 1px,
				 #ffffff 2px -1px,
				 #ffffff -2px -1px;
}

html {
*  visibility: hidden;
}

html.wf-active {
 * visibility: visible;
}

/*======================================
	progress
======================================*/
/* 進捗 */
.progress {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	margin-bottom: 20px;
	overflow: hidden;
}

/* 各進捗項目 */
.progress p {
	position: relative;
	flex: 0 0 32%;
	padding: 10px 0; 
	font-size: 2.0rem;
	color: #333;
	background: #e8eaed;
	text-align: center;
	line-height: 1;
}

/* 共通 */
.progress p:not(:first-child):before,
.progress p:not(:last-child):after,
.progress .now:before,
.progress .now:after {
	position: absolute;
	content: "";
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}


/* 後ろの部分 */
.progress p:not(:first-child):before {
	border-top: 24px transparent solid;
	border-left: 16px #fff solid;
	border-bottom: 24px transparent solid;
	left: -1px;
}

/* 前の部分 */
.progress p:not(:last-child):after {
	border-top: 24px transparent solid;
	border-left: 15px #e8eaed solid;
	border-bottom: 24px transparent solid;
	right: -13px;
}


/* 進捗(現在) */
.progress p.now {
	color: #fff;
	text-shadow: 1px 1px #666;
	background: #ffad1f;
}

/* 前の部分 (現在) */
.progress p.now::after {
	border-left: 15px #2F9592 solid;
	border-left: 15px #ffad1f solid;
}


/* beat box */
@keyframes animeBeat {
	0% { filter: drop-shadow( 0 0 0 #000 ); }
	100% { filter: drop-shadow( 0 0 12px transparent ); }
}



/*======================================
	お問い合わせ
======================================*/
[id^="content-contact"] {
}

.form {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}


.form li {
	margin-bottom: 10px;
}

/* タイトル */
.form .title {
	position: relative;
	display: flex;
	align-items: center;
	flex-basis: 30%;
	padding: 20px 20px;
	color: #fff;
	background: #2F9592;
	border-radius: 5px;
}

.form .title p {
	font-size: 1.6rem;
}

/* 必須 */
.form .title.required::before {
	position: absolute;
	content: "必須";
	right: 10px;
	color: #fff;
	font-size: 1.4rem;
	background: #f33;
	padding: 1px 8px;
	
	border-radius: 5px;
	text-shadow: 1px 1px 1px #000;
	
	top: 50%;
	transform: translateY(-50%);
}



/* 入力フォーム */
.form .value {
	flex-basis: 64%;
}

/*======================================
	error
======================================*/

/* エラーbox */
.formError {
	background: #fffef2;
	border: 1px #fc3f3f dotted;
	padding: 10px;
	margin-bottom: 30px;
	color: #f00;
	border-radius: 5px;
}

/* 各行 */
.errorList li {
	display: flex;
	display: -webkit-flex;
}


/* エラー見出し */
.errorList li:first-child {
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.4;
	background: #fc3f3f;
	padding: 5px 15px;
	margin-bottom: 10px;
}


/* エラー文字 */
.errorList li p {
	font-size: 1.4rem;
	line-height: 1.4;
	padding: 5px;
}



/* エラーが起きてるフォーム名 */
.errorList li p:first-child {
	position: relative;
	width: 240px;
	margin-right: 20px;
	padding-left: 16px;
}



/* 矢印 */
.errorList li p:first-child:before {
	position: absolute;
	content: "";
	border-left: 4px #f00 solid;
	border-top: 4px transparent solid;
	border-bottom: 4px transparent solid;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.errorList li p:last-child {
	position: relative;
}


.errorBox {
	display: none;
}


/*======================================
	お問い合わせ - 入力画面
======================================*/
[id^="content-contact"] {
	padding-top: 0;
}

#content-contact01 .first {
	margin-bottom: 30px;
	text-align: center;

}


#content-contact01 .form .value .ex {
	color: #333;
	font-size: 1.6rem;
	padding: 3px 0;
}


/* フォーム設定 */
#content-contact01 .formText,
#content-contact01 .formTextarea {
	font-size: 1.7rem;
	border: 1px #aaa solid;
	border-radius: 5px;
	padding: 5px 10px;
	outline: none;
}

#content-contact01 .formText {
	width: 60%;
	height: 34px;
	
}

#content-contact01 .formTextarea {
	width: 100%;
	height: 300px;
	resize: vertical;
}


/* ボタンボックス */
.submitBox {
	padding: 30px 0 0;
	text-align: center;
}


.submitBox .button {
	width: 240px;
	font-size: 1.8rem;
	padding: 16px 0;
	border-radius: 50px;
	outline: none;
	border: 1px #333 solid;
	
	color: #fff;
	background: linear-gradient( to bottom, #3292B8 0, #20627d 100% );
	background: -webkit-linear-gradient( top, #3292B8 0, #20627d 100% );


}



/*======================================
	確認画面
======================================*/
#content-contact02 {
}

#content-contact02 .first {
	margin-bottom: 30px;
	text-align: center;
}


#content-contact02 .value {
	display: flex;
	align-items: center;
	background: #fff;
	border-bottom: 1px #ccc solid;
	padding: 0 20px;

}


#content-contact02 .submitBox {
	display: flex;
	justify-content: space-evenly;
	width: 60%;
	margin: 0 auto;
	
}



/*================================================
	お問い合わせフォーム - 完了
================================================*/
#content-contact03 .contentHeader {
}

#content-contact03 .headStyle {
    position: relative;
    color: #333;
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    padding: 20px 0;
}

#content-contact03 .commentBox {
    background: #fdffdd;
    border: 1px #aaa dotted;
    padding: 30px 20px;
    margin-bottom: 50px;
}


#content-contact03 .commentBox h3 {
    width: 180px;
    text-align: center;
    color: #fff;
    background: #ee2222;
    border-radius: 8px;
    margin-bottom: 10px;
}

#content-contact03 .commentBox p {
	font-size: 1.6rem;
}


#content-contact03 .submitBox .button {
	color: #fff;
	background: linear-gradient( to bottom, #3292B8 0, #20627d 100% );
	background: -webkit-linear-gradient( top, #3292B8 0, #20627d 100% );
	padding: 10px 30px;
	text-align: center;
}
