@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');

/*================================================
 *  一般・共通設定
 ================================================*/

body {
	font-size:16px;
	font-family: "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Helvetica,sans-serif;
	color: #3c3c3c;
	text-align: justify;
	text-justify: inter-ideograph;
}

a,.linearAnime {
	color: inherit;
	text-decoration: none;
	-webkit-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
a.underline {
	text-decoration: underline;
}
a:hover {
	opacity: 0.7;
}
a.underline:hover {
	opacity: 1;
	text-decoration: none;
}

img,svg {
	vertical-align: bottom;
}

/*色*/
.color_main {
	color: #1f518e;
}
.color_red {
	color: #a92224;
}
.color_white {
	color: #fff;
}

/*背景*/
.bg_main {
	background-color: #1f518e;
}
.bg_lblue {
	background-color: #e9eef4;
}
.bg_pink {
	background-color: #f5eaf0;
}

/* position */
.relative{
	position: relative;
}
.absolute{
	position: absolute;
}
/* sp/pcの切替 */
.sp,.sp_inline {
	display: none;
}
/*文字揃え*/
.ta-l {
	text-align: justify;
	text-justify: inter-ideograph;
}
.ta-r {
	text-align: right;
}
.ta-c {
	text-align: center!important;
}
.pcspText { /*PC：中央揃え・SP左揃え用*/
	text-align: center;
}
/*文字種類*/
.ff_opensans {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}
.ff_mincho {
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}

/*文字太さ*/
.fontLight {
	font-weight: 300;
}
.fontRegular {
	font-weight: 400;
}
.fontMedium {
	font-weight: 500;
}
.fontSemiBold {
	font-weight: 600;
}
.fontBold {
	font-weight: 700;
}
.fontBlack {
	font-weight: 900;
}


/*Text Crop*/
.textcrop::before,
.textcrop::after {
	content: '';
	display: block;
	height: 0;
	width: 0;
}
.textcrop::before {
	margin-bottom: -0.133em;
}
.textcrop::after {
	margin-top: -0.133em;
}

/*幅*/
.wrap {
	max-width: 940px;
	margin: 0 auto;
	width: 100%;
}



/*******flexbox*******/
[class*="flex_start"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_end"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_between"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_center"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.align_items_center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.row_reverse {
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}



/*================================================
 *  ヘッダー
 ================================================*/
header .inner {
	max-width: 1900px;
	margin: 0 auto;
	height: 100px;
	padding: 30px 0 0 60px;
}




/*================================================
 *  ページタイトル
 ================================================*/
#pageTitle {
	height: 250px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
#pageTitle h2 {
	font-size: 48px;
	text-align: center;
}




/*================================================
 *  コンテンツ
 ================================================*/
main {
	overflow: hidden;
}
.contents {
	padding-bottom: 200px;
}

/*******箇条書きリスト*******/
.kome_list li,
.disc_list li,
.circle_list li,
.square_list li,
.indent_list li {
	list-style-position:inside;
	padding-left: 1em;
	text-indent: -1em;
}
/*※箇条書き*/
.kome_list > li:before{
	display: inline;
	content: "\203b";
}
/*・箇条書き*/
.disc_list > li:before{
	display: inline;
	content: "\30fb";
}
/*●箇条書き*/
.circle_list > li:before{
	display: inline;
	content: "\25CF";
}
/*■箇条書き*/
.square_list > li:before{
	display: inline;
	content: "\25A0";
}
/*()数字*/
.number_list > li{
	padding-left: 2.16em;
	text-indent: -2.66em;
	list-style-type:none;
	list-style-position:inside;
	counter-increment: cnt;
}
.number_list > li:before{
	display: inline;
	content: "（" counter(cnt) "）";
}
/*数字.*/
.decimal_list > li{
	padding-left: 1em;
	text-indent: -1em;
	list-style-type:none;
	list-style-position:inside;
	counter-increment: dcnt;
}
.decimal_list > li:before{
	display: inline;
	content: counter(dcnt) ".";
}


/*******ボタン*******/
.button {
	text-align:center;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 0 auto;
}
#contact:not(.confirm):not(.complete) .button {
	width: 300px;
}
#contact.confirm .button {
	width: 620px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.button input,
.button a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	position: relative;
	width: 300px;
	height: 60px;
	border: none;
	border-radius: 0;
	background-color: #999;
	border: none;
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
	padding: 0 0 0.1em;
	color: #fff;
}
.button input[type=submit]:disabled {
	opacity: 0.7;
	pointer-events: none;
}
.button input[type=submit] {
	background-color: #1f518e;
}
.button input:hover {
	opacity: 0.7!important;
}



/*================================================
 *  ページトップ
 ================================================*/
.pagetop {
	cursor: pointer;
	display: block;
	position: fixed;
	bottom: 60px;
	right: 30px;
	z-index: 1000;
}

/*================================================
 *  フッター
 ================================================*/
footer {
	background-color: #f5f5f5;
}
footer .inner {
	padding: 80px 80px 100px;
	max-width: 1900px;
	margin: 0 auto;
}
footer .inner .logo {
	display: block;
	margin: 0 auto;
}
footer .inner .bottom_list {
	color: #808080;
	font-size: 14px;
	margin-top: 30px;
}



/*******追従ボタン*******/
#fixed_contact {
	position: fixed;
	top: 0;
	right: 0;
	width: 300px;
	height: 100px;
	z-index: 100;
}
.sp_fixed_none #fixed_contact {
	display: none;
}

/*================================================================================================
 *  スマートフォン向けデザイン
 ================================================================================================*/
@media screen and (max-width:500px) {

body {
	font-size: 4vw;
}	

img {
	max-width: 100%;
}



/*文字揃え*/
.pcspText { /*PC：中央揃え・SP左揃え用*/
	text-align: justify;
	text-justify: inter-ideograph;
}
/* sp/pcの切替 */
.sp {
	display: block;
}
.sp_inline {
	display: inline;
}
.pc,.sp_none {
	display: none;
}

/*幅*/
.wrap {
	max-width: inherit;
	width: 90vw;
}
.wrap_sp_small {
	width: 80vw!important;
	margin-left: auto!important;
	margin-right: auto!important;
}
.sp_wid100 {
	width: 100%!important;
}

/*******flexbox*******/
.flex_start_spblock,
.flex_end_spblock,
.flex_between_spblock,
.flex_center_spblock {
	display: block;
}


/*================================================
 *  ヘッダー
 ================================================*/
header .inner {
	max-width: inherit;
	height: 18vw;
	padding: 4vw 0 0 5vw;
}
header .inner .logo img {
	height: 9.3vw;
}

/*================================================
 *  ページタイトル
 ================================================*/
#pageTitle {
	height: 20vw;
	padding-bottom: 5vw;
}
#pageTitle h2 {
	font-size: 6vw;
}

/*================================================
 *  コンテンツ
 ================================================*/
.contents {
	padding-bottom: 20vw;
}

/*******ボタン*******/
.button {
	width: 72vw!important;
	display: block;
}
.button input,
.button a {
	width: 100%;
	height: 15vw;
	font-size: 5vw;
}
.button input + input {
	margin-top: 5vw;
}

/*================================================
 *  ページトップ
 ================================================*/


/*================================================
 *  フッター
 ================================================*/

body:not(.sp_fixed_none) footer {
	padding-bottom: 18vw;
}

footer .inner {
	padding: 12vw 0;
	max-width: inherit;
}
footer .inner .logo {
	height: 11.3vw;
}
footer .inner .bottom_list {
	font-size: 3.2vw;
	margin-top: 10vw;
	text-align: center;
}
footer .inner .bottom_list .copyright {
	margin-top: 12vw;
}


/*******追従ボタン*******/
#fixed_contact {
	top: auto;
	bottom: 0;
	right: 50%;
	transform: translate(50%,0);
	-webkit-transform: translate(50%,0);
	width: 86vw;
	height: 18vw;
}
#fixed_contact img {
	height: 6.1vw;
}



}