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

/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
	position: relative;
	font-family: yu-gothic-pr6n, sans-serif;
	line-height: 1.7;
	color: #444;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
}
@media (max-width: 450px){
	body{
		font-size: 0.8rem;
	}
}
a{
	text-decoration: none;
	color: #444;
	transition: .4s;
}
ul,ol{
	list-style: none;
	padding: 0;
}
svg{
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	min-height: 0%;
}
img{
  	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
.img{
	min-height: 0%;
}
.img img{
	display: block;
	width: 100%;
}
.img a{
	background: #fff;
}
.img a:hover img{
	opacity: .8;
}

.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}

/*flexbox*/
.flexbox{
	display: flex;
	justify-content: space-between;
}

.mg60{
	margin-bottom: 60px;
}
.mg40{
	margin-bottom: 40px;
}
.mg20{
	margin-bottom: 20px;
}
.mg10{
	margin-bottom: 10px;
}
.lh2{
	line-height: 2;
}
.pmg p{
	margin-bottom: 10px;
}

h2.title{
	margin-bottom: 40px;
	font-weight: bold;
	color: #e10100;
	text-shadow: #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;
}
h2.title span.en{
	display: block;
	font-family: 'Josefin Sans', sans-serif;
	text-transform: uppercase;
	font-size: 4rem;
	letter-spacing: 0.2rem;
	line-height: 1;
}
h2.title span.ja{
	display: block;
	font-size: 1.5rem;
	display: flex;
  	align-items: center;
  	justify-content: center;
	width: -moz-fit-content;
	width: fit-content;
	letter-spacing: 0.1rem;
}
h2.title span.ja::before{
	content: '';
	border-top: 1px solid;
	width: 2em;
	margin-right: .5em;
}
h2.title.center span.ja{
	width: 100%;
}
h2.title.center span.ja::before{
	display: none;
}
h2.title.white{
	color: #fff;
	text-shadow: none;
}
@media (max-width: 750px){
	h2.title span.en{
		font-size: 3rem;
	}
	h2.title span.ja{
		font-size: 1.2rem;
	}
}

.mtitle{
	border: 1px solid #c2c2c2;
	border-left: 10px solid #e10100;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 10px;
	margin-bottom: 20px;
	background: #fff;
}

.stitle{
	position: relative;
  	font-size: 1.4rem;
	font-weight: bold;
	border-bottom: 2px solid #eee;
	margin-bottom: 20px;
}
.stitle::before{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 100px;
	height: 2px;
	background: #e10100;
}

.dtitle{
	font-weight: bold;
	font-size: 1.4rem;
	text-align: center;
}
.dtitle::after{
	content: '';
	display: block;
	width: 150px;
	height: 1px;
	background: #000;
	margin: 20px auto 40px;
}
@media (max-width: 750px){
	.dtitle{
		font-size: 1.2rem;
	}
}

.center{
	text-align: center;
}
.bold{
	font-weight: bold;
	font-size: 1.2rem;
}

.red{
	color: #e10100;
}

/*ボタン*/
.sbtn{
	text-align: center;
}
.sbtn a{
	position: relative;
	padding: 13px 0;
	border: 1px solid #e10100;
	background: #e10100;
	color: #fff;
	font-weight: bold;
	display: inline-block;
	margin: 0 auto;
	width: 100%;
	max-width: 260px;
}
.sbtn a::after{
	transition: .4s;
	font-family: "Font Awesome 5 Free";
	content: "\f054";
	font-weight: bold;
	display: inline-block;
	position: absolute;
	right: 20px;
}
.sbtn.non a::after{
	display: none;
}
.sbtn a:hover{
	background: rgba(255, 255, 255, 0.8);
	color: #e10100;
}
.sbtn a:hover::after{
	transform: translateX(5px);
}

.m_contact a{
	min-width: 280px;
}
.m_contact a::after{
	display: none;
}


/*2行の基本Table*/
.info_table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr{
	border: 2px solid #f5f5f5;
}
.info_table th {
	background: #e10100;
	color: white;
	width: 30%;
	border-right: 2px solid #f5f5f5;
}
.info_table th,
.info_table td {
	padding: 15px 0;
}
.info_table td{
	padding-left: 10px;
}
.info_table td {
	background: #fff;
	width: 70%;
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}

/*スタイリッシュver*/
.info_table02{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table02 tr{
	border-bottom: 2px solid #f5f5f5;
}
.info_table02 th{
	width: 30%;
	border-bottom: 2px solid #e10100;
}
.info_table02 th,
.info_table02 td {
	padding: 15px 0;
}
.info_table02 td{
	padding-left: 10px;
}
.info_table02 td{
	width: 70%;
}


/*改行*/
@media (min-width: 451px){
	br.only450{
		display: none;
	}
}
span.ib{
	display: inline-block;
}


/*list*/
ul.check_list li{
}
ul.check_list li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f058";
	font-weight: bold;
	display: inline-block;
	color: #e10100;
	margin-right: .5em;
	font-size: .9em;
}

ul.dot_list li{
	margin-bottom: 5px;
}
ul.dot_list li::before{
	content: '・';
	color: #e10100;
	margin-right: 5px;
}

ul.care_list li{
	margin-bottom: 5px;
}
ul.care_list li::before{
	content: '※';
	color: #f05742;
	font-weight: bold;
}

/*===info_flexbox======*/
/*画像 + テキスト 通常のflex*/
.info_flexbox{
	display: flex;
	justify-content: space-between;
}
.info_flexbox .img{
	width: 48%;
}
.info_flexbox .text{
	width: 48%;
}
@media (max-width: 750px){
	.info_flexbox{
		display: block;
	}
	.info_flexbox .img{
		width: 100%;
	}
	.info_flexbox .text{
		width: 100%;
	}
}

/*画像 + テキスト 上下逆転のflex*/
.info_flexbox_reverse{
	display: flex;
	justify-content: space-between;
}
.info_flexbox_reverse .text{
	width: 48%;
}
.info_flexbox_reverse .img{
	width: 48%;
}
@media (max-width: 750px){
	.info_flexbox_reverse{
		flex-direction: column-reverse;
	}
	.info_flexbox_reverse .text{
		width: 100%;
	}
	.info_flexbox_reverse .img{
		width: 100%;
	}
}

/*===// 共通部分ここまで ===========*/






/*===ヘッダー==============================*/
.site_header{
	padding: 15px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.8);
	border-bottom: 1px solid #eee;
}

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

.site_header h1{
	width: 180px;
}
.site_header h1 a{
	display: block;
	width: 100%;
}
.site_header h1 a img{
	display: block;
	width: 100%;
	transition: .4s;
}
.site_header h1 a:hover img{
	opacity: .6;
}

.site_header .info{
	width: 80%;
}
.site_header .tr{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 0 0 auto;
	margin-bottom: 20px;
}

.site_header .header_btn a{
	display: block;
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
	padding: 6px 5px;
	margin: 0 auto;
	margin-left: 20px;
	width: 200px;
	background: #e10100;
	border: 1px solid #e10100;
	border-radius: 25px;
	color: #fff;
}
.site_header .header_btn a:hover{
	background: transparent;
	color: #e10100;
}

.tel_btn a{
	display: inline-block;
	font-size: 1.8rem;
	width: 100%;
	text-align: center;
	display: block;
	color: #e10100;
	font-weight: bold;
}
.tel_btn a::before{
	font-family: "Font Awesome 5 Free";
	content: "\f095";
	display: inline-block;
	padding-right: 10px;
	font-weight: bold;
	font-size: 1em;
	transform: skewX(5deg);
}
.tel_btn a:hover{
	opacity: .7;
}

/*global_nav*/
.global_nav{
	width: 100%;
}
.global_nav ul{
	margin: 0 0 0 auto;
	display: flex;
	justify-content: right;
	width: -moz-fit-content;
	width: fit-content;
}
.global_nav li{
	margin-left: 40px;
	transition: .4s;
}
.global_nav li:first-child{
	margin-left: 0;
}
.global_nav li a{
	display: block;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.1em;
}
.global_nav li a span{
	display: block;
	text-transform: uppercase;
	font-family: 'Josefin Sans', sans-serif;
	color: #e10100;
}
.global_nav li a span::after{
	content: '';
	display: block;
	width: 0;
	height: 3px;
	background: #e10100;
	margin: 3px 0 6px;
	transition: all 0.2s ease-in;
}
.global_nav li a:hover span::after{
	width: 25px;
}


@media (max-width: 1200px){
	.site_header .header_btn a{
		padding: 5px 5px;
		width: 180px;
	}
	.tel_btn a{
		font-size: 1.6rem;
	}
	.global_nav li{
		margin-left: 20px;
	}
}
@media (max-width: 960px){
	.site_header{
		padding: 10px 0;
	}
	.site_header h1{
		width: 120px;
	}
	.site_header .info{
		display: none;
	}
}
@media (max-width: 450px){
}

/*current*/
#top .current01 a span::after,
#business .current02 a span::after,
#works .current03 a span::after,
#products .current04 a span::after,
#about .current05 a span::after,
#recruit .current06 a span::after{
	width: 25px;
}


/*===スライダー==============================*/
.top_slider{
	overflow: hidden;
	position: relative;
	background: #fff;
	height: 90vh;
	min-height: 600px;
}
@media (max-width: 750px){
	.top_slider{
		height: 70vh;
	}
}

/*キャッチ*/
.top_slider .catch{
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
	text-align: center;
	z-index: 2;
	width: 90%;
	max-width: 600px;
}
.top_slider .catch .img{
	animation: apper 2.5s ease-in-out;
}
@keyframes apper {
	0% {
		opacity: 0;
	}
	50%{
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.top_slider .catch .deco{
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 50%;
	z-index: -1;
	animation: apper2 2.5s ease-in-out;
	opacity: 0.5;
}
@keyframes apper2 {
	0% {
		opacity: 1;
	}
	50%{
		opacity: 1;
	}
	100% {
		opacity: 0.5;
	}
}
.top_slider .catch .deco img{
	display: block;
	width: 100%;
}


/*ドットテクスチャ*/
.top_slider::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url(../img/pattern-01.png);
	background-repeat: repeat;
	background-size: 2px 2px;
	opacity: 0.5;
	z-index: 1;
}
@media (max-width: 450px){
	.top_slider::after{
		background-size: 1px 1px;
		opacity: 0.5;
	}
}


/*===メイン==============================*/
main{
	display: block;
	position: relative;
}
main section{
	padding: 100px 0;
	position: relative;
}
@media (max-width: 750px){
	main section{
		padding: 60px 0;
	}
}

.img_wrap{
	position: relative;
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	overflow: hidden;
}
.img_wrap img{
	transition: 1s;
	transform: translateX(-10%) scale(1.2);
}
.img_wrap::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 1;
	transition: 1s;
}
.img_wrap.inview img{
	transform: translateX(0) scale(1);
}
.img_wrap.inview::after{
	transform: translateX(100%);
}


/*==news==============================*/
.news{
	background: linear-gradient(to right, transparent 0%, transparent 65%, #ED4E0C 65%, #ED4E0C 100%);
}
@media (max-width: 750px){
	.news{
		background: linear-gradient(to right, transparent 0%, transparent 70%, #ED4E0C 70%, #ED4E0C 100%);
	}
}


/*==welcome==============================*/
.welcome{
	background: url(../img/welcome.jpg);
	background-size: cover;
	background-position: center;
	z-index: 1;
	background-attachment: fixed;
}
/*Safariのみ*/
_::-webkit-full-page-media, _:future, :root .welcome{
	background-attachment: scroll;
}
.welcome::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index:-1;
}
.welcome .text{
	text-align: center;
	color: #fff;
	font-weight: bold;
}
.welcome .text p{
	margin-bottom: 20px;
	line-height: 2;
}

/*===tb==============================*/
.tb{
}
.tb .info_flexbox,
.tb .info_flexbox_reverse{
	padding: 20px;
	border-radius: 3px;
	border: 1px solid #ccc;
}
.tb .sbtn a{
	margin-top: 40px;
}
@media (max-width: 750px){
	.tb .info_flexbox .img,
	.tb .info_flexbox_reverse .img{
		margin-bottom: 20px;
	}
}


/*===ミニslider==============================*/
.mini_slider{
	background: #fcfaf0;
}
.mini_slider li{
	margin: 0 20px;
}
.mini_slider li a{
	display: block;
	width: 100%;
	position: relative;
    overflow: hidden;
	min-height: 0%;
	background: #000;
	border-radius: 20px 0 20px 0;
}
.mini_slider li a::before{
    content: '';
    display: block;
    padding-top: 80%;
}
.mini_slider li a img{
	display: block;
	object-fit: cover;
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	transition: all 0.3s ease;
}
.mini_slider li a:hover img{
	transform: scale(1.15);
	opacity: 0.7;
}
@media (max-width: 750px){
	.mini_slider li{
		margin: 0 10px;
	}
}


/*===content==============================*/
.contents .flex{
	display: flex;
}
.contents .flex .box{
	width: 50%;
}
.contents .flex .box a{
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.contents .flex .box a::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
	transition: .6s;
}
.contents .flex .box a img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .6s;
}
.contents .flex .box a p{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	z-index: 2;
	color: #fff;
	font-weight: bold;
	font-size: 2rem;
}
.contents .flex .box a:hover::after{
	background: rgba(0, 0, 0, 0);
}
.contents .flex .box a:hover img{
	transform: scale(1.1);
}
.contents .flex .box a:hover p{
	color: #e10100;
	text-shadow: #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;
}
@media (max-width: 750px){
	.contents .flex{
		display: block;
	}
	.contents .flex .box{
		width: 100%;
	}
}

/*===recruit==============================*/
.t_recruit{
}
.t_recruit .inner{
	max-width: 960px;
}

.map_box .map_ttl{
	font-size: 1.2rem;
}

.map_box .map_ttl:first-of-type{
	margin-top: 30px;
}

.map_box .map_ttl:last-of-type{
	margin-top: 40px;
}

.top_border{
	border-top: #f5f5f5 solid 2px;
	padding-top: 10px;
}

.bottom_border{
	padding-bottom: 10px;
}


/*===フッター==============================*/
.footer_top{
	background: url(../img/footer_top.jpg);
	background-size: cover;
	background-position: bottom;
	background-attachment: fixed;
	padding: 60px 0;
	text-align: center;
	position: relative;
	z-index: 1;
	color: #fff;
}
/*Safariのみ*/
_::-webkit-full-page-media, _:future, :root .footer_top{
	background-attachment: scroll;
}
.footer_top::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index:-1;
}
.footer_top h2{
	margin-bottom: 40px;
	text-shadow: none;
	color: #fff;
}
.footer_top .btn_wrap{
	display: flex;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
}
.footer_top .btn_wrap .btn{
	width: 360px;
	margin: 0 10px;
}
.footer_top .btn_wrap .btn a{
	display: block;
	width: 100%;
	background: #ED4E0C;
	color: #fff;
	padding: 20px 0;
	font-size: 1.5rem;
	font-weight: bold;
	border: 1px solid #ED4E0C;
}
.footer_top .btn_wrap .btn a:hover{
	background: rgba(255, 255, 255, 0.8);
	color: #ED4E0C;
}

.footer_middle{
	text-align: center;
	padding: 60px 0 20px;
}
.footer_middle h3{
	width: 80%;
	max-width: 200px;
	margin: 0 auto 10px;
}
.footer_middle h3 a{
	display: block;
	width: 100%;
}
.footer_middle h3 a img{
	display: block;
	width: 100%;
}
.footer_middle h3 a:hover img{
	opacity: 0.7;
}
.footer_middle p{
	font-size: 0.8rem;
}

.footer_bottom{
	background: #e10100;
	text-align: center;
	padding: 10px 0;
	color: #fff;
}
@media (max-width: 960px){
	.footer_top .btn_wrap .btn{
		width: 320px;
	}
}
@media (max-width: 750px){
	.footer_top .btn_wrap{
		display: block;
		width: 100%;
	}
	.footer_top .btn_wrap .btn{
		width: 100%;
		margin: 0 auto;
		margin-bottom: 20px;
	}
}
@media (max-width: 450px){
	.footer_top .bold{
		font-size: 1rem;
	}
}

/*トップに戻る*/
.page_top{
	opacity: 0;
	pointer-events: none;
  	width: 50px;
  	height: 50px;
  	position: fixed;
  	right: 10px;
  	bottom: 10px;
	border-radius: 50%;
	opacity: 0;
	transition: 1s;
  	background: #e10100;
  	z-index: 50;
}
.page_top a{
	display: block;
	position: relative;
	z-index: 10;
  	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.page_top a i{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  	font-weight: 900;
  	font-size: 25px;
  	color: #fff;
}
.page_top.is_animation{
	opacity: 1;
	pointer-events: all;
	opacity: .6;
}
.page_top.is_animation:hover{
	opacity: 1;
	transform: translateY(-10px);
}


/*=================================*/
/*===下層ページ===============================================================*/
/*下層トップ*/
.kasou_top{
	background: url(../img/kasou_top.jpg);
	background-size: cover;
	background-position: bottom 15% center;
	position: relative;
	z-index: 1;
}
.kasou_top::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index:-1;
}
.kasou_top .inner{
	position: relative;
	z-index: 1;
	height: 400px;
}
.kasou_top h2{
	font-size: 1.8rem;
	font-weight: bold;
	text-shadow: #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;
	position: absolute;
	bottom: 25%;
	left: 0;
}
.kasou_top h2::before{
	content: '';
	display: inline-block;
	width: 6px;
	height: 1.2em;
	background: #e10100;
	margin-right: 8px;
	transform: translateY(20%);
	border-radius: 5px;
}
@media (max-width: 450px){
	.kasou_top{
	  height: 300px;
	}
	.kasou_top h2{
		bottom: 40%;
	}
}

/*パンくず*/
.breadcrumb{
	z-index: 1;
	font-size: 12px;
	color: #444;
}
.breadcrumb li {
	display: inline;
	list-style: none;
	font-weight: normal;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	vertical-align: top;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	font-size: 1.1em;
	color: #e10100;
}
.breadcrumb li:first-child a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
}

/*===事業紹介ページ==============================*/
@media (max-width: 750px){
	.business .wrap .img{
		margin-bottom: 20px;
	}
}


/*アコーディオン*/
.accordion_area{
}
.accordion_area li{
	margin: 10px 0;
}
.accordion_area li .area_wrap{
	border: 1px solid #ccc;
}
.accordion_area li .area_wrap .area_subject{
	cursor: pointer;
	font-size:1rem;
	font-weight: bold;
	transition: all .5s ease;
	display: flex;
	align-items: center;
	padding: 20px 40px;
	position: relative;
	background: #fcfaf0;
}
.accordion_area li .area_wrap .en{
	display: block;
	margin-right: 1em;
	color: #e10100;
}
.accordion_area li .area_wrap .area_subject h3{
	width: 100%;
	color: #e10100;
}
/*アイコンの＋と×*/
.accordion_area li .area_wrap .area_subject::before,
.accordion_area li .area_wrap .area_subject::after{
	position: absolute;
	top:48%;
	right: 15px;
	content:'';
	width: 15px;
	height: 2px;
	background-color: #e10100;
}
.accordion_area li .area_wrap .area_subject::before{
	transform: rotate(0deg);
}
.accordion_area li .area_wrap .area_subject::after{    
	transform: rotate(90deg);
}
/*area_closeクラスがついたら形状変化*/
.accordion_area li .area_wrap .area_subject.area_close::before{
transform: rotate(45deg);
}
.accordion_area li .area_wrap .area_subject.area_close::after{
transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.accordion_area li .area_wrap .area_box{
	position: relative;
	display: none;/*はじめは非表示*/
	padding: 20px 40px;
}
.accordion_area li .area_wrap .area_box .flex{
	display: flex;
}
.accordion_area li .area_wrap .area_box .flex .en{
	color: #e10100;
}
.accordion_area li .area_wrap .area_box .flex .text{
	width: 100%;
}
.accordion_area li .area_wrap .area_box .flex .text p{
	margin-bottom: 10px;
}


/*===納入実績ページ==============================*/
.works .wrap ul li{
	margin-bottom: 18px;
	padding: 3px;
	border-bottom: 2px dashed #eee;
}
.works .wrap ul li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 10px;
}

/*===製品一覧ページ==============================*/
.products .wrap{
	margin-bottom: 80px;
}
.products .wrap .text p{
	margin-bottom: 20px;
	line-height: 2;
}
@media (max-width: 750px){
	.products .wrap .img{
		margin: 0 auto;
		max-width: 400px;
		margin-bottom: 20px;
	}
}

/*===会社概要ページ==============================*/
.philosophy{
	background: url(../img/philosophy.jpg);
	background-size: cover;
	background-position: bottom;
	z-index: 1;
	color: #fff;
}
.philosophy::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index:-1;
}

.daihyo{
	background: #fcfaf0;
}
.daihyo .text{
	background: #fff;
	padding: 60px 40px;
	position: relative;
	font-family: 'Yuji Syuku', serif;
	font-size: 1.4rem;
	color: #000;
}
.daihyo .text .bold{
	font-size: 1.2em;
}
.daihyo .text .wrap{
	width: 60%;
	margin: 0 auto;
}
.daihyo .text::before, .daihyo .text::after{
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	position: absolute;
	font-size: 1.5rem;
	color: #e10100;
}
.daihyo .text::before{
	content: "\f10d";
	top: -20px;
	left: 10px;
}
.daihyo .text::after{
	content: "\f10e";
	bottom: -20px;
	right: 10px;
}
.daihyo .text p{
	line-height: 2;
	margin-bottom: 20px;
}
.daihyo .text .bold{
	/*border-bottom: 2px solid #e10100;*/
}
@media (max-width: 750px){
	.daihyo .text{
		font-size: 1rem;
		padding: 40px 10px;
	}
	.daihyo .text .wrap{
		width: 100%;
	}
}

.history .inner{
	max-width: 960px;
}
.history .inner .history_table{
	border-left: 1px solid #e10100;
}
.history .inner .history_table .item{
	margin-bottom: 20px;
}
.history .inner .history_table .item p{
	position: relative;
	left: -0.5em;
	font-weight: bold;
}
.history .inner .history_table .item p::before{
	content: '';
	background: #e10100;
	display: inline-block;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	margin-right: 3px;
}
.history .inner .history_table .item ul{
	margin-left: 20px;
}
.history .inner .history_table .item ul li{
	padding: 3px 0;
	border-bottom: 1px dotted #e10100;
}



/*===求人情報ページ==============================*/
.recruit .wrap ul li{
	margin-bottom: 18px;
	padding: 3px;
	border-bottom: 2px dashed #eee;
}
.recruit .wrap ul li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 10px;
}



/*===お問い合わせ==============================*/
.contact .tel_contact{
	text-align: center;
	display: inline-block;
	border-top: 3px solid #ED4E0C;
	border-bottom: 3px solid #ED4E0C;
	padding: 15px 80px;
	line-height: 1.5;
}
.contact .tel_contact a{
	display: block;
	font-size: 2rem;
	margin-bottom: 3px;
	white-space: nowrap;
}
.contact .tel_contact a span{
	font-size: 0.9em;
	margin-right: 5px;
}
.contact .tel_contact p{
	font-size: .8rem;
}
@media (max-width: 750px){
	.contact .tel_contact{
		padding: 10px 60px;
	}
}
@media (max-width: 450px){
	.contact .tel_contact a{
		font-size: 1.6rem;
	}
}


/*メールフォーム*/
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1){
	width: 20%;
	font-weight: bold;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.normal{
	font-weight: normal !important;
}
.mailform .row span{
  	color: #fff;
  	background: #e10100;
  	padding: 5px;
  	margin-right: 5px;
  	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform .postal_btn{
	padding: 2px 10px;
	background: #e10100;
	color: white;
	border-radius: 2px;
	margin-top: 5px;
	border: 1px solid #e10100;
}
.mailform .postal_btn:hover{
	background: #e10100;
	opacity: 0.9;
}
.mailform button{
	display: block;
	color: #111;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	font-weight: bold;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: #e10100;
	border: 1px solid #e10100;
	border-radius: 25px;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	color: #e10100;
}
.mailform button::before{
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: 700;
	margin-right: 10px;
}

@media (max-width: 750px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #e10100;
    border-bottom: 3px solid #e10100;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 36%;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}


.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
}

/*プライバシーポリシー*/
.privacy{
	background: #fcfaf0;
}
.privacy_flame{
	height: 250px;
	overflow-y: scroll;
	background: #fff;
	border: 1px solid #ccc;
}
.privacy_flame p{
	padding: 10px;
}
.privacy p span{
	font-weight: bold;
	font-size: 1rem;
	display: block;
}
/*スクロールバー全体*/
.privacy_flame::-webkit-scrollbar {
    width: 5px;
}

/*スクロールバーの軌道*/
.privacy_flame::-webkit-scrollbar-track {
  	border-radius: 10px;
  	box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
.privacy_flame::-webkit-scrollbar-thumb {
  	background-color: rgba(0, 0, 0, .5);
  	border-radius: 10px;
  	box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}

/*===サンクスページ===*/
.thanks .inner .small p{
	font-size: 0.8rem;
}
.thanks .sbtn a{
	margin-bottom: 20px;
}

/*===倉庫==============================*/
@media (max-width: 960px){
}
@media (max-width: 750px){
}
@media (max-width: 450px){
}

/*Safariのみ*/
_::-webkit-full-page-media, _:future, :root object{
	background-attachment: scroll;
}