/* form */

.search_box_container {
	padding: 30px;
}

.search_box_inner {
	display: flex;
	vertical-align: middle;
	align-items: center;
}

.search_box_blank {
	flex: 1;
}

.search_box_main {
	width: 75%;
	max-width: 720px;
}

.search_form {
	width: 100%;
	display: flex;
}

.search_form_container {
	flex: 1;
	border: 2px #5395cf solid;
	border-radius: 50px;
	display: flex;
	vertical-align: middle;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.search_field.search_field_text {
	flex: 1;
	padding: 15px 15px 15px 25px;
	color: #333;
	font-size: 15px;
	background: #fff;
}

.search_icon_container {
	display: flex;
	vertical-align: middle;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 100%;
	padding: 0 24px;
	background: #fff;
	cursor: pointer;
}

.search_icon_inner {
	flex: 1;
	transform: translateY(-10px);
}

.search_icon_inner svg {
	fill: #5395cf;
}

.search_box_button {
	margin: 0 0 0 30px;
}

.search_box_button_inner {
	display: flex;
	vertical-align: middle;
	align-items: center;
	padding: 15px 20px;
	border: 2px #5395cf solid;
	border-radius: 50px;
	transition: 0.3s;
	cursor: pointer;
}

.search_box_button_icon {
	display: flex;
	vertical-align: middle;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 100%;
	padding: 0 10px 0 2px;
	background: #fff;
	cursor: pointer;
}

.search_box_button_icon_inner {
	flex: 1;
	transform: translateY(-10px);
}

.search_box_button_inner:hover {
	background: #5395cf;
	border: 2px transparent solid;
	transition: 0.3s;
}

.search_box_button_icon_inner svg {
	fill: #5395cf;
	transition: 0.3s;
}

.search_box_button_inner:hover .search_box_button_icon_inner svg {
	fill: #fff;
	transition: 0.3s;
}

.search_box_button_text {
	font-size: 15px;
	font-weight: 700;
	color: #5395cf;
	transition: 0.3s;
}

.search_box_button_inner:hover .search_box_button_text {
	color: #fff;
	transition: 0.3s;
}

/* shadow menu(sp) */

#shadow_sp_menu {
	display: none;
	position: relative;
	z-index: 100000;
}

.shadow_menu_container {
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #fff;
}

.shadow_menu_top {
}

.shadow_menu_top .header_menu_sp.shadow_menu_close {
	display: block;
}

.shadow_menu_button {
	position: relative;
}

.shadow_menu_button .shadow_menu_button_sizer {
	visibility: hidden;
}

.shadow_menu_button .header_menu_button_icon.shadow_menu_button_sizer {
	display: flex;
}

.shadow_menu_button .shadow_menu_button_icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.shadow_menu_logo {
	padding: 0 15px 0 0;
}

.shadow_menu_logo_link {
	display: block;
}

.shadow_menu_logo_main {
}

.shadow_menu_logo_main_text {
	font-size: 15px;
	color: #09183a;
	line-height: 1.5em;
}

.shadow_menu_logo_description {
}

.shadow_menu_logo_description_text {
	font-size: 12px;
	line-height: 1.5em;
	color: #5395cf;
}

.shadow_menu_blank {
	flex: 1;
}

.shadow_menu_button {
	cursor: pointer;
}

.shadow_menu_button_icon::before,
.shadow_menu_button_icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 20px;
	background: #d9d9d9;
}

.shadow_menu_button_icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.shadow_menu_button_icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.shadow_menu_main {
	padding: 0 20px 20px 20px;
}

.shadow_menu_ul {
}

.shadow_menu_li {
	border-bottom: 1px #573003 solid;
}

.shadow_menu_ul:last-child .shadow_menu_li:last-child {
	border-bottom: none;
}

.shadow_menu_ul--machines {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.shadow_menu_link {
	display: flex;
	vertical-align: middle;
	align-items: center;
	padding: 10px;
	text-decoration: none;
}

.shadow_menu_text {
	flex: 1;
	position: relative;
	font-size: 15px;
	color: #09183a;
}

.shadow_menu_text::before {
	position: absolute;
	top: calc(50% - 2px);
	right: 0;
	width: 8px;
	height: 1px;
	content: '';
	background: #09183a;
	transform: rotate(45deg);
}

.shadow_menu_text::after {
	position: absolute;
	top: calc(50% + 3px);
	right: 0;
	width: 8px;
	height: 1px;
	content: '';
	background: #09183a;
	transform: rotate(-45deg);
}

/* spmenu,form(shadow) */

#shadow_search {
	display: none;
	position: relative;
	z-index: 100000;
}

.shadow_search_container {
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(45, 45, 45, 0.85);
	display: flex;
	justify-content: center;
	vertical-align: middle;
	align-items: center;
	flex-direction: column;
}

.shadow_search_inner {
	width: calc(100% - 120px);
	max-width: 960px;
	margin: 30px;
	padding: 30px;
	background: rgba(255, 255, 255, 1.0);
	display: flex;
	border-radius: 30px;
	position: relative;
}

.shadow_search_button {
	position: absolute;
	top: 30px;
	right: 30px;
}

.shadow_search_button_icon {
	display: block;
	position: relative;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.shadow_menu_button_icon {
	display: block;
	position: relative;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.shadow_search_button_icon::before,
.shadow_search_button_icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	height: 32px;
	background: #d9d9d9;
}

.shadow_search_button_icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.shadow_search_button_icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.shadow_search_main {
	flex: 1;
	display: flex;
	padding: 60px 60px 30px 60px;
}

.shadow_search_form {
	flex: 1;
	display: flex;
}

.search_shadow_form_container {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.search_shadow_form_main {
	flex: 1;
	overflow-y: scroll;	
}

.search_shadow_form_text_container {
	display: flex;
	padding: 0 0 45px 0;
	width: 720px;
	max-width: 90%;
	margin: 0 auto;
}

.search_shadow_form_text_inner {
	flex: 1;
	border: 2px #5395cf solid;
	border-radius: 50px;
	display: flex;
	vertical-align: middle;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.search_shadow_form_topic_container {
	padding: 0 0 15px 0;
}

.search_shadow_form_topic_text {
	position: relative;
	padding: 10px 15px 10px 35px;
	margin: 0 0 15px 0;
	line-height: 1.5em;
	font-size: 16px;
	color: #fff;
	background: #5395cf;
	border-radius: 10px;
}

.search_shadow_form_topic_text_select::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	background: #fff;
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.search_shadow_form_topic_text_check::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 15px;
	transform: translateY(-67%) rotate(-45deg);
	width: 10px;
	height: 5px;
	border-left: 2px #fff solid;
	border-bottom: 2px #fff solid; 
}

.search_shadow_form_topic_child_container {
	padding: 0 0 25px 0;
}

.search_shadow_form_topic_child_text {
	line-height: 2.0em;
	color: #5395cf;
	font-size: 15px;
	font-weight: 700;
	border-bottom: 2px #5395cf solid;
}

.search_shadow_form_select_container {
	padding: 0 0 20px 0;
}

.search_shadow_form_select_ul {
	display: flex;
	flex-wrap: wrap;
}

.search_shadow_form_select_li {
	margin: 0 20px 20px 0;
}

.form_checkbox_type1 {
	display: none;
}

.search_shadow_form_select_parts label {
	display: inline-block;
	position: relative;
	padding: 10px 15px;
	border-radius: 30px;
	white-space: nowrap;
	cursor: pointer;
	user-select: none;
	transition: 0.3s;
	background: #ecf6fe;
	font-size: 13px;
	font-weight: 700;
	color: #5395cf;
	border: 2px #5395cf solid;
}

.search_shadow_form_select_parts label:hover {
	display: inline-block;
	position: relative;
	padding: 10px 15px;
	border-radius: 30px;
	white-space: nowrap;
	cursor: pointer;
	user-select: none;
	transition: 0.3s;
	background: #c4e5ff;
	border: 2px #5395cf solid;
}

.search_shadow_form_select_parts .form_checkbox_type1:checked + label {
	background: #5395cf;
	color: #fff;
}

.search_shadow_form_caption_container {
	padding: 0 0 30px 0;
}

.search_shadow_form_caption_text {
	font-size: 12px;
	color: #666;
}

.search_shadow_form_button_container {
	padding: 30px 0 0 0;
	display: flex;
	justify-content: center;
}

.search_shadow_form_button_submit {
	padding: 15px 30px;
	position: relative;
	background: #5395cf;
	border: 2px transparent solid;
	border-radius: 30px;
	transition: 0.3s;
	cursor: pointer;
}

.search_shadow_form_button_submit::before {
	position: absolute;
	top: calc(50% - 2px);
	right: 20px;
	width: 8px;
	height: 1px;
	content: '';
	background: #fff;
	transform: rotate(45deg);
	transition: 0.3s;
}

.search_shadow_form_button_submit::after {
	position: absolute;
	top: calc(50% + 3px);
	right: 20px;
	width: 8px;
	height: 1px;
	content: '';
	background: #fff;
	transform: rotate(-45deg);
	transition: 0.3s;
}

.search_shadow_form_button_submit_text {
	padding: 0 10px 0 0;
	color: #fff;
	line-height: 1.5em;
	font-size: 15px;
	transition: 0.3s;
}

.search_shadow_form_button_submit:hover {
	border: 2px #5395cf solid;
	background: #fff;
	transition: 0.3s;
}

.search_shadow_form_button_submit:hover::before,
.search_shadow_form_button_submit:hover::after {
	background: #5395cf;
	transition: 0.3s;
}

.search_shadow_form_button_submit:hover .search_shadow_form_button_submit_text {
	color: #5395cf;
	transition: 0.3s;
}

/* search menu */

.search_menu_inner {
	max-width: 1280px;
	margin: 0 auto;
}

.search_menu_main {
	padding: 30px 30px 0 30px;
}

.search_menu_ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.search_menu_li {
	margin: 5px 15px;
}

.search_menu_link {
	display: block;
	text-align: center;
	padding: 10px 15px;
	border-radius: 50px;
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 700;
	background: #ecf6fe;
	border: 2px #5395cf solid;
	color: #5395cf;
}

.search_menu_link:hover {
	border: 2px transparent solid;
	color: #fff;
	background: #5395cf;
}

.search_menu_text {
	font-weight: 700;
}

/*
* responsive
* break: 1280,1080,960,768
* */

@media screen and (max-width: 768px) {

	/* search */

	.search_box_container {
		padding: 20px;	
	}

	.search_box_inner {
		display: flex;
		vertical-align: middle;
		align-items: center;
	}

	.search_box_blank {
		display: none;
		flex: 0;
	}

	.search_box_main {
		flex: 1;
		padding: 0 20px 0 0;
	}

	.search_field.search_field_text {
		padding: 8px 5px 8px 15px;
		font-size: 13px;
	}

	.search_icon_container {
		width: 16px;
		padding: 0 15px;
	}

	.search_icon_inner {
		transform: translateY(-9px);
	}

	.search_box_button {
		margin: 0;
	}

	.search_box_button_inner {
		padding: 7px 15px;
	}

	.search_box_button_icon {
		width: 16px;
		padding: 0 6px 0 0;
	}

	.search_box_button_icon_inner {
		transform: translateY(-8px);
	}

	.search_box_button_text {
		font-size: 14px;
	}

	.search_box_button_text_span {
		display: none;
	}

	/* shadow search */
	.shadow_search_inner {
		width: calc(100% - 60px);
		margin: 15px;
		padding: 15px;
		border-radius: 15px;
	}

	.shadow_search_button {
		top: 15px;
		right: 15px;
	}

	.shadow_search_button_icon {
		width: 16px;
		height: 16px;
	}

	.shadow_search_button_icon::before, .shadow_search_button_icon::after {
		width: 2px;
		height: 24px;		
	}

	.shadow_search_main {
		padding: 30px 0 15px 0;
	}

	.search_shadow_form_main {
		padding: 15px 15px 0 0;
	}

	.search_shadow_form_text_container {
		padding: 0 0 30px 0;
		max-width: 100%;	
	}

	.search_shadow_form_topic_container {
		padding: 0 0 10px 0;
	}

	.search_shadow_form_topic_text {
		margin: 0 0 5px 0;
		font-size: 14px;
		padding: 7px 10px 7px 25px;
	}

	.search_shadow_form_topic_text_select::before {
		left: 10px;
		width: 8px;
		height: 8px;
	}

	.search_shadow_form_topic_text_check::before {
		left: 10px;
	}
	
	.search_shadow_form_topic_child_container {
		padding: 0 0 10px 0;
	}

	.search_shadow_form_select_container {
		padding: 0 0 10px 0;
	}
	
	.search_shadow_form_topic_child_text {
		font-size: 14px;
	}

	.search_shadow_form_select_li {
		margin: 0 10px 10px 0;
	}

	.search_shadow_form_select_parts label {
		padding: 7px 12px;
		font-size: 12px;
	}

	.search_shadow_form_select_parts label:hover {
		padding: 7px 12px;
		font-size: 12px;	
	}

	.search_shadow_form_caption_container {
		padding: 0 0 20px 0;	
	}

	.search_shadow_form_button_container {
		padding: 15px 0 0 0;
	}

	.search_shadow_form_button_submit {
		padding: 10px 30px 10px 20px;	
	}

	.search_shadow_form_button_submit_text {
		font-size: 14px;
	}

	/* search menu */

	.search_menu_main {
		padding: 10px 10px 0 10px;
	}

	.search_menu_ul {
		justify-content: flex-start;
	}
	
	.search_menu_li {
		margin: 10px 10px 0 0;	
	}

	.search_menu_link {
		padding: 7px 12px;
		font-size: 12px;
	}

}