@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;
	
	height: 100%;
	line-height: 1.6;
	font-size: 1.4rem;
	letter-spacing: 0.02rem;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-moz-smoothing: grayscale;
	-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 {
	position: relative;
	padding: 5px 5px;
	background: #fff;
}

#breadcrumbList::after {
	position: absolute;
	content: "";
	width: 100px;
	height: 100%;
	background: linear-gradient( to right, rgba( 255, 255, 255, 0 ) 0, rgba( 255, 255, 255, 1 ) 90% );
	top: 0;
	right: 0;
}


/* リスト親 */
#breadcrumbList .list {
	display: flex;
	align-items: center;
	width: 100%;
	overflow: hidden;
}

#breadcrumbList .list .item {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}



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


#breadcrumbList .list .item a {
	padding: 0 5px;
	color: #000;
	font-size: 3.4vw;
}

#breadcrumbList .list .item span {
	white-space: nowrap;
}



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

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


.cinner {
	padding: 20px 10px;
}


.tmargin {
	margin-top: 40px;
}


/*======================================
	トップページへのリンク
======================================*/
.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 *::before,
.iconfas *::after,
.iconfas_b *::before,
.iconfas_f *::after {
	font-family: "Font Awesome 5 Free";
}


/* 疑似要素設定 */
.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: 3.8vw;
}

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

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

/*======================================
	サブコメントボックス
======================================*/
.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のみの場合はスマホでは無効  */
.pcbr { display: none; }

/* SPでは非表示 */
.spHide { display: none; }

/* PC表示 */
.pcOnly { display: none; }
.spOnly { display: inline-block; }
/*======================================
	header
======================================*/
header {
	position: fixed;
	width: 100%;
	height: 40px;
	background: #fff;
	top: 0;
	left: 0;
	box-shadow: 0 2px 8px #333;
	z-index: 100;
}

/*======================================
	タイトル
======================================*/
header .title {
	display: block;
	position: relative;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
}

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

}


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

header .title a {
	color: #333;
}


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

/* オプション操作 */
header .option {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

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


header .option .contactButton::before {
	content: "\f0e0";
	font-size: 2.6vw;
	font-weight: bold;
	margin-right: 6px;

}


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

/* お問い合わせボタン */
.contactButton01 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 100%;
	font-size: 3.2vw;
	background: #1782E6;
	text-align: center;
	padding: 8px 0;
	border-radius: 5px;
}


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

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


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

/* filter */
.subHeadline::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba( 0, 0, 0, .3 );
	top: 0;
	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: 6.8vw;
	line-height: 1.4;
	animation: animSubHeadLineJa 1s forwards;
}

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


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

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

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


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

footer .cinner {
	padding: 40px 10px;
}


/* ロゴボックス */
footer .logobox {
}

footer .logobox .logo {
	position: relative;
	color: #fff;
	font-size: 5.2vw;
	margin-bottom: 10px;
}

/* ロゴリンク */
footer .logobox a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

/* ロゴ画像 */
footer .logobox .image {
	position: relative;
	display: block;
	width: 10vw;
	margin-right: 8px;
	left: 0;
}

footer .logobox a span {
	display: block;
}


footer .logobox .commentBox {
	text-align: center;
	padding: 10px 10px;
}

footer .logobox .commentBox p {
	color: #fff;
	font-size: 3.8vw;
}

footer .logobox .commentBox .sub {
	font-size: 3.2vw;
}


/* コンタクト */
footer .contact {
	text-align: center;
}

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

/* リンク */
footer .contact .contactButton {
	display: block;
	color: #fff;
	width: 100%;
	font-size: 4.2vw;
	border: 1px #fff solid;
	padding: 5px 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 p {
	font-size: 3.5vw;
}

footer .band a {
	color: #333;
}
/*================================================
	押し込んだ表現
================================================*/
.pressButton {
	outline: none;
	box-shadow: 2px 2px  #666;
	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 );
	-webkit-transform: translate( 2px, 2px );
	-moz-transform: translate( 2px, 2px );
	-ms-transform: translate( 2px, 2px );
}


/*================================================
	ボタン等に光を走らせる
================================================*/
.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: effectReflectionSp 2.6s infinite;
}

@keyframes effectReflectionSp {
	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 effectReflectionDelaySp {
	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 animEffectMarkerSp01 {
	0% { background-position: 100% 0; }
	100% { background-position: 0 0; }
}


/*================================================
　汎用アニメーション
================================================*/
/* beat */
@keyframes animBeatSp {
	0% { filter: drop-shadow( 0 0 0 #000 ); }
	100% { filter: drop-shadow( 0 0 10px transparent ); }
}

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

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


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

.effectInit01 {
	opacity: 0;
}

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


/* zoom in */
@keyframes animZoomInSp {
	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;
}
/*======================================
	progress
======================================*/
/* 進捗 */
.progress {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	margin-bottom: 20px;
	overflow: hidden;
}

/* 各進捗項目 */
.progress p {
	position: relative;
	flex: 0 0 31.5%;
	padding: 10px 0; 
	font-size: 2.4vw;
	color: #333;
	height: 32px;
	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: 20px transparent solid;
	border-left: 10px #fff solid;
	border-bottom: 20px transparent solid;
	left: -1px;
}

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


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

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


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



/*======================================
	お問い合わせ
======================================*/
#contents {
	padding-top: 0;
}

[id^="content-contact"] {
}

.form {
}


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

/* タイトル */
.form .title {
	position: relative;
	padding: 5px 10px;
	color: #fff;
	background: #2F9592;
	border-radius: 5px;
}

.form .title p {
	font-size: 3.6vw;
}

/* 必須 */
.form .title.required::before {
	position: absolute;
	content: "必須";
	right: 10px;
	color: #fff;
	font-size: 2.8vw;
	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: #fffcdb;
	border: 1px #fc3f3f dotted;
	padding: 10px;
	margin-bottom: 30px;
	color: #f00;
}

/* 各行 */
.errorList li {
}


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



.errorList li:not(:first-child) {
	position: relative;
	margin-bottom: 10px;
}

/* エラー文字 */
.errorList li p {
	font-size: 2.8vw;
	line-height: 1.4;
}



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



/* 矢印 */
.errorList li:not(: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;
	padding-left: 16px;
}


.errorBox {
	display: none;
}



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

#content-contact01 .first {
	margin-bottom: 30px;
}


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


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

#content-contact01 .formText {
	width: 100%;
	font-size: 3.8vw;
}

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


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


.submitBox .button {
	font-size: 3.8vw;
	padding: 10px 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-contact01 .submitBox .button {
	width: 60%;
}

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

#content-contact02 .first {
	margin-bottom: 20px;
}

#content-contact02 .value {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 5px;
	padding: 10px 10px;
	font-size: 3.4vw;
}


#content-contact02 .submitBox {
	display: flex;
	justify-content: space-evenly;
	
}

#content-contact02 .submitBox .btn {
	flex-basis: 45%;
}

#content-contact02 .submitBox .button {
	width: 100%;
}



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

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

#content-contact03 .commentBox {
    background: #fdffdd;
    border: 1px #aaa dotted;
    padding: 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: 3.8vw;
	margin-bottom: 10px;
}


#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;
}
