/** Shopify CDN: Minification failed

Line 352:14 Expected ":"

**/
@charset "UTF-8";
@media all and (max-width: 1000px) {	
.pc{
	display:none;
}
  .p-img{
    object-fit: cover;
    height: 260px;
    object-position: top;
}
	
/*headerはここから*/
header{
	width:100%;
	height: 60px;
	transition: .3s;
	position:relative;
	position: absolute;
	position: fixed;
	top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	/* overflow: hidden; */
	z-index: 9999;
}

.logo{
	width:98px;
	left:3%;
	top: 50%;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	position:absolute;
}

ul{
	list-style: none;
	padding-inline-start:0px;
	display: block;
	text-align: left;
}

.menu li {
	 text-transform: uppercase;
	 transition: .3s;
	 margin: 20px 0;
}

li a{
	 color:black;
	 font-size:13px;
	 font-weight: 500;
	 /* border-bottom:1px solid black; */
	 display: inline-block;
	 width:100%;
	 /* padding:0 0 5px 0; */
	 letter-spacing: 2px;
}


.ham {
	position: relative;
/*クリックできる範囲*/
	width: 40px;
	height:40px;
	cursor: pointer;
	z-index: 9999;
	position:absolute;
  	top: 50%;
  	transform: translateY(-50%);
  	right:3%;
  	margin:0;
	border-radius: 50%;
}
.ham_line {
	position: absolute;
	left: 13px;
/*	線の長さと太さ*/
	width: 14px;
	height: 1px;
	background-color: black;
	transition: all 0.3s;
}
/*線と線の間*/
.ham_line1 {
	top: 13px;
}
.ham_line2 {
	top:19px;
}
.ham_line3 {
	top: 25px;
}

/*クリック後の動作*/
.clicked .ham_line1 {
	transform: rotate(45deg);
	top: 19px;
	background-color: white;
}
.clicked .ham_line2 {
	width: 0px;
}
.clicked .ham_line3 {
	transform: rotate(-45deg);
	top: 19px;
	background-color: white;
}

.menu {
	position: fixed;
	width: auto;
	height:auto;
	right:3%;
	top:6rem;
	background-color:white;
	transition: all 0.4s;
	z-index: 100;
	filter: drop-shadow(15px 15px 15px rgba(0,0,0,0.05));
	margin:0 0 0 0;
	display: block;
	visibility:hidden;
	opacity: 0;
	padding:7px 25px;
}

.clicked .menu {
	z-index: 100;
	opacity: 1;
	visibility:visible;
}
.main-2{
	 width:100%;
	 height: 100vh;
	 background-color: black;
	 opacity: 0;
	 z-index: 0;
	 position: absolute;
	 top:0;
	 left:0;
	 transition: all 0.4s;
}
.clicked .main-2{
	 opacity: .6;
	}

	.blackback{
		/* background-color: black; */
		opacity: 0;
		height:100vh;
		width:100%;
		transition:.3s;
		display:none;
	}
	
	.clicked .blackback{
		/* background-color: black; */
		/* opacity: 1; */
		height:100vh;
		width:100%;
		display:block;
		z-index: 10;
	}
	.s-sns{
		display:block;
		width:20px;
	}

/*共通はここから*/
.main-txt{
	font-size:13px;
	letter-spacing:0.02em;
	line-height: 1.8;
	margin:0;
}

.main-txt-sub{
	font-size:13px;
	letter-spacing:0.01em;
	line-height: 1.8;
	margin:0;
}

.common-width{
	max-width:1180px;
	width:86%;
	margin:0 auto;
}
/* メインはここから */
.top{
	width:96%;
	margin:0 auto;
	position: relative;
	padding:60px 0 0 0;
}
.top-img{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:8px;
}
.top-img div{
	overflow: hidden;
  	position: relative;
}
.top-img div::before {
	animation: img-wrap 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	background: #fff;
	content: '';
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
  }
  
  @keyframes img-wrap {
	100% {
	  transform: translateX(100%);
	}
  }
.top-img img{
	border-radius:3px;
	height:170px;
	object-fit: cover;
	transform: scale(1.1);
}
.top-img div:nth-child(1) img{
	object-position: 50% 0%;
}
.top-img div:nth-child(2) img{
	object-position: 20% bottom;
}
.top-img div:nth-child(3) img{
	object-position: 50% bottom;
}
.top-title{
	position: absolute;
	bottom:20px;
	left:20px;
}
.top-title h1{
	font-size:29px;
	font-weight:400;
	margin-bottom:4px;
	color:white;
  font-weight:500;
}
.top-title h2{
	font-size:14px;
	font-weight:500;
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	color:white;
   font-weight:600;
}
.sec1 {
    width: 100%;
    display: flex;
    overflow: hidden;
  }
.sec1 p span{
	color:#B1D0DA;
}
.sec1__title--first,
.sec1__title--second {
  flex-shrink: 0;
  width: auto;
  height: 110px;
  display: inline-block;
  white-space: nowrap;
  font-size: 90px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight:800;
  margin:0;
}
.sec1__title--first {
  animation: anim--first 90s infinite linear 0.1s both;
}
.sec1__title--second {
  animation: anim--second 90s infinite linear 0.1s both;
}
@keyframes anim--first {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes anim--second {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.concept{
	width:86%;
	margin:40px auto 0 auto;
}
.concept h2{
	font-size:24px;
	font-weight:500;
}
.concept div{
	margin-top:17px;
}
.concept div p:nth-child(1){
	font-size:14px;
	color:#B1D0DA;
	font-family: "Roboto", sans-serif;
	line-height: 1.6;
}
.concept div p:nth-child(2){
	font-size:14px;
	font-weight:500;
	line-height: 2;
	letter-spacing: 0.02em;
	margin-top:20px;
}
.concept-p{
	margin-top:75px;
	margin-bottom:75px;
}
.concept-p img{
	border-radius: 3px;
}
.walk-about{
	height:360px;
}
.walk-about-txt{
	text-align: center;
	position: sticky;
  	top: 0;
	z-index:-1;
}
.walk-about-txt p:nth-child(1){
	font-size:80px;
	font-weight:800;
	text-transform: uppercase;
	font-family: "Roboto", sans-serif;
  margin:0;
  line-height1.2;
}
.walk-about-txt p:nth-child(2){
	font-size:14px;
	color:#B1D0DA;
	letter-spacing: 0.05em;
	line-height: 1.8;
}
.walk-about-block{
	position: relative;
	height:360px;
}
.walk-about-block-top{
	display:flex;
	justify-content: space-between;
	position: absolute;
	top:0;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.walk-about-block-top div:nth-child(1){
	width:105px;
}
.walk-about-block-top div:nth-child(2){
	width:102px;
	margin-top:35px;
}
.walk-about-block-bottom{
	display:flex;
	justify-content: space-between;
	align-items: flex-end;
	position: absolute;
	bottom:0;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.walk-about-block-bottom div:nth-child(1){
	width:105px;
	/* margin-left:75px; */
}
.walk-about-block-bottom div:nth-child(2){
	display:flex;
	align-items: flex-start;
	gap:10px;
	width:157px;
}
.b-img{
	width:auto !important;
}
.product-g-tm{
	width:96%;
	margin:50px auto 0 auto;
}
.product-g-tm img{
	border-radius: 3px;
	height:230px;
	object-fit:cover;
}
.product-g-list{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:10px;
	margin-top:35px;
}
.product-g-list a{
	position: relative;
	display:block;
}
.product-g-list a div{
	position: absolute;
	width:80%;
	bottom:0;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.product-g-list a div h2{
	font-size:18px;
	text-transform: uppercase;
	font-family: "Roboto", sans-serif;
    font-weight:500;
    margin:0;
}
.product-g-list a div p{
	/* width:395px; */
	font-size:14px;
	margin:-5px 0 7px 0;
	line-height: 1.8;
	text-align: justify;
}
.product-g-list a div img{
	width:25px;
}
.function{
	width:98%;
	margin:60px auto 0 auto;
	background-color: #F4F4F4;
	padding:60px 0;
}
.c-sub-title{
	font-size:17px;
	font-weight:500;
}
.function-content-img{
	/* width:445px; */
}
.function-content-img img{
	border-radius: 3px;
}
.function-content{
	/* display:flex; */
	justify-content: space-between;
	gap:50px;
}
.function-content-detail{
	/* width:617px; */
	margin-top:25px;
}
.function-content-detail h2{
	font-size:20px;
	font-weight:500;
}
.function-content-detail .blue{
	color:#B1D0DA;
	font-size:14px;
	font-family: "Roboto", sans-serif;
	font-weight:500;
	margin:5px 0 25px 0;
}
.function-content-detail .sub-read{
	font-size:14px;
	margin-top:10px;
	line-height: 1.75;
}
.f-g-img{
	margin:20px 0 40px 0;
}
.f-list{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:20px;
}
.f-list div{
	border-bottom:solid 1px #CBCBCB;
	padding:0 0 20px 0;
}
.f-list div p:nth-child(2){
	color:#A0A0A0;
	font-size:13px;
	line-height: 1.6;
	margin-top:6px;
}

}