@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Zen+Maru+Gothic:wght@400;500;700&family=Sofia+Sans+Condensed:wght@700&display=swap');

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
	line-height: 1.8em;
    letter-spacing: 0.07em;
	/* background-color: #251e1c; */
	background-color: #2B201C;
	color: white;
    overflow-x: hidden;
}

a {
	word-wrap:break-word;
	color: white;
	text-decoration: none;
    transition: 0.5s;
}
a:hover {
    filter: alpha(opacity=80);
    -moz-opacity:0.80;
    opacity:0.80;
}
@media(min-width: 768px){
    a[href^="tel:"]{
        pointer-events: none;
    }
}

img {
	max-width: 100%;
}

.sp {
	display: none;
}


/* グーグルマップ・レスポンシブレイアウト */
.gmap-wrap {
	position: relative;
	height: 0;
	padding-bottom: 46.73%;
	/* padding-bottom : 56.25%; */
	/* 縦横比の指定 */
	overflow: hidden;
}

.gmap-wrap iframe,
.gmap-wrap object,
.gmap-wrap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.gmap-wrap.second {
	padding-bottom: 72.8%;
}

.grecaptcha-badge { visibility: hidden; }

.sec {
	max-width: 1920px;
	width: 100%;
	margin: auto;
}

.sec_in{
    width: 90%;
    max-width: 1332px;
    margin: auto;
}



/* ヘッダー
--------------------------------------------- */
.header {
	width: 100%;
	max-width: 1920px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	background-color: black;
}

.h-logo {
	font-size: 25px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 320px;
	height: 110px;
}

.nav-list {
	display: flex;
	justify-content: space-around;
}

.nav-list li {
	padding: 30px;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	position: relative;
}

.nav-list li:last-child {
	width: 223px;
	padding: 0;
	background-image: url(../img/h-contact.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.nav-list li:last-child a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-img {
	position: relative;
	max-width: 1920px;
	margin: auto;
	width: 100%;
	display: flex;
}

.main-img::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(to right, #B30011, #291716, #B30011);
}

.main-img .txtarea {
	position: relative;
	width: 43.3%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* .main-img .txtarea::before {
	content: '';
	position: absolute;
	height: 4px;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: linear-gradient(to right, #B30011, #291716);
} */


.main-img .txtarea .big {
	font-weight: bold;
	font-size: 78px;
	line-height: 1;
}
.main-img .txtarea .small {
	margin-top: 20px;
}

.main-img .imgarea {
	width: 56.7%;
}

.main-img .imgarea {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 433px;
}

#strength .main-img .imgarea { background-image: url(../img/head-str.jpg); }
#equipment .main-img .imgarea { background-image: url(../img/head-str.jpg); }
#company .main-img .imgarea { background-image: url(../img/head-com.jpg); }
#contact .main-img .imgarea { background-image: url(../img/head-con.jpg); }
#service .main-img .imgarea { background-image: url(../img/head-ser.jpg); }

/* stroke */
.stroke li a {
	position: relative;
}

.stroke li a:after {
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	margin: auto;
	width: 0%;
	content: '.';
	color: transparent;
	background: #980018;
	height: 4px;
	-webkit-transition: 0.4s;
	-moz-transition:  0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.stroke li a:hover:after {
	width: 100%;
}
/* end stroke */

.stroke li:last-child a:after {
	display: none !important;
}

body#index .stroke li:nth-child(1) a:after,
body#service .stroke li:nth-child(2) a:after,
body#strength .stroke li:nth-child(3) a:after,
body#equipment .stroke li:nth-child(3) a:after,
body#company .stroke li:nth-child(4) a:after,
body#recruit .stroke li:nth-child(5) a:after {
	width: 100%;
}

.nav-list .sub-menu {
	position: absolute;
	/* display: none; */
	bottom: -80px;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 80px;
	z-index: 10;
	pointer-events: none;
	opacity: 0;
	background-color: rgba(0,0,0,0.7);
	transition: 0.3s all;
}

.nav-list .sub-menu a {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.nav-list > li:nth-child(3):hover .sub-menu {
	display: block;
	opacity: 1;
	text-align: center;
	pointer-events: auto;
}

.nav-list .sub-menu a:after {
	display: none;
}


/* フッター
--------------------------------------------- */
.footer {
	max-width: 1920px;
	margin: auto;
	width: 100%;
}

.f-top {
	height: 494px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

#equipment .f-top,
#company .f-top {
    background-image: url(../img/f-bg1-1.jpg);
    background-size: cover;
}

#index .f-top,
#service .f-top,
#strength .f-top {
    background-image: url(../img/f-bg1-2.jpg); 
    background-size: cover;
}

#contact .f-top,
#contact .f-middle {
	display: none;
}

#recruit .f-top {
	display: none;
}

#recruit .f-middle {
	margin-top: 0 !important;
}

.f-middle {
	margin-top: -77px;
}

.f-ttl {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1325px;
	width: 90%;
	height: 212px;
	margin: auto;
	font-weight: bold;
	text-align: center;
	background: linear-gradient(to right, #B30011, #291716, #B30011);
}

.f-ttl img {
	margin-bottom: 5px;
}

.f-ttl span.en {
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 700;
    padding-bottom: 5px;
}
.f-ttl span.ja {
	font-size: 25px;
	font-weight: 500;
}

.tel-fax {
	position: relative;
	max-width: 1325px;
	width: 90%;
	margin: 12px auto 0;
	padding: 55px 7% 35px;
	background-color: #403d3c;
}
.tel-fax::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 74px;
	height: 74px;
	border-left: solid 1px white;
	border-top: solid 1px white;
}
.tel-fax::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 74px;
	height: 74px;
	border-right: solid 1px white;
	border-bottom: solid 1px white;
}

.tel-fax .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tel-fax .left {
	width: 50%;
	border-right: solid 1px white;
	padding-right: 40px;
	padding-top: 10px;
	padding-bottom: 15px;
}
.tel-fax .left img { max-width: 404px; width: 100%; }
.tel-fax .left a img{
    padding-bottom: 10px;
}

.tel-fax .left .time {
	padding-top: 10px;
}

.tel-fax .right {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 20px;
}

.tel-fax .right p {
	display: flex;
	align-items: center;
	font-size: 22px;
}

.tel-fax .right img {
	margin-right: 25px;
}

.f-bot {
	position: relative;
	padding-top: 120px;
}

.f-bot-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 56%;
	height: 416px;
	background-image: url(../img/f-bg2-1.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}

.f-logo {
	font-size: 25px;
	font-weight: 500;
}

.f-bot-list {
	display: flex;
	flex-wrap: wrap;
}

.copyright {
	width: 90%;
    margin: auto;
	text-align: center;
	padding-top: 100px;
	padding-bottom: 10px;
}

.f-bot .inner {
	max-width: 1325px;
	width: 100%;
	margin: auto;
	padding-left: 7%;
}

.f-bot .flex {
	display: flex;
}

.f-logo {
	margin-bottom: 10px;
}

.f-bot .flex {
	line-height: 1.8;
}

.f-bot .flex .left {
	margin-right: 80px;
}

.f-bot .flex .right {
	margin-right: 100px;
}

.f-bot-list .ttl {
	position: relative;
	padding-left: 12px;
	font-size: 18px;
}
.f-bot-list .ttl::before {
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-color: #A70011;
	width: 4px;
	height: 18px;
}

.f-bot-list .second {
	display: flex;
	padding-left: 5%;
}

.f-link-list li {
	padding-bottom: 18px;
}

.f-bot-list .second .f-link-list:first-child {
	padding-right: 80px;
}
/*  ページトップへ */
#pageTop{
    position:fixed;
    bottom:50px;
    right:20px;
}



/* お問い合わせ
--------------------------------------------- */

.con-01 {
	max-width: 1320px;
	width: 90%;
	margin: 80px auto;
}

.con-ttl {
	position: relative;
	font-size: 20px;
	padding-left: 30px;
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 35px;
}

.con-ttl::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 10px;
	height: 32px;
	margin: auto;
    background: linear-gradient(to right, #B30011, #7a0919);
}

.con01-box {
	position: relative;
	background-color: #403d3c;
	width: 100%;
	height: 242px;
	display: flex;
	align-items: center;
	justify-content: center;
    padding: 0 30px;
}	
.con01-box::before {
	position: absolute;
	content: '';
	width: 73px;
	height: 73px;
	left: 0;
	top: 0;
	border-left: solid 1px white;
	border-top: solid 1px white;
}
.con01-box::after {
	position: absolute;
	content: '';
	width: 73px;
	height: 73px;
	right: 0;
	bottom: 0;
	border-right: solid 1px white;
	border-bottom: solid 1px white;
}

.con01-box .tel{
    margin-right: 60px;
}
.con01-box .fax{
    padding-bottom: 38px;
}
.con-02 {
	max-width: 1320px;
	width: 90%;
	margin: 0 auto 80px;
}

.form-wrap {
	max-width: 1100px;
	width: 100%;
	margin: auto;
	line-height: 1.7;
}

span.hissu {
	color: #cb2228;
	font-weight: bold;
}

.form {
	margin-top: 50px;
}

.form-table,
.form-table tbody {
	width: 100%;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form textarea {
	font-family: 'Noto Sans JP', sans-serif;
	padding: 10px 10px;
	border-radius: 5px;
	width: 100%;
	font-size: 16px;
}

.form input[type="text"].short {
	width: 200px;
}

.form tr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 27px;
}

.form-table tr:last-child {
	margin-bottom: 0;
}

.form th {
	width: 210px;
	display: block;
	text-align: left;
}

.form td {
	width: calc(99% - 210px);
}

.send-wrap {
	max-width: 630px;
	margin: 40px auto 0;
}

.send-btn {
	max-width: 253px;
	width: 100%;
	height: 60px;
	background: linear-gradient(to right, #B30011, #291716, #B30011);
	color: white;
	border: none;
	font-weight: bold;
	display: block;
	margin: auto;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 17px;
	cursor: pointer;
}

.send-box {
	position: relative;
	width: 253px;
	margin: 60px auto 0;
}
.send-box::before {
	content: url(../img/con-02.png);
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	padding-top: 5px;
	z-index: -1;
}

.send-btn2 {
  max-width: 300px;
  width: 100%;
  height: 80px;
	background: linear-gradient(to right, #B30011, #291716, #B30011);
  color: white;
  border: none;
  font-weight: bold;
  font-size: 19px;
  display: block;
  margin: 0 10px 20px;
}

.tks-01 {
	margin: 100px auto 120px ;
	width: 90%;
	max-width: 600px;
}



/* レスポンシブ
--------------------------------------------- */
@media screen and (max-width: 1920px) {
	.f-top { height: 26vw; }
}

@media screen and (max-width: 1300px) {
	.nav-list li { padding: 20px; font-size: 17px; }
	.nav-list li:last-child { width: 180px; }

	.f-middle { margin-top: -50px; }
	.f-ttl { height: 160px; }
	.f-ttl img { width: 220px; }
    .f-ttl span.en { font-size: 55px; }
    .f-ttl span.ja { font-size: 22px; }
}

@media screen and (max-width: 1200px) {
	.main-img .txtarea { width: 50%; }
	.main-img .txtarea .big { font-size: 56px; }
	.main-img .imgarea { width: 50%; height: 360px; }

	.f-bot .flex .left { margin-right: 50px; }
	.f-bot .flex .right { margin-right: 50px; }
	.f-bot-list .second { padding-left: 0; }
	.f-bot-list .second .f-link-list:first-child { padding-right: 50px; }
}

@media screen and (max-width: 1100px) {
	.header { position: sticky; top: 0; z-index: 100;	}
	.nav-list { display: none; }
	.h-logo { height: 70px; font-size: 24px; max-width: 300px; width: 70%; }
	.f-bot-list .second { display: none; }

	.f-bot .inner { padding: 0 2%; }
	.f-bot-list { justify-content: center; }

	.f-bot-bg { width: 80%; height: 282px; }
}

@media screen and (max-width: 1000px) {
	.tel-fax .left img { max-width: 300px; width: 100%; }
	.tel-fax .right p { font-size: 20px;}
    .tel-fax .right p span {
        letter-spacing: 0;
    }
    .tel-fax .right img { margin-right: 20px; width: 40px; }
}

@media screen and (max-width: 900px) {
	.main-img { flex-wrap: wrap; position: relative; }
	.main-img .txtarea {
		width: 100%;
		order: 2;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		z-index: 5;
		text-align: center;
		position: absolute; }
	.main-img .txtarea .big { font-size: 36px; }
	.main-img .txtarea::before { display: none; }
	.main-img .imgarea { width: 100%; opacity: 0.6; height: 200px; }
    
}

@media screen and (max-width: 768px) {
	body { font-size: 15px; }

	.sp { display: block; margin: auto; }
	.pc { display: none; }

	.tel-fax { padding: 45px 4%; }
	.tel-fax .inner { flex-wrap: wrap; }
	.tel-fax .left { width: 100%; border-right: none; text-align: center; padding: 0; padding-bottom: 20px; border-bottom: solid 1px white; }
	.tel-fax .right { width: 100%; padding: 0; padding-top: 30px; }
	.tel-fax::before { width: 40px; height: 40px; }
	.tel-fax::after { width: 40px; height: 40px; }

	.f-bot { padding-top: 80px; }
	.f-bot-bg { width: 100%; height: 210px; }
	.f-bot .flex { display: block; }
	.f-bot .flex .left { margin-right: 0; margin-bottom: 20px; }
	.f-bot .flex .right { margin-right: 0; }
	.copyright { padding-top: 30px; font-size: 12px; }

	.f-middle { margin-top: -10px; }
	.f-ttl { height: 120px; }
	.f-ttl img { width: 180px; }
    .f-ttl span.en { font-size: 40px; }
    .f-ttl span.ja { font-size: 18px; }

	.tel-fax .left img { width: 90%; }
	.tel-fax .right img { width: 32px; margin-right: 10px; }
	.tel-fax .right p { font-size: 17px; }

	.con01-box {
		max-width: 500px;
		margin: auto;
		padding: 30px;
		height: auto;
        text-align: center;
        display: block;
	}
	.con01-box::before,
	.con01-box::after {
		width: 40px;
		height: 40px;
	}

    .con01-box .tel{
        display: block;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .con01-box .fax{
        padding-bottom: 0;
    }

	.con-ttl { font-size: 16px; padding-left: 20px; }
	.con-ttl::before { width: 6px; }

	.form-table tr { display: block; }
	.form-table th { display: block; }
	.form-table td { display: block; width: 100%; }

	#contact .f-bot {
		border-top: solid 1px white;
	}
    #pageTop img{
        width:50px;
        height:auto;
    }

}

@media screen and (max-width: 480px) {
	.main-img .txtarea .big { font-size: 28px; }
    .f-ttl span.en { font-size: 32px; }

}

































/* 共通
--------------------------------------------- */

.ttl_sec01{
    width: 560px;
    background: url(../img/common/ttl_bg.png);
    background-size: 100% 100%;
    text-align: center;
    padding: 33px 0;
    font-size: 47px;
    line-height: 1.2em;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin: 0 auto 50px;
}
.ttl_sec02{
    text-align: center;
    font-size: 35px;
    line-height: 1.5em;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 35px;
}

.ttl_sec03 {
    position: relative;
    font-size: 40px;
    padding-left: 25px;
    font-weight: 500;
    margin-bottom: 35px;
}

.ttl_sec03::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 32px;
    margin: auto;
    background: linear-gradient(to right, #B30011, #7a0919);
}

@media screen and (max-width: 1300px) {

    .ttl_sec01{
        width: 400px;
        padding: 33px 0;
        font-size: 36px;
        line-height: 1em;
    }
}
@media screen and (max-width: 810px) {

    .ttl_sec01{
        width: 350px;
        font-size: 25px;
        line-height: 1em;
    }
    
    .ttl_sec02{
        font-size: 22px;
        line-height: 1.5em;
    }

    .ttl_sec03 {
        font-size: 30px;
    }

}

@media screen and (max-width: 480px) {

    .ttl_sec01{
        width: 90%;
        max-width: 280px;
        padding: 20px 0;
        font-size: 20px;
        line-height: 1.2em;
        margin-bottom: 30px;
    }
    .ttl_sec02{
        font-size: 20px;
        line-height: 1.5em;
        margin-bottom: 20px;
        letter-spacing: 0.05em;
    }
    .ttl_sec03 {
        font-size: 22px;
        padding-left: 20px;
        margin-bottom: 25px;
    }

    .ttl_sec03::before {
        width: 8px;
        height: 28px;
    }
    
}





/* TOP
--------------------------------------------- */
.top-01 {
    position: relative;
    overflow: hidden;
}

.main-video {
    width: 100%;
    object-fit: cover;
    height: 840px;
    display: block;
}

.top-grant {
    position: absolute;
    bottom: 3%;
    right: 3%;
    z-index: 10;
    text-align: right;
    font-size: 18px;
    line-height: 1.3em;
    letter-spacing: 0;
    text-shadow: 0 0 3px #000;
}

.hibana {
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    opacity: 0.8;
    display: flex;
    align-items: flex-end;
    background-color: rgba(0, 0, 0, 0.5);
}

.hibana img {
    display: block;
}

.top-ttl {
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 15%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-ttl img {
    display: block;
    width: 38.7% !important;
}

.top-icon4 {
    position: absolute;
    bottom: 10%;
    right: 3%;
    z-index: 10;
    text-align: right;
    font-size: 18px;
    line-height: 1.3em;
    letter-spacing: 0;
    text-shadow: 0 0 3px #000;
}

@media screen and (max-width: 1500px) {
    .main-video { 
        height: 54vw;
    }
}

@media screen and (max-width: 810px) {
    .top-ttl img {
        width: 70% !important;
    }

    .top-grant {
        font-size: 12px;
        line-height: 1.3em;
    }
	
	.top-icon4 img {
		width: 50%;
	}
	
	
}

@media screen and (max-width: 480px) {
    .top-grant {
        font-size: 10px;
        line-height: 1.3em;
    }
}






.top-02{
    padding-bottom: 120px;
    position: relative;
}
.ttl_message{
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(128,128,128,0.65);
    font-size: 200px;
    line-height: 1em;
    letter-spacing: 0;
    font-weight: 700;
}

.top-02 .item{
    width: 100%;
    max-width: 1328px;
    margin: auto;
    position: relative;
}
.top-02 .item .img{
    position: absolute;
    left: 692px;
    top: 0;
    width: 928px;
}
.top-02 .item .txt{
    padding-top: 250px;
    width: 631px;
}
.top-02 .item .txt p{
    line-height: 2.4em;
}

@media screen and (max-width: 1920px) {
    .ttl_message{
        font-size: 10.6vw;
        line-height: 1em;
    }
}

@media screen and (max-width: 1550px) {
    .ttl_message{
        font-size: 140px;
        line-height: 1em;
    }
    .top-02 .item .txt{
        padding-top: 200px;
        padding-left: 2%;
    }
}

@media screen and (max-width: 810px) {
    
    .top-02{
        padding-top: 50px;
        padding-bottom: 100px;
    }
    .ttl_message{
        position: static;
        text-align: center;
        margin-bottom: 30px;
        font-size: 17vw;
        line-height: 1.2em;
        color: rgba(225,225,225,0.75);
    }

    .top-02 .item .img{
        position: static;
        margin-top: 30px;
        width: 100%;
    }
    .top-02 .item .txt{
        padding-top: 0;
        width: 90%;
        margin: auto;
    }
    .top-02 .item .txt p{
        line-height: 1.8em;
    }
}

@media screen and (max-width: 810px) {
    .top-02{
        padding-top: 40px;
        padding-bottom: 60px;
    }
}




.top-03{
    padding-bottom: 100px;
}
.top-03 .ttl_about{
    width: 100%;
    background: url(../img/top/top02_bg.png) center 95% no-repeat;
    margin-bottom: 50px;
}
.top-03 .ttl_about .top-sec-ttl{
    width: 95%;
    max-width: 1328px;
    margin: auto;
    color: rgba(255,255,255,0.75);
    text-align: right;
    font-size: 110px;
    line-height: 1.2em;
}

.top-03 .item{
    width: 100%;
    max-width: 1328px;
    margin: auto;
    position: relative;
}
.top-03 .item .img{
    position: absolute;
    left: 692px;
    top: 130px;
    width: 928px;
}
.top-03 .item .txt{
    width: 631px;
}
.top-03 .item .txt .sub{
    margin-top: 50px;
    margin-bottom: 100px;
}
.top-03 .item .txt .btn{
    margin-top: 20px;
}
.top-03 .item .txt .btn a{
    display: block;
    border: solid 6px #990018;
    background: url(../img/top/top-sec-box_bg.png) left top no-repeat;
    background-size: cover;
    padding: 20px;
    color: #fff;
}
.top-03 .item .txt .btn a .cap1{
    font-size: 27px;
    line-height: 1.2em;
    margin-bottom: 15px;
}
.top-03 .item .txt .btn a .cap2{
    width: 356px;
    margin: auto;
    font-size: 35px;
    line-height: 1.2em;
    font-weight: 500;
    padding: 5px 0;
    background: url(../img/top/btn_arrow.png) right center no-repeat;
    background-size: auto 100%;
}

@media screen and (max-width: 1500px) {
    .top-03 .item .txt{
        padding-left: 2%;
    }   
}

@media screen and (max-width: 810px) {

    .top-03{
        padding-bottom: 60px;
    }
    .top-03 .ttl_about .top-sec-ttl{
        font-size: 90px;
        line-height: 1.2em;
    }

    .top-03 .item .img{
        position: static;
        width: 100%;
    }
    .top-03 .item .txt{
        width: 90%;
        margin: 0 auto 20px;
    }
    .top-03 .item .txt .sub{
        margin-top: 0;
        margin-bottom: 30px;
    }
    .top-03 .item .txt .btn{
        margin-top: 20px;
    }
    .top-03 .item .txt .btn a .cap1{
        font-size: 20px;
        line-height: 1.2em;
    }
    .top-03 .item .txt .btn a .cap2{
        font-size: 30px;
        line-height: 1.2em;
    }
}

@media screen and (max-width: 480px) {

    .top-03 .ttl_about{
        padding-bottom: 10px;
        background-position: 60% bottom;
        margin-bottom: 30px;
    }
    .top-03 .ttl_about .top-sec-ttl{
        text-align: center;
        font-size: 60px;
        line-height: 1.2em;
    }
    .top-03 .ttl_about .top-sec-ttl .ja{
        color: #fff;
    }

    .top-03 .item .txt .btn a{
        border-width: 3px;
    }
    .top-03 .item .txt .btn a .cap1{
        font-size: 16px;
        line-height: 1.2em;
        margin-bottom: 5px;
    }
    .top-03 .item .txt .btn a .cap2{
        max-width: 200px;
        font-size: 22px;
        line-height: 1.2em;
    }
}


.top-04{
    background-image: url(../img/top/top04_bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    padding-bottom: 150px;
}

.top-04 .item{
    width: 100%;
    max-width: 1328px;
    margin: 0 auto 100px;
    padding-top: 120px;
    position: relative;
}
.top-04 .item .img{
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 508px);
}
.top-04 .item .img img{
    width: 100%;
    height: 445px;
    object-fit: cover;
    object-position: left top;
}

.top-04 .item .txt{
    width: 100%;
    position: relative;
    z-index: 3;
}
.top-sec-ttl{
    font-size: 90px;
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: 0;
}
.top-sec-ttl span{
    font-size: 17px;
    line-height: 1.2em;
    padding: 0 1em;
}

.top-sec-box{
    width: 100%;
    max-width: 578px;
    border: solid 6px #990018;
    background: url(../img/top/top-sec-box_bg.png) left top no-repeat;
    background-size: cover;
    padding: 50px;
}

.top-sec-box .cap{
    text-align: center;
    font-size: 35px;
    line-height: 1.2em;
    font-weight: 500;
    margin-bottom: 20px;
}
.top-sec-box .more{
    text-align: center;
    margin-top: 30px;
}
.top-sec-box .more a{
    display: inline-block;
    padding: 5px 60px 5px 0;
    color: #fff;
    font-weight: 500;
    background: url(../img/top/btn_arrow.png) right center no-repeat;
    background-size: auto 100%;
}

@media screen and (max-width: 1500px) {
    .top-sec-ttl{
        padding: 0 2%;
    }
}
@media screen and (min-width: 811px) {
    .top-04 .item.rev .img{
        position: absolute;
        top: 0;
        right: auto;
        left: 0;
    }
    .top-04 .item .img img{
        object-position: right top;
    }
    .top-04 .item.rev .txt{
        margin-left: auto;
    }
    .top-04 .item.rev .top-sec-ttl{
        text-align: right;
    }
    .top-04 .item.rev .top-sec-box{
        margin-left: auto;
    }
}

@media screen and (max-width: 810px) {

    .top-04{
        background-image: none;
        padding-bottom: 20px;
    }

    .top-04 .item{
        margin: 0 auto 60px;
        padding-top: 0;
    }
    .top-04 .item .img{
        position: static;
        width: 100%;
        text-align: center;
    }
    .top-04 .item .img img{
        height: auto;
        object-position: center center;
    }

    .top-04 .item .txt{
        width: 90%;
        margin: 0 auto 20px;
    }
    .top-sec-ttl{
        font-size: 40px;
        line-height: 1.2em;
        text-align: center;
        margin-bottom: 10px;
    }
    .top-sec-box{
        width: 100%;
        max-width: initial;
        max-width: auto;
        padding: 30px;
    }

    .top-sec-box .cap{
        font-size: 25px;
        line-height: 1.2em;
    }
    .top-sec-box .more{
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .top-sec-ttl{
        font-size: 32px;
        line-height: 1.2em;
    }
    .top-sec-ttl span{
        font-size: 15px;
        line-height: 1.2em;
        display: block;
    }

    .top-sec-box{
        border-width: 3px;
        padding: 20px;
    }
    .top-sec-box .cap{
        font-size: 19px;
        line-height: 1.2em;
    }
    .top-sec-box .more a{
        padding: 0px 40px 0px 0;
    }
}




















/* 当社の強み
--------------------------------------------- */
.str-01 {
    padding: 80px 0;
}
.str-01 .inner{
    width: 90%;
    max-width: 1100px;
    margin: auto;
    line-height: 2.4em;
}

.str-01 .img_bg{
    width: 100%;
    max-width: 1920px;
    margin: 80px auto;
    height: 500px;
    background-image: url(../img/strength/str01_bg.jpg);
    background-position: center center;
    background-attachment: fixed;
}

.str-02{
    width: 90%;
    max-width: 1385px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.str-02 li{
    width: 20%;
    margin-bottom: 30px;
}
.str-02 li .name{
    width: 100%;
    font-size: 23px;
    line-height: 1.2em;
    font-weight: 700;
    padding: 15px;
    background: url(../img/strength/one_num_bg.png) no-repeat;
    background-size: 100% 100%;
}
.str-02 li .box{
    margin-right: 30px;
    background: url(../img/strength/one_bg.png) center top;
    background-size: cover;
    padding: 20px;
    min-height: 315px;
}

.str-02 li .box .img{
    position: relative;
}
.str-02 li .box .img:after{
    position: absolute;
    top: 50%;
    right: -70px;
    width: 70px;
    height: 4px;
    background: url(../img/strength/one_kei.png) center center repeat-x;
    content: "";
}
.str-02 li.end .name{
    width: calc(100% - 30px);
    background-image: url(../img/strength/one_num_bg_end.png);
}
.str-02 li.end .name span{
    font-size: 19px;
    line-height: 1.2em;
    letter-spacing: 0;
    font-weight: bold;
}
.str-02 li.end .box .img:after{
    display: none;
}

@media (min-width: 1921px) {
    .str-01 .img_bg{
        background-size: cover;
    }
}

@media (min-width: 811px) and (max-width: 1540px) {

    .str-02 li .name{
        font-size: 1.49vw;
        line-height: 1.2em;
        padding: 0.97vw;
    }
    .str-02 li .box{
        margin-right: 1.94vw;
        padding: 1.26vw;
        min-height: 20.4vw;
        font-size: 1.1vw;
        line-height: 1.8em;
    }
    .str-02 li .box .img:after{
        position: absolute;
        top: 50%;
        right: -4.5vw;
        width: 4.5vw;
        height: 4px;
    }
    .str-02 li.end .name{
        width: calc(100% - 1.94vw);
    }
    .str-02 li.end .name span{
        font-size: 1.23vw;
        line-height: 1.2em;
    }
}

@media screen and (max-width: 1300px) {
    .str-01 .img_bg{
        height: 400px;
    }

    .str-03 .img01{
        bottom: 14vw;
    }
}

@media screen and (max-width: 810px) {

    .str-01 .img_bg{
        margin-top: 40px;
        margin-bottom: 40px;
        height: 40vw;
        background-attachment: scroll;
        background-size: 160% auto;
    }
    
    .str-02 li{
        width: 33%;
        margin-bottom: 30px;
    }
    .str-02 li .name{
        font-size: 19px;
        line-height: 1.2em;
        padding: 10px;
    }
    .str-02 li .box{
        margin-right: 10px;
        padding: 15px;
        font-size: 95%;
        line-height: 1.8em;
        min-height: 270px;
    }
    .str-02 li .box .img:after{
        display: none;
    }

    .str-02 li.end .name{
        width: calc(100% - 10px);
    }
    .str-02 li.end .name span{
        font-size: 2.2vw;
        line-height: 1.2em;
    }
    .str-02 li.end .box .img:after{
        display: none;
    }

}

@media screen and (max-width: 640px) {
    .str-02 li{
        width: 50%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {

    .str-01 .inner{
        line-height: 1.8em;
    }
    .str-02 li .name{
        font-size: 3.9vw;
        line-height: 1.2em;
        padding: 2vw;
    }
    .str-02 li.end .name span{
        font-size: 3.2vw;
        line-height: 1.2em;
    }
    .str-02 li .box{
        padding: 10px 8px;
        font-size: 90%;
        line-height: 1.6em;
        min-height: 220px;
    }
}


.str-03 {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto 120px;
    position: relative;
}
.str-03 .txt{
    width: 90%;
    max-width: 1385px;
    margin: 0 auto 40px;
}
.str-03 .txt .box1{
    width: 472px;
    height: 144px;
    background: url(../img/strength/str_box1_bg.png);
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 12px;
    font-size: 35px;
    line-height: 1.3em;
    font-weight: 500;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 3;
}
.str-03 .txt .box1 span{
    font-weight: 500;
}
.str-03 .txt .box2{
    margin-left: 90px;
    margin-top: -60px;
    width: 700px;
    padding-top: 100px;
    padding-bottom: 70px;
    padding-left: 80px;
    padding-right: 80px;
    line-height: 2.3em;
    position: relative;
}
.str-03 .txt .box2 p{
    position: relative;
    z-index: 3;
}
.str-03 .txt .box2:before{
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 35px);
    height:  calc(100% - 35px);
    background: url(../img/company/bg_rinen.png);
    background-size: 100% 100%;
    content:"" ;
}
.str-03 .txt .box2:after{
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 35px);
    height:  calc(100% - 35px);
    background: url(../img/company/bg_rinen.png);
    background-size: 100% 100%;
    content:"" ;
}

.str-03 .txt .box3{
    width: 100%;
    max-width: 790px;
    margin-top: 30px;
    margin-left: auto;
    text-align: center;
}
.str-03 .txt .box3 a{
    display: inline-block;
    padding: 5px 80px 5px 0;
    background: url(../img/top/btn_arrow.png) right center no-repeat;
    background-size: auto 100%;
    font-weight: 700;
}

.str-03 .img01{
    position: absolute;
    right: 0;
    bottom: 190px;
    z-index: -1;
    width: 42%;
}
.str-03 .img02{
    width: 67%;
}

@media screen and (min-width: 811px) {

    .str-03.st02 .txt .ttl{
        text-align: right;
    }
    .str-03.st02 .txt .ttl_sec03{
        display: inline-block;
    }

    .str-03.st02 .txt .box1{
        margin-left: auto;
    }
    .str-03.st02 .txt .box2{
        margin-left: auto;
        margin-right: 90px;
    }

    .str-03.st02 .img01{
        position: absolute;
        right: auto;
        left: 0;
    }
    .str-03.st02 .img02{
        margin-left: auto;
    }

}
@media screen and (max-width: 810px) {
    .str-03 {
        margin-bottom: 80px;
    }
    .str-03 .txt .box1{
        width: 260px;
        height: 80px;
        font-size: 20px;
        line-height: 1.3em;
        margin-left: 20px;
    }
    .str-03 .txt .box2{
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        padding: 40px 40px;
        line-height: 1.8em;
    }
    .str-03 .txt .box2:before{
        width: calc(100% - 20px);
        height:  calc(100% - 20px);
    }
    .str-03 .txt .box2:after{
        width: calc(100% - 20px);
        height:  calc(100% - 20px);
    }

    .str-03 .img01{
        position: static;
        width: 100%;
        margin-bottom: 10px;
    }
    .str-03 .img02{
        width: 100%;
    }

}
@media screen and (max-width: 480px) {
    .str-03 {
        margin-bottom: 50px;
    }

    .str-03 .txt .box2{
        padding: 30px 30px;
    }
    .str-03 .txt .box2:before{
        width: calc(100% - 10px);
        height:  calc(100% - 10px);
    }
    .str-03 .txt .box2:after{
        width: calc(100% - 10px);
        height:  calc(100% - 10px);
    }

}










/* 事業案内
--------------------------------------------- */

.sev-01 {
    padding: 80px 0;
}
.sev-01 .inner{
    width: 90%;
    max-width: 1100px;
    margin: auto;
    line-height: 2.4em;
    text-align: center;
}
#service .ttl_sec03{
    padding-left: 0;
}
#service .ttl_sec03:before{
    display: none;
}
.str-03 .txt .box1 span.sub {
    font-size: 20px;
    line-height: 1.3em;
    letter-spacing: 0.07em;
}

#cat1,#cat2{
    padding-top: 20px;
    margin-top: -20px;
}


.str-03 .img03 {
    position: absolute;
    right: 0;
    top: 60px;
    z-index: -1;
    width: 42%;
}
.str-03 .img03 img{
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: left;
}

.str-03.sev-04 .txt {
    margin-bottom: 160px;
}

.str-03 .img04 {
    position: absolute;
    left: 0;
    top: 60px;
    z-index: -1;
    width: 42%;
}
.str-03 .img04 img{
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: right;
}



.sev-03{
    width: 90%;
    max-width: 1240px;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 120px;
}
.sev-03 .ttl_sec01 {
    width: 270px;
    padding: 20px 0;
    font-size: 25px;
    line-height: 1em;
}
.sev_ex{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sev_ex li{
    width: 24%;
    margin-bottom: 40px;
}
.sev_ex li p{
    line-height: 1.3em;
    letter-spacing: 0;
}



@media (min-width: 811px) and (max-width: 1530px) {

    .str-03 .img03 {
        width: calc(100% - (6% + 790px) );
    }
    .str-03 .img04 {
        width: calc(100% - (6% + 790px) );
    }

    .str-03.sev-04 .txt {
        margin-bottom: 40px;
    }


}






@media screen and (max-width: 810px) {
    
    .sev-01 .inner{
        text-align: left;
        line-height: 2em;
    }

    #service .str-03 .txt .box1{
        margin-left: 0;
    }
    .str-03 .txt .box1 span.sub {
        font-size: 15px;
        line-height: 1.3em;
    }
    
    .str-03 .img03,
    .str-03 .img04 {
        position: static;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .str-03 .img03 img{
        width: 100%;
        height: auto;
    }
    .str-03 .img04 img{
        width: 100%;
        height: 32vw;
        object-position: center center;
    }
    
    .sev-03{
        padding-top: 0;
        padding-bottom: 60px;
    }
    .sev-03 .ttl_sec01 {
        width: 220px;
        font-size: 18px;
        line-height: 1em;
    }
    .str-03.sev-04 .txt {
        margin-bottom: 20px;
    }

    .sev_ex li{
        width: 32%;
        margin-bottom: 20px;
    }
    
}
@media screen and (max-width: 480px) {

    .sev-01 {
        padding-bottom: 50px;
    }

    .sev_ex li{
        width: 47.5%;
        margin-bottom: 20px;
    }
    .sev_ex li p{
        font-size: 90%;
        line-height: 1.3em;
    }

}













/* 主な加工設備
--------------------------------------------- */
.equ-sec {
    width: 100%;
    max-width: 1920px;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 80px;
}

.ttl_equ{
    width: 100%;
    padding: 30px 20px;
    background: url(../img/equipment/eqip_ttl_bg.png) center top no-repeat;
    background-size: 100% 100%;
    text-align: center;
    font-size: 40px;
    line-height: 1.3em;
    font-weight: 500;
    margin-bottom: 40px;
}
.ttl_equ span{
    display: inline-block;
    font-weight: 500;
}
.equ-sec .item{
    width: 100%;
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-between;
    margin-bottom: 40px;
}


.equ-sec .item .img{
    width: 48.4%;
}
.equ-sec .item .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
}
.equ-sec .item .txt{
    width: 48.4%;
}
.equ-sec .item .txt dl{
    width: 100%;
    max-width: 600px;
}
.equ-sec .item .txt dt{
    font-size: 23px;
    line-height: 1.3em;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 10px;
}
.equ-sec .item .txt dt{
    line-height: 1.6em;
}

.equ-sec .item_ex{
    width: 90%;
    max-width: 1325px;
    margin: auto;
}
.equ-sec .item_ex ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.equ-sec .item_ex li{
    width: 47.7%;
}

.equ-sec .item_ex .x4{
    flex-wrap: wrap;
}

.equ-sec .item_ex .x4 li{
    width: 24%;
}
.equ-sec .item_ex li p{
    line-height: 1.3em;
    letter-spacing: 0;
}


@media screen and (max-width: 1300px) {
    .ttl_equ{
        font-size: 3vw;
        line-height: 1.3em;
    }

}
@media screen and (max-width: 810px) {
    .equ-sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .ttl_equ{
        padding: 20px;
        font-size: 24px;
        line-height: 1.3em;
        margin-bottom: 30px;
    }
    .equ-sec .item{
        display: block;
        margin-bottom: 20px;
    }

    .equ-sec .item .img{
        width: 90%;
        text-align: center;
        margin: 20px auto 0;
    }
    .equ-sec .item .img img{
        width: auto;
        max-width: 100%;
        height: auto;
    }
    .equ-sec .item .txt{
        width: 90%;
        margin: auto;
    }
    .equ-sec .item .txt dt{
        font-size: 20px;
        line-height: 1.3em;
        margin-top: 20px;
        margin-bottom: 3px;
    }
    .equ-sec .item_ex li{
        width: 49%;
    }

    .equ-sec .item_ex .x4 li{
        width: 49%;
        margin-bottom: 15px;
    }
    .equ-sec .item_ex li p{
        font-size: 90%;
        line-height: 1.3em;
    }
}

@media screen and (max-width: 480px) {
    .equ-sec {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .ttl_equ{
        font-size: 20px;
        line-height: 1.3em;
    }
    .equ-sec .item .txt dt{
        font-size: 18px;
        line-height: 1.3em;
    }

}

















/* 会社案内
--------------------------------------------- */
.comp-sec {
    width: 90%;
    max-width: 1322px;
    margin: 80px auto;

}

.comp_item01{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 100px;
}
.comp_item01 .img{
    width: 47.8%;
    text-align: center;
}
.comp_item01 .txt{
    width: 47.8%;
    line-height: 2.3em;
}
.comp_item01 .txt .name{
    margin-top: 40px;
    text-align: right;
    font-size: 135%;
    line-height: 1.5em;
}
.comp_item02{
    width: 100%;
    padding: 80px 40px;
    text-align: center;
    font-size: 28px;
    line-height: 2em;
    position: relative;
}
.comp_item02 p{
    font-weight: 500;
    position: relative;
    z-index: 3;
}
.comp_item02:before{
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 35px);
    height:  calc(100% - 35px);
    background: url(../img/company/bg_rinen.png);
    background-size: 100% 100%;
    content:"" ;
}
.comp_item02:after{
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 35px);
    height:  calc(100% - 35px);
    background: url(../img/company/bg_rinen.png);
    background-size: 100% 100%;
    content:"" ;
}

.comp_item01.sec2{
    align-items: flex-end;
}


.gaiyou{
    width: 100%;
    line-height: 1.8em;
}
.gaiyou tr{
    border-bottom: solid 1px #980018;
}
.gaiyou th{
    width: 135px;
    padding: 20px 0 20px 20px;
    vertical-align: top;
    text-align: left;
}
.gaiyou td{
    width: calc(100% - 135px);
    padding: 20px 0;
}

.comp_item03{
    margin-bottom: 80px;
}
.comp_item03 .base{
    margin-bottom: 20px;
}
.comp_name{
    font-size: 23px;
    line-height: 1.5em;
    font-weight: 500;
    margin-bottom: 10px;
    padding-left: 30px;
    text-align: left;
    position: relative;
}
.comp_name:before{
    position: absolute;
    left: 0;
    top: 10px;
    width: 19px;
    height: 19px;
    background: linear-gradient(to right, #B30011, #7a0919);
    content: "";
}
.comp_name span {
	font-size: 20px;
}

.comp_item03 .img{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}
.comp_item03 .img li{
    width: 48%;
}
.g-map{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 500px;/* 高さ */
}
.g-map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.faci-list{
    line-height: 1.8em;
}
.faci-list tr{
    border-bottom: solid 1px #980018;
}
.faci-list th{
    padding:20px;
    vertical-align: top;
    text-align: left;
}
.faci-list td{
    padding:20px 0;
}

.comp_item04{
    text-align: center;
}

@media screen and (max-width: 1300px) {

    .comp_item01 .txt{
        line-height: 1.8em;
        letter-spacing: 0;
    }
    .comp_item01.sec2{
        align-items: center;
    }
    .g-map{
        padding-top: 36%;/* 高さ */
    }
}

@media screen and (max-width: 810px) {

    .comp_item01{
        margin-bottom: 80px;
    }
    .comp_item01 .img{
        width: 100%;
        margin-bottom: 30px;
    }
    .comp_item01 .img img{
        width: 100%;
        max-width: 500px;
        height: auto;
    }
    .comp_item01 .txt{
        width: 100%;
        line-height: 1.8em;
    }
    .comp_item01 .txt .name{
        margin-top: 20px;
        font-size: 125%;
        line-height: 1.5em;
    }

    .comp_item02{
        padding: 50px 30px;
        font-size: 20px;
        line-height: 1.8em;
    }
    .comp_item02:before{
        width: calc(100% - 20px);
        height:  calc(100% - 20px);
    }
    .comp_item02:after{
        width: calc(100% - 20px);
        height:  calc(100% - 20px);
    }

    .comp_item01.sec2 .img{
        margin-top: 30px;
        margin-bottom: 0;
    }

    .faci-list{
        margin-bottom: 50px;
    }

}

@media screen and (max-width: 480px) {

    .comp_item01{
        margin-bottom: 50px;
    }

    .comp_item01 .img{
        margin-bottom: 20px;
    }

    .comp_item02{
        padding: 40px 20px;
        font-size: 18px;
        line-height: 1.8em;
    }
    .comp_item02:before{
        width: calc(100% - 15px);
        height:  calc(100% - 15px);
    }
    .comp_item02:after{
        width: calc(100% - 15px);
        height:  calc(100% - 15px);
    }
    .gaiyou th{
        display: inline-block;
        width: 100%;
        padding: 5px 10px;
        background-color: #3b3532;
    }
    .gaiyou td{
        display: inline-block;
        width: 100%;
        padding: 15px 10px;
    }

    .comp_item03{
        margin-bottom: 40px;
    }
    .comp_name{
        font-size: 18px;
        line-height: 1.5em;
        padding-left: 28px;
    }
    .comp_name:before{
        top: 8px;
        width: 17px;
        height: 17px;
    }
	.comp_name span{
		font-size: 16px;
	}
    .comp_item03 .img{
        margin-bottom: 0;
    }
    .comp_item03 .img li{
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .g-map{
        padding-top: 65%;/* 高さ */
    }

    .faci-list th{
        display: inline-block;
        width: 100%;
        padding: 5px 10px;
        background-color: #3b3532;
    }
    .faci-list td{
        display: inline-block;
        width: 100%;
        padding: 15px 10px;
    }

}











/* 採用情報
--------------------------------------------- */
.rec-01 {
    width: 100%;
    max-width: 1920px;
    margin: auto;
    margin-bottom: 80px;
}
.bg_rec_img{
    background-image: url(../img/recruit/rec_img01.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 600px;
}
.rec_bg01{
    width: 100%;
    background-image: url(../img/recruit/rec_bg_kei.png),
        url(../img/recruit/rec_bg.png);
    background-position: center top,center top;
    background-repeat: repeat-x,repeat-x;
    padding-top: 140px;
}
.rec_bg02{
    width: 100%;
    background-image: url(../img/recruit/rec_img02.png);
    background-position: center top;
    background-repeat: no-repeat;
    padding: 0 1px;
}
.rec_bg_sp{
    display: none;
}
.rec-02 {
    max-width: 1320px;
    width: 90%;
    margin: auto;
    color: #fff;
    text-align: center;
}
.rec-ttl{
    text-align: center;
    margin-bottom: 170px;
}
.rec-ttl .big{
    font-weight: bold;
    font-size: 78px;
    line-height: 1;
}
.rec-ttl .small {
    margin-top: 10px;
}

.rec-cap1{
    font-size: 47px;
    line-height: 1.5em;
    font-weight: 500;
    margin-bottom: 60px;
}
.rec-cap2{
    font-size: 28px;
    line-height: 1.7em;
    font-weight: 500;
    margin-bottom: 150px;
}


.rec-cap3{
    font-size: 40px;
    line-height: 0.8em;
    margin-bottom: 40px;
}
.rec-cap3 span{
    position: relative;
    font-weight: 500;
}
.rec-cap3 span:before{
    position: absolute;
    left: -20px;
    top: 10;
    width: 10px;
    height: 32px;
    background: linear-gradient(to right, #B30011, #7a0919);
    content: "";
}
.rec-cap4{
    font-size: 20px;
    line-height: 2em;
    margin-bottom: 40px;
}
.rec-cap4 p{
    font-weight: 500;
    margin-bottom: 20px;
}
.rec-cap5{
    width: 100%;
    max-width: 750px;
    padding: 30px;
    background:url(../img/recruit/rec_bg_waku.png);
    background-size: 100% 100%;
    margin: auto;
}
.rec-cap5 .txt{
    display: inline-block;
    text-align: left;
}
.rec-cap5 .txt p{
    text-indent: -7em;
    margin-left: 7em;
}
@media screen and (max-width: 1280px) {
    .bg_rec_img{
        background-size: auto 57vw;
        padding-top: 35vw;
    }
    .rec-ttl .big{ font-size: 56px; }

    .rec_bg01{
        padding-top: 8vw;
    }
    .rec-ttl{
        margin-bottom: 13vw;
    }

    .rec-cap1{
        font-size: 40px;
        line-height: 1.5em;
        margin-bottom: 40px;
    }
    .rec-cap2{
        font-size: 20px;
        line-height: 1.7em;
        margin-bottom: 100px;
    }
    .rec-cap3{
        font-size: 36px;
        line-height: 0.8em;
        margin-bottom: 30px;
    }
    .rec-cap4{
        font-size: 18px;
        line-height: 1.8em;
    }
}
@media screen and (max-width: 900px) {
    .rec-ttl .big { font-size: 36px; }
}

@media screen and (max-width: 768px) {

    .rec-01 {
        margin-bottom: 60px;
    }
    
    .rec_bg02{
        width: 100%;
        background-image: url(../img/recruit/rec_img_sp02.png);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 90% auto;
        padding-bottom: 46vw;
    }
    
    .rec_bg_sp{
        display: block;
        width: 100%;
        height: 50vw;
        background: url(../img/recruit/rec_img_sp01.png) center center no-repeat;
        background-size: contain;
        margin-bottom: 20px;
    }
    
    .rec-cap1{
        font-size: 29px;
        line-height: 1.5em;
        margin-bottom: 30px;
    }

    .rec-cap2{
        font-size: 18px;
        line-height: 1.7em;
        margin-bottom: 60px;
    }
    .rec-cap3{
        font-size: 25px;
        line-height: 0.8em;
        margin-bottom: 15px;
    }
    .rec-cap3 span:before{
        position: absolute;
        left: -20px;
        top: 10;
        width: 8px;
        height: 25px;
    }
    .rec-cap4{
        font-size: 16px;
        line-height: 1.8em;
    }

}

@media screen and (max-width: 480px) {

    .bg_rec_img{
        background-size: auto 70vw;
        padding-top: 45vw;
    }

    .rec-ttl .big { font-size: 28px; }

    .rec-cap4 p{
        text-align: left;
        margin-bottom: 8px;
    }
    .rec-cap4 p br{
        display: none;
    }
}







