@charset "UTF-8";
/* CSS reset */
* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
    word-break:break-all;/*英文改行設定*/
}
html,body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,address,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset{
	margin: 0;
	padding: 0;
	line-height:1.75em;
	font-family:'Noto Sans Japanese';
	font-size:15px;
	font-weight:400;
	letter-spacing:1px;
}
/*fontのアンチエイリアス対応*/
html,body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,address,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset{
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx) {
  html,body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,address,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
/*横スクロール回避*/
html,body{
	width:100%;
	overflow-x:hidden;
}
/*テーブル設定*/
table{
	border-collapse: collapse;
	border-spacing: 0;
}
/*マーカーを消す*/
ul, ol{
	list-style: none; 
}
/*下線を消す*/
a{
	text-decoration: none; 
	color:#000;
}
/* 画像の空白回避 */
img{
	border: 0;
}
img, input{
	vertical-align:bottom;
}
/* clearfix */
.clearfix:after{
	content:"";
	display: block;
	clear: both;
}
/* transition */
.transition{
	transition:all ease 0.3s;
	-ms-transition:all ease 0.3s;
	-moz-transition:all ease 0.3s;
	-webkit-transition:all ease 0.3s;
}
/* 改行設定 */
.sp_br{
	display: none;
}
@media screen and (min-width:0px) and (max-width:767px){
.pc_br{
	display:none;
	}
.sp_br{
	display:block;
	}
}
/*書体太さ設定*/
body .bold{
	font-weight:bold;
}
body .thin{
	font-weight:thin;
}
/*斜体*/
body .italic{
	font-style: italic;
}
/*テキスト揃え*/
body .t_left{
    text-align: left;
}
body .t_center{
    text-align: center;
}
body .t_right{
    text-align: right;
}
/*フォントサイズ*/
body .t_big{
    font-size: 2em;
}
/*フォントカラー*/
body .orange{
    color: #ff7418;
}
body .red{
    color: #ff0000;
}
body .green{
    color: #00b08e;
}
body .white{
    color: #ffffff;
}
/*テキストリンク*/
body a.blue:hover,
body a.red:hover,
body a.green:hover{
 /*text-decoration: underline;*/
}
/*小文字*/
body small{
    font-size: 11px;
}
/*下線*/
.under_line{
	text-decoration: underline;
}
/*背景画像の繰り返し*/
.no_repeat{
    background-repeat: no-repeat;
}
.repeat_x{
    background-repeat: repeat-x;
}
.repeat_y{
    background-repeat: repeat-y;
}
.repeat{
    background-repeat: repeat;
}

/*-------------------------------
コンテンツ幅
-------------------------------*/
.cont_w_1200{
    width: 1200px;
    margin: 0 auto;
}
.cont_w_1100{
    width: 1100px;
    margin: 0 auto;
}
.cont_w_1000{
    width: 1000px;
    margin: 0 auto;
}
.cont_w_100{
    width: 100%;
}
@media screen and (min-width:0px) and (max-width:767px){
    .cont_w_1200,
    .cont_w_1100,
    .cont_w_1000,
    .cont_w_100{
        width: 100%;
        padding: 0 5%;
    }
}

/*-------------------------------
float
-------------------------------*/
.w_100{
	width: 100%;
}
.w_95{
    width: 95%;
}
.w_90{
    width: 90%;
}
.w_85{
    width: 85%;
}
.w_80{
    width: 80%;
}
.w_75{
    width: 75%;
}
.w_70{
    width: 70%;
}
.w_66{
    width: 66%;
}
.w_65{
    width: 65%;
}
.w_60{
    width: 60%;
}
.w_50{
    width: 50%;
}
.w_49{
    width: 49%;
}
.w_40{
    width: 40%;
}
.w_35{
    width: 35%;
}
.w_33{
    width: 33.3%;
}
.w_30{
    width: 30%;
}
.w_25{
    width: 25%;
}
.w_20{
    width: 20%;
}
.w_15{
    width: 15%;
}
.w_10{
    width: 10%;
}
.w_5{
    width: 5%;
}
.f_l{
    float: left;
}
.f_r{
    float: right;
}
.c_b{
	clear: both;
}
@media screen and (min-width:0px) and (max-width:767px){
	.w_100,
    .w_95,
	.w_90,
	.w_85,
    .w_80,
	.w_75,
	.w_70,
	.w_66,
	.w_65,
	.w_60,
	.w_50,
	.w_49,
	.w_40,
	.w_35,
    .w_33,
	.w_30,
    .w_25,
    .w_20,
	.w_15,
    .w_10,
	.w_5{
        width: 100%;
    }
    .f_l,
    .f_r{
        float: none;
    }
}

/*以下、共通レイアウト*/
/*-------------------------------
breadcrumb
-------------------------------*/
.breadcrumb{
	width: 100%;
	min-width: 1300px;
	padding: 10px 5% 0
}
.breadcrumb div span{
	font-size: 10px;
}
@media screen and (min-width:0px) and (max-width:767px){
	.breadcrumb{
		display: none;
	}
}

/*-------------------------------
page_content_area
-------------------------------*/
.page_content_area{
	width: 100%;
	min-width: 1300px;
	padding: 0 5%;
	background-repeat:no-repeat;
	background-position: top right;
}
@media screen and (min-width:0px) and (max-width:767px){
	.page_content_area{
		width: 100%;
		min-width:unset;
		padding: 0 5%;
	}
}

/*-------------------------------
block_title
-------------------------------*/
.block_title{
	position: relative;
}
.block_title span{
	position: absolute;
	font-size: 20px;
	font-style: italic;
}
.block_title h2{
	height: 71px;
	font-weight: bold;
	font-style: italic;
	font-size: 14px;
	background-repeat: no-repeat;
	background-position: top left;
}
.title_news{
	width: 155px;
	background-image: url("../../img/base/title_news.png");
}
.title_solutions{
	width: 238px;
	background-image: url("../../img/base/title_solutions.png");
}
.title_products{
	width: 226px;
	background-image: url("../../img/base/title_products.png");
}
.title_strength{
	width: 222px;
	background-image: url("../../img/base/title_strength.png");
}
.title_company{
	width: 210px;
	background-image: url("../../img/base/title_company.png");
}
.title_contactUs{
	width: 256px;
	background-image: url("../../img/base/title_contactUs.png");
}
.title_siteMap{
	width: 213px;
	background-image: url("../../img/base/title_siteMap.png");
}
.block_title_news span{
	bottom: 10px;left:155px;
}
.block_title_solutions span{
	bottom: 10px;left:238px;
}
.block_title_products span{
	bottom: 10px;left:226px;
}
.block_title_strength span{
	bottom: 10px;left:222px;
}
.block_title_contact_us span{
	bottom: 10px;left:256px;
}
.block_title_siteMap span{
	bottom: 10px;left:213px;
}

@media screen and (min-width:0px) and (max-width:767px){
	.block_title{
		position: relative;
	}
	.block_title span{
		position: static;
		display: block;
		font-size: 16px;
		font-style: italic;
		margin-top: 5px;
	}
	.block_title h2{
		height: 71px;
		font-weight: bold;
		font-style:normal;
		font-size: 20px;
		background-repeat: no-repeat;
		background-position: bottom left;
	}
	.title_news{
		background-size: 50%;
	}
	.title_solutions{
		background-size: 50%;
	}
	.title_products{
		background-size: 50%;
	}
	.title_strength{
		background-size: 50%;
	}
	.title_company{
		background-size: 50%;
	}
	.title_contactUs{
		background-size: 50%;
	}
	.title_siteMap{
		background-size: 50%;
	}
}

/*-------------------------------
underPage_title
-------------------------------*/
.underPage_title{
	padding-top: 100px;
	margin-bottom:50px;
	position: relative;
}
.underPage_title h2{
	height: 100px;
	font-weight: bold;
	font-style: italic;
	font-size: 20px;
	background-repeat: no-repeat;
	background-position: top left;
}
.underPage_title_02{
	padding-top: 100px;
}
.underPage_title_02 h3{
	width: 300px;
	height: 50px;
	line-height: 50px;
	color: #ff7418;
	border: solid 1px #ff7418;
	text-align: center;
	margin: 0 auto;
}

@media screen and (min-width:0px) and (max-width:767px){
	.underPage_title{
		padding-top: 100px;
		margin-bottom:50px;
		position: relative;
	}
	.underPage_title h2{
		height: 100px;
		font-weight: bold;
		font-style: italic;
		font-size: 24px;
		background-repeat: no-repeat;
		background-position: bottom left;
		background-size: auto 70px;
	}
	.underPage_title_02{
		padding-top: 50px;
	}
	.underPage_title_02 h3{
		width: 100%;
		height: 50px;
		line-height: 50px;
		color: #ff7418;
		border: solid 1px #ff7418;
		text-align: center;
		margin: 0 auto;
	}
}

/*-------------------------------
for_list
-------------------------------*/
.for_list{
	height: 30px;
	padding:5px 0 0 30px;
	background-image: url("../../img/home/icon_list.png");
	background-repeat: no-repeat;
	background-position: bottom left;
}
.for_list a{
	font-size: 14px;
}
.for_list a:hover{
	color: #ff7418;
}

@media screen and (min-width:0px) and (max-width:767px){
	.for_list{
		height: 30px;
		padding:5px 0 0 30px;
		background-image: url("../../img/home/icon_list.png");
		background-repeat: no-repeat;
		background-position: bottom left;
		margin-top: 10px;
	}
	.for_list a{
		font-size: 14px;
	}
	.for_list a:hover{
		color: #ff7418;
	}
}

/*-------------------------------
btn_orange
-------------------------------*/
.btn_orange{
	width: 240px;
	height: 50px;
	border-radius: 25px;
	border: solid 2px #ff7418;
	text-align: center;
	background: #fff;
	color: #ff701e;
	background-image: url("../../img/home/arrow_btn_orange.png");
	background-repeat: no-repeat;
	background-position: top 50% right 7%;
	overflow: hidden;
	position: relative;
	transition-duration: .2s;
	z-index: 2;
	cursor: pointer;
}
.btn_orange a{
	display: block;
	color: #000;
	line-height: 45px;
	width: 100%;
	height: 100%;
}
.btn_orange::after {
	background: #ff701e;
	border-radius: 50%;
	content: "";
	display: block;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 100%;
	height: 0;
	z-index: -1;
	transform: translateY(-50%) scale(0.1);
	transition: opacity .2s, transform 0s;
	transition-delay: 0s, .2s;
}
.btn_orange:hover > a{
	color: #fff;
}
.btn_orange:hover::after {
	opacity: 1;
	transform: translateY(-50%) scale(1.1);
	transition-delay: 0s;
	transition: opacity .4s, transform .4s ease-in-out;
	background-image: url("../../img/home/arrow_btn_white.png");
	background-repeat: no-repeat;
	background-position: top 50% right 10%;
}

/*-------------------------------
btn_green
-------------------------------*/
.btn_green{
	width: 240px;
	height: 50px;
	border-radius: 25px;
	border: solid 2px #00b08e;
	text-align: center;
	background: #fff;
	color: #00b08e;
	background-image: url("../../img/home/arrow_btn_green.png");
	background-repeat: no-repeat;
	background-position: top 50% right 7%;
	overflow: hidden;
	position: relative;
	transition-duration: .2s;
	z-index: 2;
	cursor: pointer;
}
.btn_green a{
	display: block;
	color: #00b08e;
	line-height: 45px;
	width: 100%;
	height: 100%;
}
.btn_green::after {
	background: #00b08e;
	border-radius: 50%;
	content: "";
	display: block;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 100%;
	height: 0;
	z-index: -1;
	transform: translateY(-50%) scale(0.1);
	transition: opacity .2s, transform 0s;
	transition-delay: 0s, .2s;
}
.btn_green:hover > a{
	color: #fff;
}
.btn_green:hover::after {
	opacity: 1;
	transform: translateY(-50%) scale(1.1);
	transition-delay: 0s;
	transition: opacity .4s, transform .4s ease-in-out;
	background-image: url("../../img/home/arrow_btn_white.png");
	background-repeat: no-repeat;
	background-position: top 50% right 10%;
}

/*-------------------------------
btn_black
-------------------------------*/
.btn_black{
	width: 350px;
	height: 70px;
	border-radius: 35px;
	border: solid 2px #000;
	text-align: center;
	background: #fff;
	background-image: url("../../img/home/arrow_btn_black.png");
	background-repeat: no-repeat;
	background-position: top 50% right 7%;
	overflow: hidden;
	position: relative;
	transition-duration: .2s;
	z-index: 2;
	cursor: pointer;
}
.btn_black a{
	display: block;
	color: #000;
	line-height: 65px;
	width: 100%;
	height: 100%;
}
.btn_black::after {
	background: #ff701e;
	border-radius: 50%;
	content: "";
	display: block;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 100%;
	height: 0;
	z-index: -1;
	transform: translateY(-50%) scale(0.1);
	transition: opacity .2s, transform 0s;
	transition-delay: 0s, .2s;
}
.btn_black:hover > a{
	color: #fff;
}
.btn_black:hover::after {
	opacity: 1;
	transform: translateY(-50%) scale(1.1);
	transition-delay: 0s;
	transition: opacity .4s, transform .4s ease-in-out;
	background-image: url("../../img/home/arrow_btn_white.png");
	background-repeat: no-repeat;
	background-position: top 50% right 10%;
}

@media screen and (min-width:0px) and (max-width:767px){
	.btn_black{
		width: 300px;
		height: 60px;
	}
	.btn_black a{
		display: block;
		color: #000;
		line-height: 50px;
		width: 100%;
		height: 100%;
	}
}

/*-------------------------------
white_filter
-------------------------------*/
.white_filter{
	position: relative;
	display: inline-block;
}
.white_filter::after{
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,0.35);
	pointer-events: none;
}
.gray_filter{
	position: relative;
	display: inline-block;
}
.gray_filter::after{
	content: "";
	position: absolute;
	inset: 0;
	background:rgba(200,200,200,0.20);
	pointer-events: none;
}


/*-------------------------------
company_page_link
-------------------------------*/
.company_page_link{
    margin:100px auto 0;
    width:1100px;
}
.company_page_link ul{
	margin-top: 25px;
}
.company_page_link ul li:nth-child(1){
	width: 49%;
	margin-right: 1%;
}
.company_page_link ul li:nth-child(2){
	width: 49%;
	margin-left: 1%;
}
.company_page_link ul li:nth-child(3){
	width: 32%;
	margin: 20px 0 0;
}
.company_page_link ul li:nth-child(4){
	width: 32%;
	margin: 20px 2%;
}
.company_page_link ul li:nth-child(5){
	width: 32%;
	margin: 20px 0 0;
}
.company_page_link ul li{
	height: 120px;
	float: left;
}
.company_page_link ul li a{
	display: block;
	width: 100%;
	height: 100%;
	line-height: 120px;
	background-color: #ffebde;
	padding-left: 50px;
	font-size: 20px;
}
.company_page_link ul li a:hover{
	background-color: #ff701e;
	color: #fff;
}

@media screen and (min-width:0px) and (max-width:767px){

	.company_page_link{
		margin:50px auto 0;
		width:100%;
		padding: 0 5%;
	}
	.company_page_link ul{
		margin-top: 15px;
	}
	.company_page_link ul li:nth-child(1){
		width: 100%;
	}
	.company_page_link ul li:nth-child(2){
		width: 100%;
		margin:10px 0 0;
	}
	.company_page_link ul li:nth-child(3){
		width: 100%;
		margin:10px 0 0;
	}
	.company_page_link ul li:nth-child(4){
		width: 100%;
		margin:10px 0 0;
	}
	.company_page_link ul li:nth-child(5){
		width: 100%;
		margin:10px 0 0;
	}
	.company_page_link ul li{
		height: 80px;
		float: left;
	}
	.company_page_link ul li a{
		display: block;
		width: 100%;
		height: 100%;
		line-height: 80px;
		background-color: #ffebde;
		padding-left: 25px;
		font-size: 16px;
	}
	.company_page_link ul li a:hover{
		background-color: #ff701e;
		color: #fff;
	}
}

/*-------------------------------
grobal_page_link
-------------------------------*/
.grobal_page_link{
    margin-top:100px;
    width:100%;
    min-width:1300px;
    padding:50px 10%;
    background-image:url("../../img/base/bg_grobal_page_link_dot.png");
    background-repeat:repeat;
    background-position:top left;
    position:relative;
    overflow:hidden;
}
.grobal_page_link::after{
    content:"";
    position:absolute;
    right:-250px;
    bottom:0;
    width:1189px;
    height:293px;
	background:
		url("../../img/base/bg_grobal_page_link.png") no-repeat;
    background-size:contain;
    transform:translateY(100%);
    opacity:0;
    transition:
        transform 1.2s ease,
        opacity 1.2s ease;
    pointer-events:none;
}
.grobal_page_link.show::after{
    transform:translateY(0);
    opacity:1;
}
.grobal_page_link ul{
	position: relative;
	z-index: 3;
}
.grobal_page_link ul li{
	width: 32%;
	margin: 20px 0;
	background-color: #fff;
}
.grobal_page_link ul li a{
	display: block;
	width: 100%;
	height: 100%;
}
.grobal_page_link ul li a:hover{
	opacity: 0.7;
}
.grobal_page_link ul li:nth-of-type(2),
.grobal_page_link ul li:nth-of-type(5){
	width: 32%;
	margin: 20px 2%;
}
.grobal_page_link_thumb{
	float: left;
}
.grobal_page_link_title{
	font-size: 14px;
	padding: 57px 15px 0 30px;
	float: left;
	position: relative;
}
.grobal_page_link_title::before{
	content: "";
	display: block;
	width: 5px;
	height: 20px;
	background-color: #ff7418;
	position: absolute;
	top:60px;left: 15px;
}

@media screen and (min-width:0px) and (max-width:767px){
	.grobal_page_link{
		margin-top:50px;
		width:100%;
		min-width:unset;
		padding:25px 5% 100px;
		background-image:url("../../img/base/bg_grobal_page_link_dot.png");
		background-repeat:repeat;
		background-position:top left;
		position:relative;
		overflow:hidden;
	}
	.grobal_page_link::after{
		content:"";
		position:absolute;
		right:0;
		bottom:0;
		width:300px;
		height:75px;
		background:
			url("../../img/base/bg_grobal_page_link.png") no-repeat;
		background-size:contain;
		transform:translateY(100%);
		opacity:0;
		transition:
			transform 1.2s ease,
			opacity 1.2s ease;
		pointer-events:none;
	}
	.grobal_page_link.show::after{
		transform:translateY(0);
		opacity:1;
	}
	.grobal_page_link ul{
		position: relative;
		z-index: 3;
	}
	.grobal_page_link ul li{
		width:100%;
		margin: 5px 0;
		background-color: #fff;
	}
	.grobal_page_link ul li a{
		display: block;
		width: 100%;
		height: 100%;
	}
	.grobal_page_link ul li a:hover{
		opacity: 0.7;
	}
	.grobal_page_link ul li:nth-of-type(2),
	.grobal_page_link ul li:nth-of-type(5){
		width: 100%;
		margin: 5px 0;
	}
	.grobal_page_link_thumb img{
		width: 75px;
		height: 75px;
	}
	.grobal_page_link_title{
		font-size: 14px;
		padding: 25px 15px 0 30px;
		position: relative;
	}
	.grobal_page_link_title::before{
		content: "";
		display: block;
		width: 5px;
		height: 20px;
		background-color: #ff7418;
		position: absolute;
		top:30px;left: 15px;
	}
}

/*-------------------------------
block_contactUs_underPage
-------------------------------*/
.block_contactUs_underPage{
	width: 90%;
	min-width: 1300px;
	margin: 140px auto 0;
	padding-bottom: 280px;
	background-image: url("../../img/base/bg_jasi_entrance_2.png");
	background-repeat: no-repeat;
	background-position: bottom center;
}
.block_contactUs_underPage .block_title_contactUs{
	width: 256px;
	margin: 0 auto;
}
.block_contactUs_underPage .block_contactUs_wrap{
	margin-top: -110px;
	min-width: 1000px;
}
.block_contactUs_underPage .area_request{
	padding: 150px 0 30px;
	text-align: center;
	background-color: #fff;
	outline: solid 5px #ffebde;
	outline-offset: -5px;
}
.block_contactUs_underPage .area_contact{
	padding: 150px 0 30px;
	text-align: center;
	background-color: #ffebde;
}
.block_contactUs_underPage .btn_black{
	margin: 20px auto 0;
}

@media screen and (min-width:0px) and (max-width:767px){
	.block_contactUs_underPage{
		width: 100%;
		min-width:unset;
		margin: 50px auto 0;
		padding-bottom: 80px;
		background-image: url("../../img/base/bg_jasi_entrance_2.png");
		background-repeat: no-repeat;
		background-position: bottom center;
		background-size: contain;
	}
	.block_contactUs_underPage .block_title_contactUs{
		width: 256px;
		margin: 0 auto;
	}
	.block_contactUs_underPage .block_contactUs_wrap{
		margin-top:-125px;
		min-width: unset;
	}
	.block_contactUs_underPage .block_contactUs_wrap div p{
		font-size: 14px;
	}
	.block_contactUs_underPage .area_request{
		padding: 150px 0 30px;
		text-align: center;
		background-color: #fff;
		outline: solid 5px #ffebde;
		outline-offset: -5px;
	}
	.block_contactUs_underPage .area_contact{
		padding: 10px 0 30px;
		text-align: center;
		background-color: #ffebde;
	}
	.block_contactUs_underPage .btn_black{
		margin: 20px auto 0;
	}
}


/*-------------------------------
imgModal
-------------------------------*/
#imgModal{
	position: fixed;
	top: 80px;
	left: 10%;
	width: 80%;
	height: 600px;
	background: #fff;
	border: 5px solid #ff7418;
	border-radius: 20px;
	padding: 25px 25px 65px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: scale(.95);
	transition: opacity .3s ease, transform .3s ease;
	z-index: 99999;
	box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
#imgModal.active{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: scale(1);
}
#modalImg{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}
.modalCloseText{
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	padding: 5px 12px;
	background: #000;
	border-radius: 5px;
	color: #fff;
	font-size: 12px;
	letter-spacing: 0;
	margin: 0;
	pointer-events: none;
}

/*-------------------------------
block_sitemap
-------------------------------*/
.block_sitemap{
	width: 100%;
	min-width: 1300px;
	padding: 100px 5% 0;
	background-color: #FBFBFB;
}
.sitemap{
	margin: 30px auto 0;
	padding-bottom: 100px;
	border-bottom: solid 1px #000;
}
.sitemaplist_01,
.sitemaplist_02,
.sitemaplist_03{
	padding-left: 10%;
	float: left;
}
.sitemaplist_01 li a:hover,
.sitemaplist_02 li a:hover,
.sitemaplist_03 li a:hover{
	color: #ff7418;
}
.sitemap_listText_large{
	font-weight: bold;
	margin: 20px 0 5px;
}
.sitemap_listText_small{
	font-size: 12px;
	margin-bottom: 5px;
	text-indent: 1em;
}

@media screen and (min-width:0px) and (max-width:767px){
	.block_sitemap{
		width: 100%;
		min-width:unset;
		padding: 50px 5% 0;
		background-color: #FBFBFB;
	}
	.sitemap{
		margin: 0 auto;
		padding-bottom: 25px;
		border-bottom: solid 1px #000;
	}
	.sitemaplist_01,
	.sitemaplist_02,
	.sitemaplist_03{
		padding-left:0;
		float:none;
	}
	.sitemaplist_01 li a:hover,
	.sitemaplist_02 li a:hover,
	.sitemaplist_03 li a:hover{
		color: #ff7418;
	}
	.sitemap_listText_large{
		font-weight: bold;
		margin: 15px 0 5px;
	}
	.sitemap_listText_small{
		font-size: 12px;
		margin-bottom: 5px;
		text-indent: 1em;
	}
	.sp_none_list{
		display: none;
	}
}

/*-------------------------------
footer
-------------------------------*/
footer{
	width: 100%;
	padding: 0 20%;
	background-color: #FBFBFB;
}
footer p:nth-child(1){
	padding-top: 15px;
}
.footer_company{
	width:600px;
	margin: 50px auto 25px;
	position: relative;
}
.footer_company img{
	margin: 0 10px 15px;
}
.footer_company .footer_logo_03{
	position: absolute;
	bottom:0;right:0;
}
.address,.callNo{
	font-size: 13px;
}
.copyright{
	font-size: 12px;
	letter-spacing: 0;
	padding-bottom: 5px;
}

@media screen and (min-width:0px) and (max-width:767px){
	footer{
		width: 100%;
		padding: 0 5%;
		background-color: #FBFBFB;
	}
	footer p:nth-child(1){
		padding-top: 15px;
		font-size: 12px;
		letter-spacing: 0;
	}
	.footer_company{
		width:100%;
		margin: 50px auto 10px;
		position: relative;
	}
	.footer_company img{
		margin: 0 5px 15px;
	}
	.footer_company .footer_logo_01{
		width: 50px;
		height: auto;
	}
	.footer_company .footer_logo_02{
		width: 150px;
		height: auto;
	}
	.footer_company .footer_logo_03{
		width: 75px;
		height: auto;
		position: absolute;
		bottom:60px;right:0;
	}
	.address,.callNo{
		font-size: 12px;
		letter-spacing: 0;
	}
	.copyright{
		font-size: 10px;
		letter-spacing: 0;
		padding-bottom: 5px;
	}
}


/*-------------------------------
news_search_area
-------------------------------*/

.news_search_area{
	margin-top: 100px;
	background-color:#f5f5f5;
	padding: 30px 50px;
}
.tag_area{
	padding-right: 5%;
}
.tag_area h3{
	height: 35px;
	line-height: 35px;
	padding-left: 50px;
	background-image: url("../../img/news/obj_tag.png");
	background-repeat: no-repeat;
	background-position: top 5px left 0;
	margin-bottom: 20px;
}
.tagcloud a{
	display: inline-block;
	padding: 2px 10px;
	border: solid 1px #999;
	background-color: #fff;
	border-radius: 20px;
	font-size: 12px;
	margin: 3px 1px;
}
.freeword_area h3{
	height: 35px;
	line-height: 35px;
	padding-left: 50px;
	background-image: url("../../img/news/obj_freeword.png");
	background-repeat: no-repeat;
	background-position: top 5px left 0;
	margin-bottom: 20px;
}
/* input text */
.freeword_area input[type="text"] {
	appearance: none;
	-webkit-appearance: none;
	border: solid 1px #999999;
	border-radius: 10px;
	background: #fff;
	margin: 0;
	padding: 5px 10px;
	width: 100%;
	height: 45px;
	font: 14px;
	color: inherit;
	outline: none;
	box-shadow: none;
}
/* button submit */
.freeword_area button[type="submit"] {
	display: block;
	width: 100%;
	height: 100%;
	appearance: none;
	-webkit-appearance: none;
	border: none;
	border-radius: 0;
	background: none;
	padding: 0;
	font: inherit;
	color: #000;
	cursor: pointer;
	outline: none;
	box-shadow: none;
}
.freeword_area button[type="submit"]:hover {
	color: #FFF;
}
div.submit_search{
	margin: 25px auto 0;
}

@media screen and (min-width:0px) and (max-width:767px){
	.news_search_area{
		margin-top: 50px;
		background-color:#f5f5f5;
		padding: 25px 10px 10px;
	}
	.tag_area{
		padding-right: 0;
	}
	.tag_area h3{
		height: 35px;
		line-height: 35px;
		padding-left: 45px;
		background-image: url("../../img/news/obj_tag.png");
		background-repeat: no-repeat;
		background-position: top 5px left 0;
		margin-bottom: 20px;
		font-size: 14px;
	}
	.tagcloud a{
		display: inline-block;
		padding: 2px 10px;
		border: solid 1px #999;
		background-color: #fff;
		border-radius: 20px;
		font-size: 12px;
		margin: 3px 1px;
	}
	.freeword_area h3{
		height: 35px;
		line-height: 35px;
		padding-left: 45px;
		background-image: url("../../img/news/obj_freeword.png");
		background-repeat: no-repeat;
		background-position: top 5px left 0;
		margin:25px 0 20px;
		font-size: 14px;
	}
	/* input text */
	.freeword_area input[type="text"] {
		appearance: none;
		-webkit-appearance: none;
		border: solid 1px #999999;
		border-radius: 10px;
		background: #fff;
		margin: 0;
		padding: 5px 10px;
		width: 100%;
		height: 50px;
		font: 14px;
		color: inherit;
		outline: none;
		box-shadow: none;
	}
	/* button submit */
	.freeword_area button[type="submit"] {
		display: block;
		width: 100%;
		height: 100%;
		appearance: none;
		-webkit-appearance: none;
		border: none;
		border-radius: 0;
		background: none;
		padding: 0;
		font: inherit;
		color: #000;
		cursor: pointer;
		outline: none;
		box-shadow: none;
	}
	.freeword_area button[type="submit"]:hover {
		color: #FFF;
	}
	div.submit_search{
		margin: 25px auto 0;
	}
}










