.desktop{
	display: none !important;
}

body.topimage{
/*	background:url("../images/company.jpg") 50% 50% no-repeat;
	width:100%;
    background-size:cover;
    background-attachment: fixed;
    min-width: var(--min-width);
*/	
}
body.topimage::before {
    content: "";
    display: block;
    position: fixed;
    top: 92px;
    left: 0;
    width: 100%;
    height: 50vh;
    background-image: url(../images/company.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    overflow: hidden;
}
.openbtn1{
	background-color:transparent;
	cursor: pointer;
    width: 50px;
    height:50px;
    transform: scale(0.88) !important;
	position: absolute;
	top:0;
	bottom:0;
	right:10px;
	margin:auto;
}

/*ボタン内側*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
	background:var(--main-color);
  	width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
	top:15px;	
}

.openbtn1 span:nth-of-type(2) {
	top:23px;
	background-color:transparent;
}

.openbtn1 span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


div#headerWrapper {
	width:100%;
	height: var(--header-height);
	position: fixed;
	top:0;
	background:rgba(255,255,255,1);
	z-index: 10000;
	transition: background 0.2s;
}
div#headerWrapper.trans{
	background:rgba(255,255,255,0.95);
	box-shadow: 0 3px 9px rgba(0,0,0,0.3);
	transition: background 0.2s;
}
div#header{
	width:clamp(var(--min-width),calc(100% - 20px),var(--max-width));
	margin:auto;
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	/*align-items: center;*/
}
div#header h1,
div#header p.h1{
	width:100%;
	position: relative;
}
div#header h1 img,
div#header p.h1 img{
	width:130px;
	height: auto;
	position: absolute;
	top:27px;
	left:20px;
	margin:auto;
}
@media(min-width:1280px){
	div#header h1::after,
	div#header p.h1::after{
		content: "大倉インダストリー株式会社";
		color:var(--main-color);
		font-size:20px;
		position: absolute;
		right:-15em;
		bottom:0;
		font-weight: normal;
	}
}
@media(max-width:1279.99px){
	div#header h1::after,
	div#header p.h1::after{
		content: "";
	}
}
@media(max-width:767.99px){
	div#header h1::after,
	div#header p.h1::after{
		content: "大倉インダストリー株式会社";
		color:var(--main-color);
		position: absolute;
		left:20px;
		bottom:6px;
		font-weight: normal;
		font-size:14px;
	}
}
div.headerLink{
	position: absolute;
	display: flex;
	justify-content: flex-end;
	gap:20px;
	right:100px;
	top:10px;
}
div.headerLink a{
	background-repeat: no-repeat;
	background-position: left top 0.2em;;
	background-size:15px;
	padding-left:22px;
	margin-top:5px;
}
div.headerLink a.login{
	background-image:url("../images/icon_login.svg");
}
div.headerLink a.contact{
	background-image:url("../images/icon_mail.svg");
	background-position: left 20px center;
	background-repeat: no-repeat;
	background-color:var(--blue-color);
	color:#fff;
	width:200px;
	height: 26px;
	font-size:14px;
	text-align: center;
	line-height: 26px;
	border-radius: 26px;
	display: none;
}
div.headerLink a.contact:hover{
	background-color:var(--skyblue-color);
}
div.lang{
	margin-top:5px;
}
div.lang a{
	padding:0;
}
form#search_form{
	width:250px;
	display: flex;
	justify-content: flex-end;
	align-items: baseline;
	gap:10px;
}
form#search_form input.check{
	background:url("../images/icon_search.svg") no-repeat;
	background-size:16px;
	width:20px;
	height: 16px;
	margin-left:10px;
	cursor: pointer;
	display: block;
}
form#search_form input.check:checked{

}
form#search_form input.search{
	border-bottom:1px solid var(--line-color);
	width:0px;
	transition: all 0.4s;
}
form#search_form input.search.active{
	width:210px;
	transition:all 0.4s;
}
ul.nav{
	position: fixed;
	right:0;
	top:var(--header-height);
	background:#fff;
	width:100%;
	border-top:1px solid var(--main-color);
	display: none;
}
ul.nav > li{
	position: relative;
	width:100%;
	height: 48px;
	line-height: 48px;
	border-bottom:1px solid var(--main-color);
	background:url("../images/icon_nav_next.svg") right 22px center no-repeat;
	background-size:20px;
	text-indent: 50px;
}
ul.nav > li a{
	display: block;
	width:100%;
	height: 100%;
}
div.subMenuWrapper0{
	width:100vw;
	min-width: var(--min-width);
	height: 340px;
	position: fixed;
	top:76px;
	right:0;
	left:0;
	margin:auto;
	visibility: hidden;
	padding-top:16px;
	opacity: 0;
	transition: all 0.2s;
}
div.subMenuWrapper{
	background:var(--gradation-blue);
	width:100%;
	height: 100%;
}
div.subMenu{
	width:var(--min-width);
	margin:auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 220px;
	padding:60px 0;
	overflow: hidden;
	gap:160px;
	position: relative;
}
div.subMenu div.left,
div.subMenu div.right{
	height: 220px;
}
div.subMenu div.left{
	border-right:1px solid #fff;	
	padding-right: 20px;
	width:220px;
}
div.subMenu div.right{
	width:420px;
	display: flex;
}
div.subMenu div.left h2{
	font-size:26px;
	color:#fff;
	margin-bottom:70px;
}
ul.subMenu{
	width:100%;
	display: flex;
	flex-direction: column;
}
ul.subMenu li{
	width:calc(50% - 10px);
	font-size:17px;
	line-height: 2em;
}
ul.subMenu li a{
	color:#fff;
}
ul.subMenu li a:hover{
	border-bottom:1px solid #fff;
}
ul.contact{
	display: flex;
	width:420px;
	justify-content: space-between;
	position: absolute;
	right:0;
}
ul.contact a{
	width:200px;
	height: 60px;
	line-height: 60px;
	background-color:var(--skyblue-color);
	color:#fff;
	background-image:url("../images/arrow_white.svg");
	background-size:24px;
	background-position: right 10px center;
	border-radius: 4px;
	font-weight: bold;
	background-repeat: no-repeat;
	display: block;
	box-sizing: border-box;
	padding-left:15px;
}
ul.contact a:hover{
	background-color:#fff;
	color:var(--main-color);
	background-image:url("../images/arrow_skyblue.svg");
}
div.wrapper{
	width:100%;
	min-width:var(--min-width);
	overflow: hidden;
}
div.wrapper.white{
	background-color:var(--background-color);
}
div.wrapper.blue{
	background-color:var(--background-blue-color);
}
div.wrapper.inquiry{
	background-image: url("../images/footer_inquiryBg.jpg");
	background-position: center center;
	background-size:cover;
}
div.top {
	width:100%;
	height: 100vh;
}
div.slides{
	width:100%;
	height: 100vh;
	position: relative;
}
div.slides img{
	position: absolute;
	width:100%;
	height: 100%;
	object-fit: cover;
	top:0;
	right:0;
}
div.slides.center img{
	object-position: center center;
}
div.slides.left img{
	object-position: left center;
}
div.slides.right img{
	object-position: center center;
}
div.slides div{
	/*width:clamp(var(--min-width), calc(100% - 40px), var(--max-width));*/
	position: absolute;
	margin:auto;
	/*left:0;*/
	right:0;
	bottom:100px;
	color:#fff;
	font-size:22px;
	font-weight: bold;
}
div.slides div p.catch{
	width:var(--contents-wide);
	margin:auto;
	text-align: left;
	line-height: 1.5em;
	text-shadow: 3px 3px 9px rgba(0,0,0,0.7);
}
div.slides div p.catch span.mincho{
	font-family: serif;
	font-weight: bold;
}

div.slides div p.catch img{
	width:240px;
	height: auto;
}
/*slick*/
button.slick-next:hover {
	opacity: 0.7;
}
button.slick-arrow {
	text-indent: -9999px;
	position: absolute;
	width: 30px;
	height: 30px;
	z-index: 1;
	border: none;
	cursor: pointer;
}
button.slick-arrow{
    bottom:-40px;
}
ul.slick-dots {
	width: 100%;
	height: 20px;
	text-align: center;
	position: absolute;
	bottom: 10px;
	margin-left:0 !important;
}
ul.slick-dots li {
	text-indent: -9999px;
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: var(--blue-color);
	border-radius: 10px;
	margin: 5px;
}
li.slick-active {
	background-color: var(--green-color) !important;
}
button.slick-prev{
	background-image:url("../images/slide_prev.svg");
	left:20px;
}
button.slick-next{
	background-image:url("../images/slide_next.svg");
	right:20px;
}
.slidemin button.slick-prev{
	background-image:url("../images/slide_prev.svg");
	left:20px;
}
.slidemin button.slick-next{
	background-image:url("../images/slide_next.svg");
	right:20px;
}


/*end of slick*/
/*slick*/
/*ul.slick-dots {
	width: 100%;
	height: 13px;
	display: flex;
	justify-content: center;
	gap:20px;
	position: absolute;
	bottom: 30px;
	margin-left:0 !important;
}
ul.slick-dots li {
	text-indent: -9999px;
	display: inline-block;
	width: 13px;
	height: 13px;
	background-color: var(--main-color);
	border:1px solid #707070;
	border-radius: 13px;
}
li.slick-active {
	background-color: #fff !important;
}*/
/*end of slick*/
div.fullLogo {
	width:100%;
	min-width:var(--min-width);
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background:var(--gradation-blue);
}
div.fullLogo img{
	width:540px;
	height: auto;
}
div.ours{
	width:100%;
	background:url("../images/bg_ours.jpg");
	object-fit: cover;
	overflow: hidden;
	color:#fff;
}
div.ours2{
	width:100%;
	min-width:var(--min-width);
	background:url("../images/bg_ours2_sp.jpg") no-repeat center center;
	object-fit: cover;
	overflow: hidden;
	color:#fff;
	position: relative;
	padding-bottom: 20px;
}
div.recruit{
	width:100%;
	min-width:var(--min-width);
	height: 500px;
	background:url("../images/saiyo_photosample02_sp.jpg") center center no-repeat;
	object-fit: cover;
	overflow: hidden;
	position: relative;
}
div.productImage{
	width:100%;
	min-width:var(--min-width);
	height: 250px;
	object-fit: cover;
	overflow: hidden;
	color:#fff;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
div.productImage.image01{
	background-image:url("../images/img_photo.jpg");
}
div.productImage.image02{
	background-image:url("../images/img_photo02_sp.jpg");
}
div.productImage.image03{
	background-image:url("../images/img_photo03_sp.jpg");
}
div.productImage.image13{
	background-image:url("../images/img_photo03b_sp.jpg");
}
div.productImage.image04{
	background-image:url("../images/recruit.jpg");
	margin-bottom:80px;
}
div.productImage.image05{
	background-image:url("../images/recruit2_sp.jpg");
	margin-bottom:80px;
}
div.productImage.image06{
	background-image:url("../images/recruit3_sp.jpg");
	margin-bottom:80px;
}
div.productImage.image07{
	background-image:url("../images/bg_inquiry.jpg");
}
div.productImage.image08{
	background-image:url("../images/bg_privacy.jpg");
	margin-bottom:80px;
}
div.productImage.image09{
	background-image:url("../images/bg_sitemap.jpg");
}
div.productImage.image10{
	background-image:url("../images/bg_news.jpg");
}
div.productImage.image11{
	background-image:url("../images/bg_news2.jpg");
}
div.productImage.image12{
	background-image:url("../images/bg_entry.jpg");
}
div.productImage h2,
div.productImage span{
	color:#fff !important;
}

div.blue{
	width:100%;
	height: 100%;
	background:rgba(41,90,155,.55)
}
div.productImage div.blue > div{
	display:flex;
	align-items:center;
	width:var(--min-width);
	margin:auto;
	height:100%
}
div.blue > div h2{
	color:#fff;
}
h2.main.left{
	color:var(--main-color);
	text-indent: 0;
	padding: 10px 1em 0;
}
h2.main.left span{
	color:var(--main-color);
}
div.screen{
	width:100%;
	height: 500px;
	background:#fff;
	/*min-width:var(--min-width);*/
	position: absolute;
	top:0;
	left:0;
	z-index: 100;
}
div.screen2{
	width:100%;
	height: 500px;
	background:#fff;
	min-width:var(--min-width);
	position: absolute;
	top:0;
	right:0;
	z-index: 100;
}
div.screen.isActv,
div.screen2.isActv{
	width:0%;
	transition: width 0.5s ease-out;
}
div.brunch{
	width:100%;
	min-width:var(--min-width);
	height: 500px;
	background:url("../images/bg_brunch.jpg");
	object-fit: cover;
	overflow: hidden;
	color:#fff;
	position: relative;
}
div.ours2 h2,
div.recruit h2{
	color:#fff;
	text-align: center;
	margin-bottom:40px;
}
div.recruit h2{
	color:#000;
}
div.ours div.desc{
	margin:60px auto auto;
	text-align: center;
}
div.ours h2,
div.brunch h2{
	margin-bottom: 30px;
	color:#fff;
	text-align: center;
}
div.ours p{
	text-align: left;
	margin:10px;
}
div.ticker{
	width:400%;
	margin-top:60px;
	display: flex;
	gap:80px;
}
div.ticker img{
	width:1800px;
	height: auto;
}
div.ticker img:first-child {
  animation: loop 100s -50s linear infinite;
}

div.ticker img:last-child {
  animation: loop2 100s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
div.minwidth{
	width:var(--min-width);
	margin:45px auto 30px;
	/*overflow: hidden;*/
}
div.minwidth h3{
	padding-left:1em;
}
div.overInquiry{
	width:var(--min-width);
	background:rgba(255,255,255,0.8);
	padding:25px 0;
	margin:55px auto;
}
div.minwidth p{
	margin: 0 10px 10px;
}
div.entry{
	width:100%;
	marign:0 auto 0 !important;
	padding-top:10px;
	padding-bottom:50px;
}
h2.second,
h1.second,
p.second{
	color:var(--text-color);
	text-indent: 1em;
}
p.second{
	font-size:21px;
	font-weight: bold;
}
h2.second span,
h1.second span,
p.second span{
	font-size:18px;
	color:var(--skyblue-color);
	padding-left:37px;
}
h2.second + p,
h1.second + p,
p.second + p{
	margin:10px;
	margin-top:70px;
}
h3.second,
h2.second2,
p.h3{
	margin:10px 0;
	color:var(--blue-color);
	padding-left:1em;
	font-weight: bold;
}
div.minwidth div.left,
div.minwidth div.right{
	/*width:calc(var(--min-width) / 2);*/
	box-sizing: border-box;
}
div.minwidth div.left{
	float: left;
}
div.minwidth div.right{
	/*float: right;*/
}
div.minwidth div.right.end{
	margin-bottom:-20px;
}
div.minwidth div.inner80{
	padding:0 80px;
}
div.minwidth div.inner35{
	padding:0 13px;
}
h2.main,
h1.main{
	text-indent: 15px;
}
h2.main span,
h1.main span{
	display: block;
	font-size:14px;
	margin-top:10px;
	padding-left:10px;
	color:#fff;
	border-top:1px solid var(--main-color);
	
}

h2.main + p,
h1.main + p{
	display: block;
	padding:20px;
	color:#000
}
h2.main.noline span,
h1.main.noline span{
	border:none;
}
h2.main.center,
h1.main.center{
	text-align: center;
}
h3.main{
	margin-top:25px;
}
div.productWrapper {
	width:1280px;
	display: flex;
	justify-content: flex-start;
	gap:20px;	
	/*overflow: hidden;*/
	/*visibility: hidden;*/
	position: relative;
}
div.productWrapper.isActv{
	visibility: visible;
	/*transform:translateX(-380px);
	transition:transform 0.5s;
	transition-delay: 1s;*/
}
div.productWrapper.isActv div.product{
	transition: all 0.2s;
}
div.productWrapper.isActv div.product:nth-child(1){
	opacity: 1;
	transition-delay: 0.1s;
}
div.productWrapper.isActv div.product:nth-child(2){
	opacity: 1;
	transition-delay: 0.3s;
}
div.productWrapper.isActv div.product:nth-child(3){
	opacity: 1;
	transition-delay: 0.5s;
}
div.productWrapper.isActv div.product:nth-child(4){
	opacity: 1;
	transition-delay: 0.7s;
}
div.productWrapper.isActv div.product:nth-child(5){
	opacity: 1;
	transition-delay: 0.9s;
}

div.product{
	width:380px;
	height: 294px;
	border:1px solid var(--line-color);
	position: relative;
	/*opacity: 0;*/
	margin-right: 20px
}
div.product2{
	width:100%;
	display: flex;
	gap:16px;
	margin-bottom: 40px;
}
div.product2 img{
	width:100%;
	height: auto;
	opacity: 0;
	transition:all 0.2s;
}
div.product2.isActv img:nth-child(1){
	opacity: 1;
	transition-delay: 0.1s;
}
div.product2.isActv img:nth-child(2){
	opacity: 1;
	transition-delay: 0.3s;
}
div.product img{
	width:100%;
	height: 100%;
	object-fit:contain;
}
div.product p{
	width:calc(100% - 15px);
	height: 35px;
	line-height: 35px;
	color:#fff;
	background:var(--main-color);
	border:1px solid var(--main-color);
	text-align: right;
	padding-right: 15px;
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}
div.prevnext{
	width:100px;
	margin:50px 0 25px auto;
	float: right;
	display: flex;
	justify-content: flex-end;
	gap:10px;
}
div.productWrapper button{
	width:40px;
	height: 40px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size:40px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
	top:-60px;
	cursor: pointer;
}
a.moreProduct {
	height: 60px;
	line-height: 60px;
	display: block;
	background-color:#fff;
	background-image:url("../images/arrow_skyblue.svg");
	background-position: right 10px center;
	background-size:25px;
	background-repeat: no-repeat;
	border:3px solid var(--skyblue-color);
	margin:20px;
	border-radius: 4px;
	color:var(--main-color);
	text-align: center;
}
a.moreProduct:hover {
	background-color:var(--blue-color);
	color:#fff;
}

div.product2 {
	
}

ul.news {
	margin:10px;
	overflow: hidden;
}
ul.news li{
	margin-bottom:10px;
	border-bottom:1px solid #707070;
	padding-bottom:10px;
}
ul.news.border li{
	border-bottom:1px solid #707070;
	padding-bottom:10px;
}
ul.news li div.left{
	clear: both;
	float: none !important;
}
ul.news li div.right{
	float: none !important;
	width:100%;
}
ul.news span.date{
	font-size:12px;
	margin-right: 10px;
}
ul.news span.category{
	display: inline-block;
	width:38px;
	height: 18px;
	line-height: 18px;
	font-size:12px;
	color:#fff;
	background:var(--red-color);
	text-align: center;
}

a.moreNews {
	display: block;
	width:330px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	background:#fff;
	border: 3px solid var(--skyblue-color);
	margin:auto;
	color:var(--main-color);
	border-radius: 4px;
}
a.moreNews.mt180{
	margin-top:180px;
}
a.moreNews:hover {
	background-color:var(--blue-color);
	color:#fff;
}

a.toCompany {
	display: block;
	width:200px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	border:1px solid #fff;
	margin:60px auto auto;
	background:url("../images/arrow_white.svg") right 10px center no-repeat;
	color:#fff;
	border-radius: 4px;
}
a.toCompany:hover{
	background-color:var(--blue-color);
}
div.sustainability {
	width:100%;
	display: flex;
	justify-content: space-between;
	margin-top:65px;
}
div.sus{
	width:470px;
	height: 199px;
	position: relative;
}
div.sus img{
	width:100%;
	height: 100%;
	object-fit:cover;
}
div.sus p{
	width:410px;
	height: 50px;
	line-height: 50px;
	font-size:24px;
	background-color:rgba(255,255,255,0.65);
	background-image:url("../images/arrow_orange.svg");
	background-repeat: no-repeat;
	background-position:right 20px center;
	padding-right: 60px;
	position: absolute;
	bottom:0;
	left:0;
	text-align: right;
}

div.recruitLink {
	display:flex;
	justify-content: center;
	flex-direction: column;
	gap:10px;
	margin:auto;
	width:180px;
}
div.recruitLink a{
	display: block;
	width:180px;
	height: 40px;
	line-height: 40px;
	background-color:rgba(255,255,255,0.6);
	text-align: center;
	border-bottom-left-radius: 4px;
	margin-top:10px;
	font-size:16px;
	border:1px solid #ccc;
	border-radius: 4px;
	position: relative;
    background-repeat: no-repeat;
    background-image: url(../images/arrow_orange.svg);
    background-size: 11px;
    padding-right: 20px;
    background-position: right 10px center;
	font-weight: bold;
}
div.recruitLink a span{
    
}
div.recruitLink a:hover{
	background-color:rgba(255,255,255,1);
	color:var(--main-color);
}
div.linkWrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
div.linkWrapper a,
div.rec a{
	display: block;
	width:calc(100% - 40px);
	height: 60px;
	line-height: 60px;
	background-color:var(--skyblue-color);
	background-image:url("../images/arrow_white.svg");
	background-repeat: no-repeat;
	background-position: right 20px center;
	text-indent: 2em;
	border-radius: 4px;
	color:#fff;
	font-size:18px;
	font-weight: bold;
	position: relative;
	overflow: hidden;
	z-index: 0;
}
div.rec a{
	position: absolute;
	margin:auto;
	bottom:30px;
	left:0;
	right:0;
	border:4px solid #fff;
}
div.linkWrapper span{
	z-index: 1;
	display: block;
}
div.linkWrapper a:hover{
	background-color: var(--blue-color);
}
div.linkWrapper p{
	width:100%;
	height: 1.5em;
	text-align: center;
	font-size:16px;
	position: absolute;
	margin:auto;
	left:0;
	right:0;
	top:-60px;
	color:#fff;
	font-weight:bold;
}
div.footerWrapper{
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap:20px;
}
div#footer img{
	width:220px;
}
div#footer img+p{
	color:var(--main-color);
	margin:10px auto 20px;
	font-size:14px;
	text-align: left;
}
div.footerWrapper div.left{
	width:calc(100% - 25px);
	float: none !important;
	margin:auto;
}
div.footerWrapper div.right{
	width:calc(100% - 20px);
	float: none !important;
	margin:auto;
}
div.footerWrapper div.right > div{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:10px;
}
div.footerWrapper div.right div > div{
	width:calc(50% - 5px);
}
div.footerWrapper div.right > div div.wide{
	width:calc(50% - 5px);
}
div.mobileflex{
	width:100% !important;
}
div.footerWrapper h2,
div.footerWrapper p.h2{
	font-size: 16px;
	line-height: 2em;
}
div.footerWrapper ul{
	font-size:13px;
	line-height: 1.5em;
	margin-bottom:1em;
}
div.footerWrapper ul li{
	margin-bottom:7px
}
div.footerWrapper p.address{
    line-height: 1.5em;
}
div.footerWrapper h2 a,
div.footerWrapper p.h2 a{
    font-weight: normal;
    font-size:14px;
}
div.footerWrapper h2 strong,
div.footerWrapper p.h2 strong{
	font-weight: bold !important;
	font-size:16px;
	color:var(--bold-color) !important;
}
div.sns{
	margin:40px auto;
	width:250px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
}
p.copy{
	width:100%;
	min-width: var(--min-width);
	height: 40px;
	line-height: 40px;
	text-align: center;
	background:var(--gradation-blue);
	color:#fff;
	font-size:12px;
}

p#totop {
	background:url("../images/totop.svg") no-repeat center top;
	background-size:38px;
	width:38px;
	height: 38px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	position: fixed;
	bottom:10px;
	right: 10px;
	cursor: pointer;
	display: none;
}
p#totop:hover{
	background-position: center bottom;
}

div.topProductWrapper {
	width:100%;
	margin-top:50px;
	margin-bottom:50px;
}
div.topProduct{
	width:var(--contents-wide);
	height: 310px;
	position: relative;
	margin:10px;
}
div.topProduct img{
	width:100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top:0;
	left:0;
	z-index: 1
}
div.topProduct div.gray{
	width:100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(76,73,72,0.98) 0%, rgba(15,15,14,0.48) 100%);
}
div.topProduct div.gray:hover{
	background: linear-gradient(180deg, rgba(76,73,72,0.48) 0%, rgba(15,15,14,0.48) 100%);
	transition: all 0.25s;
}
h3.topProduct{
	color:#fff;
	font-size:18px;
	position: absolute;
	z-index: 3;
	top:30px;
	left:0;
	right:0;
	text-align: center;
	margin:auto;
}
p.topProduct{
	box-sizing: border-box;
	width:100%;
	/*height: 82px;*/
	background:var(--main-color);
	position: absolute;
	bottom:0;
	color:#fff;
	padding:10px;
	z-index: 5;
	line-height: 1.3em;
}
div.pankuzu{
	width:100%;
	min-width:var(--min-width);
	background:var(--gray-color);
	margin-top:var(--header-height);
	height: 5px;
}
p.pankuzu{
	line-height: 2em;
	display: flex;
	gap:10px;
	align-items: center;
	font-size:16px;
	width:var(--min-width);
	margin:auto 10px;
    overflow-x: auto;
    word-break: keep-all;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
p.pankuzu span.next{
	display: inline-block;
	width:10px;
	height: 10px;
	background:url("../images/arrow_black.svg") center center no-repeat;
	background-size:10px;
}
div.separate p,
div.separate a{
	color:#fff;
}
div.separate p.pankuzu span.next{
	background-image:url("../images/arrow_white2.svg");
}
div.separate {
	width:100%;
	height: 50px;
	background:var(--gradation-blue);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-height);
}
div.separate img{
	height: 22.5px;
	width:auto;
}
div.separate.recruit{
	height: 80px;
	background:var(--blue-color);
	color:#fff;
	font-weight: normal;
}
div.separate h3.recruit span.large{
	display: block;
	font-weight: bold;
	color:#fff;
	line-height: 1em;
}
div.separate h3.recruit span.small{
	display: block;
	font-size: 16px;
	font-weight: normal;
	color:#fff;
	line-height: 1em;
	margin-top:5px;
}
p.w700{
	width:700px;
}
ul.switch {
	display: flex;
	justify-content: space-between;
	gap:10px;
	margin:20px 10px 0;
}
ul.switch li{
	width:30%;
}
ul.switch li a{
	display: block;
	height:45px;
	text-align:center;
	line-height:45px;
	border:2px solid var(--blue-color);
	background:#F7F8FA;
	border-radius: 11px;
	color:var(--text-color);
	font-weight:bold;
}
ul.switch li a:hover{
	background:#ADD8E6;
	color:var(--text-color);
}
dl.company{
	width:calc(100% - 20px);
	margin: 10px 10px 20px;
	border-left:1px solid #c0c0c0;
	border-right:1px solid #c0c0c0;
	border-bottom:1px solid #c0c0c0;
}
dl.company dt,
dl.company dd{
	box-sizing: border-box;
	padding:10px;
	border-top:1px solid #c0c0c0;
}

dl.company dt{
	background:#f0f0f0;
	border-right: 1px solid #c0c0c0;
	color:var(--main-color);
	font-weight: bold;
}
dl.company dd{
}
dl.inquiry{
	width:calc(var(--min-width) - 20px);
	display: flex;
	flex-wrap: wrap;
	border-bottom:1px solid #c0c0c0;
	margin:20px 10px;
}
dl.inquiry > dt,
dl.inquiry > dd{
	box-sizing: border-box;
	padding:10px;
	border-top:1px solid #c0c0c0;
}

dl.inquiry >dt{
	width:100%;
	background:var(--inquiry-color);
	font-weight: bold;
	position: relative;
	color:#333;
	padding-left:20px;
}
dl.inquiry > dt::before{
	content: "";
	width:4px;
	height: 30px;
	background:var(--blue-color);
	position: absolute;
	left:5px;
}
dl.inquiry > dt.must::after{
	content: "必須";
	font-size:14px;
	padding:0px 8px;
	background-color:var(--must-color);
	color:#fff;
	border-radius: 4px;
	display: inline-block;
	font-weight: normal;
	position: absolute;
	right:20px;
}
dl.inquiry > dd{
	width:540px;
}
dl.inquiry input[type=text],
dl.inquiry input[type=tel],
dl.inquiry input[type=email],
dl.inquiry select,
dl.inquiry textarea{
	border:1px solid #bcbcbc;
	font-size:16px;
	padding:20px 10px;
	border-radius: 8px;
	width:100%;
	box-sizing: border-box;
}
dl.inquiry select{
	width:200px;
	cursor: pointer;
	background:url("../images/arrow_select.svg") right 10px center no-repeat;
	background-size:10px;
	padding:5px 10px !important;
}
dl.inquiry div.two{
	display: flex;
	gap:10px;
}
dl.inquiry div.two input{
	width:calc(50%)
}
dl.inquiry textarea{
	height: 200px;
}
dl.inquiry .formFlex{
	display: flex;
	gap:10px;
	align-items: center;
}
dl.inquiry input.short{
	width:5em;
}
dl.inquiry select.short{
	width:4em;
}
select:disabled,
input:disabled{
	background:#ccc;
	cursor: not-allowed;
}
dl.inquiry dl.child{
	overflow: hidden;
}
dl.inquiry dl.child dt,
dl.inquiry dl.child dd{

}
dl.inquiry dl.child dt{
	width:1.5em;
	float: left;
	clear: both;
}
dl.child.wide dt{
	width:4em !important;
}
dl.child.wide dd{
	width:calc(100% - 4em) !important;
	float: right;
}
dl.inquiry dl.child dd,
dl.inquiry dl.child dd label{
	width:calc(100% - 1.5em);
	float: right;
	cursor:pointer;
}
.mt10{
	margin-top:10px;
}
h3.main{
	text-align: center;
	border-bottom: 1px solid var(--skyblue-color);
	padding-bottom:1em;
	margin-top:40px;
	margin-bottom: 30px;
}
div.access{
	display: flex;
	flex-direction: column;
	gap:10px;
	margin:10px;
}
div.accessLeft{
}
div.accessRight{
}
div.accessRight img{
	width:100%;
	height: auto;
}
div.map{
	width:100%;
	min-width: var(--min-width);
	height: 550px;
}
a.dark{
	display: block;
	width:590px;
	height: 80px;
	background-color:var(--main-color);
	color:#fff;
	font-size:24px;
	font-weight: bold;
	line-height: 80px;
	text-align: center;
	margin:100px auto;
	border-radius: 4px;
	background-image:url("../images/arrow_white.svg");
	background-position: right 30px bottom 30px;
	background-repeat: no-repeat;
}
a.dark:hover{
	background-color:var(--skyblue-color);
}
div.para {
    width: 100%;
    min-width: var(--min-width);
    height: 200px;
    background-color: transparent;
}
div.worksWrapper {
	width:100%;
	display: flex;
	justify-content: flex-start;
	gap:10px;
	flex-wrap: wrap;
	margin-top:30px;
}
div.works{
	width:320px;
	height: 340px;
	border:1px solid #707070;
	position: relative;
	margin:auto;
}
div.works.mini {
    height: 280px;
}
div.works.big {
    /*height: 340px;*/
}
div.worksWrapper a{
	display: block;
	margin:auto;
}
div.works img{
	position: absolute;
	left:0;
	right:0;
	top:0;
	margin:auto;
	width:320px;
	height: 280px;
	object-fit: cover;
}
div.works p{
	display: flex;
	justify-content: center;
	align-items: center;
	background:var(--main-color);
	color:#fff;
	position: absolute;
	bottom:0;
	width:100%;
	height: 60px;
	line-height: 1.5em;
	box-sizing: border-box;
	margin:0;
	padding:0 10px;
}

div.toProduct {
	width:320px;
	height: 40px;
	border:2px solid var(--skyblue-color);
	border-radius: 5px;
	margin:20px auto 60px;
}
div.toProduct span{
	line-height: 40px;
	display: inline-block;
}
div.toProduct span:first-child{
	background:var(--skyblue-color);
	color:#fff;
	width:100px;
	text-align: center;
	position: relative;
}
div.toProduct span:first-child::after{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 0 20px 12px;
	border-color: transparent transparent transparent var(--skyblue-color);
	position: absolute;
	right:-12px;
}
div.toProduct span:last-child{
	width:calc(320px - 100px);
	text-indent:40px;
	/*background:url("../images/arrow_skyblue.svg") right 20px center no-repeat;
	background-size:20px;*/
}
a:hover div.toProduct span:last-child{
	background-color:#E0F4FB;
	color:var(--main-color);
}
p.mailInfo{
	box-sizing: border-box;
	width:calc(100% - 20px);
	padding:10px;
	background:#eff6f8;
	border-radius: 16px;
	margin-bottom: 30px !important;
}
p.mailInfo strong{
	font-weight: bold;
}
p.mailInfo span{
	font-size:24px;
}
ul.mail{
	margin-top:20px;
}
ul.mail li{
	padding-left:2em;
	margin-left:1em;
	text-indent: -1em;
	margin-right: 10px;
}
ul.mail li::before{
	content:"＊"
}
div.submit{
	display: flex;
	justify-content: center;
	gap:20px;
	margin:30px auto 60px;
}
div.submit input[type=submit],
div.submit input[type=button]{
	width:340px;
	height: 60px;
	border-radius: 8px;
	cursor:pointer;
}
div.submit input[type=submit]{
	background-color:var(--blue-color);
	color:#fff;
}
div.submit input[type=submit]:hover{
	background-color:var(--main-color);
}
div.submit input[type=button]{
	background-color:#ccc;
	color:#333;
}
div.submit input[type=button]:hover{
	background-color:#999;
	color:#fff;
}
.mb90{
	margin-bottom:90px;
}
h4.pp{
	border-bottom:1px solid var(--blue-color);
	position: relative;
	padding-bottom:10px;
	margin-bottom:50px;
	margin-left:10px;
	padding-left:20px;
}
h4.pp::before{
	content: "";
	width:4px;
	height: 30px;
	background:var(--blue-color);
	position: absolute;
	left:0;
}
h4.pp + p,
h4.pp + ol{	
	margin-left:50px;
	margin-bottom:50px;
	margin-right: 20px;
}
ul.sitemap {
	margin:10px;
}
ul.sitemap > li{
	font-size:18px;
	font-weight:bold;
	position: relative;
	padding-left:20px;
	margin-top:20px;
}
ul.sitemap > li::before{
	content:"";
	background:var(--blue-color);
	width:4px;
	height: 20px;
	position: absolute;
	margin:auto;
	top:5px;
	left:0;
}
ul.child{
	margin-left:10px;
	margin-top:10px;
}
ul.child > li{
	font-size:16px;
	position: relative;
	font-weight: normal;
	padding-left:30px;
}
ul.child > li::before{
	content: "";
	background:var(--blue-color);
	width:12px;
	height: 12px;
	position: absolute;
	top:10px;
	left:0;
	margin:auto;
}
ul.grandchild{
	margin-top:20px;
	margin-bottom:30px;
	
}
ul.grandchild li{
	font-size: 16px;
	position: relative;
	font-weight:normal;
	padding-left:25px;
}
ul.grandchild li::before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 12px;
	border-color: transparent transparent transparent var(--skyblue-color);
	position: absolute;
	top:10px;
	left:0;
	margin:auto;
}

h3.products {
	border-bottom:1px solid var(--main-color);
	position: relative;
	padding-left:28px;
	padding-bottom:5px;
	margin:auto 10px 20px;
}
h3.products::before{
	content: "";
	width:6px;
	height: 23px;
	background:var(--blue-color);
	position: absolute;
	margin:auto;
	left:0;
	bottom:0;
	top:0;
}
p.model{	
	font-size:24px;
	font-weight: bold;
}
div.feature{
	margin:30px auto;

}
div.feature ul,
div.feature ol{
	margin-left:30px;
}
div.feature ul li{	
	list-style: disc;
}
div.feature p{
	margin:10px;
	text-align: justify;
}
div.feature img{
	max-width: calc(100% - 20px);
	height: auto;
	display: block;
	margin:10px auto;
}
div.productSlide{
	width:320px;
	height: 282px;
	margin:50px auto ;
}
div.productSlide img{
	width:320px;
	height: 282px;
	object-fit: cover;
}
div.slidemin.col1{
    width:320px;
    height: 282px;
    margin:auto auto 50px;
}
div.slidemin.col1 img{
    width:320px;
    height: 282px;
    object-fit: cover;
	margin:0;
}
div.slidemin img{
	border:1px solid #cfcfcf;
}
div.colum2 {
	margin:0 auto 20px;
	display: flex;
	flex-direction: column;
	gap:20px;
	justify-content: space-between;
}
div.colum2.end{
	align-items: end;
	
}
div.colum2 table,
table.col1{
	width:calc(100% - 20px);
	margin:auto;
	margin-top:21px;
}
table.col1.wide{
	width:calc(100% - 20px);
	margin:10px auto;
}
table.col1{
    margin:30px auto;
}
div.colum2 td,
table.col1 td{
	border:1px solid #cfcfcf;
	padding:10px 20px;
	box-sizing: border-box;
	width:50%;
}
div.colum2 table tr:nth-child(2n+1),
table.col1 tr:nth-child(2n+1){
	background:#f9f9f9;
}
div.colum2 table tr:nth-child(2n),
table.col1 tr:nth-child(2n){
	background:#fff;
}


div.catalog {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:10px;
	align-items: center;
	margin:20px auto;
	border-top:1px solid #707070;
	padding-top:20px;
}
div.catalog img{
	width:50%;
	height: auto;
}
div.catalog a.download{
	width:280px;
	height: 54px;
	border:1px solid var(--main-color);
	background-color:var(--blue-color);
	line-height: 54px;
	text-align: left;
	color:#fff;
	border-radius: 5px;
	text-indent: 22px;
	font-size:17px;
	font-weight: bold;
	background-image:url("../images/icon_download.svg");
	background-position: right 20px center;
	background-repeat: no-repeat;
}
div.catalog a.download:hover{
	background-color:var(--main-color);
}
input[type=radio]{
    width:16px;
    height:16px;
    border:2px solid var(--blue-color);
    border-radius: 16px;
    cursor: pointer;
}
input[type=radio]:checked{
    background:var(--blue-color);
}
input[type=radio] + label{
    padding-left:10px;
    padding-right: 30px;
    cursor: pointer;
}
h4.feature,
h2.feature{
	margin-top:30px;
	margin-left: 10px;
}
h2.feature{
	font-size:17px;
}
div.archive{
	border-bottom:1px solid var(--blue-color);
	padding-bottom: 65px;
}
div.archive select{
	width:120px;
	height: 40px;
	border:1px solid var(--blue-color);
	border-radius: 50px;
	text-align: center !important;
	background:url("../images/arrow_select.svg") right 10px center no-repeat;
	background-size:15px;
	margin-left:20px;
	text-indent: 10px;
}
div.archive select option{
	text-align: center;
}
h3.blog{
	border-bottom:1px solid var(--blue-color);
	color:var(--blue-color);
	padding:0 1em 10px 1em;
}
p.blogDate{
	text-align: right;
	margin-right: 10px;
}
div.entryBody{
	margin:10px;
}
div.entryBody ul,
div.entryBody ol{
	margin:10px;
}
div.entryBody ul li,
div.entryBody ol li{
	margin-left:20px;
}
div.entryBody ul li{
	list-style: disc;
}
div.entryBody img{
	max-width:100%;
	height: auto;
}
div.entryBody p{
	margin:10px 0;
	text-align: justify;
}
div.entryBody strong{
	font-weight: bold;
}
div.entryBody blockquote{
	padding:10px 20px;
	background:#efefef;
}
div.entryBody em{
	font-style:italic;
}
.aligncenter{
	margin:auto;
}
p.wp-caption-text{
	font-size:12px;
	text-align: center !important;
}
p.productInfo {
    background:#F9F9F9;
    padding:2.4% 6.15%;
    border-radius: 10px;
    max-width:96%;
    margin:auto;
}