@charset "UTF-8";
/* CSS Document */


/* ==================== base =====================*/

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

body {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 100%;
	line-height: 1.8;
	color: #333;
	width:100%;
}

a {
	transition: .3s;
}

a:link {
	color:#4D4D4D;
	text-decoration: none;
}
a:visited {
	color:#4D4D4D;
	text-decoration: none;
}
a:hover,
a:focus {
	color: #77B346;
	text-decoration: none;
	}
a:active {
	color:#77B346;
}


.alpha a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}


.alpha_a a img {
	-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;
}
.alpha_a a:hover img {
	opacity: 0.6;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}


/*写真拡大*/
.moimg1 {
	overflow: hidden;
	width: 100%;
	height: auto;
}
.moimg1 img {
    width: 100%;
	display: block;
	transition: 0.5s;
}
.moimg1 img:hover {
	transform: scale(1.1, 1.1);
}


/*タブレットでは非表示*/
.tb_displaynone {
    display: none;
}


/*スマホ（サイズ）のみ電話リンクイキ*/
@media (min-width: 600px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}


/*ページトップへ（矢印）*/

#ptop {
    position: fixed;
    bottom: 25px;
    right: 25px;
	z-index: 1;
}
#ptop a {
    text-align: center;
    display: block;
    border-radius: 5px;
}




/*==================== header ====================*/

header {
	width: 100%;
}

.h_content {
	width: 95%;
	margin: 0 auto;
	padding: 15px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*1100px以上の時*/
@media screen and (min-width: 1100px) {
	
	.h_content .h_content_logo img {
		width: 200px;
		height: auto;
	}
	
	#globalnavi_input {
	display: none;
	}

	.h_content .globalnavibtn_t {
		display: flex;
	}

	.h_content .globalnavibtn_t li {
		margin-left: 25px;
		font-size: 85%;
		font-weight: bold;
		white-space: nowrap;
	}

	.h_content .globalnavibtn_t img {
		vertical-align: bottom;
	}

	.h_content .globalnavi_normal {
		margin-top: 6px;
	}

	.h_content .globalnavi_deco a {
		display: block;
		padding: 6px 25px;
		border-radius: 20px;
		color: #fff;
		text-decoration: none;
	    background: -webkit-linear-gradient(left, #1B0E64, #2F4FC4);
	    background: -o-linear-gradient(left, #1B0E64, #2F4FC4);
	    background: linear-gradient(to right, #1B0E64, #2F4FC4);
	    transition: .3s;
	}

	.h_content .globalnavi_deco a:hover {
		opacity: 0.6;
	}

	/*下線装飾*/
	.globalnavibtn_t .globalnavi_normal a{
		position: relative;
		text-decoration: none;
		padding-bottom: 10px;
	}

	.globalnavibtn_t .globalnavi_normal.globalnavi_now a {
		color: #1B1464;
	}

	.globalnavibtn_t .globalnavi_normal a:hover,
	.globalnavibtn_t .globalnavi_normal a:focus {
		color: #1B1464;
	}
	.globalnavibtn_t .globalnavi_normal a:active {
		color:#1B1464;
	}

	.globalnavibtn_t .globalnavi_normal a:after {
    	content: '';
    	position: absolute;
    	bottom: 0;
    	left: 30%;
    	width: 40%;
    	height: 1px;
    	background: #1B1464;
    	transition: all .3s;
    	transform: scale(0, 1);
    	transform-origin: center top;
	}

	.globalnavibtn_t .globalnavi_normal.globalnavi_now a:after,
	.globalnavibtn_t .globalnavi_normal a:hover:after {
    	transform: scale(1, 1);
	}

}

/*1099px以下の時*/
@media screen and (max-width: 1099px) {
	.h_content .h_content_logo img {
		width: 200px;
		height: auto;
	}

	/* ハンバーガーメニュー */
	#globalnavi_t {
		position: fixed;
		top: 0;
		left: -100%;
		z-index: 100;
		width: 100%;
		max-width: 350px;
		transition: .3s;
	}

	ul.globalnavibtn_t {
		background-color: #1b1464;
		padding: 0;
		height: 100vh;
		text-align: center;
		padding-top: 30%;
	}

	ul.globalnavibtn_t li {
		display: block;
	}

	ul.globalnavibtn_t li a {
		display: block;
		padding: 1.5rem;
		color: #fff;
		font-size: 90%;
		text-decoration: none;
	}

	.globalnavi_tr {
		display: none;
	}

	#globalnavi_btn {
		display: block;
		width: 25px;
		height: 20px;
		z-index: 100;
		background-image: url("../images/menubtn_open.png");
		background-size: 25px 20px;
		background-repeat: no-repeat;
		background-position: center center;
		transition: .3s;
	}

	#globalnavi_block {
		display: none;
		position: fixed;
		z-index: 90;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
	}

	#globalnavi_input:checked ~ #globalnavi_btn {
		background-image: url("../images/menubtn_close.png");
		background-size: 25px 20px;
		background-repeat: no-repeat;
		background-position: center center;
	}

	#globalnavi_input:checked ~ #globalnavi_block {
		display: block;
	}

	#globalnavi_input:checked ~ #globalnavi_t {
		left: 0;
	}

	.globalnavi_jizen {
		margin-bottom: 15px;
	}
	/*=== ハンバーガーメニューここまで ===*/
	
	.h_content .globalnavi_home {
		display: none;
	}
}




/*==================== footer ====================*/

/*=== f_top ===*/

.f_top {
	width: 100%;
	border-top: solid 1px #CCCCCC;
	padding: 10px 0;
}

.f_top_con {
	width: 90%;
	margin: 0 auto;
}

.f_top_con .f_top_link {
	text-align: center;
	font-size: 75%;
}

.f_top_con .f_top_link a {
	white-space: nowrap;
}

/*=== f_center ===*/

.f_center {
	width: 100%;
	border-top: solid 5px #005086;
	background-color: #333333;
	padding-top: 30px;
}

.f_center_con {
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.f_center_con .f_center_l {
	margin: 0 60px 30px 0;
}

.f_center_con .f_center_l_logo {
	margin-bottom: 12px;
}

.f_center_con .f_center_l_ad {
	color: #999999;
	font-size: 90%;
	line-height: 1.4;
	margin-bottom: 30px;
}

.f_center_con .f_center_l_ad .f_center_l_ad_s {
	font-size: 80%;
}

.f_center_con .f_center_l_memti {
	font-size: 60%;
	font-weight: bold;
	color: #b3b3b3;
	margin-bottom: 5px;
}

.f_center_con .f_center_l_mem {
	font-size: 70%;
	color: #999999;
}

.f_center_con .f_center_r {
	margin-bottom: 30px
}

.f_center_con .f_center_r_top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
}

.f_center_con .f_center_r_ti {
	font-size: 90%;
	font-weight: bold;
	color: #b3b3b3;
}

.f_center_con .f_center_r_info {
	font-size: 90%;
	color: #999999;
	margin-bottom: 5px;
}

.f_center_con .f_center_r_info a {
	color: #999999;
}

.f_center_con .f_center_r_top_r {
	margin-left: 65px;
}

.f_center_con .f_center_r_bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*=== f_freedial ===*/

.f_freedial {
	width: 100%;
	border-bottom: solid 5px #15203E;
	padding: 20px 0;
}

.f_freedial_con {
	width: 95%;
	max-width: 990px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.f_freedial_num {
	width: 55%;
}

.f_freedial_num img {
	width: 100%;
	height: auto;
}

.f_freedial_num a {
	display: block;
}

.f_freedial_tel {
	width: 40%;
}

.f_freedial_tel img {
	display: block;
}

.f_freedial_tel img {
	width: 100%;
	height: auto;
}

.f_center_r_renrakuti {
	white-space: nowrap;
}

.f_freedial_otoiawase {
	text-align: center;
	width: 48%;
	font-size: 90%;
	color: #ffffff;
	font-weight: bold;
	background-color: #15203e;
	padding: 10px 15px;
}

.f_freedial_omitsumori {
	text-align: center;
	width: 52%;
	font-size: 90%;
	color: #ffffff;
	font-weight: bold;
	background-color: #0071ae;
	padding: 10px 15px;
}

.f_freedial_ti {
	width: 30%;
	display: flex;
}

.f_freedial_g {
	width: 65%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media screen and (max-width: 900px) {
	.f_freedial_con {
		display: block;
	}

	.f_freedial_ti {
		width: 50%;
		max-width: 310px;
		margin: 0 auto;
		justify-content: center;
		margin-bottom: 10px;
		white-space: nowrap;
		justify-content: space-between;
		margin-bottom: 15px;
	}

	.f_freedial_g {
		width: 70%;
		margin: 0 auto;
	}

}

/*=== f_bottom ===*/

.f_bottom {
	width: 100%;
	background-color: #666666;
	padding: 18px 0;
}

.f_bottom_con {
	width: 95%;
	margin: 0 auto;
	text-align: center;
	font-size: 75%;
	color: #b3b3b3;
}




/*==================== top page ====================*/

/*=== top_main ===*/

.top_main {
	width: 100%;
	margin-bottom: 120px;
}

.top_main .top_main_main {
	position: relative;
	width: 100%;
}

.top_main .object {
	width: 100%;
	height: 450px;
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

.top_main .top_main_word {
	position: absolute;
	width: 35%;
	left: 0;
	top: 0;
}

.top_main .top_main_en img {
	width: 100%;
	max-width: 350px;
	min-width: 340px;
	height: auto;
	margin-bottom: 4%;
}

.top_main .top_main_ti img {
	width: 85%;
	min-width: 290px;
	height: auto;
}

.top_main .top_main_box_base {
	position: relative;
}

.top_main .top_main_box {
	position: absolute;
	width: 520px;
	margin: auto;
	left: 0;
	right: 0;
	top: -75px;
	padding: 0 30px 20px 30px;
	background-color: #fff;
	border: solid 1px #29abe2;
	box-shadow: 5px 5px 5px #ccc;
}

.top_main .top_main_box_icon {
	text-align: center;
	margin-top: -40px;
	margin-bottom: 15px;
}

.top_main .top_main_box_line {
	height: 3px;
	text-align: center;
	margin-bottom: 10px;
}

.top_main .top_main_box_ti {
	text-align: center;
	font-size: 110%;
	color: #0071ae;
	margin-bottom: 2px;
}

.top_main .top_main_box_p {
	font-size: 90%;
	color: #0071ae;
	font-weight: bold;
}

/*=== top_service ===*/

.top_service {
	width: 100%;
	margin-bottom: 70px;
}

.top_service .top_service_ti {
	text-align: center;
	margin-bottom: 50px;
}

.top_service .top_service_ti img {
	width: 280px;
	height: auto;
}

/*service共通*/
.top_service .top_service_subti {
	line-height: 1.4;
	background-image: url("../images/line_b.png");
	background-size: 96px 5px;
	background-position: left bottom;
	background-repeat: no-repeat;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.top_service .top_service_aosmall {
	font-size: 90%;
	font-weight: bold;
	color: #0071bc;
}

.top_service .top_service_kurobig {
	font-size: 170%;
}

.top_service .top_service_p {
	margin-bottom: 15px;
}

.top_service .top_service_btn {
	margin-bottom: 90px;
}

.top_service .endeco_a img {
	width: 320px;
	height: auto;
}

.top_service .endeco_b img {
	width: 520px;
	height: auto;
}

.top_service .endeco_c img {
	width: 265px;
	height: auto;
}

.top_service .endeco_d img {
	width: 515px;
	height: auto;
}

.top_service .top_service_info a {
	position: relative;
	display: inline-block;
	width: 220px;
	height: 55px;
	line-height: 55px;
	color: #fff;
	padding-left: 30px;
	text-decoration: none;
	background: -webkit-linear-gradient(left, #1B0E64, #2F4FC4);
	background: -o-linear-gradient(left, #1B0E64, #2F4FC4);
	background: linear-gradient(to right, #1B0E64, #2F4FC4);
	transition: .3s;
}

.top_service .top_service_info a:after {
	position: absolute;
	content: '';
	display: inline-block;
	width: 10px;
	height: 15px;
	right: 20px;
	top: 20px;
	background-image: url("../images/arrow_white.png");
	background-size: contain;
}

.top_service .top_service_info a:hover {
	opacity: 0.6;
}

.top_service .top_service_info {
	position: relative;
}

.top_service .top_service_info_top {
	width: 100%;
}

/*paintingのみ_paintingの画像サイズが大きいので対応*/
.top_service .top_service_info_top_a {
	width: 100%;
}

/*写真左*/
.top_service .top_service_r {
	width: 100%;
	position: relative;
}

.top_service .top_service_r .top_service_back {
	position: absolute;
	width: 24%;
	height: 350px;
	right: 0;
	overflow: hidden;
	z-index: -3;
}

.top_service .top_service_r_con {
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.top_service .top_service_r .top_service_info {
	width: 47%;
	position: relative;
	order: 2;
}

.top_service .top_service_r .top_service_img {
	width: 50%;
	order: 1;
	z-index: -2;
}

.top_service .top_service_r .top_service_img .ofject {
	width: 100%;
	height: 300px;
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

.top_service .top_service_r .top_service_endeco {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

/*写真右*/
.top_service .top_service_l {
	width: 100%;
	position: relative;
}

.top_service .top_service_l .top_service_back {
	position: absolute;
	width: 24%;
	height: 350px;
	left: 0;
	overflow: hidden;
	z-index: -3;
}

.top_service .top_service_l_con {
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.top_service .top_service_l .top_service_info {
	width: 47%;
	position: relative;
	order: 1;
}

.top_service .top_service_l .top_service_img {
	width: 50%;
	order: 2;
	z-index: -2;
}

.top_service .top_service_l .top_service_img .ofject {
	width: 100%;
	height: 300px;
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

.top_service .top_service_l .top_service_img_posi .ofject {
	width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: 100% 100%;
	font-family: 'object-fit: cover; object-position: 100% 100%;'
}


.top_service .top_service_l .top_service_endeco {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
/*ここまで写真右*/

.top_service .top_service_deco {
	height: 4px;
	text-align: center;
	margin: 60px 0;
}

.top_service .top_service_deco img {
	width: auto;
	height: 4px;
}

/*=== k_deco ===*/

.k_deco {
	text-align: center;
	margin-bottom: 50px;
	height: 3px;
}

/*=== k_link ===*/

.k_link {
	width: 100%;
	margin-bottom: 40px;
	background-color: #f7f7f7;
	padding: 30px 0;
}

.k_link_con {
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.k_link_con .k_link_btn {
	position: relative;
	width: 320px;
	height: 85px;
	display: flex;
	align-items: center;
	background-color: #fff;
	border: solid 1px #d8d8d8;
	padding: 0 0 0 40px;
	margin: 5px 10px;
	text-decoration: none;
	transition: .3s;
}
.k_link_con .k_link_btn:after {
	position: absolute;
	content: '';
	display: inline-block;
	width: 12px;
	height: 20px;
	right: 20px;
	top: 30px;
	background-image: url("../images/arrow_gray.png");
	background-size: contain;
}

.k_link_con .k_link_btn:hover {
	background-color: #e6e6e6;
}

.k_link_con .k_link_p_a {
	font-size: 110%;
	color: #0071bc;
	margin-left: 15px;
}

.k_link_con .k_link_p_b {
	font-size: 110%;
	color: #0071bc;
	margin-left: 25px;
}

/*=== k_nintei ===*/

.k_nintei {
	width: 100%;
	margin-bottom: 60px;
}

.k_nintei_con {
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.k_nintei_con .k_nintei_p {
	color: #009245;
	margin-left: 30px;
}




/*==================== sub_共通タイトル ====================*/

.k_title {
	width: 100%;
	background-image: url("../images/border_gray.png");
	background-size: 60px 5px;
	background-repeat: repeat-x;
	background-position: left top;
}

.k_title_con {
	width: 95%;
	margin: 0 auto;
	padding: 15px 0;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
}

.k_title_con .k_title_en {
	font-size: 250%;
	font-weight: bold;
	color: #3FA9F5;
	margin-right: 30px;
}

.k_title_con .k_title_info {
	display: flex;
	margin-bottom: 15px;
}

.k_title_con .k_title_title {
	font-size: 80%;
	font-weight: bold;
	background-image: url("../images/border_black.png");
	background-size: 37px 1px;
	background-position: right center;
	background-repeat: no-repeat;
	padding-right: 47px;
	margin-right: 10px;
}

.k_title_con .k_title_p {
	font-size: 80%;
	font-weight: bold;
}




/*==================== painting_roadservice_repair_共通 ====================*/

.k_imgcon {
	width: 100%;
	margin-bottom: 30px;
	padding: 25px 0 20px 0;
}

.k_imgcon_con {
	width: 95%;
	margin: 0 auto;
}

.k_imgcon_con .k_imgcon_bti {
	font-size: 130%;
	font-weight: bold;
	color: #0071BC;
	background-image: url("../images/round_blue.png");
	background-size: 25px 25px;
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 35px;
	margin-bottom: 3px;
}

.k_imgcon_con .k_imgcon_info {
	width: 100%;
	margin: 0 auto;
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k_imgcon_con .k_imgcon_info_a {
	width: calc(50% - 5px);
	margin-bottom: 10px;
}

.k_imgcon_con .k_imgcon_info_b {
	margin-bottom: 10px;
}

.k_imgcon_con .k_imgcon_sti {
	font-weight: bold;
	color: #29ABE2;
	margin-bottom: 2px;
}

.k_imgcon_con .k_imgcon_imggroup {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k_imgcon_con .k_imgcon_img {
	margin-bottom: 10px;
}

.k_imgcon_con .k_imgcon_img img {
	width: 100%;
	height: auto;
}

.k_imgcon_con .k_imgcon_img_g {
	width: calc(50% - 5px);
	margin-bottom: 10px;
}

.k_imgcon_con .k_imgcon_img_g img {
	width: 100%;
	height: auto;
}

/*背景グレー*/
.back_gray {
	background-color: #F7F7F7;
}

/*最後のコンテンツ*/
.k_imgcon_last {
	margin-bottom: 120px;
}




/*==================== roadservice ====================*/

.road_top {
	width: 100%;
	margin-bottom: 30px;
	padding: 25px 0 5px 0;
}

.road_top_con {
	width: 95%;
	margin: 0 auto;
}

.road_top_con .road_top_bti {
	font-size: 130%;
	font-weight: bold;
	color: #00A99D;
	background-image: url("../images/round_orange.png");
	background-size: 25px 25px;
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 35px;
	margin-bottom: 3px;
}

.road_top_con .road_top_info {
	width: 100%;
	margin: 0 auto;
	margin-top: 20px;
}

.road_top_con .road_top_info_a {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.road_top_con .road_top_lan {
	width: calc(30% - 5px);
}

.road_top_con .road_top_sti {
	color: #22B573;
	font-weight: bold;
	border: solid 1px #E6E6E6;
	background-color: #fff;
	padding: 2px 15px;
	margin-bottom: 5px;
}

.road_top_con .road_top_info_p {
	font-size: 90%;
}

.road_top_con .road_top_imggroup {
	width: calc(70% - 5px);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.road_top_con .road_top_img {
	width: calc(50% - 5px);
	margin-bottom: 10px;
}

.road_top_con .road_top_img img {
	width: 100%;
	height: auto;
}

/*800px以下*/
@media screen and (max-width: 800px) {
	.road_top_con .road_top_info_a {
		display: block;
		margin-bottom: 25px;
	}
	
	.road_top_con .road_top_lan {
		width: 100%;
		margin-bottom: 10px;
	}
	
	.road_top_con .road_top_imggroup {
		width: 100%;
	}
}




/* ==================== maintenance =====================*/

.maintenancecon_a {
	width: 100%;
	margin-bottom: 100px;
	background-image: url("../images/mainte_title_ji.png");
	background-size: 20px 55px;
	background-position: left top;
	background-repeat: repeat-x;
}

.maintenancecon_a .maintenance_con {
	width: 95%;
	margin: 0 auto;
}

.maintenancecon_a .maintenance_con h3 {
	font-size: 130%;
	font-weight: bold;
	color: #0071BC;
	background-image: url("../images/mainte_titlemae.png");
	background-size: 25px 25px;
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 35px;
	line-height: 2.7;
	margin-bottom: 25px;
}

.maintenancecon_a .maintenance_con .maintenance_con_p {
	margin-bottom: 35px;
}

.maintenancecon_a .maintenance_con .mainte_a_a {
	background-color: #FFF9EE;
	border-radius: 20px;
	padding: 30px 35px;
	margin-bottom: 80px;
}

.maintenancecon_a .maintenance_con .mainte_a_a .mainte_a_a_left {
	float: left;
	width: 30%;
	text-align: center;
}
.maintenancecon_a .maintenance_con .mainte_a_a .mainte_a_a_right {
	float: right;
	width: 65%;
}
div.mainte_a_a:after {
	font-size: 1px;
	color: #FFFFFF;
	content:".";
	display: block;
	height: 0px;
	clear: both;
}
div.mainte_a_a{
	zoom: 1;
}

.mainte_a_a .mainte_a_a_right .mainte_a_a_right_copy {
	font-weight: bold;
	margin-bottom: 20px;
}

.mainte_a_a .mainte_a_a_right div {
	text-align: center;
}
.mainte_a_a .mainte_a_a_right div img {
	width: 80%;
	max-width: 450px;
	height: auto;
}

.mainte_content_title01 {
	font-size: 120%;
	font-weight: bold;
	color: #0071BC;
	background-image: url("../images/mainte_titlemae02.png");
	background-size: 6px 60px;
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 15px;
	line-height: 30px;
	margin-bottom: 10px;
}
.mainte_content_title02 {
	font-size: 120%;
	font-weight: bold;
	color: #0071BC;
	background-image: url("../images/mainte_titlemae02.png");
	background-size: 6px 60px;
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 15px;
	line-height: 30px;
	margin-bottom: 20px;
}
.maintenance_con .mainte_a_b {
	margin-bottom: 80px;
}

.maintenance_con .mainte_a_b .mainte_content_title_copy {
	margin-bottom: 30px;
}

.maintenance_con .mainte_a_b .mainte_flex-con {
	
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.maintenance_con .mainte_a_b .mainte_flex-con .mainte_flex {
	margin-bottom: 1%;
	margin-right: 1%;
}
.maintenance_con .mainte_a_b .mainte_flex-con .mainte_flex img {
	width: 260px;
	height: auto;
}
.maintenance_con .mainte_a_b .simulation_con {
	margin-bottom: 50px;
}

.maintenance_con .mainte_a_b .simulation_con {
	margin-bottom: 50px;
}
.maintenance_con .mainte_a_b .simulation_con .simulation_left {
	float: left;
	width: 65%;
	background-image: url("../images/mainte_titlemark02.png");
	background-size: 73px 73px;
	background-position: left top;
	background-repeat: no-repeat;
	padding-left: 90px;
}
.maintenance_con .mainte_a_b .simulation_con .simulation_right {
	float: right;
	width: 30%;
}
.maintenance_con .mainte_a_b .simulation_con .simulation_right div {
	text-align: center;
	padding-top: 20px;
}
.maintenance_con .mainte_a_b .simulation_con .simulation_right div img {
	width: 85%;
	max-width: 250px;
	height: auto;
}
div.simulation_con:after {
	font-size: 1px;
	color: #FFFFFF;
	content:".";
	display: block;
	height: 0px;
	clear: both;
}
div.simulation_con{
	zoom: 1;
}

.maintenance_con .mainte_a_b .simulation_con .simulation_left h5 {
	color: #00A99D;
	font-size: 120%;
	font-weight: bold;
	margin-bottom: 5px;
}

.maintenance_con .mainte_a_b .simulation_con .simulation_left p {
	margin-bottom: 20px;
}

.maintenance_con .mainte_a_b .simulation_con .simulation_left div {
	text-align: center;
}
.maintenance_con .mainte_a_b .simulation_con .simulation_left div img {
	width: 85%;
	max-width: 850px;
	height: auto;
}

.maintenance_con .mainte_a_b .eco_con {
	background-color: #F4F8EE;
	border: solid 1px #F2F2F2;
	border-radius: 20px;
	padding: 25px 35px;
}

.maintenance_con .mainte_a_b .eco_con h5 {
	color: #00A99D;
	font-size: 110%;
	font-weight: bold;
	border-bottom: solid 3px #FFF;
	padding-bottom: 2px;
	margin-bottom: 15px;
}

.maintenance_con .mainte_a_b .eco_con .eco_con_info .eco_con_info_left {
	float: left;
	width: 80%;
}
.maintenance_con .mainte_a_b .eco_con .eco_con_info .eco_con_info_right {
	float: right;
	width: 15%;
	text-align: center;
	padding-top: 40px;
}
div.eco_con_info:after {
	font-size: 1px;
	color: #FFFFFF;
	content:".";
	display: block;
	height: 0px;
	clear: both;
}
div.eco_con_info{
	zoom: 1;
}

.maintenance_con .mainte_a_b .eco_con .eco_con_info .eco_con_info_left h6 {
	color: #0071BC;
	font-size: 110%;
	font-weight: bold;
	padding-bottom: 2px;
}

.maintenance_con .mainte_a_b .eco_con .eco_con_info .eco_con_info_left ul li {
	margin-bottom: 5px;
	background-image: url("../images/mainte_titlemark03.png");
	background-size: 14px 14px;
	background-position: left 6px;
	background-repeat: no-repeat;
	padding-left: 20px;
}


.maintenance_con .maintenance_clearcon .mainte_clear_left_a {
	width: 100%;
	margin-bottom: 30px;
}

.maintenance_con .maintenance_clearcon .mainte_clear_left_a .p_Longlasting_t {
	color: #0071BC;
	font-size: 110%;
	font-weight: bold;
	padding-bottom: 2px;
}
.maintenance_con .maintenance_clearcon .mainte_clear_left_a p {
	padding-bottom: 10px;
}
.maintenance_con .maintenance_clearcon .mainte_clear_left_a .Longlasting_year {
	color: #00A99D;
	font-size: 110%;
	font-weight: bold;
	padding: 5px 15px;
	border: solid 1px #00A99D;
	display: inline-block;
}
.maintenance_con .maintenance_clearcon .mainte_clear_left_a .p_Longlasting_con01 {
	background-image: url("../images/mainte_titlemark_no1.png");
	background-size: 65px 65px;
	background-position: left top;
	background-repeat: no-repeat;
	padding-left: 85px;
	margin-bottom: 40px;
}
.maintenance_con .maintenance_clearcon .mainte_clear_left_a .p_Longlasting_con02 {
	background-image: url("../images/mainte_titlemark_no2.png");
	background-size: 65px 65px;
	background-position: left top;
	background-repeat: no-repeat;
	padding-left: 85px;
	margin-bottom: 40px;
}
.maintenance_con .maintenance_clearcon .mainte_clear_left_a .p_Longlasting_con03 {
	background-image: url("../images/mainte_titlemark_no3.png");
	background-size: 65px 65px;
	background-position: left top;
	background-repeat: no-repeat;
	padding-left: 85px;
	margin-bottom: 40px;
}
.maintenance_con .maintenance_clearcon .mainte_clear_left_a .p_Longlasting_con04 {
	background-image: url("../images/mainte_titlemark_no4.png");
	background-size: 65px 65px;
	background-position: left top;
	background-repeat: no-repeat;
	padding-left: 85px;
	margin-bottom: 60px;
}

.maintenance_con .maintenance_clearcon .mainte_clear_left_a .p_others_content {
	border: solid 1px #77B3CA;
	padding: 15px 25px 10px 25px;
	margin-bottom: 50px;
}
.maintenance_con .maintenance_clearcon .mainte_clear_left_a .p_others_content h5 {
	color: #0071BC;
	font-size: 110%;
	font-weight: bold;
	padding-bottom: 2px;
}

.maintenance_con .maintenance_clearcon .mainte_clear_left_a .p_mastic_content h5 {
	color: #FFF;
	font-size: 110%;
	font-weight: bold;
	background-color: #29ABE2;
	padding: 3px 20px 3px 20px;
	margin-bottom: 10px;
}
.maintenance_con .maintenance_clearcon .mainte_clear_left_a .p_mastic_content p {
	color: #0071BC;
	font-weight: bold;
}
.maintenance_con .maintenance_clearcon .mainte_clear_right_a div {
	text-align: center;
}
.maintenance_con .maintenance_clearcon .mainte_clear_right_a div img {
	width: 120px;
	height: auto;
}


.maintenance_clearcon .mainte_clear_left_b {
	float: left;
	width: 48%;
}
.maintenance_clearcon .mainte_clear_right_b {
	float: right;
	width: 48%;
}
div.maintenance_clearcon:after {
	font-size: 1px;
	color: #FFFFFF;
	content:".";
	display: block;
	height: 0px;
	clear: both;
}
div.maintenance_clearcon{
	zoom: 1;
}

.maintenance_clearcon .mainte_flow_con {
	margin-bottom: 15px;
}
.maintenance_clearcon .mainte_flow_con p {
	font-size: 90%;
}
.maintenance_clearcon .mainte_flow_con .flowstep01 {
	background-image: url("../images/mainte_step01.png");
	background-size: 75px 25px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 100px;
	background-color: #0071BC;
	color: #FFF;
	line-height: 2.3;
	margin-bottom: 10px;
}
.maintenance_clearcon .mainte_flow_con .flowstep02 {
	background-image: url("../images/mainte_step02.png");
	background-size: 75px 25px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 100px;
	background-color: #0071BC;
	color: #FFF;
	line-height: 2.3;
	margin-bottom: 10px;
}
.maintenance_clearcon .mainte_flow_con .flowstep03 {
	background-image: url("../images/mainte_step03.png");
	background-size: 75px 25px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 100px;
	background-color: #0071BC;
	color: #FFF;
	line-height: 2.3;
	margin-bottom: 10px;
}
.maintenance_clearcon .mainte_flow_con .flowstep04 {
	background-image: url("../images/mainte_step04.png");
	background-size: 75px 25px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 100px;
	background-color: #0071BC;
	color: #FFF;
	line-height: 2.3;
	margin-bottom: 10px;
}
.maintenance_clearcon .mainte_flow_con .flowstep05 {
	background-image: url("../images/mainte_step05.png");
	background-size: 75px 25px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 100px;
	background-color: #0071BC;
	color: #FFF;
	line-height: 2.3;
	margin-bottom: 10px;
}
.maintenance_clearcon .mainte_flow_con .flowstep06 {
	background-image: url("../images/mainte_step06.png");
	background-size: 75px 25px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 100px;
	background-color: #0071BC;
	color: #FFF;
	line-height: 2.3;
	margin-bottom: 10px;
}
.maintenance_clearcon .mainte_flow_con .flowstep07 {
	background-image: url("../images/mainte_step07.png");
	background-size: 75px 25px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 100px;
	background-color: #0071BC;
	color: #FFF;
	line-height: 2.3;
	margin-bottom: 10px;
}
.maintenance_clearcon .mainte_flow_con .flowstep08 {
	background-image: url("../images/mainte_step08.png");
	background-size: 75px 25px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 100px;
	background-color: #0071BC;
	color: #FFF;
	line-height: 2.3;
	margin-bottom: 10px;
}
.maintenance_clearcon .mainte_flow_con .flowstep09 {
	background-image: url("../images/mainte_step09.png");
	background-size: 75px 25px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 100px;
	background-color: #0071BC;
	color: #FFF;
	line-height: 2.3;
	margin-bottom: 10px;
}
.maintenance_clearcon .mainte_flow_con .flowstep10 {
	background-image: url("../images/mainte_step10.png");
	background-size: 75px 25px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 100px;
	background-color: #0071BC;
	color: #FFF;
	line-height: 2.3;
	margin-bottom: 10px;
}
.maintenance_clearcon .mainte_flow_con .flowstep11 {
	background-image: url("../images/mainte_step11.png");
	background-size: 75px 25px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 100px;
	background-color: #0071BC;
	color: #FFF;
	line-height: 2.3;
	margin-bottom: 10px;
}
.maintenance_clearcon .mainte_flow_con .flowstep12 {
	background-image: url("../images/mainte_step12.png");
	background-size: 75px 25px;
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 100px;
	background-color: #0071BC;
	color: #FFF;
	line-height: 2.3;
	margin-bottom: 10px;
}

.maintenance_clearcon .flow_yajirusi {
	text-align: center;
	margin-bottom: 15px;
}

.maintenance_con .flow_illust {
	text-align: center;
	padding-top: 50px;
}

.maintenance_clearcon .mainte_clear_left_c {
	float: left;
	width: 60%;
}
.maintenance_clearcon .mainte_clear_right_c {
	float: right;
	width: 35%;
	text-align: center;
}
.maintenance_clearcon .mainte_clear_right_c div img {
	width: 90%;
	max-width: 300px;
	height: auto;
}
.maintenance_clearcon .mainte_clear_left_c h5 {
	color: #00A99D;
	font-size: 110%;
	font-weight: bold;
}
.maintenance_clearcon .mainte_clear_left_c p {
	margin-bottom: 30px;
}
.maintenance_clearcon .mainte_clear_left_c h6 {
	color: #F15A24;
	font-size: 110%;
	font-weight: bold;
	background-color: #FFF5E0;
	padding: 10px 20px;
	text-align: center;
}

.maintenance_con .relief_illust {
	text-align: center;
	padding-top: 40px;
}




/*==================== company ====================*/

/*=== 共通タイトル ===*/

.com_kyoutu_ti {
	text-align: center;
	font-size: 155%;
	font-weight: bold;
	background-image: url("../images/line_a.png");
	background-size: 62px 3px;
	background-position: center bottom;
	background-repeat: no-repeat;
	padding-bottom: 5px;
	margin-bottom: 25px;
}

/*=== com_message ===*/

.com_message {
	width: 100%;
	margin-bottom: 40px;
	background-color: #f7f7f7;
	padding: 30px 0 40px 0;
}

.com_message_con {
	width: 80%;
	margin: 0 auto;
}

.com_message_con .com_message_info {
	line-height: 2.2;
	margin-bottom: 10px;
}

.com_message_con .com_message_name {
	text-align: right;
	font-size: 110%;
	font-weight: bold;
	margin-bottom: 40px;
}

.com_message_con .com_message_name_s {
	font-size: 80%;
}

/*=アコーディオン=*/
.com_message_con .title {
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
	padding: 8px 0;
	text-align: center;
	border: solid 1px #E6E6E6;
	background-color: #fff;
}

/*プラス*/
.com_message_con .title:after{
    position: absolute;
    content:'';
    width: 17px;
    height: 17px;
    top:32%;
    right: 20px;
	background-image: url("../images/company_plus.png");
    background-size: contain;    
	background-repeat: no-repeat;
}

/*マイナス*/
.com_message_con .title.close:after{
    top:32%;
	background-image: url("../images/company_minus.png");
	background-repeat: no-repeat;
}

.com_message_con .box {
    display: none;/*はじめは非表示*/
	padding: 25px 30px;
	border-left: solid 1px #E6E6E6;
	border-bottom: solid 1px #E6E6E6;
	border-right: solid 1px #E6E6E6;
	background-color: #fff;
}

.com_message_con .com_message_award_box {
	display: flex;
	justify-content: center;
}

.com_message_con .com_message_award_p {
	width: 30%;
	margin-right: 20px;
}

.com_message_con .com_message_award_a  {
	width: 45%;
	max-width: 334px;
	margin-right: 20px;
}

.com_message_con .com_message_award_a img {
	width: 100%;
	height: auto;
}

.com_message_con .com_message_award_b  {
	width: 15%;
	max-width: 109px;
}

.com_message_con .com_message_award_b img {
	width: 100%;
	height: auto;
}

/*800px以下*/
@media screen and (max-width: 800px) {
	.com_message_con .box {
		padding: 15px 30px 25px 30px;
	}
	
	.com_message_con .com_message_award_box {
		flex-wrap: wrap;
	}
	.com_message_con .com_message_award_p {
		width: 100%;
		margin-right: 0px;
		margin-bottom: 20px;
	}
	.com_message_con .com_message_award_a  {
		width: 250px;
		margin-right: 20px;
	}
	.com_message_con .com_message_award_b  {
		width: 80px;
	}
}

/*=== com_health ===*/

.com_health {
	width: 100%;
	margin-bottom: 30px;
}

.com_health_con {
	width: 95%;
	margin: 0 auto;
	padding: 25px 50px 30px 50px;
	border: solid 1px #e6e6e6;
}

.com_health_con .com_health_ti {
	text-align: center;
	font-size: 155%;
	font-weight: bold;
	color: #7ac943;
	background-image: url("../images/line_a.png");
	background-size: 62px 3px;
	background-position: center bottom;
	background-repeat: no-repeat;
	padding-bottom: 5px;
	margin-bottom: 25px;
}

.com_health_con .com_health_info {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.com_health_con .com_health_p {
	width: 100%;
	margin-bottom: 25px;
}

.com_health_con .com_health_p_top {
	margin-bottom: 15px;
}

.com_health_con .com_health_p_bottom {
	font-size: 85%;
}

.com_health_con .com_health_p_bottom a {
	background-image: url("../images/company_window.png");
	background-size: 16px 13px;
	background-position: right center;
	background-repeat: no-repeat;
	padding-right: 23px;
}

/*= 230518_やまぐち健康経営企業認定証追加時に追加 =*/

.com_health_img_g {
	display: flex;
	justify-content: center;
}

.com_health_logo, .com_health_syou, .com_health_sengen, .com_health_ken {
	width: 20%;
	margin: 0 1.5%;
}

.com_health_logo img, .com_health_syou img, .com_health_sengen img, .com_health_ken img {
	width: 100%;
	height: auto;
}


/*=== com_link ===*/

.com_link {
	width: 100%;
	margin-bottom: 60px;
}

/*=== com_overview ===*/

.com_overview {
	width: 100%;
	margin-bottom: 60px;
}

.com_overview_con {
	width: 95%;
	margin: 0 auto;
}

.com_overview_con .com_overview_table {
	width: 100%;
}

.com_overview_con .com_overview_table th {
	vertical-align: top;
	font-weight: bold;
	border: solid 1px #cccccc;
	padding: 18px 30px;
	white-space: nowrap;
	background-color: #f7f7f7;
}

.com_overview_con .com_overview_table td {
	border: solid 1px #cccccc;
	padding: 15px 30px;
}

.com_overview_con .com_overview_table .com_overview_sales {
	margin-bottom: 20px;
}

.com_overview_con .com_overview_table .com_overview_sales dd {
	font-size: 80%;
	margin-bottom: 12px;
}

.com_overview_con .com_overview_table .com_overview_list_con {
	margin-bottom: 7px;
}

.com_overview_con .com_overview_table .com_overview_link {
	background-image: url("../images/company_window.png");
	background-size: 18px 15px;
	background-position: right center;
	background-repeat: no-repeat;
	padding-right: 25px;
}

.com_overview_con .com_overview_table .com_overview_list_s {
	font-size: 85%;
	margin: 8px 0 12px 0;
}

.com_overview_con .com_overview_table .com_overview_list_s_con {
	margin-bottom: 5px;
}

.com_overview_con .com_overview_table .com_overview_kanren_info {
	margin-bottom: 10px;
}

/*=== com_history ===*/

.com_history {
	width: 100%;
	margin-bottom: 60px;
}

.com_history_con {
	width: 95%;
	margin: 0 auto;
}

.com_history_con .com_history_table {
	width: 100%;
}

.com_history_con .com_history_table th {
	width: 190px;
	vertical-align: top;
	font-weight: bold;
	border: solid 1px #cccccc;
	padding: 18px 30px;
	white-space: nowrap;
	background-color: #f7f7f7;
}

.com_history_con .com_history_table td {
	border: solid 1px #cccccc;
	padding: 15px 30px;
}

/*=== com_map ===*/

.com_map {
	width: 100%;
	margin-bottom: 120px;
}

.com_map_con {
	width: 95%;
	margin: 0 auto;
}

.com_map_con .com_map_map iframe {
	width: 100%;
	height: 500px;
}

.com_map_con .com_map_map {
	margin-bottom: 10px;
}


/*=== 20220418追加 ===*/

.com_sdgs {
	width: 100%;
	margin-bottom: 60px;
	margin-top: 40px;
}
.com_sdgs .sdgs_pdf_con {
	width: 95%;
	margin: 0 auto;
}
.com_sdgs .sdgs_pdf_con .sdgsbanner01 {
	text-align: center;
}



/*==================== recruit ====================*/

/*=== recruit_info ===*/

.recruit_info {
	width: 100%;
	margin-bottom: 60px;
	background-color: #f7f7f7;
	padding: 30px 0 40px 0;
}

.recruit_info_con {
	width: 95%;
	margin: 0 auto;
}

.recruit_info_con .recruit_info_table {
	width: 100%;
}

.recruit_info_con .recruit_info_table th {
	vertical-align: top;
	font-weight: bold;
	border: solid 1px #cccccc;
	padding: 18px 30px;
	white-space: nowrap;
	background-color: #e6e6e6;
}

.recruit_info_con .recruit_info_table td {
	border: solid 1px #cccccc;
	background-color: #fff;
	padding: 15px 30px;
}

.recruit_info_con .recruit_info_list {
	margin-bottom: 7px;
}

.recruit_info_con .recruit_info_pbottom {
	margin-bottom: 10px;
}

/*=== recruit_img ===*/

.recruit_img {
	width: 100%;
	margin-bottom: 120px;
}

.recruit_img_con {
	width: 95%;
	margin: 0 auto;
	text-align: center;
}




/*==================== contact ====================*/

/*=== contact_intro ===*/

.contact_intro {
	width: 100%;
	margin-bottom: 15px;
}

.contact_intro_con {
	width: 95%;
	margin: 0 auto;
}

.contact_intro_con .contact_intro_p {
	font-size: 90%;
}

/*=== 共通タイトル_contact_title ===*/

.contact_title {
	font-size: 110%;
	text-align: center;
	color: #29abe2;
	font-weight: bold;
	background-image: url("../images/line_a.png");
	background-size: 62px 3px;
	background-position: center bottom;
	background-repeat: no-repeat;
	padding-bottom: 8px;
}

/*=== contact_top ===*/

.contact_top {
	width: 100%;
	margin-bottom: 45px;
	background-color: #f7f7f7;
	padding: 25px 0 35px 0;
}

.contact_top_con {
	width: 95%;
	margin: 0 auto;
}

.contact_top_con .contact_top_icon {
	text-align: center;
	margin-bottom: 10px;
}

.contact_top_con .contact_top_tel {
	text-align: center;
	font-size: 300%;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 10px;
	margin-top: 20px;
}

.contact_top_con .contact_top_tel a {
	color: #333;
	background-image: url(../images/contact_freedial.png);
	background-size: 69px 40px;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 80px;
}

.contact_top_con .contact_top_tel_s {
	font-size: 80%;
	vertical-align: 2px;
}

.contact_top_con .contact_top_info {
	font-size: 90%;
	text-align: center;
	margin-bottom: 15px;
}

.contact_top_con .contact_top_fax {
	text-align: center;
	font-size: 170%;
	font-weight: bold;
}

.contact_top_con .contact_top_fax_s {
	font-size: 80%;
	vertical-align: 2px;
}

.contact_top_con .contact_top_stel {
	text-align: center;
	font-size: 170%;
	font-weight: bold;
	margin-bottom: 5px;
}

.contact_top_con .contact_top_stel a {
	color: #333;
}

.contact_top_con .contact_top_stel_s {
	font-size: 80%;
	vertical-align: 2px;
}

/*=== contact_bottom ===*/

.contact_bottom {
	width: 100%;
	margin-bottom: 120px;
}

.contact_bottom_con {
	width: 900px;
	margin: 0 auto;
}

/*900px以下*/
@media screen and (max-width: 900px) {
	.contact_bottom_con {
		width: 600px;
	}
}

.contact_bottom_con .contact_bottom_info {
	display: flex;
	flex-wrap: wrap;
	margin-top: 35px;
}

.contact_bottom_con .contact_bottom_info_con {
	width: 300px;
	margin-bottom: 40px;
}

.contact_bottom_con .contact_bottom_info_ti {
	text-align: center;
	font-size: 110%;
	font-weight: bold;
	margin-bottom: 3px;
}

.contact_bottom_con .contact_bottom_tel {
	text-align: center;
	font-size: 150%;
	font-weight: bold;
}

.contact_bottom_con .contact_bottom_tel a {
	color: #333;
}

.contact_bottom_con .contact_bottom_p {
	font-size: 75%;
	text-align: center;
}




/*==================== iso ====================*/

.iso_info {
	width: 100%;
	margin-bottom: 120px;
}

.iso_info_con {
	width: 95%;
	margin: 0 auto;
}

.iso_info_con .iso_info_title {
	font-size: 130%;
	font-weight: bold;
	color: #39b54a;
	background-image: url("../images/round_green.png");
	background-size: 25px 25px;
	background-position: left top 5px;
	background-repeat: no-repeat;
	padding-left: 35px;
	margin-bottom: 3px;
}

.iso_info_con .iso_info_p {
	margin-bottom: 70px;
}

.iso_info_con .iso_info_register_con_a {
	width: 326px;
	margin: 0 auto;
	margin-bottom: 50px;
}

.iso_info_con .iso_info_register_con_b {
	width: 95%;
	max-width: 485px;
	margin: 0 auto;
}

.iso_info_con .iso_info_register_ti {
	font-size: 110%;
	font-weight: bold;
	margin-bottom: 10px;
}

.iso_info_con .iso_info_register_mark {
	margin-bottom: 18px;
}

.iso_info_con .iso_info_register_link {
	font-size: 90%;
	background-image: url("../images/pdf_icon.jpg");
	background-size: 32px 32px;
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 42px;
}

.iso_register_p {
	font-size: 85%;
	margin-bottom: 6px;
}

.iso_register_b {
	display: flex;
	justify-content: space-between;
	margin-bottom: 35px;
}

/*==================== sitepolicy ====================*/

/*=== policy_ti ===*/

.k_title_con .policy_ti {
	font-size: 200%;
}

/*=== policy_top ===*/

.policy_top {
	width: 100%;
	margin-bottom: 60px;
	padding: 40px 0 45px 0;
	background-color: #f7f7f7;
}

.policy_top_con {
	width: 95%;
	max-width: 780px;
	margin: 0 auto;
}

/*=== 共通タイトル ===*/

.policy_info_ti {
	text-align: center;
	font-size: 130%;
	font-weight: bold;
	background-image: url("../images/line_a.png");
	background-size: 62px 3px;
	background-position: center bottom;
	background-repeat: no-repeat;
	padding-bottom: 8px;
	margin-bottom: 20px;
}

/*=== policy_info ===*/

.policy_info {
	width: 100%;
	margin-bottom: 60px;
}

.policy_info_con {
	width: 95%;
	max-width: 780px;
	margin: 0 auto;
}

/*=== policy_access ===*/

.policy_access {
	width: 100%;
	margin-top: 80px;
	margin-bottom: 120px;
}

.policy_access_con {
	width: 95%;
	max-width: 780px;
	margin: 0 auto;
}

.policy_access_con .policy_access_ti {
	font-size: 110%;
	font-weight: bold;
	margin-bottom: 8px;
}

.policy_access_con .policy_access_p {
	font-size: 85%;
}
































































