@charset "UTF-8";
/*---------------------------------------------
	FontSize Initialization
---------------------------------------------*/
html {
	font: 62.5%/1.231 "ヒラギノ丸ゴ W4 JIS2004", "Hiragino Maru Gothic W4 JIS2004", sans-serif;
}
body {
	font-size: 1.0rem; /*10px*/
	font-family: "ヒラギノ丸ゴ W4 JIS2004", "Hiragino Maru Gothic W4 JIS2004", sans-serif;
	letter-spacing: -0.001em; /* iOS4でのテキストの隙間への対応 */
	-webkit-text-size-adjust: 100%; /* 文字サイズの自動調整機能のキャンセル */
}
select, input, button, textarea, table {
	font: 1.0rem "ヒラギノ丸ゴ W4 JIS2004", "Hiragino Maru Gothic W4 JIS2004", sans-serif;/* 10px */
}
pre, code, kbd, samp, tt {
	font-family: "ヒラギノ丸ゴ W4 JIS2004", "Hiragino Maru Gothic W4 JIS2004", sans-serif;
	line-height: 1;
}

.lh0 { line-height: 0; }
/*---------------------------------------------
	Color hover & Transition setting
---------------------------------------------*/
a {
	text-decoration: none;
}
a:hover {
	opacity: .5;
	text-decoration: none;
}

@media (min-width:768px) {
a {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	text-decoration: none;
}
a img {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
a:hover img {
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
a[hover="none"]:hover img {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
}

/*---------------------------------------------
	Layout Setting
---------------------------------------------*/

html, body {
	margin: 0;
}
@media screen and (min-width:769px){
	.inner {
		width: 1200px;
		margin: 0 auto;
	}
}

/*---------------------------------------------
	Title Tag
---------------------------------------------*/
h2 { font-size: 3.6rem; color: #fff; }
h2 > span { font-size: 1.4rem; color: #c2d5ea; font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif"; vertical-align: text-top; }
h2:after { content: ''; display: block; margin: 0 auto; width: 120px; height: 3px; background: #fff; }
h3 { margin: 60px 0; padding: 20px 0; font-size: 3.6rem; color: #444; border-top: 5px solid #2575CA; border-bottom: 5px solid #2575CA; }
h4 { display: inline-block; margin-bottom: 60px; padding-left: 20px; border-left: 5px solid #2575CA; font-size: 2.8rem; }
h5 { font-size: 2.4rem; color: #2575CA; padding-bottom: 20px; }

/*---------------------------------------------
	Common
---------------------------------------------*/
.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
}
.col {
	-webkit-box-direction: normal;
	-moz-box-direction: normal;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	flex-direction: column;
}
.end {
	-webkit-box-align:end;
    -moz-box-align:end;
    -ms-flex-align:end;
    -webkit-align-items:flex-end;
    -moz-align-items:flex-end;
    align-items:flex-end;
}
.between {
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-webkit-flex-pack: justify;
	-moz-flex-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
}
.around {
	-webkit-flex-pack:distribute;
    -moz-flex-pack:distribute;
    -ms-flex-pack:distribute;
    -webkit-justify-content:space-around;
    -moz-justify-content:space-around;
    justify-content:space-around;
}
.center {
	-webkit-box-pack:center;
    -moz-box-pack:center;
    -webkit-flex-pack:center;
    -moz-flex-pack:center;
    -ms-flex-pack:center;
    -webkit-justify-content:center;
    -moz-justify-content:center;
    justify-content:center;
}
.jend{
	-webkit-box-pack:flex-end;
    -moz-box-pack:flex-end;
    -webkit-flex-pack:flex-end;
    -moz-flex-pack:flex-end;
    -ms-flex-pack:flex-end;
    -webkit-justify-content:flex-end;
    -moz-justify-content:flex-end;
    justify-content:flex-end;
}

.right {
	-webkit-box-pack:end;
	-moz-box-pack:end;
	-webkit-flex-pack:end;
	-moz-flex-pack:end;
	-ms-flex-pack:end;
	-webkit-justify-content:flex-end;
	-moz-justify-content:flex-end;
	justify-content:flex-end;
}
.wrap {
	-webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
.middle {
	-webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.selftop {
	-webkit-align-self:flex-start;
    -moz-align-self:flex-start;
    -ms-align-self:flex-start;
    align-self:flex-start;
}
.rev{
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media (max-width:767px) {
	.spflex {
		display: -webkit-box;
		display: -moz-box;
		display: -webkit-flexbox;
		display: -moz-flexbox;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: -moz-flex;
		display: flex;
	}
	.spcol {
		-webkit-box-direction: normal;
		-moz-box-direction: normal;
		-webkit-box-orient: vertical;
		-moz-box-orient: vertical;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		flex-direction: column;
	}
	.spwrap {
		-webkit-box-lines:multiple;
		-moz-box-lines:multiple;
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.spstart {
		-webkit-box-align:start;
		-moz-box-align:start;
		-ms-flex-align:start;
		-webkit-align-items:flex-start;
		-moz-align-items:flex-start;
		align-items:flex-start;
	}
	.spright {
	-webkit-box-pack:end;
	-moz-box-pack:end;
	-webkit-flex-pack:end;
	-moz-flex-pack:end;
	-ms-flex-pack:end;
	-webkit-justify-content:flex-end;
	-moz-justify-content:flex-end;
	justify-content:flex-end;
	}
	.sprev{
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
	}
}

@media (max-width:768px) {
.pc {
	display: none;
}
}

@media (min-width:769px) {
.sp {
	display: none !important;
}
}
*, *: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;
}

/*---------------------------------------------
		Background Animation
	---------------------------------------------*/
.bg-scale {
	background-color: #000000;
}
.bg-scale a:after {
	position: absolute;
	opacity: 0.5;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-ms-background-size: contain;
	background-size: contain;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.bg-scale a:hover:after {
	opacity: 0.5;
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
	cursor: pointer;
}

/*---------------------------------------------
	Table
---------------------------------------------*/
.table {
	width: 99.8%;
	border: 1px solid #f4f4e8;
	border-collapse: collapse;
}
.table thead th, .table thead td, .table tbody th, .table tbody td {
	padding: 15px 15px;
	border: 1px solid #ccc;
	font-size: 1.6rem;
	line-height: 160%;
}
.table thead th {
	background: #999;
	color: #000;
	font-weight: normal;
	text-align: center;
	white-space: nowrap;
}
.table thead td {
	background: #fff;
	color: #000;
	text-align: center;
}
.table tbody th {
	background: #fafafa;
	color: #333;
	font-weight: normal;
	white-space: nowrap;
}
.table tbody td {
	background: #fff;
	color: #333;
}
.table .required:after {
	display: inline-block;
	content: "必須";
	color: #fff;
	font-weight: normal;
	background: #ff0000;
	padding: 0 8px;
	float: right;
	border-radius: 8px;
	font-size: 1.0rem;
}

@media (max-width:768px) {
/*
	.table thead th, .table thead td, .table tbody th, .table tbody td {
		display: block;
		width: 100%;
	}
	.table tbody td,.table tbody th { border-top: none; }
	.table > tbody > tr:first-of-type > th { border: 1px solid #ccc; }
	.overflow .table td { display: table-cell; border-top: 1px solid #d9d9d9 !important; white-space: nowrap; }
	.overflow .table th { border-bottom: 1px solid #d9d9d9 !important; }
*/
	
	.overflow { width: 100%; overflow-x: auto; }
	.overflow > div { width: 100px; }
	.overflow .table th,
	.overflow .table td { white-space: nowrap; }
	.overflow > div::-webkit-scrollbar{ height: 5px; }
	.overflow > div::-webkit-scrollbar-track{ background: #F1F1F1; border-radius: 10px; }
	.overflow > div::-webkit-scrollbar-thumb { background: #BCBCBC; border-radius: 10px; }
}
/*---------------------------------------------
	List
---------------------------------------------*/
#contents ul.kome > li {
	margin-left: 25px;
	position: relative;
}
#contents ul.kome > li:before {
	content: "※";
	margin-left: -25px;
	position: absolute;
}
#contents ul.v1 > li {
	margin-left: 25px;
	position: relative;
}
#contents ul.v1 > li:before {
	content: "・";
	margin-left: -25px;
	position: absolute;
}
#contents dl.list {
	padding: 20px;
	border: 1px solid #d9d9d9;
	font-size: 2.0rem;
}
#contents dl.list dt {
	margin-bottom: 20px;
	padding-left: 12px;
	border-left: 6px solid #2575CA;
}
#contents dl.list dd { line-height: 180%; }
#contents dl.list dd p:last-child{ margin-bottom:0;}

/*---------------------------------------------
	Img Thumb
---------------------------------------------*/
.thumbs {
	border: 2px solid #fff;
	box-shadow: 0 0 6px #666;
}
/*---------------------------------------------
	Button
---------------------------------------------*/
.btn {
	display: inline-block;
	font-weight: normal;
	line-height: 100%;
	text-align: center;
	vertical-align: middle;
	border: 1px solid transparent;
	position: relative;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	color: #fff;
	cursor: pointer;
}
.wpcf7-confirm, .wpcf7-submit, .wpcf7-back {
	display: inline-block;
	padding: 10px 50px;
	margin-bottom: 0;
	font-weight: normal;
	line-height: 1.428571429;
	text-align: center;
	vertical-align: middle;
	border: 1px solid transparent;
	position: relative;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	background: #000;
	color: #fff;
	min-width: 80px;
}
.wpcf7-confirm, .wpcf7-submit {
	background: #457703;
}
a.btn, input.btn, .wpcf7-confirm, .wpcf7-submit {
	cursor: pointer;
}
.btn:before, .wpcf7-confirm:before, .wpcf7-submit:before {
	display: inline;
	content: "";
}
a.btn:hover, input.btn:hover, input.wpcf7-confirm:hover, input.wpcf7-submit:hover {
	/*opacity: .5;*/
}
.btn.disabled {
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
}
.btn.lg {
	padding: 20px 0px 20px 0px;
	line-height: 1.33;
	font-size: 2.0rem;
}
.btn.sm {
	padding: 5px 0px 5px 0px;
	line-height: 1.33;
	font-size: 1.4rem;
}
.btn1 {
	padding: 13px 50px;
	background: #fff;
	font-size: 2.4rem;
	color: #2575CA;
	border-radius: 50px;
	border: 2px solid #fff;
}
.btn1:after {
	content: '\f0da';
	font-family: 'fontawesome';
	margin-left: 30px;
}
.btn1:hover {
	background: #2575CA;
	color: #fff;
	border: 2px solid #fff;
	opacity: 1;
}


/*---------------------------------------------
	Radius
---------------------------------------------*/
.rd8 {
	border-radius: 8px;
}
/*---------------------------------------------
	Tab
---------------------------------------------*/
.tabmenu {
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-o-justify-content: space-around;
	justify-content: space-around;
	margin: 0 -10px;
}
.tabmenu a {
	padding-bottom: 50px;
	color: #ccc;
	line-height: 160%;
	font-size: 2.2rem;
}
.tabmenu a:after {
	content: "";
	display: block;
	margin: 0 auto;
	margin-top: 10px;
	width: 100px;
	height: 5px;
	background: #ccc;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.tabmenu a.active {
	color: #925564;
}
.tabmenu a.active:after {
	background: #925564;
}
.tabmenu a:hover {
	color: #925564;
}
.tabmenu a:hover:after {
	background: #925564;
}
/*---------------------------------------------
	Form Element
---------------------------------------------*/
fieldset {
	padding: 0;
	margin: 0;
	border: 0;
}
legend {
	display: block;
	width: 100%;
	padding: 0;
	margin-bottom: 20px;
	font-size: 21px;
	line-height: inherit;
	color: #333333;
	border: 0;
	border-bottom: 1px solid #e5e5e5;
}
label {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: bold;
}
#sc_list td label {
	font-weight: normal !important;
}
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input[type="radio"], input[type="checkbox"] {
	margin: 4px 0 0;
	margin-top: 1px \9;
	/* IE8-9 */

	line-height: normal;
}
input[type="file"] {
	display: block;
}
select[multiple], select[size] {
	height: auto;
}
select optgroup {
	font-size: inherit;
	font-style: inherit;
	font-family: inherit;
}
input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
 height: auto;
}
.form-control:-moz-placeholder {
 color: #999999;
}
.form-control::-moz-placeholder {
 color: #999999;
}
.form-control:-ms-input-placeholder {
 color: #999999;
}
.form-control::-webkit-input-placeholder {
 color: #999999;
}
.form-control {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.428571429;
	color: #555555;
	vertical-align: middle;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
	cursor: not-allowed;
	background-color: #eeeeee;
}
textarea.form-control {
	height: auto;
}
.form-group {
	margin-bottom: 15px;
}
.radio, .checkbox {
	display: block;
	min-height: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left: 20px;
	vertical-align: middle;
}
.radio label, .checkbox label {
	display: inline;
	margin-bottom: 0;
	font-weight: normal;
	cursor: pointer;
}
.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
	float: left;
	margin-left: -20px;
}
.radio + .radio, .checkbox + .checkbox {
	margin-top: -5px;
}
.radio-inline, .checkbox-inline {
	display: inline-block;
	padding-left: 20px;
	margin-bottom: 0;
	vertical-align: middle;
	font-weight: normal;
	cursor: pointer;
}
.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
	margin-top: 0;
	margin-left: 10px;
}
input[type="radio"][disabled], input[type="checkbox"][disabled], .radio[disabled], .radio-inline[disabled], .checkbox[disabled], .checkbox-inline[disabled], fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"], fieldset[disabled] .radio, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox, fieldset[disabled] .checkbox-inline {
	cursor: not-allowed;
}
.input-sm {
	height: 30px;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}
select.input-sm {
	height: 30px;
	line-height: 30px;
}
textarea.input-sm {
	height: auto;
}
.input-lg {
	height: 45px;
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.33;
	border-radius: 6px;
}
select.input-lg {
	height: 45px;
	line-height: 45px;
}
textarea.input-lg {
	height: auto;
}
.has-warning .help-block, .has-warning .control-label {
	color: #c09853;
}
.has-warning .form-control {
	border-color: #c09853;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
	border-color: #a47e3c;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}
.has-warning .input-group-addon {
	color: #c09853;
	border-color: #c09853;
	background-color: #fcf8e3;
}
.has-error .help-block, .has-error .control-label {
	color: #b94a48;
}
.has-error .form-control {
	border-color: #b94a48;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
	border-color: #953b39;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}
.has-error .input-group-addon {
	color: #b94a48;
	border-color: #b94a48;
	background-color: #f2dede;
}
.has-success .help-block, .has-success .control-label {
	color: #468847;
}
.has-success .form-control {
	border-color: #468847;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
	border-color: #356635;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}
.has-success .input-group-addon {
	color: #468847;
	border-color: #468847;
	background-color: #dff0d8;
}
.form-control-static {
	margin-bottom: 0;
	padding-top: 7px;
}
.help-block {
	display: block;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #737373;
}

@media (min-width:768px) {
.form-inline .form-group {
	display: inline-block;
	margin-bottom: 0;
	vertical-align: middle;
}
.form-inline .form-control {
	display: inline-block;
}
.form-inline .radio, .form-inline .checkbox {
	display: inline-block;
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 0;
}
.form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
	float: none;
	margin-left: 0;
}
}
.form-horizontal .control-label, .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 7px;
}
.form-horizontal .form-group {
	margin-left: -15px;
	margin-right: -15px;
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
	content: " ";
	/* 1 */

	display: table;/* 2 */
}
.form-horizontal .form-group:after {
	clear: both;
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
	content: " ";
	/* 1 */

	display: table;/* 2 */
}
.form-horizontal .form-group:after {
	clear: both;
}

@media (min-width:768px) {
.form-horizontal .control-label {
	text-align: right;
}
}

@media (max-width:768px) {
.form-horizontal .form-group {
	margin-left: 0px;
	margin-right: 0px;
}
}
/*---------------------------------------------
	Colum
---------------------------------------------*/




/*---------------------------------------------
	Global Navigationi
---------------------------------------------*/
#gnav {
	background: #2575CA;
}
#gnav ul { padding: 16px 0; }
#gnav ul > li { position: relative; width: 20%; text-align: center; }
#gnav ul > li:before { content: ''; position: absolute; left: 0; margin-top: 9px; width: 1px; height: 30px; background: #fff; }
#gnav ul > li:first-of-type { display: none; }
#gnav ul > li:first-of-type:before { width: 0; }
@media (min-width:768px) {
	#gnav ul > li:last-of-type:after { content: ''; position: absolute; right: 0; margin-top: 9px; width: 1px; height: 30px; background: #fff; }
}
#gnav a { display: inline-block; color: #fff; font-size: 1.8rem; }
#gnav a span { font-size: 1.2rem; color: #c2d5ea; font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif" }


/*---------------------------------------------
	Header
---------------------------------------------*/
#header h1 { padding: 34px 0 33px 0; }
#header > div > div { position: relative; padding: 24px 0 0 0; }
#header > div > div:before { position: absolute; left 0; margin-left: -12px; content: ''; display: inline-block; width: 4px; height: 54px; background: #2575CA; }
#header > div > div > p:first-of-type { font-size: 1.6rem; padding-bottom: 8px; }

@media (min-width:768px) {
	#fix #gnav,#fix #gnav ul,#fix #header,#fix #gnav ul,#fix #gnav ul > li {
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		-o-transition:.5s ease-in-out;
		transition: .5s ease-in-out;
	}
	.active #header { height: 180px; }
	.active #gnav { position: fixed; top: 0; width: 100%; background: #fff; z-index: 100; }
	.active #gnav ul {
		width: 100%;
		padding: 10px;
		-webkit-box-pack:flex-end;
		-moz-box-pack:flex-end;
		-webkit-flex-pack:flex-end;
		-moz-flex-pack:flex-end;
		-ms-flex-pack:flex-end;
		-webkit-justify-content:flex-end;
		-moz-justify-content:flex-end;
		justify-content:flex-end;
	}

	.active #gnav ul > li:first-of-type { padding-top: 10px; width: 35%; text-align: left; display: block; }
	.active #gnav ul > li img { width: 80%; }
	.active #gnav ul > li { width: 15%; }
	.active #gnav ul > li:before,
	.active #gnav ul > li:last-of-type:after{ background: #ccc; }
	.active #gnav a { color: #333; }
	.active #gnav a span { color: #2575CA; }
	.active #gnav { box-shadow: 0px 1px 5px #ccc; }
}



/*---------------------------------------------
	Footer
---------------------------------------------*/
#footer { padding: 10px 0; text-align: center; background: #2575CA; color: #fff; font-size: 1.1rem; }


/*---------------------------------------------
	breadclumb
---------------------------------------------*/



/*---------------------------------------------
	Contents
---------------------------------------------*/
.tel { font-size: 2.6rem; color: #2575CA; }
.tel:before { content: ''; display: inline-block; margin-right: 8px; width: 30px; height: 25px; background: url('../img/tel.png'); }

#contents { padding: 30px 0 0 0; }
#contents .sc-body p { padding-bottom: 60px; font-size: 1.6rem; line-height: 200%; }
@media (min-width:768px) {
	#contents .sc-body { padding: 60px; }
/*	.table th { width: 45%; }*/
/*	.table .th2 { width: 10%; text-align: center; }*/
}
/*.table .th2 { text-align: center; }*/