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

/*==================================
　BASE
===================================*/
:root {
	--easing: cubic-bezier(0.2, 1, 0.2, 1);
    --transition: 0.8s var(--easing);
	--white:     #ffffff;
	--black:     #000000;
	--dwblue:    #009CDE;
	--lightgray: #C6C6C6;
	--linegray:  #dddddd;
	--darkgray:  #707070;
	--red:       #FF0004;
	--box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
        -0.8rem -0.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08),
        -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
        inset -0.8rem -0.8rem 1.2rem #fff;
    --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1),
        -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	color: var(--darkgray);
	font-size: 1.6rem;
	font-family: "noto-sans-cjk-jp","sans-serif" ;
	font-style: normal;
	font-weight: 400;
	background-color: var(--white);
}
a {
	color: var(--black);
	text-decoration: none;
}
p{line-height: 1.8;}
h2{font-family: "courier-std","noto-sans-cjk-jp","sans-serif";}
.btn{
	max-width: 400px;
	display: block;
	margin: 0 auto 2rem;
	width: 80%;
	padding: 1.5rem 2%;
	background-color: var(--white);
	border-radius:100vh;
	text-align: center;
}
.btn._black{
	background-color:var(--black);
	color: var(--white);
}
.mb2{margin-bottom: 2rem !important;}
.tx-small{font-size: clamp(1rem, 0.943rem + 0.29vw, 1.2rem);}

/*==================================
　ナビゲーション
===================================*/
.list{
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}
.list.-right {justify-content: flex-end;}
.list.-left  {justify-content: flex-start;}
.list.-center{justify-content: center;}
.list.-between {justify-content: space-between;}

.list .listItem{
	width: calc(100% / 5);
	margin: 0 auto;
	text-align: center;
}
.list .listItem .listItem-link{
	color: var(--black);
	display: block; padding: 1rem;
}
.header{
	width: 100%; padding: 2%;
	position: absolute;
	z-index: 10;
	top:0; left:0;
	display: flex;
	justify-content: space-between;
	transition: background .5s;
}
.glNav {background-color:rgba(0,0,0,0.60); }
.glNav .list .listItem .listItem-link{color: var(--white)!important;font-family: "courier-std","noto-sans-cjk-jp","sans-serif";}

.list .listItem.-w60 {width: 60px;}
.list .listItem.-wauto {width:auto; margin: 0 1.5rem;}
.list .listItem.-black {
	width: 65px;
  line-height: 65px;
  background-color: var(--black);
  border-radius: 50%;
  text-align: center;
}
.contents{margin-top: 96px;}
.section {width: 100%; margin: 0 auto;}
.section__tit{
	font-size: 5rem; margin-bottom: 2.5rem;
	color: var(--lightgray);
	font-weight: 400;
	text-align: center;
}
.conceptWrap{display: flex; flex-wrap: wrap; margin-top: 8rem;}
.conceptWrap:nth-child(2n),
.conceptWrap:nth-child(3n){flex-direction: row-reverse;}
.conceptBox{width:100%; padding: 2.5% 0;}
.conceptLogo {max-width: 140px; margin:0 auto 2rem;}


.productsWrap{
	width: 100%; display: flex; flex-wrap: wrap;
	margin: 0 auto; 
}

.productsWrap.-mb{margin-bottom: 10%;}
.productsBox{
	width:calc(100% / 2);
	padding: 0 2%; margin-bottom: 5%;
	position: relative;
	text-align: center;
}

.productsBox__link{
		display: block; width: 100%; height: 100%;
		top: 0;bottom: 0;left: 0;right: 0;
		position: absolute;
}
.productsBox__img.-radius {border-radius: 20px; margin-bottom: 1rem;}
.productsBox__tit {font-size: 3.6rem; margin-bottom: .5rem;font-family: "courier-std","noto-sans-cjk-jp","sans-serif";}
.products .slide-title{font-family: "courier-std","noto-sans-cjk-jp","sans-serif";}
.productsBox__tit.-jp{font-size: 1.4rem; letter-spacing: 2px; margin-bottom: 1.5rem;}
.productsBox__subtit{font-size: 1.8rem; font-weight: bold; margin-bottom: 1rem;}
.productsBox__text{font-size: 1.4rem;}
.productsBox__text.-txleft{text-align: left; margin-bottom: 5%;}
.productsContents.category .productsBox{width: 100%; margin: 0 auto;}
.productsContents.category .productsBox.-mb{margin-bottom: 10%;}

.companyWrap{
	width: 96%; display: flex; flex-wrap: wrap; max-width: 800px;
	margin: 0 auto 10%; justify-content: space-between;
	align-items: stretch;
}
.companyBox{width: 100%;}
.companyBox__tit{color: var(--lightgray);padding-top: 2rem;}
.companyBox__txt{border-bottom: 1px solid var(--lightgray);padding-bottom: 2rem;}

@media only screen and (min-width: 1025px) {
	.list .listItem{
		margin: 0 .5rem;
	}
	.contents{margin-top: 166px;}
	.section__tit {font-size: 10rem; text-align: left;}
	.contents .section__tit{text-align: center;}
	.conceptWrap{
		 margin-top: 4rem;
		justify-content: space-between;
		align-items: center;
	}
	.conceptWrap:nth-child(3n) {flex-direction: row;}
	.conceptBox {width: calc(100% / 2); margin: 0 auto;}
	.conceptBox__txt {padding: 4% 6%;}
	.conceptBox__img.-radius {border-radius: 20px 0 0 20px;}
	.conceptWrap:nth-child(2n) .conceptBox__img.-radius {border-radius:  0 20px 20px 0;}
	.conceptLogo {max-width: 180px; margin:0 0 2rem;}
	
	.productsWrap{
		width: 100%;
		max-width: 1200px;
		margin:0 auto;
	}
	
	.productsWrap.-mb{margin-bottom: 5%;}
	.productsBox{
		width:calc(100% / 4);
		margin-bottom: 5%;
		padding: 0 1%;
	}
	.productsWrap.-mb .productsBox:nth-child(1){order: 1;}
	.productsWrap.-mb .productsBox:nth-child(2){order: 2;}
	.productsWrap.-mb .productsBox:nth-child(3){order: 4;}
	.productsWrap.-mb .productsBox:nth-child(4){order: 3;}
	.productsWrap.-mb .productsBox:nth-child(5){order: 5;}
	.productsWrap.-mb .productsBox:nth-child(6){order: 6;}
	.productsWrap.-mb .productsBox:nth-child(7){order: 8;}
	.productsWrap.-mb .productsBox:nth-child(8){order: 7;}
	
	.productsBox__tit {font-size: 3.2rem; margin-bottom: 1rem;}
	.productsBox__subtit{font-size: 2.4rem;}
	.productsBox__text{font-size: 1.6rem;}
	.productsContents.category .productsWrap{align-items: center;}
	.productsContents.category .productsWrap.-top{align-items:flex-start;}
	.productsContents.category .productsBox{width:calc(100% / 2);}
	.productsContents.category .productsBox.-mb{margin-bottom: 5%;}
	
	.companyWrap{margin-bottom: 5%;}
	.companyBox{padding: 2rem;}
	.companyBox__tit{width: 20%; border-bottom: 1px solid var(--black);}
	.companyBox__txt{width: 80%;}
	
}
@media only screen and (max-width: 1024px) {
	.header .list .listItem{
		width: 100%;
		text-align: center;
	}
	.list .listItem.-w60 {width: 50px; display: inline-flex;}
	.list .listItem.-wauto {width:auto; margin: 0 1.5rem;}
	.list .listItem.-black {
		 display: inline-flex;
		width: 60px;
	  line-height: 60px;
		background-color:transparent;
	}
	.conceptBox {padding: 5% 0;}
	.conceptBox__txt {width: 90%; margin: 0 auto;}
	.conceptBox__img {width: 100%;}
	.productsBox {width:calc(100% / 2); margin-bottom: 10%;}
}

.footer{
	background-color: var(--darkgray);
	color: var(--white);
	padding: 8rem 10% 5%;
}
.footer .section__tit{text-align: center;}
.footer .list .listItem a{color: var(--white);font-family: "courier-std","sans-serif";}
.footerWrap .list .listItem{font-size: 140%;font-family: "courier-std","sans-serif";}

.footerLogo{margin:0 auto 2rem;}
.copyright {color: var(--white); font-size: .9rem;}

.contactBox {margin-bottom: 10%;}
.contactBox p{margin-bottom:1rem;}
.contact__tit{
	border-bottom: 1px solid var(--lightgray);
	margin-bottom: 2rem;
	padding-bottom:1.5rem;
}
.contact__line{
	border-top: 2px dotted var(--lightgray);
	margin-bottom: 2rem;
}
.contact__telno{
    font-size: 3.6rem; display: block;
}
@media only screen and (min-width: 1025px) {
	.footer{padding: 5% 5% 2.5%;}
	.footerWrap{
		display: flex; flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		flex-direction: row-reverse;
	}
	.footerWrap > .list{width: 50%;}
	.footerWrap > .list .listItem{text-align: right; font-size: 140%;}

	.footerlogoWrap {width: 180px;}
	.footerlogoWrap > .listItem{width: calc(100% / 3);}
	.contactWrap{
		display: flex; flex-wrap: wrap;
		justify-content: center;
		align-items: flex-start;
		margin-bottom: 8rem;
	}
	.contactBox {width: calc(60% / 2); padding: 2%; margin-bottom: 0;}
}
@media only screen and (max-width: 1024px) {
	.footerWrap > .list{flex-wrap: wrap; margin: 8rem auto;}
	.footerWrap > .list .listItem{
		width: 100%; text-align: center; font-size: 140%;
		padding: 2rem 0;
	}
}


/*==================================
　メインビジュアル
===================================*/
.top-visual{
	/*height:calc(100vh - 96px);/*ヘッダーの高さをマイナス。必要なければheight:100vhに。*/
	height:100vh;
	position: relative;
	overflow:hidden;
	min-height: 400px;/*スマホ画面を横にした場合、文字が重ならないように*/
}
.top-visual .list .listItem .listItem-link{color: var(--white);}
/*メイン画像の設定*/
.top-visualImg{
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	/*margin-top: -12%;画像のトリミング調整*/
}
/*上にのせるテキストの設定*/
.top-visualTxt{
	color:#fff;
	opacity: 0;
	font-weight: bold;
	position:absolute;
	margin: auto;
	top: 0;bottom:0;left: 0;right: 0;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	text-shadow: rgba(0, 0, 0, 0.1) 1px 1px 30px, rgba(0, 0, 0, 0.1) -1px 1px 30px, rgba(0, 0, 0, 0.1) 1px -1px 30px, rgba(0, 0, 0, 0.1) -1px -1px 30px;
	font-size:8em;
	line-height: 1;
	}
/*小さいテキストの設定*/
.top-visualTxt span{
	font-size:0.35em;display:block;width: 100%;margin-bottom:10px;
}
.top-visualTxt br{display:none;}/*はじめは改行させない*/

@media screen and (max-width: 1200px) {
  .top-visualTxt br{display:block;}/*改行*/
  .top-visualImg{margin-top: 0;}/*画像のトリミング調整*/

}
@media screen and (max-width: 959px) {
  /*.top-visual{height:calc(100vh - 200px);}このサイトの場合ヘッダーの高さが変わるため変更*/
  .top-visualTxt {font-size: 6em;}
}
@media screen and (max-width: 600px) {
  .top-visualImg{object-position: right center top 50%;}/*画像のトリミング調整*/
  .top-visualTxt {font-size: 5em;}
  .top-visualTxt span{letter-spacing:0;font-size:0.3em;}
}
@media screen and (max-width: 374px) {
  .top-visualTxt {font-size: 4em;}
}

.products .splide__pagination{
	display: none !important;
}