@charset "utf-8";

/* ****************************************************************** 

	--common.css--
	
	0. BoxModel change

	1. Common setting
		1-1. Reset styles
		1-2. BoxModel styles
		1-3. Text styles
		1-4. Heading styles
		1-5. Button styles
		1-8. Form styles
		1-9. Other styles
		1-99. VisualFormattingModel styles

	99. SP

****************************************************************** */

/*==================================================================
	0. BoxModel change
===================================================================*/
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*==================================================================
	1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
	1-1. Reset styles
-------------------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,figure { 
	margin: 0;
	padding: 0;
}
fieldset { 
	border: 0;
}
img { 
	border-style: none;
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
ol,ul {
	list-style: none;
}
caption {
	text-align: left;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
}
q:before,q:after {
	content: '';
}
abbr,acronym { 
	border: 0;
}
table {
	width: 100%;
}

/* ------------------------------------------------------------------
	1-2. BoxModel styles
-------------------------------------------------------------------*/
.pt_00 { padding-top: 0 !important;}
.pt_10 { padding-top: 10px !important;}
.pt_20 { padding-top: 20px !important;}
.pt_30 { padding-top: 30px !important;}
.pt_40 { padding-top: 40px !important;}
.pt_50 { padding-top: 50px !important;}
.pb_00 { padding-bottom: 0 !important;}
.pb_10 { padding-bottom: 10px !important;}
.pb_20 { padding-bottom: 20px !important;}
.pb_30 { padding-bottom: 30px !important;}
.pb_40 { padding-bottom: 40px !important;}
.pb_50 { padding-bottom: 50px !important;}
.mt_00 { margin-top: 0 !important;}
.mt_10 { margin-top: 10px !important;}
.mt_20 { margin-top: 20px !important;}
.mt_30 { margin-top: 30px !important;}
.mt_40 { margin-top: 40px !important;}
.mt_50 { margin-top: 50px !important;}
.mb_00 { margin-bottom: 0 !important;}
.mb_10 { margin-bottom: 10px !important;}
.mb_20 { margin-bottom: 20px !important;}
.mb_30 { margin-bottom: 30px !important;}
.mb_40 { margin-bottom: 40px !important;}
.mb_50 { margin-bottom: 50px !important;}

.highlight_box {
	background: #F7F7F7;
	border-radius: 10px;
	padding: 15px 20px;
}

.bg_beige { background: #F9F5F2;}
.bg_dark_beige { background: #E6DACB;}
.bd_beige_top3 { border-top: 3px solid #EEEAE0;}
.bd_beige_top6 { border-top: 6px solid #EEEAE0;}

.align_left { text-align: left;}
.align_right { text-align: right;}
.align_center { text-align: center;}

/* ------------------------------------------------------------------
	1-3. Text styles
-------------------------------------------------------------------*/
.f10 { font-size: 10px;}
.f12 { font-size: 12px;}
.f14 { font-size: 14px;}
.f16 { font-size: 16px;}
.f18 { font-size: 18px;}
.f20 { font-size: 20px;}
.f22 { font-size: 22px;}
.f24 { font-size: 24px;}
.f26 { font-size: 26px;}
.f28 { font-size: 28px;}
.f30 { font-size: 30px;}
.lh12 { line-height: 1.2;}
.lh14 { line-height: 1.4;}
.lh16 { line-height: 1.6;}
.lh18 { line-height: 1.8;}
.lh20 { line-height: 2;}

.f_color_base { color: #3362B5;}/* MAIN_COLOR */
.f_color_red { color: #ED5024;}
.f_color_black { color: #000;}

.text_indent_01 {
	padding-left: 1em;
	text-indent: -1em;
}
.text_indent_02 {
	padding-left: 2em;
	text-indent: -2em;
}
.text_indent_03 {
	padding-left: 3em;
	text-indent: -3em;
}

/* ------------------------------------------------------------------
	1-4. Heading styles
-------------------------------------------------------------------*/
.heading {
	text-align: center;
}
.heading_title {
	font-size: 28px;
	font-weight: 700;
	color: #00418F;
}

/* ------------------------------------
	Heading（type1）_PAGETITLE
------------------------------------*/
.heading_type_01 {
	padding-bottom: 30px;
}

/* ------------------------------------
	Heading（type2）
------------------------------------*/
.heading_type_02 {
	border-bottom: 3px solid #3362B5;
	padding-bottom: 15px;
	text-align: left;
}
.heading_type_02 .heading_title {
	font-size: 22px;
	color: #000;
}

/* ------------------------------------
	Heading（type3）
------------------------------------*/
.heading_type_03 {
	padding-bottom: 20px;
	text-align: left;
}
.heading_type_03 .heading_title {
	font-size: 22px;
	font-weight: 500;
	color: #00418F;
}

/* ------------------------------------------------------------------
	1-5. Button styles
-------------------------------------------------------------------*/
.contents_btn {
	text-align: center;
	margin: 50px 0;
}
.contents_btn_link {
	display: inline-block;
	width: 360px;
	text-align: center;
}
.contents_btn_link a {
	display: block;
	background: #FFF;
	border: 1px solid #3362B5;
	border-radius: 5px;
	padding: 12px 0 12px;
	font-size: 18px;
	font-weight: 700;
	color: #3362B5;
	position: relative;
	-webkit-transition: .3s;
	transition: .3s;
}
.contents_btn_link a:after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f054";
	position: absolute;
	top: 50%;
	right: 80px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 18px;
	-webkit-transition: .3s;
	transition: .3s;
}
.contents_btn_link a:hover {
	background: #F0F6FF;
	color: #3362B5;
}

/* アイコン無しver */
.contents_btn_link.no_icon a:after {
	display: none;
}

/* ------------------------------------
	ボタン（青背景）
------------------------------------*/
.contents_btn_link_02 a {
	background: #3362B5;
	color: #FFF;
}
.contents_btn_link_02 a:hover {
	background: #1C418F;
	border: 1px solid #1C418F;
	color: #FFF;
}

/* ------------------------------------------------------------------
	1-8. Form styles
-------------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	font-family: inherit;
	font-size: 14px;
	color: inherit;
	vertical-align: middle;
}
select::-ms-expand {
	display: none;
}
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	font-family: inherit;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
	transition: all 0.5s;
}

/*-------------------------------*/
/*	オートフィル時の背景色を無効に
/*-------------------------------*/
input:-webkit-autofill {
	box-shadow: 0 0 0px 999px #FFF inset;
}

/*-------------------------------*/
/*	placeholder
/*-------------------------------*/
input::-webkit-input-placeholder {
	color: #AAAAAA;
}
input::-moz-placeholder {
	color: #AAAAAA;
	opacity: 1;
}
input:-ms-input-placeholder {
	color: #AAAAAA;
}

/*-------------------------------*/
/*	必須
/*-------------------------------*/
.form_subject_req::after {
	content: "必須";
	display: inline-block;
	background: #EE6640;
	border-radius: 4px;
	padding:0 6px;
	margin-left: 15px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

/*-------------------------------*/
/*	要素を横に並べる
/*-------------------------------*/
.form_flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.form_sub_flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.form_flex .form_sub_flex:not(:last-child) {
	margin-right: 15px;
}
.form_flex_item.joint {
	font-size: 14px;
	white-space: nowrap;
}
.form_flex .form_flex_item:not(:first-child) {
	margin-left: 10px;
}

/*-------------------------------*/
/*	text
/*-------------------------------*/
.form_text {
	background: #fff;
	border: 1px solid #333333;
	border-radius: 4px;
	padding: 8px 15px;
	width: 100%;
}
.form_text_02 {
	width: 100px;
}

/* エラー時 */
.form_text_error {
	background: #FEF1ED;
	border: 1px solid #EE6640;
}

/*-------------------------------*/
/*	textarea
/*-------------------------------*/
.form_textarea {
	background: #fff;
	border: 1px solid #333333;
	border-radius: 4px;
	padding: 8px 15px;
	width: 100%;
	height: 140px;
}

/*-------------------------------*/
/*	select
/*-------------------------------*/
.form_select_wrap {
	position: relative;
}
.form_select_wrap::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f078";
	position: absolute;
	top: 50%;
	right: 10px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
	font-size: 14px;
	color: #AAA;
}
.form_select {
	background: #fff;
	border: 1px solid #333;
	border-radius: 4px;
	width: 100%;
	padding: 8px 35px 8px 15px;
}
.form_select_02 {
	width: 100px;
}
.form_select_03 {
	width: 300px;
}

/* エラー時 */
.form_select_error {
	border: 1px solid #EE6640;
}

/*-------------------------------*/
/*	checkbox
/*-------------------------------*/
.form_checkbox {
	display: none;
}
.form_checkbox_parts {
	display: inline-block;
	padding-left: 28px;
	font-size: 14px;
	position: relative;
}
.form_checkbox_parts::before {
	content: "";
	display: block;
	background: #fff;
	border: 1px solid #B4B6B8;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0;
	left: 0;
}
.form_checkbox:checked + .form_checkbox_parts::before {
	background: #3362B5;
}
.form_checkbox:checked + .form_checkbox_parts::after {
	content: "";
	display: block;
	border-bottom: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	width: 6px;
	height: 11px;
	position: absolute;
	top: 3px;
	left: 7px;
	transform: rotate(40deg);
}

/* checkbox（テキストなし） */
.form_check_part {
	content: "";
	display: block;
	border: 1px solid #B4B6B8;
	width: 20px;
	height: 20px;
	margin: 0 auto;
	position: relative;
}
.form_checkbox:checked + .form_check_part {
	background: #3362B5;
}
.form_checkbox:checked + .form_check_part::after {
	content: "";
	border-bottom: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	width: 6px;
	height: 11px;
	position: absolute;
	top: 2px;
	left: 6px;
	transform: rotate(40deg);
}

/*-------------------------------*/
/*	radio
/*-------------------------------*/
.form_radio {
	display: none;
}
.form_radio + label {
	padding-left: 28px;
	margin-right: 35px;
	font-size: 14px;
	position: relative;
}
.form_radio + label::before {
	content: "";
	display: block;
	border: 1px solid #333;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.form_radio:checked + label {
	/*color: #009a9a;*/
}
.form_radio:checked + label::after {
	content: "";
	display: block;
	background: #3362B5;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 4px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* エラー時 */
.form_radio_error + label::before {
	background: #FEF1ED;
	border: 1px solid #EE6640;
}

/*-------------------------------*/
/*	button
/*-------------------------------*/
.form_btn_wrap {
	margin: 50px 0;
	text-align: center;
}
.form_btn {
	background: #3362B5;
	border: 1px solid #3362B5;
	border-radius: 5px;
	width: 360px;
	padding: 12px 0;
	font-size: 18px;
	font-weight: 700;
	color: #FFF;
	cursor: pointer;
	position: relative;
}
.form_btn:hover {
	background: #1C418F;
}
.form_btn::after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f054";
	font-size: 13px;
	color: #fff;
	position: absolute;
	top: 50%;
	right: 70px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: .3s;
	transition: .3s;
}

/* 白色ver */
.form_btn_02 {
	background: #fff;
	color: #3362B5;
}
.form_btn_02:hover {
	background: #F0F6FF;
	color: #3362B5;
}
.form_btn_02::after {
	color: #3362B5;
}

/* form_btn_two */
.form_btn_two { }
.form_btn_two .form_btn {
	width: 300px;
}
.form_btn_two .form_btn:not(:first-of-type) {
	margin-left: 20px;
}
.form_btn_two .form_btn::after {
	right: 55px;
}

/*-------------------------------*/
/*	assist
/*-------------------------------*/
.form_assist {
	margin-top: 5px;
	font-size: 14px;
}
.form_assist_ref {
	padding-left: 28px;
}

/*-------------------------------*/
/*	エラー
/*-------------------------------*/
/* form_error_area */
.error_area {
	background: #FFF1ED;
	border-radius: 2px;
	padding: 15px 30px;
	margin-bottom: 30px;
}
.error_area .error_text:not(:last-child) {
	margin-bottom: 10px;
}
.error_text {
	position: relative;
	padding-left: 30px;
}
.error_text::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\21";
	display: inline-block;
	background: #EE6640;
	border-radius: 50px;
	width: 20px;
	height: 20px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	line-height: 20px;
	position: absolute;
	top: 4px;
	left: 0;
}

/* form_error */
.form_error {
	margin-bottom: 5px;
	font-size: 11px;
	font-weight: 700;
	color: #ED5024;
}

/* ------------------------------------------------------------------
	1-9. Other styles
-------------------------------------------------------------------*/
/*-------------------------------*/
/*	スクロールバー
/*-------------------------------*/
.scroll_area::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
.scroll_area::-webkit-scrollbar-track {
	/*background: #FFF;*/
}
.scroll_area::-webkit-scrollbar-thumb {
	background: #CBC6BA;
	border-radius: 10px;
}


/* ------------------------------------------------------------------
	1-99. VisualFormattingModel styles
-------------------------------------------------------------------*/
.pc_block {
	display: block !important;
}
.pc_inline {
	display: inline !important;
}
.sp_block {
	display: none !important;
}
.sp_inline {
	display: none !important;
}

/* ------------------------------------
	CLEARFIX
------------------------------------*/
.cf:after {
	content: "";
	display: block;
	clear: both;
}





/*==================================================================
	99 SP
===================================================================*/

@media only screen and (max-width: 640px) {
	
/*==================================================================
	1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
	1-4. Heading styles
-------------------------------------------------------------------*/
.heading_title {
	font-size: 24px;
}

/* ------------------------------------
	Heading（type2）
------------------------------------*/
.heading_type_02 {
	padding-bottom: 10px;
}
.heading_type_02 .heading_title {
	font-size: 18px;
}

/* ------------------------------------
	Heading（type3）
------------------------------------*/
.heading_type_03 .heading_title {
	font-size: 18px;
}

/* ------------------------------------------------------------------
	1-5. Button styles
-------------------------------------------------------------------*/
.contents_btn_link {
	width: 100%;
}
.contents_btn_link a {
	font-size: 16px;
}

/* ------------------------------------------------------------------
	1-8. Form styles
-------------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
	font-size: 14px;
}

/*-------------------------------*/
/*	text
/*-------------------------------*/
.form_text_02 {
	width: 100%;
}

/*-------------------------------*/
/*	select
/*-------------------------------*/
.form_select_02 {
	width: auto;
}
.form_select_03 {
	width: auto;
}

/*-------------------------------*/
/*	button
/*-------------------------------*/
.form_btn {
	width: 100%;
	font-size: 16px;
}
.form_btn:not(:first-of-type) {
	margin-top: 25px;
}
.form_btn::after {
	display: none;
}
.form_btn span::after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f054";
	margin-left: 15px;
}

/* form_btn_two */
.form_btn_two .form_btn {
	width: 100%;
}
.form_btn_two .form_btn:not(:first-of-type) {
	margin-left: 0;
}

/*-------------------------------*/
/*	エラー
/*-------------------------------*/
/* form_error_area */
.error_area {
	padding: 10px 15px;
}

/* ------------------------------------------------------------------
	1-99. VisualFormattingModel styles
-------------------------------------------------------------------*/
.pc_block {
	display: none !important;
}
.pc_inline {
	display: none !important;
}
.sp_block {
	display: block !important;
}
.sp_inline {
	display: inline-block !important;
}






}










