@charset "UTF-8";




/* CSS STYLE */

html {
	font-size: 10px;
}
@media screen and (max-width: 1300px) {
	html {
		font-size: 0.76923vw;
	}
}
body {
	font-size: 1.6rem;
	line-height: 1.75;
}

a:hover,
a:active {
	color: var(--color-main);
	text-decoration: underline;
}

a,
a img,
a video {
	transition: 0.3s ease;
}
a:hover img {
	opacity: 0.6;
}
a[href^="tel:"] {
	pointer-events: none;
	cursor: default;
}

.pcnone {
	display: none !important;
}










/* SITEPARTS */

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

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

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

.head1 {
	margin: 18rem 0 9rem 0;
	font-size: 6rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-align: center;
	color: var(--color-w);
	strong {
		font-weight: 700;
		color: var(--color-main);
	}
	&:first-child {
		margin-top: 0;
	}
	& + .head2 {
		margin-top: 9rem;
	}
}
.head2 {
	margin: 14rem 0 3rem 0;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--color-w);
	&:first-child {
		margin-top: 0;
	}
}
.head3 {
	margin: 9rem 0 3rem 0;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--color-w);
	&:first-child {
		margin-top: 0;
	}
	& + p {
		margin-bottom: 2rem;
	}
}

.txt-read {
	margin-bottom: 4rem;
	font-size: 1.8rem;
	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: 2.3rem 3rem 1.7rem 3rem;
		font-size: 1.8rem;
		font-weight: 700;
		line-height: 1.2;
		text-align: left !important;
		color: var(--color-w);
		z-index: 2;
	}
	&.white {
		background-color: var(--color-w);
		padding-bottom: 3.5rem;
		p {
			background: none;
			color: var(--color-b);
		}
	}
}
.img-box a:hover img,
a:hover .img-box img {
	transform: scale(1.05,1.05);
}

.column-list {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	width: 100%;
	margin: 4.5rem 0 6rem 0;
	&:last-child {
		margin-bottom: 0;
	}
	.column {
		width: 100%;
		&.full {
			width: 100% !important;
		}
	}
	&.c2 {
		.column {
			width: calc(calc(100% - 2rem) / 2);
		}
	}
	&.c3 {
		.column {
			width: calc(calc(100% - 4rem) / 3);
		}
	}
	&.c4 {
		.column {
			width: calc(calc(100% - 6rem) / 4);
		}
	}
	.img-box {
		margin-bottom: 1rem;
		&:first-child {
			border-top-left-radius: 2rem;
			border-top-right-radius: 2rem;
		}
		&:last-child {
			margin-bottom: 0;
			border-bottom-right-radius: 2rem;
			border-bottom-left-radius: 2rem;
		}
	}
}


/* FADE */

.fade {
	opacity: 0;
	transition: 0.8s linear;
}
.fade.active {
	opacity: 1;
}
.fade-l, .pc-fade-l {
	position: relative;
	opacity: 0;
	transform: translate(-2rem, 0);
	transition: 0.8s ease-out;
}
.fade-l.active, .pc-fade-l.active {
	opacity: 1;
	transform: translate(0, 0);
}
.fade-r, .pc-fade-r {
	position: relative;
	opacity: 0;
	transform: translate(2rem, 0);
	transition: 0.8s ease-out;
}
.fade-r.active, .pc-fade-r.active {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.fade-t {
	position: relative;
	opacity: 0;
	transform: translate(0, -2rem);
	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;
	transform: translate(0, 2rem);
	transition: 0.8s ease-out;
}
.fade-b.active {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.fade-w {
	transition: 0.8s ease-out;
	transform: scale(1.1,1.1);
	opacity: 0;
}
.fade-z {
	transition: 0.8s ease-out;
	transform: scale(0.9,0.9);
	opacity: 0;
}
.fade-w.active,
.fade-z.active {
	transform: scale(1,1);
	opacity: 1;
}
.blur {
	transition: 5s ease;
	filter: blur(10rem);
	transform: scale(1.5,1.5);
	opacity: 1;
}
.blur.active {
	filter: blur(0);
	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: 10rem;
	padding: 0 5rem;
	line-height: 1;
	z-index: 1000;
	transition: 0.3s ease;
	&.active {
		background: #222;
	}
	.logo {
		display: flex;
		align-items: center;
		.silicon-studio {
			border-right: 1px solid rgba(255,255,255,0.5);
			margin-right: 2.5rem;
			padding-right: 2rem;
			font-size: 0;
			img {
				width: auto;
				height: 4rem;
			}
		}
		.yebis {
			font-size: 0;
			img {
				width: auto;
				height: 4rem;
			}
		}
	}
	#menu {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		ul {
			display: flex;
			justify-content: flex-end;
			align-items: center;
			padding-bottom: 0.2rem;
			li {
				margin-right: 4rem;
				font-size: 1.6rem;
				line-height: 1;
			}
		}
		.lang {
			width: 4rem;
			height: 4rem;
			margin-right: 0.5rem;
			a {
				display: flex;
				justify-content: center;
				align-items: center;
				background-color: var(--color-b);
				width: 4rem;
				height: 4rem;
				padding-bottom: 0.2rem;
				font-size: 1.6rem;
				letter-spacing: 0;
				line-height: 1;
				text-decoration: none;
				color: var(--color-w);
				&:hover {
					background-color: #444;
				}
			}
		}
		.contact {
			a {
				display: flex;
				justify-content: center;
				align-items: center;
				background-color: var(--color-main);
				width: 17rem;
				height: 4rem;
				font-size: 1.6rem;
				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: 2.4rem;
					height: 1.6rem;
					margin-right: 1rem;
				}
				&:hover {
					background-color: var(--color-w);
				}
			}
		}
	}
	#menu-open {
		display: none;
	}
}










/* FOOTER */

#footer {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	background-color: var(--color-bg2);
	padding: 8rem 5rem 10rem 5rem;
	.menu {
		ul {
			display: flex;
			flex-wrap: wrap;
			justify-content: flex-end;
			font-size: 1.4rem;
			li {
				margin-left: 3rem;
				white-space: nowrap;
			}
			&.sns {
				margin-top: 2.5rem;
				li {
					margin-left: 2rem;
				}
				img {
					width: 3rem;
				}
			}
		}
		a {
			color: var(--color-txt);
		}
	}
	.data {
		max-width: 56rem;
		.logo {
			img {
				width: auto;
				height: 7rem;
			}
		}
		.note {
			margin-top: 3rem;
			font-size: 1rem;
			color: #999;
			li {
				position: relative;
				padding-left: 1em;
				&:before {
					content: "※";
					position: absolute;
					top: 0;
					left: 0;
				}
			}
		}
		.copy {
			margin-top: 2.5rem;
			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: 10rem;
		transform: translate(0,-50%);
		font-size: 7rem;
		font-weight: 700;
		line-height: 1.3;
		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: 6rem 0 !important;
	dl {
		width: 90rem;
		margin: 0 auto;
		display: flex;
		dt {
			display: flex;
			align-items: center;
			border-right: 1px solid rgba(255,255,255,0.5);
			width: 10rem;
			font-size: 1.7rem;
			font-weight: 700;
		}
		dd {
			width: calc(100% - 10rem);
			padding-left: 4rem;
			font-weight: 500;
		}
	}
}

.yebis4-about {
	h2 + .txt-read {
		width: 90rem;
		margin: 9rem auto 10rem auto;
	}
	.beer-slider {
		margin-top: 5rem;
	}
}

.feature-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6rem 3rem;
	width: 100%;
	.feature {
		border-top: 1px solid #666;
		width: calc(calc(100% - 6rem) / 3);
		padding: 3rem 3rem 0 3rem;
		h3 {
			margin-bottom: 2.6rem;
			font-size: 2.4rem;
			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: 2rem;
		margin: 4.5rem 0 6rem 0;
		overflow: hidden;
		a {
			display: block;
			width: 50%;
			overflow: hidden;
		}
	}
}

.glare-variation {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 4rem 0 0 0;
	.read {
		width: calc(100% - 69rem);
	}
	.image {
		width: 64rem;
	}
}
.glare-image-main {
	width: 62rem;
	.pic {
		border-radius: 2rem;
		width: 62rem;
		overflow: hidden;
	}
}
.glare-image-sub {
	width: 62rem;
	margin-top: 1rem;
	.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.6rem;
		overflow: hidden;
		cursor: pointer;
		transition: 0.3s ease;
		&:hover {
			opacity: 0.5;
		}
	}
}

.column-list.customizing {
	gap: 1rem 2rem;
	.column:nth-of-type(1) .img-box, .column:nth-of-type(2) .img-box {
		border-radius: 2rem 2rem 0 0 !important;
	}
	.column:nth-of-type(3) .img-box, .column:nth-of-type(4) .img-box {
		border-radius: 0 !important;
	}
	.column:nth-of-type(5) .img-box, .column:nth-of-type(6) .img-box {
		border-radius: 0 0 2rem 2rem !important;
	}
}
.column.anamorphic {
	text-align: center;
	img {
		width: 80rem;
	}
}

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

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

.yebis4-contact {
	position: relative;
	border-radius: 2rem;
	background-color: var(--color-bg2);
	width: calc(100% - 10rem);
	margin: 20rem auto 15rem auto;
	padding: 6rem 0;
	h3 {
		margin-bottom: 5rem;
		font-size: 4rem;
		font-weight: 700;
		line-height: 1;
		letter-spacing: 0.05em;
		color: var(--color-w);
		strong {
			font-weight: 700;
			color: var(--color-main);
		}
	}
	ul {
		display: flex;
		justify-content: space-between;
		gap: 3rem;
		li {
			border-top: 1px solid #666;
			width: 100%;
			padding-top: 4rem;
			font-size: 1.8rem;
			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: 10rem;
				margin-top: 2rem;
				padding: 0 4rem 0 0;
				font-size: 2rem;
				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: 4rem;
					height: 4rem;
					margin-top: -2rem;
					transition: 0.3s ease;
				}
				&:hover {
					background-color: #333;
					&:after {
						right: 1.5rem;
					}
				}
			}
			&:nth-of-type(3) {
				a {
					font-weight: 500;
					padding: 0 0 0.5rem 0;
					font-size: 1.8rem;
					line-height: 1.5;
					letter-spacing: 0;
					&:after {
						display: none;
					}
					span {
						span {
							font-size: 1.4rem;
						}
					}
					strong {
						font-size: 2.8rem;
						font-weight: 700;
						color: var(--color-main);
					}
				}
			}
		}
	}
}
@media screen and (max-width: 1300px) {
	.yebis4-contact {
		border-radius: 0;
		width: 100%;
	}
}

.yebis3-link {
	width: 100%;
	margin: 15rem 0 0 0;
	a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-radius: 2rem;
		background: var(--color-b) url(../img/yebis3.jpg) no-repeat center center / cover;
		width: 100%;
		height: 20rem;
		padding: 0 8rem;
		font-size: 1.8rem;
		font-weight: 700;
		text-decoration: none;
		color: var(--color-w);
		img {
			width: 37.5rem;
			margin-right: 6rem;
		}
		&:hover {
			opacity: 0.6;
		}
	}
}
.yebis4-note {
	margin: 5rem 0 0 0;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #999;
	li {
		position: relative;
		padding-left: 1em;
		&:before {
			content: "※";
			position: absolute;
			top: 0;
			left: 0;
		}
	}
}

