body.topimage{
	background:url("../images/top_bg.jpg") 50% 50% no-repeat;
	width:100%;
    /*height: 100vh;*/
    background-size:cover;
    background-attachment: fixed;
    min-width: var(--min-width);
}
.mobile{
	display: none !important;
}
.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;
}

.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;
}
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 img{
	width:262px;
	height: auto;
	/*position: absolute;
	top:0;
	bottom:0;
	left:20px;*/
	margin:auto;
	display: block;
}
div#header div.h1wrapper{
	display: flex;
	justify-content: flex-start;
	flex-direction: row;
	gap:20px;
	align-items: baseline;
	margin-top:15px;
}
div#header div.h1wrapper p.top{
	color:var(--blue-color);
	font-size:18px;
}
div#header div.h1wrapper p.safety{
	color:var(--blue-color);
	font-size:22px;
	font-weight: bold;
	font-family: noto sans;
}
div#header div.h1wrapper p.safety span{
	color:var(--red-color);
}
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;
	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:190px;
	height: 27px;
	font-size:14px;
	text-align: center;
	line-height: 27px;
	border-radius: 26px;
}
div.headerLink a.contact:hover{
	background-color:var(--lightblue-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{
	display: flex;
	justify-content: flex-end;
	gap:30px;
	position: absolute;
	right:100px;
	bottom:15px;
}
ul.nav > li:hover > div.subMenuWrapper0{
	visibility: visible;
	opacity: 1;
	transition: all 0.2s;
}
ul.nav > li{
	position: relative;
}
ul.nav > li::after{
	content: "";
	position: absolute;
	width:0;
	height: 2px;
	background:var(--main-color);
	margin:auto;
	left:0;
	right:0;
	bottom:-10px;
	transition:all 0.2s;
}
ul.nav > li:hover::after,
ul.nav > li.active::after{
	width:100%;
	transition:all 0.2s;
}
div.subMenuWrapper0{
	width:100vw;
	min-width: var(--min-width);
	height: 300px;
	position: fixed;
	top:76px;
	right:0;
	left:0;
	margin:auto;
	padding-top:16px;
	visibility: hidden;
	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: 180px;
	padding:60px 0;
	overflow: hidden;
	gap:160px;
	position: relative;
}
div.subMenu div.left,
div.subMenu div.right{
	height: 180px;
}
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;
	flex-wrap: wrap;
}
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(--skyblue-color);
	background-image:url("../images/stair_bg.svg") ;
	background-position:center bottom -50px;
	background-repeat:no-repeat;
	background-size:cover
}
div.top {
	width:100%;
	height: calc(100vh - 186px);
	margin-top:92px;
	background-image:url("../images/stair_bg.svg");
	background-color:var(--skyblue-color);
	background-repeat: no-repeat;
	/*background-size:contain;*/
	background-size:auto 80vh;
	background-position: center bottom;
}
div.slides{
	width:100%;
	height: calc(100vh - 186px);
	/*margin-top:var(--header-height);*/
	position: relative;
	display: flex !important;
	flex-direction:column;
	justify-content: center;
	align-items: center;
	/*background:red;*/
}
div.center{
	width:100%;
	max-width:var(--max-width);
	display: flex;
	justify-content: center;
	align-items:flex-start;
	gap:20px;
	margin:auto;
	/*background:blue;*/
}
div.center div.left{
	/*width:calc(70% - 20px);*/
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	text-align: right;
	overflow: hidden;
}
div.center div.left img{
	/*width:80%;*/
	width:min(800px,60vh);
	height: 50vh;
	object-fit: cover;
	border-radius: 15px;
}
div.center div.right{
	/*width:calc(30% - 20px);*/
	/*display: flex;
	flex-direction: column;
	gap:20px;*/
	min-width:420px;
}
div.center div.right img{
	width:100%;
	max-width:330px;
	border-radius: 15px;
	margin-bottom:30px;
	margin-top:22px;
}
div.center div.right h2{
	font-size: 30px;
	color:var(--blue-color);
	font-weight: normal;
	margin-top:60px;
	margin-bottom:20px;
	margin-left:20px;
}
div.center div.right p{
	margin-left:20px;
}
div.slides div.left{
	
}
/*slick*/
ul.slick-dots {
	width: 13px;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap:20px;
	position: absolute;
	top:0;
	bottom:0;
	left:20px;
	margin:auto;
}
ul.slick-dots li {
	text-indent: -9999px;
	display: inline-block;
	width: 13px;
	height: 13px;
	background-color: #fff;
	border-radius: 13px;
	cursor: pointer;
}
li.slick-active {
	background-color: var(--main-color) !important;
}
/*end of slick*/
div.fullLogo {
	width:100%;
	min-width:var(--min-width);
	height: 94px;
	display: flex;
	justify-content: center;
	align-items: center;
	background:var(--gradation-blue);
	gap:55px;
	position: fixed;
	bottom:0;
	z-index: 100;
}
a.rental0{
	color:#fff;
	font-size:28px;
	font-weight: bold;
	padding:2px 60px;
	border:1px solid #fff;
}
a.rental0:hover{
	background:#fff;
	color:var(--blue-color);
}
span.rental{
	color:#fff;
	font-size:28px;
	font-weight: bold;
	padding:2px 60px;
	border:1px solid #fff;
}
a.rental{
	background:url("../images/icon_mail.svg") left center no-repeat;
	background-size:37px;
	line-height: 40px;
	padding-left:70px;
	color:#fff;
}
div.fullLogo img{
	width:540px;
	height: auto;
}
div.fullLogo a{
	color:#fff;
}


div.ours2 h2{
	color:#fff;
	text-align: center;
	margin-bottom:40px;
}
div.ours div.desc{
	width:420px;
	margin:100px auto auto;
	text-align: center;
}
div.minwidth{
	width:var(--min-width);
	margin:100px auto;
	/*overflow: hidden;*/
}
div.minwidth.white{
	background:#fff;
	padding:50px;
	border-radius: 22px;
	margin-bottom:200px;
}
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.inner80{
	padding:0 80px;
}
h2.main{
	font-size:32px;
}
h2.main span{
	display: block;
	font-size:18px;
	margin-top:10px;
	padding-left:20px;
	border-top:1px solid var(--main-color);
}

h2.main + p{
	display: block;
	margin-top:30px;
	padding:20px;
	color:#000

}
h2.main.noline span{
	border:none;
}
h2.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;
	cursor: pointer;
}
button.slick-prev,
button.slick-next{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width:52px;
    height: 52px;
    background-size:52px;
    cursor: pointer;
    position: absolute;
}
button.slick-prev{
	background-image:url("../images/arrow001.png");
	left:-100px;
	top:50%;
}
button.slick-next{
	background-image:url("../images/arrow002.png");
	right:-100px;
	top:50%;
}
a.moreProduct {
	width:200px;
	height: 54px;
	line-height: 54px;
	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:70px auto 120px 0;
	border-radius: 4px;
	color:var(--main-color);
	text-indent: 1em;
}
a.moreProduct:hover {
	background-color:var(--blue-color);
	color:#fff;
}

div.product2 {
	
}

ul.news {
	margin:40px;
}
ul.news li{
	display: flex;
	justify-content: flex-start;
	gap:25px;
	margin-bottom:20px;
}
ul.news li div.left{
	display: flex;
	justify-content: flex-start;
	gap:25px;
	width:160px;
}
ul.news li div.right{
	width:calc(100% - 225px)
}
ul.news span.date{
	font-size:12px;
}
ul.news span.category{
	width:100px;
	height: 24px;
	line-height: 24px;
	font-size:12px;
	color:#fff;
	text-align: center;
	background:var(--lightblue-color);
	border-radius: 4px;
}
ul.news span.category.new{
	background:var(--red-color);
}
ul.news span.category.notice{
}
ul.news span.category.class{
	background:var(--green-color);
}
ul.news span.category.exhibition{
	background:var(--orange-color);
}
a.moreNews {
	display: block;
	width:330px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	background:var(--blue-color);
	margin:auto;
	color:#fff;
	border-radius: 4px;
}
a.moreNews:hover {
	background-color:var(--lightblue-color);
}


div#footerWrapper{
	width:100%;
	min-width: var(--min-width);
	padding:55px 0 110px;
	background:#fff;
}
@media(max-width:1350px){
	div.navWrapper,
	div.headerLink{
		display:none;
	}
}
/*div.navWrapper{
	width:100%;
	min-width: var(--min-width);
	padding:55px 50px 110px;
	background:#fff;
	

}
div.navWrapper.active{
	display: block;
}*/
div.navMenu{
	display: none;
	padding:50px;
	position: fixed;
	top:var(--header-height);
	z-index: 10;
	width:100%;
	background:var(--skyblue-color);
	box-sizing: border-box;
	box-shadow: 0 3px 12px rgba(0,0,0,0.35);
}
div#footer{
	width:var(--min-width);;
	margin:auto;
}
div.footerLinkWrapper{
	width:100%;
	display: flex;
	justify-content: space-between;
	gap:20px;
}
div.footerLink{
	width:calc(25% - 20px);
}
div.footerLink.mt{
	margin-top:calc(16px + 16px);
}
div.footerLink h2{
	font-size:16px;
	margin-bottom:1em;
}
div.footerLink ul{
	font-size:14px;
	line-height: 2em;
	margin-bottom:20px;
}
div.footerLink ul li.lh15{
	line-height:1.4em;
}
div.footerLink ul.list li{
	list-style: disc;
	margin-left:20px;
}
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: 90px;
	line-height: 90px;
	text-align: center;
	font-size:16px;
	color:var(--blue-color);
}

p#totop {
	background:url("../images/totop.svg") no-repeat center top;
	background-size:48px;
	width:48px;
	height: 48px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	position: fixed;
	bottom:23px;
	right: 23px;
	cursor: pointer;
	display: none;
	z-index: 200;
}
p#totop:hover{
	background-position: center bottom;
}
ul.lang{
	width:130px;
	display: flex;
	justify-content:space-between;
	gap:10px;
	margin-top:7px;
}
ul.lang img{
	width:25px;
	height: auto;
}
ul.lang img:hover{
	opacity: 0.7;
}
div.contentsWrapper {
	width:100%;
	min-width: var(--min-width);
	overflow: hidden;
	background-color:#fff;
}
h2.logo{
	text-align: center;
	margin:90px auto 55px;
}
h2.logo img{
	width:255px;
	height: auto;
}
p.sns{
	text-align: center;
}
div.qr{
	margin:130px auto;
	display: flex;
	justify-content: center;
	gap:37px
}
div.qr img{
	width:198px;
	height: 198px;
}
div.contentsWrapper.blue{
	background-color:var(--skyblue-color) !important;
}

div.contents {
	width:var(--min-width);
	margin:auto;
}
h2.contents{
	padding-top:60px;
	margin:0 auto 60px;
	font-weight: normal;
	text-align: center;
	font-size:28px;
	color:var(--blue-color);
	background:url("../images/arrow_down.svg") #fff center bottom 0 no-repeat;
	background-size:67px;
	padding-bottom:40px;
}
div.col2,div.col3{
	display: flex;
	justify-content: space-between;
	gap:20px;
}

/*div.col3 div.purpose{
	width:calc(33% - 20px);
}*/
div.purposeWrapper{
	margin-bottom:110px;
}
div.purpose{
	border:8px solid var(--purpose-color);
	box-sizing: border-box;
	padding:8px;
	border-radius: 14px;
	width:100%;
	display: flex;
	align-items: center;
}
div.purpose:hover{
	background-color:#e7f2f8;
}
div.purpose div{
	text-align: center;
	width:100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	color:var(--blue-color);
}
div.purpose img{
	border-radius: 8px;
}
div.col2 img{
	width:184px;
	height: 125px;
	object-fit: cover;
}
div.col3 img{
	width:152px;
	height: 125px;
	object-fit: cover;
}
div.purposeWrapper a{
	display: block;
	width:50%;
	margin-bottom:20px;
}
div.purpose h3{
	font-weight: normal;
	color:var(--blue-color);
	margin-bottom: 7px;
}
div.purpose div p{
	background:url("../images/arrow_down_pink.svg") center bottom  no-repeat;
	background-size:18px;
	padding-bottom:18px;
}
div.h3wrapper{
	width:100%;
	max-width:var(--max-width);
	height: 114px;
	background-size:var(--max-width) 114px;
	background-repeat: no-repeat;
	background-position: center center;
	margin:60px auto 150px;
	display: flex;
	flex-direction: column;
}
div.h3wrapper div{
	width:100%;
	max-width:var(--min-width);
	margin:auto;
}
div.h3wrapper div h3{
	color:var(--blue-color);
	border-bottom:1px solid var(--blue-color);
	padding-left:40px;
	font-size:30px;
}
div.h3wrapper span{
	font-weight: normal;
	font-size:18px;
	color:var(--blue-color);
	padding-left:40px;
	display: block;
	padding-top:5px;
}
div.h3wrapper.right{
	background-image:url("../images/stair_right.svg") ;
	position: relative;
	transform:translateX(var(--max-width));
	transition: all 0.5s;
}
div.h3wrapper.right.isActv{
	transform:translateX(0);
	transition: all 0.5s;
}
div.h3wrapper.left{
	background-image:url("../images/stair_left.svg") ;
	transform:translateX(calc(-1 * var(--max-width)));
	transition: all 0.5s;
}
div.h3wrapper.left.isActv{
	transform:translateX(0);
	transition: all 0.5s;
}
div.productPhoto{
	width:var(--min-width);
	margin:auto;
	display: flex;
	justify-content: space-between;
	gap:20px;
}
div.productPhoto img{
	border:1px solid #c0c0c0;
}

div.productPhoto a img:hover{
	opacity: 0.8;
}
div.productPhoto div{
	display: flex;
	flex-direction: column;
	gap:20px;
}
div.productPhoto div p{
	padding-left:20px;
}
a.productMore{
	float: right;
	width:428px;
	height: 54px;
	line-height: 54px;
	margin:70px 0 110px auto;
	background-color:var(--lightblue-color);
	color:#fff;
	font-size:17px;
	background-image:url("../images/arrow_white.svg");
	background-size:20px;
	background-position:right 20px center;
	background-repeat: no-repeat;
	border-radius: 5px;
	text-indent:40px;
}
.mt100{
	margin-top:100px !important;
}
a.productMore:hover{
	background-color:var(--blue-color);
	color:#fff;
}
div.para {
	width:100%;
	min-width:var(--min-width);
	height: 440px;
	background-color:transparent;
}
div.inquiryWrapper {
	width:100%;
	min-width: var(--min-width);
	height: 380px;
	background-image:var(--gradation-blue);
}
div.inquiry{
	width:var(--min-width);
	margin:auto;
	height: 380px;
	background-image:url("../images/logo_trans.svg");
	background-size:720px;
	background-repeat:no-repeat;
	background-position: right bottom;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap:37px;
}
div.inquiry p{
	text-align: center;
	color:#fff;
}
a.white{
	display: block;
	width:450px;
	height: 80px;
	line-height: 80px;
	border:1px solid #fff;
	border-radius: 8px;
	color:#fff;
	font-size:32px;
	font-weight: bold;
	text-indent: 40px;
	background:url("../images/arrow_white.svg") right 20px center no-repeat;
	background-size:26px;
}
a.white:hover{
	background-color:var(--blue-color);
}
ul.follow {
	font-size:18px;
	font-weight: bold;
	color:#1E70DB;
	display: flex;
	justify-content: center;
	gap:10px;
	align-items:center;
}
ul.follow li:first-child{
	margin-right: 25px;
}
ul.follow img{
	width:35px;
	height: auto;
}
ul.follow img:hover{
	opacity: 0.8;
}
p.purpose{
	width:var(--min-width);
	font-size:30px;
	font-weight: bold;
	clear: both;
	margin:115px auto;
	color:var(--blue-color);
	border-bottom:1px solid var(--blue-color);
	background:url("../images/icon_purpose.svg") left 34px center no-repeat;
	background-size:22px;
	text-indent: 84px;
}


div.second {
	width:100%;
	height: 390px;
	margin-top:92px;
	background-image:url("../images/stair_bg2.svg");
	background-color:var(--skyblue-color);
	background-repeat: no-repeat;
	/*background-size:contain;*/
	background-size:cover;
	background-position: center top;
}
div.h2{
	width:var(--min-width);
	height: 390px;
	margin:auto;
	display: flex;
	align-items:center;
}
div.h2 h2,
div.h2 img{
	width:calc(50% - 25px);
}
div.h2 span.h2{
	display: block;
	text-align: center;
	font-size:32px;
	color:var(--blue-color)
}
div.h2 span.desc{
	display: block;
	font-size:18px;
	line-height: 1.5em !important;
	font-weight: normal;
	color:var(--blue-color);
	width:340px;
	margin:20px auto;
}
div.h2 span.cat{
	display: block;
	text-align: center;
	font-size:24px;

	color:var(--blue-color);
	width:340px;
	margin:20px auto;
}
div.h2 img{
	border-radius: 15px;
}
div.secondContentsWrapper{
	width:100%;
	background:var(--second-color);
	overflow: hidden;
}
div.secondContents{
	width:calc(100% - 50px);
	max-width:calc(var(--max-width) - 50px);
	min-width:calc(var(--min-width) + 50px);
	margin:auto auto 200px;
	background:#fff;
	border-radius: 43px;
	overflow: hidden;
}
p.pankuzu{
	width:var(--min-width);
	margin:40px auto 20px;
	display: flex;
	gap:20px;
	align-items: center;
}
p.pankuzu span.next{
	background:url("../images/next.svg") center center no-repeat;
	width:10px;
	height: 10px;
	display: inline-block;
	
}
h2.second{
	color:var(--blue-color);
	font-size:32px;
	margin:100px auto 90px;
	text-align: center
}
ul.contentsSwitch{
	display: flex;
	gap:20px;
	justify-content: center;
	margin-bottom:233px;
	position: relative;
}
ul.information{
	padding-bottom:60px;
	width:var(--min-width);
	margin-left:auto;
	margin-right:auto;
	margin-bottom:50px;
}
ul.contentsSwitch li{
	width:180px;
	height: 53px;
	text-align: center;
	line-height: 53px;
	border:2px solid var(--main-color);
	border-radius: 11px;
	font-weight: bold;
}
ul.contentsSwitch li a{
	display: block;
	color:var(--main-color);
	width:100%;
	height: 100%;
}
ul.contentsSwitch li.active,
ul.contentsSwitch li:hover{
	background-color:#E3F1F9;
}
h3.second{
	color:var(--main-color);
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	width:var(--min-width);
	margin:auto;
	position: relative;
	padding-bottom:60px;
	margin-bottom:104px;
}
h3.second span{
    display: block;
    font-size:20px;
    font-weight: normal;
}
h3.second.left{
	text-align: left;
	text-indent: 30px;
	font-size:20px;
	padding-bottom:18px;
	color:var(--main-color);
	margin-bottom:54px;
}
h3.second::before,
ul.information::before{
	content: "";
	width:317px;
	height: 5px;
	background: #0573E4;
	position: absolute;
	bottom:0;
	left:0;
}
h3.second::after,
ul.information::after{
	content: "";
	width:calc(100% - 317px);
	height: 5px;
	background: #C8DEF3;
	position: absolute;
	bottom:0;
	right:0;
}
h4.tech{
	width:980px;
	line-height: 58px;
	font-size:24px;
	font-weight: bold;
	color:var(--main-color);
	background:var(--purpose-color);
	border-radius: 58px;
	box-sizing: border-box;
	padding-left:29px;
	margin:auto auto 80px;
}
h5.tech{
	width:980px;
	font-size:20px;
	font-weight: bold;
	color:var(--main-color);
	box-sizing: border-box;
	padding-left:40px;
	padding-bottom:23px;
	margin:auto auto 46px;
	background:url("../images/h2_second_bg.svg") left top 3px no-repeat;
	background-size:18px;
	border-bottom:1px solid var(--main-color);
}
p.tech{
	width:890px;
	margin:auto auto 90px;
}
p.greeting.strong{
	font-size:22px;
	font-weight: bold;
	color:var(--main-color);
	text-align: center;
	margin-bottom:75px
}
p.greeting{
	width:570px;
	margin:auto;
	line-height: 2em;
}
div.ceo{
	width:730px;
	margin:84px auto 160px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	gap:40px;
	align-items: center;
	margin-top:140px;
}
div.ceo img{
	width:360px;
	height: auto;
}
p.ceo{
	width:181px;
	float: right;
	text-align: center;
}
p.ceo span{
	background:url("../images/ceo_sign.svg") center center no-repeat;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	display: block;
	width:100%;
	height: 60px;
}
img.ceo{
	width:var(--min-width);
	display: block;
	margin:175px auto 130px;
	clear: both;
}
dl.company{
	width:980px;
	margin:auto;
	border-top:1px solid #707070;
	display: flex;
	padding:4px 0;
}
dl.company.last{
	border-bottom:1px solid #707070;
	margin-bottom:137px;
}
dl.company dt,
dl.company dd{
	padding:20px 50px;
	box-sizing: border-box;
}
dl.company dt{
	width:30%;
	background:#E7F2F8;
}
dl.company dd{
	width:70%;
}
div.company2{
	margin:auto 75px 75px;
	overflow: hidden;
}
div.company2 img.left{
	float: left;
	margin-bottom:20px;
}
div.company2 img.right{
	float: right;
}
div.fullimage{
	margin-bottom:280px;
}
div.fullimage img{
	width:100%;
	background-size:cover;
}
ol.idea{
	width:640px;
	margin:auto auto 100px;
}
ol.idea li{
	font-size:20px;
	color:var(--main-color);
	margin-bottom:20px;
	font-weight: bold;
}
ol.idea li span{
	font-weight: normal;
}
h4.access{
	width:calc(var(--min-width) - 50px);
	margin:auto;
	border-bottom: 1px solid var(--blue-color);
	padding-bottom:18px;
	margin-bottom: 48px;
	position: relative;
}
h4.access::after{
	content: "";
	width:320px;
	height: 3px;
	background:var(--main-color);
	position: absolute;
	left:0;
	bottom:0;
}

dl.access{
	width:calc(var(--min-width) - 50px);
	margin:auto;
}
dl.access dd{
	margin:88px 0 100px;
}
dl.access dd.youtube{
	width:760px;
	height: 360px;
	margin:88px auto 100px;
}
dl.access dd.youtube.noheight{
	height:auto;
}
dl.access dd.youtube img{
	width:100%;
	height:auto;
}
p.training{
	width:700px;
	margin:auto auto 124px;
}
h3.second2{
	background:url("../images/h2_second2.svg") left 20px center no-repeat;
	background-size:2000px;
	margin:109px auto 73px;
	color:var(--main-color);
	text-align: center;
	font-size:32px;
	font-weight: bold;
	line-height: 114px;
}
div.placeWrapper{
	width:1130px;
	display: flex;
	justify-content: space-between;
	margin:auto;
	gap:50px;
}
div.place{
	width: 100%;
	overflow: hidden;
}
div.place h4{
	text-align: center;
	font-size:18px;
	color:var(--main-color);
	margin-bottom: 15px;
}
div.place p.address{
	text-align: center;
	margin-bottom: 30px;
}
div.place div.map{
	width:100%;
	height: 290px;
	border-radius: 15px;
	overflow: hidden;
}
h4.training{
	font-weight: bold;
	font-size:20px;
	color:var(--main-color);
	margin-bottom:42px;
	margin-left:54px;
}
p.training2,
ul.training2{
	margin-left:76px;
	margin-bottom:60px;
}
div.trainWrapper{
	width:930px;
	margin:100px auto ;
}
div.h3wrapper.pro{
	background:url("../images/h2_second2.svg") left 25px center no-repeat;
}

h2.secondContents {
	font-size:30px;
	font-weight: bold;
	color:var(--main-color);
	margin:120px auto 127px;
	padding-bottom:36px;
	border-bottom:1px solid var(--main-color);
	text-align: center;
	width:960px;
}
h2.secondContents.noline{
	border:none;
}
h2.secondContents span{
	background:url("../images/h2_second_bg.svg") left center no-repeat;
	padding-left:50px;
}

div.product_contents {
	width:960px;
	margin:100px auto;
}
div.feature{
	margin:54px;
	line-height: 2em;
}
div.feature img{
	width:100%;
}
div.feature p{
	margin-bottom:1em;
}
div.feature h1,
div.feature h2,
div.feature h3,
div.feature h4,
div.feature h5,
div.feature h6{
	margin-top:1em;
	margin-bottom:1em;
}
div.feature ul,
div.feature ol{
	margin:1em;
}
div.feature ul li{
	list-style: disc;
}
div.product_slide{
	width:530px;
	margin:auto;
    position: relative;
}
div.product_slide img{
	width:530px;
	height: auto;
	object-fit: cover;
}
div.product_slide_thumb{
	width:530px;
	margin:40px auto 150px;
	/*display: flex;
	justify-content:space-between;*/
}
div.product_slide_thumb img{
	cursor: pointer;
	margin:0 5px;
}
div.product_slide_thumb img:hover{
	opacity: 0.75;
}
div.product_slide_thumb ul.slick-dots{
	display: none !important;
}

p.feature {
	margin:54px 30px;
}
h4.product{
	font-size:20px;
	color:var(--main-color);
	margin-left:30px;
	background:url("../images/h2_second_bg.svg") left center no-repeat;
	padding-left:45px;
}
h4.list{
	font-size:28px;
	width:960px;
	color:var(--main-color);
	text-align: center;
	padding-bottom: 40px;
	border-bottom:1px solid var(--main-color);
	margin:107px auto;
}
h4.list span{
	background:url("../images/h2_second_bg.svg") left center no-repeat;
	padding-left:70px;
}
h4.list.emergency{
	border-bottom:1px solid #00881B;
}
h4.list.emergency span{
	background:url("../images/h2_second_bg_green.svg") left center no-repeat;
}
h4.list.logi{
	border-bottom:1px solid #FFA500;
}
h4.list.logi span{
	background:url("../images/h2_second_bg_orange.svg") left center no-repeat;
}
h4.list.fire{
	border-bottom:1px solid #CB2020;
}
h4.list.fire span{
	background:url("../images/h2_second_bg_red.svg") left center no-repeat;
}
dl.operability{
	margin:65px;
	display: flex;
	gap:50px;
}
dl.operability dt{
	width:320px;
	position: relative;
}
dl.operability dt img{
	width:320px;
	height: auto;
}
dl.operability dt a::after{
	content: "";
	width:20px;
	height: 20px;
	display: block;
	background-size:20px;
	background-image:url("../images/icon_zoom.svg");
	background-repeat:no-repeat;
	background-position: center center;
	position: absolute;
	top:15px;
	right:15px;
	z-index: 100;
}
dl.operability li{
	list-style: disc;
	margin-bottom:0.5em;
}
p.rentalCompany {
	background:#F7F8FA;
	border-radius: 9px;
	padding:40px 90px;
	box-sizing: border-box;
	margin:90px auto;
	width:600px;
}

div.featureArea {
	margin:30px;
}
div.featureArea p{
	margin-bottom:1em;
}
div.featureArea img{
	max-width:100%;
	margin-bottom:1em;
}
div.catalog{
	width:600px;
	margin:auto;
	display: flex;
	align-items: center;
	gap:75px;
	margin-bottom:310px;
}
a.catalog{
	width:280px;
	height: 54px;
	display: block;
	line-height: 54px;
	box-sizing: border-box;
	color:#fff;
	background-color:var(--lightblue-color);
	border-radius: 5px;
	padding-left:25px;
	border:1px solid var(--main-color);
	background-image:url("../images/icon_dl.svg");
	background-repeat: no-repeat;
	background-position: right 25px center;
}
a.catalog:hover{
	background-color:var(--main-color);
}
div.pWrapper{
	width:calc(var(--min-width) - 260px);
	margin:auto;
	gap:27px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding-bottom:200px;
}
div.pWrapper article{
	width:260px;
	margin-bottom:50px;
	position: relative;
	padding-bottom:25px;
}
div.pWrapper article h5{
	font-size:18px;
	text-align: center;
	margin:34px auto 17px;
}
div.pWrapper article img{
	width:260px;
	height: 300px;
	object-fit: cover;
}
div.pWrapper article p.rental{
	width:235px;
	height: 40px;
	line-height: 40px;
	background:#F8C86F;
	text-align: center;
	border-radius: 5px;
	margin:auto;
	color:#000;
	font-weight: bold;
	position: absolute;
	left:0;
	right:0;
	bottom:0;
}
table.spec{
	width:960px;
	margin:50px auto;
}
table.spec td{
	padding:10px;
	border:1px solid #707070;
	
}
p.council{
	width:640px;
	margin:auto;
	line-height: 2em;
}
ol.council,
ul.council{
	width:640px;
	margin:25px auto;
	line-height: 2em;
}
dl.council{
	width:640px;
	margin:auto;
	overflow: hidden;
}
dl.council dt,
dl.council dd{
	padding:5px;
}
dl.council dt{
	width:150px;
	float: left;
	clear: both;
}
dl.council dd{
	width:calc(100% - 170px);
	float: right;
}
ul.council2{
	width:720px;
	margin:auto;
	display: flex;
	flex-wrap: wrap;
	margin-bottom:100px;
}
ul.council2 li{
	width:30%;
	margin-bottom:0.5em;
}
div.council{
	width:640px;
	margin:auto auto 100px;
}
div.council h5{
	margin-bottom:25px;
}
dl.council2{
	overflow: hidden;
	margin-bottom: 50px;
}
dl.council2 dt,
dl.council2 dd{
	padding:5px;
	box-sizing: border-box;
}
dl.council2 dt{
	width:100px;
	float: left;
	clear: both;
}
dl.council2 dd{
	width:calc(100% - 100px);
	float: right;
}
div.councilLink{
	display: flex;
	justify-content: space-between;
	margin:25px auto 50px;
}
div.councilLink a{
	display: block;
	text-align: center;
	padding:10px 20px ;
	background-color:var(--lightblue-color);
	color:#fff;
}
div.councilLink a:hover{
	background-color:var(--blue-color);
}
ul.member{
	width:900px;
	margin:auto auto 100px;
}
ul.member li{
	display: flex;
	margin-bottom: 75px;
}
ul.member h3{
	width:360px;
}
dl.member{
	overflow: hidden;
	border-bottom:1px solid #ccc;
	width:470px;
}
dl.member dt,
dl.member dd{
	padding: 10px;
	border-top:1px solid #ccc;
	box-sizing: border-box;
}
dl.member dt{
	width:80px;
	float: left;
	clear: both;
}
dl.member dd{
	width:calc(100% - 80px);
	float: right;
}
dl.recruit{
	border-bottom:1px solid #C8C0C0;
	overflow: hidden;
	width:980px;
	margin:auto auto 100px;
}
dl.recruit dt,
dl.recruit dd{
	padding:24px 0;
	box-sizing: border-box;
	border-top:1px solid #C8C0C0;
}
dl.recruit dt{
	width:260px;
	float: left;
	clear: both;
	position: relative;
	padding-left:52px;
}
dl.recruit dt::before{
	content: "";
	position: absolute;
	width:4px;
	height: 30px;
	background-color:var(--lightblue-color);
	top:24px;
	left:0;
}
dl.recruit dd{
	width:calc(100% - 260px);
	float: right;
}
p.norecruit{
	width:890px;
	margin:100px auto;
}
p.contact{
	width:890px;
	margin:50px auto;
	box-sizing: border-box;
	padding:0 170px 25px;
}
p.contact strong{
	font-size:24px;
	font-weight: bold;
}
p.contact2{
	max-width:980px;
	border-radius: 16px;
	background-color:var(--skyblue-color);
	padding:50px 120px;
	margin:auto;
	box-sizing: border-box;
}
p.contact2 strong{
	display: block;
	font-size:20px;
	font-weight: bold;
	margin-bottom:1em;
}
dl.inquiry{
	width:980px;
	margin:80px auto;
	border-bottom:1px solid #707070;
    display: flex;
    flex-wrap: wrap;
}
dl.inquiry dt,
dl.inquiry dd{
	padding:20px 50px;
	box-sizing: border-box;
	border-top:1px solid #707070;
}
dl.inquiry dt{
	width:30%;
	background:#E7F2F8;
	float: left;
	clear: both;
	position: relative;
}
dl.inquiry dt::before{
	content: "";
	width:4px;
	height: 29px;
	display: block;
	position: absolute;
	color:#fff;
	background: var(--lightblue-color);
	top:0;
	left:10px;
	bottom:0;
	margin:auto;
}
dl.inquiry dt.must::after{
	content: "必須";
	width:47px;
	height: 24px;
	display: block;
	position: absolute;
	font-size:14px;
	color:#fff;
	background: #CB2020;
	line-height: 24px;
	text-align: center;
	border-radius: 4px;
	top:20px;
	right:10px;
	margin:auto;
}
dl.inquiry dd{
	width:70%;
	float: right;
}
dl.inquiry dd.flex{
	display: flex;
	justify-content: flex-start;
	gap:10px;
	align-items: center;
}
dl.inquiry dd.flex input{
	margin-right: 10px;
}
dl.inquiry input[type=radio]{
	width:16px;
	height: 16px;
	border-radius: 16px;
	border:3px solid #000;
	cursor: pointer;
}
dl.inquiry input[type=checkbox]{
	width:16px;
	height: 16px;
	border:3px solid #000;
	cursor: pointer;
}
dl.inquiry input[type=radio] + label,
dl.inquiry input[type=checkbox] + label{
	cursor: pointer;
}
dl.inquiry input[type=radio]:checked,
dl.inquiry input[type=checkbox]:checked{
	background:var(--main-color);
}
dl.inquiry input[type=text],
dl.inquiry input[type=tel],
dl.inquiry input[type=email],
dl.inquiry textarea{
	padding:5px 10px;
	border:1px solid #ccc;
	box-sizing: border-box;
	width:100%;
}
dl.inquiry textarea{
	height: 250px;
}
dl.inquiry select{
	border:1px solid #ccc;
	padding:5px 50px 5px 10px;
	cursor: pointer;
	position: relative;
	background:url("../images/arrow_select.svg") right 10px center no-repeat;
	background-size:10px;
}
dl.inquiry select::after{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-top: 10px solid var(--lightblue-color);
	border-bottom: 0;
	position: absolute;
	top:0;
	bottom:0;
	right:10px;
	margin:auto;
}
div.privacy{
	width:760px;
	margin:50px auto;
}
div.privacy h3{
	margin-bottom:1em;
}
div.submit{
	margin:100px auto;
	display: flex;
	justify-content: center;
	gap:20px;
}
div.submit input{
	width:340px;
	height: 60px;
	text-align: center;
}
div.submit input[type=submit]{
	background:var(--main-color);
	color:#fff;
	border-radius: 8px;
	font-size:18px;
	cursor: pointer;
}
div.submit input[type=submit]:hover{
	background:var(--lightblue-color);
}
div.submit input[type=button]{
	border-radius: 8px;
	font-size:18px;
	cursor: pointer;
	background:#ccc;
	color:#000;
}
div.submit input[type=button]:hover{
	background:#333;
	color:#fff;
}
div.privacyWrapper{
	margin:120px auto;
}
div.privacyWrapper p{
	margin:50px 250px 100px;
}
div.archive{
	width:var(--min-width);
	margin:auto;
	display: flex;
	justify-content: flex-end;
}
div.archive select{
	border:1px solid #ccc;
	padding:10px;
	position: relative;
	padding-right: 35px;
	box-sizing: border-box;
	width:180px;
	background:url("../images/arrow_select.svg") right 10px center no-repeat;
	background-size:10px;
	cursor: pointer;
	border-radius: 4px;
}
/*div.archive select::after{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-top: 10px solid var(--blue-color);
	border-bottom: 0;
	position: absolute;
	top:0;
	bottom:0;
	right:10px;
	margin:auto;
}*/

ul.info{
	width:var(--min-width);
	margin:60px auto;
}
ul.info li{
	border-bottom:1px solid #707070;
	margin-bottom:25px;
}
ul.info.noline {
	margin-bottom:0;
}
ul.info.noline li{
	border:none;
}
ul.info span.date{
	font-size:16px;
}
ul.info span.category{
	font-size:12px;
	background:var(--lightblue-color);
	color:#fff;
	padding:2px 10px;
	margin-left:20px;
	border-radius: 4px;
}
ul.info span.category.class{
	background:var(--green-color);
}
ul.info span.category.exhibition{
	background:var(--orange-color);
}
ul.info a{
	display: block;
	color:var(--blue-color);
	font-weight:bold;
	margin:30px 0 45px;
}
h3.blog_title{
	width:var(--min-width);
	margin:auto auto 65px;
	color:var(--blue-color);
	font-weight: bold;
	padding-bottom:47px;
	border-bottom: 1px solid #707070;
}
div.entryBody{
	width:var(--min-width);
	margin:auto auto 310px;
	line-height: 2em;
}
div.youtube{
	margin:65px;
	height: 450px;
}
p.mailInfo{
	text-align: center;
}
a.training{
	width:404px;
	height: 56px;
	line-height: 56px;
	display: block;
    background-image:
		url("../images/arrow_white.svg"),
		linear-gradient(180deg, #00368c 0%, #046fde 100%); 
	background-size:20px,100%;
	background-repeat: no-repeat;
	color:#fff;
	text-align: center;
	border-radius: 56px;
	background-position: right 20px center,center;
	margin:auto;
}
a.training:hover{
    background-image:
		url("../images/arrow_white.svg"),
		linear-gradient(0deg, #00368c 0%, #046fde 100%); 
}
dl.council3{
	
}
dl.council3 dt{
	font-weight: bold;
	margin-bottom:0.5em;
}
dl.council3 dd{
	margin-left:25px;
}