@charset "UTF-8";

/*---------------------------------------------------------
	全ページ共通スタイル
---------------------------------------------------------*/
html {
	font-size: 62.5%;
}

/* 要素設定*/
body {
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif, Osaka;
	font-family: "Noto Sans Japanese", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.01em;
	word-break: normal;
	color: #000;
	min-width: 1100px;
}

button,
a {
	color: #000;
}

.mincho {
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.sp-block,
.sp-inline {
	display: none;
}

.mainWidth {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

html.no_scroll {
	height: 100%;
	overflow: hidden;
}

.fadeInUp {
	-webkit-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1.2s;
	-ms-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	visibility: visible !important;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		-ms-transform: translateY(50px);
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

/*---------------------------------------------------------
 ヘッダー
 ---------------------------------------------------------*/
#pageHeader {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background: #FFF;
	width: 100%;
	min-width: 1100px;
	height: 100px;
	overflow: hidden;
	/*transition: all 3s;
  -webkit-transition: all .3s;*/
}

@media print {
	#pageHeader {
		position: absolute;
	}

	#gnav {
		margin-left: 20px;
	}

	#gnav li {
		margin-left: 20px !important;
	}

	#gnav li:first-child,
	#gnav li:last-child {
		margin-left: 0 !important;
	}

	#gnav li a {
		font-size: 1.6rem !important;
	}
}

/*#pageHeader.is-animation {
  height: 80px;
}*/
.pageHeader_inner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	height: 100px;
	transition: all 3s;
	-webkit-transition: all .3s;
}

/*#pageHeader.is-animation .pageHeader_inner {
  height: 80px;
}*/
.pageHeaderLogo {
	position: relative;
	top: -7%;
	margin-left: 25px;
	z-index: 1005;
}

/*-- #gnav --*/
#gnav ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

#gnav li {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 50px;
	height: 100px;
	font-size: 2.0rem;
	line-height: 1;
}

#gnav li:first-child,
#gnav li:last-child {
	margin-left: 0;
}

#gnav li#menu8 {
	margin-left: 40px;
}

#gnav li:after {
	content: '';
	position: absolute;
	bottom: 0;
	display: block;
	width: 0;
	height: 3px;
	background: -moz-linear-gradient(left, #0353cd 0%, #00c9c5 81%, #ffffff 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(left, #0353cd 0%, #00c9c5 81%, #ffffff 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #0353cd 0%, #00c9c5 81%, #ffffff 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0353cd', endColorstr='#ffffff', GradientType=1);
	/* IE6-9 */
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#gnav li.on:after,
#home #gnav li#menu1:after,
#about #gnav li#menu2:after,
#company #gnav li#menu3:after,
#facility #gnav li#menu4:after,
#product #gnav li#menu5:after,
#recruit #gnav li#menu6:after {
	width: 100%;
}

#gnav li#menu8:after,
#gnav li#menu9:after {
	display: none;
}

#gnav li#menu1 a:hover,
#gnav li#menu2 a:hover,
#gnav li#menu3 a:hover,
#gnav li#menu4 a:hover,
#gnav li#menu5 a:hover,
#gnav li#menu6 a:hover,
#gnav li#menu7 a:hover {
	opacity: 1;
}

#gnav li#menu8 a,
#gnav li#menu9 a {
	display: block;
	color: #FFF;
	padding: 0;
	width: 160px;
	font-weight: 500;
	text-align: center;
	line-height: 100px;
}

/*#pageHeader.is-animation #gnav li#menu8 a,
#pageHeader.is-animation #gnav li#menu9 a {
	line-height: 80px;
}*/
#gnav li#menu8 a {
	background: #00c9c5;
	font-size: 1.8rem;
}

#gnav li#menu9 a {
	background: #046cc4;
}

#panel-btn {
	display: none;
}

/*---------------------------------------------------------
パンくず
 ---------------------------------------------------------*/

/*---------------------------------------------------------
フッター
 ---------------------------------------------------------*/
.f_top {
	position: relative;
	padding: 50px 0 25px;
}

.pagetop {
	position: absolute;
	bottom: 25px;
	right: 30px;
}

.f_top .mainWidth {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#fnav {
	margin-top: 40px;
}

#fnav ul {
	display: -ms-flexbox;
	display: flex;
}

#fnav li {
	position: relative;
	margin-left: 20px;
	padding-left: 20px;
	line-height: 1;
}

#fnav li:first-child {
	margin-left: 0;
	padding-left: 0;
}

#fnav li:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	border-left: 1px solid #ccc;
	margin: auto;
	width: 1px;
	height: 20px;
	-webkit-transform: rotate(20deg);
	transform: rotate(20deg);
}

#fnav li:first-child:before {
	display: none;
}

#fnav li a {
	font-size: 1.4rem;
	letter-spacing: 0;
}

.f_bnr_box {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-top: 30px;
}

.f_bnr_box p {
	margin-left: 20px;
}

.f_bnr_box p:first-child {
	margin-left: 0;
	margin-top: 4px;
}

#fnav .mynavi {
	display: block;
}

.f_logo {
	margin-bottom: 27px;
}

.f_logo span {
	display: block;
	margin-top: 5px;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: 0;
}

.f_ad {
	font-size: 1.4rem;
}

.f_bottom {
	background: #046cc4;
}

.copy {
	color: #fff;
	padding: 20px 0;
	font-size: 1.0rem;
	text-align: center;
	line-height: 1;
}

/*---------------------------------------------------------
コンテンツ
 ---------------------------------------------------------*/
#pageMain {
	margin-top: 100px;
	overflow: hidden;
}

.sub_main_visual {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-position: top center;
	height: 410px;
}

#about .sub_main_visual {
	background-image: url(../../img/about/main.jpg);
}

#company .sub_main_visual {
	background-image: url(../../img/company/main.jpg);
}

#contact .sub_main_visual {
	background-image: url(../../img/company/main.jpg);
}

#facility .sub_main_visual {
	background-image: url(../../img/facility/main.jpg);
}

#product .sub_main_visual {
	background-image: url(../../img/product/main.jpg);
}

#recruit .sub_main_visual {
	background-image: url(../../img/recruit/main.jpg);
}

#entry .sub_main_visual {
	background-image: url(../../img/recruit/main.jpg);
}

#quality .sub_main_visual {
	background-image: url(../../img/quality/main.jpg);
}

#environment .sub_main_visual {
	background-image: url(../../img/environment/main.jpg);
}

.sub_main_visual_title {
	position: relative;
	top: -10px;
	color: #FFF;
	font-size: 8.0rem;
	font-weight: 900;
	line-height: 1.45;
	letter-spacing: 0;
	text-align: center;
}

.sub_main_visual_title span {
	display: block;
	font-size: 2.2rem;
	font-weight: 400;
	letter-spacing: 0.01em;
}

.sub_main_visual_title--recruit {
  top: -90px;
  text-shadow: black 1px 0 10px
}

@media screen and (min-width: 1921px) {
	.sub_main_visual {
		display: block;
		background-size: cover;
		padding: 6.8% 0 7%;
		height: auto;
	}
}

.title_default {
	color: #FFF;
	margin-bottom: 35px;
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
	line-height: 1.2;
}

.title_default span.en {
	display: block;
	margin-top: 7px;
	font-size: 5.0rem;
	font-weight: 900;
}

.title_default02 {
	color: #046bc4;
	margin-bottom: 35px;
	font-size: 4.0rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.2;
}

.title_default02 span {
	display: block;
	color: #000;
	margin-top: 7px;
	font-size: 1.6rem;
	font-weight: 400;
}

.table_type01 {
	width: 100%;
}

.table_type01 th,
.table_type01 td {
	padding: 25px 15px;
	font-size: 1.6rem;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: middle;
}

.table_type01 th {
	border-bottom: 1px solid #c9c9c9;
	background: #eee;
	width: 200px;
	text-align: center;
}

.table_type01 td {
	border-bottom: 1px solid #e5e5e5;
	padding-left: 95px;
	letter-spacing: 0.03em;
}

.table_type01 tr:first-child th {
	border-top: 1px solid #c9c9c9;
}

.table_type01 tr:first-child td {
	border-top: 1px solid #e5e5e5;
}

.btn {
	position: relative;
	display: block;
	background: #fff;
	border: 1px solid #0249b5;
	color: #0249b5;
	width: 100%;
	max-width: 260px;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	line-height: 70px;
	letter-spacing: 0.02em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.btn:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -55px;
	background-image: url(../img/btn_arw.png);
	background-repeat: no-repeat;
	margin: auto;
	width: 108px;
	height: 6px;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

/*　sec_bnr
---------------------------------------------------------*/
.sec_bnr {
	background: #046cc4;
	padding: 75px 0 70px;
}

.sec_bnr_inner .shinsotsu {
	display: block;
	background: #fff;
	text-align: center;
	font-size: 1.9rem;
	letter-spacing: 0.08em;
	margin-top: 25px;
	padding: 20px;
}

.sec_bnr_inner .shinsotsu p {
	margin-right: 84px;
	position: relative;
}

.sec_bnr_inner .shinsotsu p:nth-child(2),
.sec_bnr_inner .shinsotsu p:nth-child(3) {
	margin-right: 30px;
}

.sec_bnr_inner .shinsotsu p:nth-child(3) {
	font-size: 15px;
}


.sec_bnr_inner .shinsotsu p:nth-child(1)::after {
	content: "";
	background: url(../img/btn_arw.png) no-repeat center right;
	width: 58px;
	height: 6px;
	top: 11px;
	margin-left: 12px;
	position: absolute;
}

.sec_bnr_inner .shinsotsu p,
.sec_bnr_inner .shinsotsu img {
	display: inline-block;
	vertical-align: middle;
}

.mynavi-a a {
  display: block;
}

.mynavi-b a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec_bnr_list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: space-between;
	justify-content: space-between;
	flex-wrap: wrap;
}

.sec_bnr_list li {
	width: 49.091%;
}

.sec_bnr_list li a {
	position: relative;
	display: block;
}

.sec_bnr_list li a div.deco {
	position: absolute;
	bottom: 50%;
	left: 0;
	right: 0;
	margin: auto;
}

.sec_bnr_list li a p {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	color: #FFF;
	margin: auto;
	font-size: 2.5rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.08em;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.sec_bnr_list li a p:after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	right: 0;
	background-image: url(../img/btn_arw.png);
	background-repeat: no-repeat;
	margin: auto;
	width: 108px;
	height: 6px;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

.sec_bnr_list li a div.deco.env_qua {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, 50%);
	right: 0;
	margin: auto;
	width: 100%;
	text-align: center;
}

.sec_bnr_list li a div.deco.qua-costom {
	bottom: 44%;
}

.costom201904121854 {
	margin-bottom: 36px;
}

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

	/*---------------------------------------------------------
	 ヘッダー
	 ---------------------------------------------------------*/
	.pageHeaderLogo {
		margin-left: 15px;
		width: 15%;
	}

	/*-- #gnav --*/
	#gnav li {
		margin-left: 20px;
		font-size: 1.6rem;
	}

	#gnav li#menu8 {
		margin-left: 15px;
	}

	#gnav li#menu8 a,
	#gnav li#menu9 a {
		width: 110px;
	}

	#gnav li#menu8 a {
		font-size: 1.4rem;
	}

}

/*---------------------------------------------------------
 All SP & Tablet 
 ---------------------------------------------------------*/
@media screen and (max-width:1100px) {

	.mainWidth {
		width: auto;
		margin: 0 3%;
	}

	/*---------------------------------------------------------
	 ヘッダー
	 ---------------------------------------------------------*/

	/*---------------------------------------------------------
	パンくず
	 ---------------------------------------------------------*/

	/*---------------------------------------------------------
	フッター
	 ---------------------------------------------------------*/
	.f_top .mainWidth {
		display: block;
	}

	#fnav {
		margin: 0 0 35px;
	}

	#fnav ul {
		-ms-flex-pack: center;
		justify-content: center;
	}

	#fnav li {
		margin-left: 12px;
		padding-left: 12px;
	}

	.f_ad_box {
		text-align: center;
	}

	/*---------------------------------------------------------
	コンテンツ
	 ---------------------------------------------------------*/

}

/*---------------------------------------------------------
 All SP 
---------------------------------------------------------*/
@media screen and (max-width: 679px) {
	.sp-none {
		display: none;
	}

	.sp-block {
		display: block;
	}

	.sp-inline {
		display: inline;
	}

	#screen-check {
		color: #00ff00;
	}

	/*--------------------------------------------------------*/
	body {
		font-size: 1.4rem;
		min-width: 100%;
	}

	.mainWidth {
		padding-left: 0;
		padding-right: 0;
		margin-left: 3.5%;
		margin-right: 3.5%;
		width: auto;
	}

	/*---------------------------------------------------------
	 ヘッダー
	 ---------------------------------------------------------*/
	.no_scroll #pageHeader {
		height: 100% !important;
	}

	#pageHeader {
		min-width: 100%;
		height: 64px;
	}

	/*#pageHeader.is-animation {
	  height: 60px;
	}*/
	.pageHeader_inner {
		height: 64px;
	}

	/*#pageHeader.is-animation .pageHeader_inner {
	  height: 60px;
	}*/
	.pageHeaderLogo {
		width: 140px;
	}

	/*-- #gnav --*/
	#gnav {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		display: block;
		background: rgba(255, 255, 255, 0.95);
		margin: auto;
		width: 100%;
		opacity: 0;
		visibility: hidden;
		z-index: 1000;
	}

	#gnav.open {
		opacity: 1;
		visibility: visible;
		overflow: auto;
	}

	#gnav ul {
		position: relative;
		top: 15%;
		display: block;
		margin: 0 auto;
		max-width: 200px;
		text-align: center;
		/*-webkit-transform: translateY(-50%);
    transform: translateY(-50%);*/
	}

	#gnav li {
		-ms-flex-pack: center;
		justify-content: center;
		margin: 0 0 30px;
		height: auto;
		overflow: hidden;
	}

	#gnav li#menu8 {
		margin: 0 0 15px;
	}

	#gnav li#menu9 {
		margin: 0;
	}

	#gnav li:after {
		display: none;
	}

	#gnav li#menu8 a,
	#gnav li#menu9 a {
		width: 100%;
		line-height: 60px !important;
	}

	#gnav li a {
		display: block;
		padding: 5px 0;
		cursor: pointer;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		transition: -webkit-transform .6s cubic-bezier(.645, .045, .355, 1);
		transition: transform .6s cubic-bezier(.645, .045, .355, 1);
		transition: transform .6s cubic-bezier(.645, .045, .355, 1), -webkit-transform .6s cubic-bezier(.645, .045, .355, 1);
	}

	#gnav.open li a {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transition: color .6s cubic-bezier(.645, .045, .355, 1), -webkit-transform .6s cubic-bezier(.645, .045, .355, 1) .2s;
		transition: color .6s cubic-bezier(.645, .045, .355, 1), transform .6s cubic-bezier(.645, .045, .355, 1) .2s;
		transition: color .6s cubic-bezier(.645, .045, .355, 1), transform .6s cubic-bezier(.645, .045, .355, 1) .2s, -webkit-transform .6s cubic-bezier(.645, .045, .355, 1) .2s;
	}

	#panel-btn {
		position: absolute;
		top: 12px;
		right: 10px;
		display: block;
		width: 40px;
		height: 40px;
		margin: 0;
		z-index: 10000;
		transition: all 3s;
		-webkit-transition: all .3s;
	}

	#pageHeader.is-animation #panel-btn {
		top: 10px;
		right: 10px;
	}

	#panel-btn-icon:before,
	#panel-btn-icon:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 5px;
		width: 30px;
		height: 3px;
		background: #000;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		transition: -webkit-transform .6s cubic-bezier(.645, .045, .355, 1);
		transition: transform .6s cubic-bezier(.645, .045, .355, 1);
		transition: transform .6s cubic-bezier(.645, .045, .355, 1), -webkit-transform .6s cubic-bezier(.645, .045, .355, 1);
	}

	#panel-btn-icon:before {
		margin-top: -5px;
	}

	#panel-btn-icon:after {
		margin-top: 5px;
	}

	#panel-btn .close:before {
		margin-top: -9px;
	}

	#panel-btn .close:after {
		margin-top: 5px;
	}

	#panel-btn .close:before {
		-webkit-transform: translate3d(0, 7px, 0) rotate(135deg);
		transform: translate3d(0, 7px, 0) rotate(135deg);
	}

	#panel-btn .close:after {
		-webkit-transform: translate3d(0, -7px, 0) rotate(-135deg);
		transform: translate3d(0, -7px, 0) rotate(-135deg);
	}

	/*---------------------------------------------------------
	グローバルナビ
	 ---------------------------------------------------------*/

	/*---------------------------------------------------------
	パンくず
	 ---------------------------------------------------------*/

	/*---------------------------------------------------------
	フッター
	 ---------------------------------------------------------*/
	.f_top {
		padding: 46px 0 25px;
	}

	.pagetop {
		position: absolute;
		top: 0;
		bottom: auto;
		left: 0;
		right: 0;
		border-top: 1px solid #046cc4;
		padding: 9px 0;
		text-align: center;
	}

	.pagetop img {
		width: auto;
		height: 28px;
	}

	.f_top .mainWidth {
		margin: 0;
	}

	#fnav {
		margin: 0 0 25px;
	}

	#fnav ul {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#fnav li {
		border-top: 1px solid #fff;
		margin: 0;
		padding: 0;
		width: 50%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	#fnav li#f_menu8 {
		width: 100%;
	}

	#fnav li:nth-child(even) {
		border-left: 1px solid #fff;
	}

	#fnav li:before {
		display: none;
	}

	#fnav li a {
		display: block;
		background: #dee4e7;
		font-size: 1.2rem;
		text-align: center;
		line-height: 46px;
	}

	.f_bnr_box {
		-ms-flex-pack: center;
		justify-content: center;
	}

	.f_logo {
		margin-bottom: 20px;
	}

	.f_logo img {
		width: 110px;
	}

	.f_logo span {
		font-size: 1.4rem;
	}

	.f_ad {
		font-size: 1.2rem;
	}

	.copy {
		padding: 15px 0;
	}


	/*---------------------------------------------------------
	コンテンツ
	 ---------------------------------------------------------*/
	#pageMain {
		margin-top: 64px;
	}

	.sub_main_visual {
		background-size: cover;
		padding: 11% 0;
		height: auto;
	}

	.sub_main_visual_title {
		/*font-size: 4.2rem;*/
		font-size: 4.0rem;
		line-height: 1.1;
	}

	.sub_main_visual_title span {
		margin-top: 10px;
		font-size: 1.8rem;
		/*font-size: 2.0rem;*/
	}

  .sub_main_visual_title--recruit {
    top: -40px;
  }

	.title_default {
		margin-bottom: 30px;
		font-size: 1.6rem;
	}

	.title_default span.en {
		font-size: 3.2rem;
	}

	.title_default02 {
		margin-bottom: 30px;
		font-size: 2.8rem;
	}

	.title_default02 span {
		font-size: 1.4rem;
	}

	.table_type01 th,
	.table_type01 td {
		display: block;
		padding: 12px 20px;
		width: 100% !important;
		font-size: 1.4rem;
	}

	.table_type01 th {
		border-bottom: none;
		text-align: left;
	}

	.table_type01 td {
		border-bottom: none;
		padding-left: 20px;
	}

	.table_type01 tr:first-child th {
		border-top: none;
	}

	.table_type01 tr:first-child td {
		border-top: none;
	}

	.btn {
		max-width: 195px;
		font-size: 1.2rem;
		line-height: 56px;
	}

	.btn:after {
		right: -36px;
		background-size: 72px auto;
		width: 72px;
		height: 4px;
	}

	/*　sec_bnr
  ---------------------------------------------------------*/
	.sec_bnr {
		padding: 25px 0;
	}

	.sec_bnr_list {
		display: block;
	}

	.sec_bnr_list li {
		width: 100%;
	}

	.sec_bnr_list li:first-child {
		margin-bottom: 15px;
	}

	.sec_bnr_list li a img {
		width: 100%;
	}

	.sec_bnr_list li a p {
		font-size: 2.2rem;
	}

	.sec_bnr_list li a p:after {
		bottom: -18px;
		background-size: 72px auto;
		width: 72px;
		height: 4px;
	}

	.sec_bnr_inner .shinsotsu p {
		margin-right: 0;
		padding-bottom: 10px;
	}

	.sec_bnr_inner .shinsotsu p:after {
		background-size: 72px auto;
		width: 72px;
		height: 4px;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	.sec_bnr_inner .shinsotsu p,
	.sec_bnr_inner .shinsotsu img {
		display: inline;
	}

	.sec_bnr_inner .shinsotsu img {
		margin-top: 15px;
	}

	.sec_bnr_list li a div.deco.env_qua {
		width: 82%;
	}

}

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