@charset "UTF-8";




/* CSS STYLE */

html {
	font-size: 2.666666vw;
}
body {
	min-width: 375px;
	font-size: 1.4rem;
	line-height: 1.7;
}

.spnone {
	display: none !important;
}










/* SITEPARTS */

#warp {
	position: relative;
	width: 100%;
}

.bg1 {
	background-color: var(--color-bg);
	padding: 7rem 0 8rem 0;
}
.bg2 {
	background-color: var(--color-bg2);
	padding: 7rem 0 8rem 0;
}

.inner {
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
	z-index: 1;
}

.head1 {
	margin: 8rem 0 3rem 0;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	color: var(--color-w);
	strong {
		font-weight: 700;
		color: var(--color-main);
	}
	&:first-child {
		margin-top: 0;
	}
}
.head2 {
	margin: 5rem 0 2rem 0;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--color-w);
	&:first-child {
		margin-top: 0;
	}
}
.head3 {
	margin: 4rem 0 2rem 0;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--color-w);
	&:first-child {
		margin-top: 0;
	}
	& + p {
		margin-bottom: 1.2rem;
	}
}

.txt-read {
	margin-bottom: 3rem;
	font-size: 1.6rem;
	font-weight: 700;
	&:first-child {
		margin-top: 0;
	}
	&:last-child {
		margin-bottom: 0;
	}
}

.img-box {
	position: relative;
	width: 100%;
	overflow: hidden;
	img {
		position: relative;
		z-index: 1;
	}
	p {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		background: linear-gradient(to bottom, rgba(23,23,23,0) 0%,rgba(23,23,23,0.6) 100%);
		padding: 1.6rem 1.5rem 1.2rem 1.5rem;
		font-size: 1.3rem;
		font-weight: 700;
		line-height: 1.2;
		color: var(--color-w);
		z-index: 2;
	}
	&.white {
		background-color: var(--color-w);
		padding-bottom: 3rem;
		p {
			background: none;
			color: var(--color-b);
		}
	}
}

.column-list {
	width: 100%;
	margin: 2.5rem 0 4rem 0;
	&:last-child {
		margin-bottom: 0;
	}
	.column {
		width: 100%;
		margin-top: 1.5rem;
	}
	.img-box {
		margin-bottom: 0.5rem;
		&:first-child {
			border-top-left-radius: 1rem;
			border-top-right-radius: 1rem;
		}
		&:last-child {
			margin-bottom: 0;
			border-bottom-right-radius: 1rem;
			border-bottom-left-radius: 1rem;
		}
	}
	&.c4 {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
		.column {
			width: calc(calc(100% - 1rem) / 2);
			margin-top: 0;
		}
	}
}


/* FADE */

.fade {
	opacity: 0;
	-webkit-transition: 0.8s linear;
	transition: 0.8s linear;
}
.fade.active {
	opacity: 1;
}
.fade-l {
	position: relative;
	opacity: 0;
	-webkit-transform: translate(-2rem, 0);
	transform: translate(-2rem, 0);
	-webkit-transition: 0.8s ease-out;
	transition: 0.8s ease-out;
}
.fade-l.active {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.fade-r {
	position: relative;
	opacity: 0;
	-webkit-transform: translate(2rem, 0);
	transform: translate(2rem, 0);
	-webkit-transition: 0.8s ease-out;
	transition: 0.8s ease-out;
}
.fade-r.active {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.fade-t {
	position: relative;
	opacity: 0;
	-webkit-transform: translate(0, -2rem);
	transform: translate(0, -2rem);
	-webkit-transition: 0.8s ease-out;
	transition: 0.8s ease-out;
}
.fade-t.active {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.fade-b {
	position: relative;
	opacity: 0;
	-webkit-transform: translate(0, 2rem);
	transform: translate(0, 2rem);
	-webkit-transition: 0.8s ease-out;
	transition: 0.8s ease-out;
}
.fade-b.active {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.fade-w {
	-webkit-transition: 0.8s ease-out;
	transition: 0.8s ease-out;
	-webkit-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
	opacity: 0;
}
.fade-z {
	-webkit-transition: 0.8s ease-out;
	transition: 0.8s ease-out;
	-webkit-transform: scale(0.9,0.9);
	transform: scale(0.9,0.9);
	opacity: 0;
}
.fade-w.active,
.fade-z.active {
	-webkit-transform: scale(1,1);
	transform: scale(1,1);
	opacity: 1;
}
.blur {
	-webkit-transition: 2s ease;
	transition: 2s ease;
	filter: blur(10rem);
	-webkit-transform: scale(1.5,1.5);
	transform: scale(1.5,1.5);
	opacity: 1;
}
.blur.active {
	filter: blur(0);
	-webkit-transform: scale(1,1);
	transform: scale(1,1);
	opacity: 1;
}










/* HEADER */

#header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(to bottom, rgba(23,23,23,0.5) 0%,rgba(23,23,23,0) 100%);
	width: 100%;
	height: 6rem;
	padding: 0 0 0 2rem;
	line-height: 1;
	z-index: 1000;
	&.active {
		background: #222;
	}
	.logo {
		display: flex;
		align-items: center;
		.silicon-studio {
			border-right: 1px solid rgba(255,255,255,0.5);
			margin-right: 1.5rem;
			padding-right: 1rem;
			font-size: 0;
			img {
				width: auto;
				height: 3rem;
			}
		}
		.yebis {
			font-size: 0;
			img {
				width: auto;
				height: 3rem;
			}
		}
	}
	#menu {
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		background-color: var(--color-bg2);
		width: 100vw;
		height: 100vh;
		padding: 10rem 2rem 6rem 2rem;
		z-index: -1;
		ul {
			border-top: 1px solid #666;
			width: 100%;
			li {
				border-bottom: 1px solid #666;
			}
			a {
				display: block;
				padding: 1.8rem 0;
				font-size: 1.6rem;
				line-height: 1;
			}
		}
		.lang {
			width: 100%;
			margin-top: 4rem;
			a {
				display: flex;
				justify-content: center;
				align-items: center;
				background-color: var(--color-b);
				width: 100%;
				height: 4rem;
				padding-bottom: 0.2rem;
				font-size: 1.5rem;
				letter-spacing: 0;
				line-height: 1;
				text-decoration: none;
				color: var(--color-w);
			}
		}
		.contact {
			width: 100%;
			margin-top: 2rem;
			a {
				display: flex;
				justify-content: center;
				align-items: center;
				background-color: var(--color-main);
				width: 100%;
				height: 5rem;
				font-size: 1.5rem;
				letter-spacing: 0;
				line-height: 1;
				text-decoration: none;
				color: var(--color-b);
				span {
					padding-bottom: 0.2rem;
				}
				&:before {
					content: "";
					display: block;
					background: url(../img/icon-mail.png) no-repeat center center / 2.4rem;
					width: 2rem;
					height: 2rem;
					margin-right: 1rem;
				}
				&:hover {
					background-color: var(--color-w);
				}
			}
		}
	}
	#menu-open {
		position: relative;
		background-color: var(--color-main);
		width: 6rem;
		height: 6rem;
		span, &:before, &:after {
			display: block;
			position: absolute;
			background: #000;
			width: 3rem;
			height: 0.2rem;
			transition: 0.1s linear;
		}
		span {
			top: 50%;
			left: 50%;
			margin: -0.1rem 0 0 -1.5rem;
		}
		&:before {
			content: "";
			top: 32%;
			left: 50%;
			margin: -0.1rem 0 0 -1.5rem;
		}
		&:after {
			content: "";
			top: 68%;
			left: 50%;
			margin: -0.1rem 0 0 -1.5rem;
		}
		&.active {
			span {
				display: none;
			}
			&:before {
				top: 50%;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
			&:after {
				top: 50%;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}
		}
	}
}










/* FOOTER */

#footer {
	background-color: var(--color-bg2);
	padding: 4rem 2rem 5rem 2rem;
	.menu {
		ul {
			display: flex;
			flex-wrap: wrap;
			font-size: 1.4rem;
			li {
				margin: 0 1.5rem 0.5rem 0;
				white-space: nowrap;
			}
			&.sns {
				justify-content: center;
				margin-top: 2rem;
				li {
					margin: 0 1rem;
				}
				img {
					width: 3rem;
				}
			}
		}
		a {
			color: var(--color-txt);
		}
	}
	.data {
		width: 100%;
		margin-top: 4rem;
		.logo {
			img {
				width: auto;
				height: 5rem;
			}
		}
		.note {
			margin-top: 2rem;
			font-size: 1rem;
			color: #999;
			li {
				position: relative;
				padding-left: 1em;
				&:before {
					content: "※";
					position: absolute;
					top: 0;
					left: 0;
				}
			}
		}
		.copy {
			margin-top: 2rem;
			font-size: 1rem;
			color: #999;
		}
	}
}










/* INDEX */

.yebis4-mv {
	position: relative;
	background: var(--color-b) url(../img/yebis-mv.jpg) no-repeat center center / cover;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	h1 {
		position: absolute;
		top: 50%;
		left: 2rem;
		transform: translate(0,-50%);
		width: calc(100% - 4rem);
		font-size: 3.2rem;
		font-weight: 700;
		line-height: 1.4;
		color: var(--color-w);
		white-space: nowrap;
		z-index: 2;
	}
	video {
		position: absolute;
		top: 50%;
		left: 50%;
		display: block;
		width: auto;
		height: auto;
		min-width: 100%;
		min-height: 100%;
		transform: translate(-50%,-50%);
		z-index: 1;
	}
}

.yebis4-news {
	padding: 3rem 2rem 3.5rem 2rem !important;
	dl {
		width: 100%;
		dt {
			border-bottom: 1px solid rgba(255,255,255,0.5);
			margin-bottom: 1.2rem;
			padding-bottom: 0.8rem;
			font-size: 1.5rem;
			font-weight: 700;
		}
		dd {
			font-weight: 500;
		}
	}
}

.yebis4-about {
	.beer-slider {
		margin-top: 2rem;
	}
}

.feature-list {
	border-bottom: 1px solid #666;
	width: 100%;
	padding-bottom: 2.6rem;
	.feature {
		border-top: 1px solid #666;
		width: 100%;
		margin-top: 2.4rem;
		padding: 2rem 1.5rem 0 1.5rem;
		h3 {
			margin-bottom: 1.5rem;
			font-size: 1.8rem;
			font-weight: 700;
			line-height: 1.35;
			color: var(--color-w);
		}
	}
}

.img-box {
	&.variation {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		border-radius: 1rem;
		margin: 2.5rem 0 4rem 0;
		overflow: hidden;
		a {
			display: block;
			width: 50%;
			overflow: hidden;
		}
	}
}

.glare-variation {
	width: 100%;
	margin: 2rem 0 4rem 0;
	.read {
		width: 100%;
	}
	.image {
		width: 100%;
		margin-top: 2rem;
	}
}
.glare-image-main {
	width: 33.5rem;
	.pic {
		border-radius: 1rem;
		width: 33.5rem;
		overflow: hidden;
	}
}
.glare-image-sub {
	width: 33.5rem;
	margin-top: 0.5rem;
	.slick-track {
		transform: unset !important;
		display: flex;
		justify-content: space-between;
		gap: 0.4rem;
		width: 100% !important;
	}
	.slick-slide {
		display: block !important;
		float: none !important;
		border-radius: 0.4rem;
		overflow: hidden;
		cursor: pointer;
		transition: 0.3s ease;
		&:hover {
			opacity: 0.5;
		}
	}
}

.column-list.customizing {
	.column {
		margin-top: 0.5rem;
	}
}

.yebis4-data {
	border-radius: 1rem;
	background-color: var(--color-bg);
	padding: 2rem;
	ul {
		li {
			position: relative;
			padding-left: 1em;
			&:before {
				content: "・";
				position: absolute;
				top: 0;
				left: 0;
				font-weight: 700;
				color: var(--color-main);
			}
		}
	}
	.platform {
		display: block;
		margin: 2rem auto 0 auto;
		width: 100%;
	}
}

.yebis4-faq {
	border-top: 1px solid #666;
	margin-bottom: 8rem;
	dt {
		position: relative;
		margin: 2.4rem 0 1.8rem 0;
		padding: 0 3rem 0 3.5rem;
		font-size: 1.8rem;
		font-weight: 700;
		line-height: 1.4;
		color: var(--color-w);
		&:before {
			content: "Q.";
			position: absolute;
			top: 0;
			left: 0;
			color: var(--color-main);
		}
	}
	dd {
		position: relative;
		border-bottom: 1px solid #666;
		padding: 0 0 2.6rem 3.5rem;
		line-height: 1.6;
		&:before {
			content: "A.";
			position: absolute;
			top: -0.4rem;
			left: 0;
			font-size: 1.8rem;
			font-weight: 700;
			color: var(--color-w);
		}
	}
}

.yebis4-contact {
	border-radius: 1rem;
	background-color: var(--color-bg2);
	width: calc(100% - 4rem);
	margin: 8rem auto 4rem auto;
	padding: 3rem 0;
	h3 {
		margin-bottom: 2.5rem;
		font-size: 2rem;
		font-weight: 700;
		line-height: 1;
		letter-spacing: 0.05em;
		color: var(--color-w);
		strong {
			font-weight: 700;
			color: var(--color-main);
		}
	}
	ul {
		width: 100%;
		li {
			border-top: 1px solid #666;
			width: 100%;
			margin-top: 1.5rem;
			padding-top: 1.5rem;
			font-size: 1.5rem;
			line-height: 1;
			a {
				position: relative;
				display: flex;
				flex-wrap: wrap;
				justify-content: center;
				align-items: center;
				border-radius: 1rem;
				background-color: var(--color-bg);
				width: 100%;
				height: 7rem;
				margin-top: 1.5rem;
				padding: 0 4rem 0 0;
				font-size: 1.8rem;
				font-weight: 700;
				line-height: 1;
				text-decoration: none;
				color: var(--color-w);
				&:after {
					content: "";
					position: absolute;
					top: 50%;
					right: 2rem;
					display: block;
					border-radius: 4rem;
					background: var(--color-main) url(../img/btn-ar.png) no-repeat center center / cover;
					width: 3rem;
					height: 3rem;
					margin-top: -1.5rem;
					transition: 0.3s ease;
				}
				&:hover {
					background-color: #333;
					&:after {
						right: 1.5rem;
					}
				}
			}
			&:nth-of-type(3) {
				a {
					height: 9rem;
					font-weight: 500;
					padding: 0 0 0.5rem 0;
					font-size: 1.5rem;
					line-height: 1.4;
					letter-spacing: 0;
					&:after {
						display: none;
					}
					span {
						span {
							font-size: 1.2rem;
						}
					}
					strong {
						font-size: 2.2rem;
						font-weight: 700;
						color: var(--color-main);
					}
				}
			}
		}
	}
}

.yebis3-link {
	width: 100%;
	margin: 8rem 0 0 0;
	a {
		display: block;
		border-radius: 1rem;
		background: var(--color-b) url(../img/yebis3.jpg) no-repeat center center / cover;
		width: 100%;
		padding: 5rem 4rem;
		font-size: 1.5rem;
		font-weight: 700;
		text-decoration: none;
		color: var(--color-w);
		img {
			display: block;
			width: 100%;
			margin-bottom: 2rem;
		}
	}
}
.yebis4-note {
	margin: 4rem 0 0 0;
	font-size: 1.2rem;
	line-height: 1.6;
	color: #999;
	li {
		position: relative;
		padding-left: 1em;
		&:before {
			content: "※";
			position: absolute;
			top: 0;
			left: 0;
		}
	}
}

