@charset "UTF-8";

*,
*::before,
*::after {
	box-sizing: border-box;
}

ul,
ol {
	padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

ul,
ol {
	list-style: none;
}

a:not([class]) {
	text-decoration-skip-ink: auto;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

input,
button,
textarea,
select {
	font: inherit;
	outline: none;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
	width: 100%;
	-webkit-text-size-adjust: none;
	font-family: "Noto Sans JP", sans-serif;
	color: #000;
	font-weight: normal;
	background-color: #fff;
	font-size: 18px;
}

@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}

a {
	text-decoration: none;
	color: #333333;
}

@media screen and (min-width: 769px) {
	a:hover {
		opacity: .5;
		transition: opacity .4s ease;
	}
}

#contents {
	overflow: hidden;
}

section {
	position: relative;
	width: 100%;
	padding: 0 20px;
}

section .inner {
	max-width: 1000px;
	margin: auto;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 14px;
	}
}

/*-----------------------------------
header
-------------------------------------*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 62px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	padding: 0 30px;
	background-color: #fff;
}

.header .logo {
	max-width: 251px;
}

.header .pc-menu-list {
	position: fixed;
	top: 90px;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 40px;
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	padding-right: 60px;
	cursor: pointer;
	transform: translateY(-100%);
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.4s ease;
	pointer-events: none;
}

.header .pc-menu-list.is-dark {
	color: #000;
}

.header .pc-menu-list.is-show {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.header .pc-menu-list .menu {
	position: relative;
	padding: 0 5px;
	font-family: "Cinzel", serif;
}

.header .pc-menu-list .menu::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 1px;
	background-color: #FF0000;
	transform: scaleX(0);
	transform-origin: left center;
	opacity: 0;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.header .pc-menu-list .menu:hover::after {
	transform: scaleX(1);
	opacity: 1;
}

.header .pc-menu-list .menu:hover .sub-menu {
	display: block;
}

.header .pc-menu-list .sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #353E45;
	display: none;
	font-family: "Noto Serif JP", serif;
	font-size: 10px;
	font-weight: bold;
	width: 100%;
	color: #fff;
}

.header .pc-menu-list .sub-menu .item {
	padding: 5px 9px;
	white-space: nowrap;
	border-bottom: 1px solid #fff;
}

.header .pc-menu-list .sub-menu .item:hover {
	background: rgba(255, 255, 255, 0.1);
}


@media screen and (max-width: 768px) {
	.header {
		border: unset;
		height: 44px;
		padding: 0 20px;
	}

	.header .logo {
		width: 140px;
	}

	.header .menu-list {
		display: none;
		position: fixed;
		z-index: 1001;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		padding: 150px 60px 60px;
		background: linear-gradient(to bottom,
				#020D17 0%,
				#020D17 20%,
				#142D40 100%);
		color: #fff;
	}

	.header .menu-list.active {
		display: block;
	}

	.header .menu-list .menu {
		margin-bottom: 50px;
		display: flex;
		gap: 10px;
	}

	.header .menu-list .menu:nth-of-type(3) {
		margin-bottom: 0;
	}

	.header .menu-list .menu span {
		color: #fff;
		font-size: 19px;
		letter-spacing: 1.5px;
		font-family: "Cinzel", serif;
		font-weight: 500;
	}

	.header .menu-list .menu .sub-menu {
		padding-top: 3px;
	}

	.header .menu-list .menu .sub-menu .item {
		color: #fff;
		font-family: "Noto Serif JP", serif;
		font-size: 14px;
		font-weight: 500;
		margin-bottom: 7px;
	}

	.header .sp-menu {
		position: fixed;
		z-index: 200;
		top: 60px;
		right: 20px;
		width: 30px;
		z-index: 1002;
	}

	.header .sp-menu .close {
		display: none;
		width: 30px;
	}

	.header .sp-menu.active .close {
		display: block;
	}

	.header .sp-menu.active .open {
		display: none;
	}
}

/*-----------------------------------
footer
-------------------------------------*/
.footer {
	width: 100%;
	z-index: 1;
	position: relative;
}

.totop {
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 40px;
	right: 50px;
	transform: translateY(8px);
	transition: opacity .4s ease, transform .4s ease;
	visibility: hidden;
	pointer-events: none;
	cursor: pointer;
	z-index: 100;
}

.totop.is-show {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	pointer-events: auto;
}

@media screen and (min-width: 769px) {
	.totop:hover {
		opacity: .5;
		transition: opacity .4s ease;
	}
}

@media screen and (max-width: 768px) {
	.totop {
		right: 15px;
	}
}

/*-----------------------------------
main
-------------------------------------*/
.main .c-overlay {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100svh;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to bottom,
			#020D17 0%,
			#020D17 50%,
			#142D40 100%);
	opacity: 1;
	visibility: visible;
}

.main .c-overlay span {
	color: #fff;
	font-size: 34px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 20px;
	background: linear-gradient(-45deg,
			#D99730 0%,
			#FFE572 30%,
			#FFD84B 70%,
			#D99730 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: shine 3s linear infinite;
}

@keyframes shine {
	0% {
		background-position: 200% center;
	}

	100% {
		background-position: -200% center;
	}
}

.main .c-overlay.is-hide {
	display: none !important;
}

.main .c-fv {
	position: relative;
	width: 100%;
	padding: 0;
	/* height: calc(100svh - 62px);
	margin-top: 62px; */
	/* height: 100svh; */
	overflow: hidden;
}

.main .c-fv .fv {
	width: 100%;
	/* height: 100%; */
	position: relative;
	z-index: -100;
	background-color: #010c13;
}

.main .c-fv .fv img {
	width: 100%;
	/* height: 100%; */
	/* object-fit: cover; */
	/* object-position: top; */
}

/* 
.main .c-fv .title {
	display: flex;
	align-items: end;
	justify-content: end;
	flex-direction: column;
	position: absolute;
	margin-right: 20px;
	bottom: 60px;
	width: 100%;
} */

.main .c-fv .title {
	position: absolute;
	right: 12%;
	top: 17%;
	width: 42%;
}

.main .c-fv .title .title-img {
	/* max-width: 600px; */
	width: 100%;
}

.main .c-fv .title .title-img img {
	width: 100%;
}

.main .c-fv .title .title-img img.img2 {
	margin-top: -6%;
	margin-left: -4%;
}

.main .c-fv .title .title-img img.img3 {
	width: 20%;
	margin: -17% 0 0 70%;
}

.main .c-fv .title .goods-list {
	display: flex;
	gap: 20px;
	margin-top: -7%;
}

.main .c-fv .title .goods-list .item.item:nth-child(1) img {
	height: 76%;
}

.main .c-fv .title .goods-list .item.item:nth-child(2) img {
	height: 68%;
	margin-top: 10%;
}

.main .c-fv .title .goods-list .item.item:nth-child(3) img {
	height: 65%;
	margin: auto;
	display: block;
	top: 10%;
	position: relative;
}

.main .c-fv .title .goods-list .item .text {
	font-size: 15px;
	font-size: 1.03vw;
	font-weight: bold;
	text-align: center;
	color: #fff;
	padding-top: 10px;
	white-space: nowrap;
}

.main .c-fv .title .goods-list .item.item:nth-child(3) .text {
	top: 10%;
	position: relative;
}

.main .c-fv .title .goods-list .item .text span {
	font-size: 20px;
	font-size: 1.4vw;
}

.main .c-fv h1 {
	opacity: 0;
	position: absolute;
}

.main .c-fv .bottom {
	position: absolute;
	bottom: 0;
	width: 100%;
	max-height: 280px;
}

.main .c-fv .sub-msg {
	position: absolute;
	bottom: 30px;
	left: 10%;
	font-size: 10px;
	color: #fff;
	font-size: .75vw;
}

.main .c-introduction {
	background-image: url("img/introduction_bk.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	overflow: hidden;
	color: #fff;
	text-align: center;
	padding: 40px 20px;
}

.main .c-introduction h2 {
	font-family: "Noto Serif JP", serif;
	font-weight: bold;
	font-size: 44px;
	letter-spacing: 6px;
	padding-bottom: 40px;
}

.main .c-introduction .list {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(3, auto);
	row-gap: 42px;
	width: 100%;
	justify-items: center;
}

.main .c-introduction .list .item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 189px;
	height: 189px;
	border-radius: 50%;
	background-color: rgba(40, 119, 88, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	font-size: 20px;
	font-family: "Noto Serif JP", serif;
	font-weight: bold;
	text-align: center;
	color: #fff;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.main .c-introduction .list .item.is-show {
	opacity: 1;
}

.main .c-introduction .list .item:nth-child(1) {
	grid-column: 3 / span 2;
	grid-row: 1;
}

.main .c-introduction .list .item:nth-child(2) {
	grid-column: 2 / span 2;
	grid-row: 2;
	transform: translateY(0px);
}

.main .c-introduction .list .item:nth-child(3) {
	grid-column: 4 / span 2;
	grid-row: 3;
	transform: translateY(-65px);
}

.main .c-introduction .list .item:nth-child(4) {
	grid-column: 8 / span 2;
	grid-row: 3;
	transform: translateY(-65px);
}

.main .c-introduction .list .item:nth-child(5) {
	grid-column: 10 / span 2;
	grid-row: 2;
	transform: translateY(0px);
}

.main .c-introduction .list .item:nth-child(6) {
	grid-column: 9 / span 2;
	grid-row: 1;
}

.main .c-introduction .note {
	position: absolute;
	right: 30px;
	bottom: 30px;
	font-size: 12px;
}

.main .c-trouble {
	background: linear-gradient(to bottom,
			#020D17 0%,
			#020D17 50%,
			#142D40 100%);
	padding: 30px 20px;
}

.main .c-trouble .inner {
	position: relative;
}

.main .c-trouble .inner img {
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 267px;
	bottom: -30px;
}

.main .c-trouble .inner h3 {
	text-align: center;
	background: linear-gradient(to bottom,
			#D99730 0%,
			#FFE572 30%,
			#FFD84B 70%,
			#D99730 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	font-weight: bold;
	font-size: 37px;
}

.main .c-lineup {
	background-image: url("img/linenap_bk.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	overflow: hidden;
	color: #fff;
	text-align: center;
	padding: 50px 20px;
	background-color: #000000;
}

.main .c-lineup h2 {
	font-size: 22px;
	font-weight: bold;
	background: rgba(0, 0, 0, 0.6);
	width: fit-content;
	margin: auto;
	padding: 10px 40px 5px;

	-webkit-mask-image: linear-gradient(to right,
			transparent 0%,
			#000 10%,
			#000 90%,
			transparent 100%);
	mask-image: linear-gradient(to right,
			transparent 0%,
			#000 10%,
			#000 90%,
			transparent 100%);
	margin-bottom: 50px;
}

.main .c-lineup h2 span {
	font-size: 30px;
}

.main .c-lineup .list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10%;
}

.main .c-lineup .list .item img {
	height: 297px;
	margin-bottom: 20px;
}

.main .c-lineup .list .item:nth-of-type(2) img {
	height: 295px;
}

.main .c-lineup .list .item:nth-of-type(3) img {
	height: 298px;
	margin-bottom: 18px;
}

.main .c-lineup .list .item:hover img {
	opacity: .5;
	cursor: pointer;
}

.main .c-lineup .list .item .text span {
	font-size: 20px;
}

.main .c-movie {
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	background-color: #030E17;
	padding: 80px 20px 0;
	overflow: hidden;
}

.main .common-head {
	margin: auto;
	position: relative;
	max-width: 300px;
}

.main .common-head::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -18px;
	width: 32px;
	height: 40px;
	background: url(img/star.png) no-repeat left bottom / 32px 40px;
	opacity: 0;
	transform: translateX(0);
	pointer-events: none;
}

.main .common-head.is-star::before {
	animation: commonHeadStarMove 1.8s ease forwards;
}

@keyframes commonHeadStarMove {
	0% {
		opacity: 0;
		left: 0;
	}

	20% {
		opacity: 1;
		left: 0;
	}

	70% {
		opacity: 1;
		left: calc(100% - 32px);
	}

	100% {
		opacity: 0;
		left: calc(100% - 32px);
	}
}

.main .c-movie .dialog-btn {
	max-width: 800px;
	margin: 60px auto 100px;
	position: relative;
}

.main .c-movie .font {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	display: flex;
	align-items: center;
	overflow: hidden;
	overflow: hidden;
}

.main .c-movie .font .img-area {
	display: flex;
	gap: 150px;
	animation: loop-slide 200s infinite linear 1s both;
	margin: 0;
	padding: 0;
}

.main .c-movie .font .img-area .img {
	width: 1317px;
}

@keyframes loop-slide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

.show_mv iframe {
	pointer-events: none;
}


.show_mv img {
	width: 100%;
}

.show_mv .play-icon img {
	max-width: 92px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.main .c-products {
	background-color: #000;
	padding: 80px 20px 0px;
}

.main .common-product {
	display: grid;
	grid-template-columns: 3fr 7fr;
	gap: 30px;
	color: #fff;
	margin: 40px 0;
}

.main .common-product::before {
	content: "";
	position: absolute;
	top: 10%;
	left: 0;
	width: calc(50vw - 40px);
	height: 100%;
	background: #d60000;

	clip-path: polygon(0 0,
			100% 50%,
			0 100%);
	transform: translateX(-100vw);
	transition: transform 1s ease;
	z-index: 1;
}

.main .common-product.is-show::before {
	transform: translateX(0);
}

.main .common-product>* {
	position: relative;
	z-index: 2;
}

.main .common-product .img-area {
	position: relative;
}

.main .common-product .img-area .img {
	position: relative;
	overflow: visible;
}

.main .common-product .img-area .img img {
	position: relative;
	width: 100%;
	display: block;
	transform: scale(1.3);
	transform-origin: center top;
	padding: 0 0 100px 0px;
}

.main .common-product .img-area .feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding-right: 20px;
}

.main .common-product .img-area .feature .item {
	border-radius: 5px;
	border: 2px solid #000;
	background-color: #fff;
	color: #000;
	font-size: 16px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 30px;
}

.main .common-product .text-area .title {
	font-size: 28px;
	font-weight: bold;
	width: 100%;
	border-bottom: 2px solid #fff;
	position: relative;
	padding: 125px 0 10px;
}

.main .common-product .text-area .title span {
	font-size: 40px;
}

.main .common-product .text-area .title label {
	border: 1px solid #fff;
	font-size: 20px;
	padding: 0px 5px;
	margin-left: 10px;
}

.main .common-product .text-area .title .img1 {
	position: absolute;
	right: 150px;
	bottom: 75px;
	max-width: 215px;
	opacity: 0;
	transition: opacity 0.8s ease;
}

.main .c-product2 .common-product .text-area .title .img1 {
	right: 100px;
	bottom: 60px;
}

.main .c-product3 .common-product .text-area .title .img1 {
	right: 155px;
	bottom: 75px;
	max-width: 151px;
}

.main .common-product .text-area .title .img1.is-show {
	opacity: 1;
}

.main .common-product .text-area .title .img2 {
	position: absolute;
	right: -20px;
	bottom: 0;
	max-width: 252px;
}

.main .c-product2 .common-product .text-area .title .img2 {
	right: -80px;
}

.main .c-product3 .common-product .text-area .title .img2 {
	right: -20px;
}

.main .common-product .text-area .main-text {
	display: grid;
	grid-template-columns: 7fr 3fr;
	gap: 20px;
	align-items: end;
}

.main .common-product .text-area .main-text .head {
	font-size: 24px;
	padding: 20px 0;
}

.main .common-product .text-area .main-text .sub-head {
	font-weight: bold;
	color: #FFD84B;
}

.main .common-product .text-area .main-text .text {
	display: flex;
	flex-wrap: wrap;
	padding-left: 18px;
}

.main .common-product .text-area .main-text .text span {
	font-size: 10px;
}

.main .common-product .text-area .main-text .note {
	font-size: 10px;
	padding-top: 15px;
}

.main .common-product .text-area .sub-content {
	padding: 15px;
	border: 2px solid #069300;
	display: grid;
	grid-template-columns: 3fr 7fr;
	gap: 20px;
	align-items: center;
	margin: 60px 0 30px;
}

.main .common-product .text-area .sub-content .text-content {
	position: relative;
}

.main .common-product .text-area .sub-content .text-content .head {
	font-size: 20px;
	font-weight: bold;
	color: #039300;
	padding-bottom: 15px;
}

.main .common-product .text-area .sub-content .text-content .head span {
	font-size: 24px;
	color: #FFD94A;
}

.main .common-product .text-area .sub-content .text-content .detail {
	font-size: 14px;
}

.main .common-product .text-area .sub-content .text-content .entry {
	position: absolute;
	right: 10px;
	top: -60px;
	color: #039300;
	background-color: #FFD84B;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
}

.main .common-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 40px;
	font-size: 14px;
	color: #fff;
	background: #000000;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition: background 0.3s;
	border-radius: 40px;
	border: 1px solid #fff;
	margin: 0 0 0 auto;
}

.main .common-btn:hover {
	opacity: 1;
}

.main .common-btn::after {
	content: "";
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	background: #FF0000;
	border-radius: 50%;
	transition: transform 0.3s;
	right: 15px;
}

.main .common-btn:hover::after {
	transform: scale(1.4);
}

.main .c-product-content {
	background-color: #000;
	padding: 80px 20px 110px;
	overflow: hidden;
}

.main .c-product-content::before {
	content: "";
	position: absolute;
	top: 125px;
	left: -140px;
	width: 800px;
	aspect-ratio: 899 / 1087;
	background-image: url(img/product_bk1.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	z-index: 0;
}

.main .c-product-content .dialog-btn {
	margin: 0 auto 100px;
	max-width: 600px;
	position: relative;
}

.main .c-product-content.c-product3 .dialog-btn {
	margin: 0 auto 150px;
}

.main .c-product-content .content {
	padding: 0 60px 60px;
	background-color: rgba(20, 45, 64, 0.8);
	color: #fff;
	z-index: 1;
	position: relative;
}

.main .c-product-content .content .head {
	font-family: "Noto Serif JP", serif;
	font-weight: bold;
	font-size: 30px;
	position: relative;
	display: inline-block;
	margin: 50px 0 30px;
}

.main .c-product-content .content .head::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 5px;
	height: 2px;
	width: calc(100% + 80px);
	background: #FF0000;
}

.main .c-product-content .content .table-area {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.main .c-product-content .content .table-area .product-table {
	width: 855px;
	border-collapse: separate;
	border-spacing: 0;
	background: #0E1F2D;
}

.main .c-product-content.c-product3 .content .table-area .product-table {
	width: 633px;
	margin: auto;
}

.main .c-product-content .content .table-area .product-table th,
.main .c-product-content .content .table-area .product-table td {
	border: 1px solid #fff;
	padding: 7px;
	text-align: center;
	vertical-align: middle;
}

.main .c-product-content .content .table-area .product-table thead th {
	position: sticky;
	top: 0;
	z-index: 1;
	background: #0E1F2D;
	font-weight: normal;
}

/* .main .c-product-content .content .table-area .product-table tbody th {
	position: sticky;
	left: 0;
	z-index: 2;
	background: #0E1F2D;
	min-width: 86px;
	font-weight: normal;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;

	-webkit-text-orientation: upright;
	text-orientation: upright;
	letter-spacing: 0.1em;
	text-align: center;
	vertical-align: middle;
} */

.main .c-product-content .content .table-area .product-table tbody th {
	position: -webkit-sticky;
	position: sticky;
	left: 0;
	z-index: 2;
	background: #0E1F2D;
	min-width: 86px;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
}

.main .c-product-content .content .table-area .product-table tbody th span {
	white-space: pre;
	writing-mode: vertical-rl;
	display: inline-block;
	letter-spacing: 0.1em;
}

.main .c-product-content .content .table-area .product-table thead th.corner {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 4;
	background: #0E1F2D;
}

.main .c-product-content .content .table-area .product-table td img {
	width: 100%;
	max-width: 174px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.main .c-product-content .content .note {
	font-size: 14px;
	padding-top: 10px;
}

.main .c-sub-product-content {
	background-color: #fff;
}

.main .c-sub-product-content .inner {
	padding: 40px 20px 60px;
}

.main .c-sub-product-content .img1 {
	padding: 20px 17px 0px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.main .c-sub-product-content .img1 img {
	min-width: 915px;
}

.main .c-sub-product-content .head {
	padding-top: 40px;
}

.main .c-sub-product-content .content {
	display: grid;
	align-items: end;
	grid-template-columns: 7fr 3fr;
	gap: 20px;
	padding-top: 10px;
}

.main .c-sub-product-content .content .text {
	font-size: 12px;
}

.main .c-product-lineup {
	background-color: #D1D1D1;
	padding: 60px 20px;
}

.main .c-product-lineup .head {
	max-width: 142px;
	padding-bottom: 30px;
}

.main .c-product-lineup .lineup-img1 {
	max-width: 900px;
	margin: auto;
	display: block;
	width: 100%;
}

.main .c-product-lineup .lineup-img2 {
	max-width: 730px;
	margin: auto;
	display: block;
	width: 100%;
}

.main .c-product-content .move-area {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.main .c-product-content .content .img-area {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.main .c-product-content .content .img-area.area2 {
	gap: 12%;
}

.main .c-product-content .content .img-area .item img {
	max-width: 340px;
}

.main .c-product-content .content .img-area.area2 .item img {
	max-width: 248px;
}

.main .c-product-content .content .img-area .text {
	text-align: center;
	padding: 10px;
}

.main .c-product-content.c-product2::before {
	top: 110px;
	right: -380px;
	left: auto;
	width: 800px;
	aspect-ratio: 899 / 1087;
	background-image: url(img/product_bk2.png);
}

.main .c-product-content.c-product3::before {
	display: none;
}

.main .c-product-content.c-product2 .content .note {
	text-align: center;
}

.main .c-product-content .content .sub-head {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	padding: 20px;
}

.main .c-product-content.c-product3 .content {
	position: relative;
}

.main .c-product-content.c-product3 .content .head3 {
	position: absolute;
	max-width: 831px;
	left: -20px;
	top: -65px;
}

.main .c-voice {
	padding: 100px 20px 30px;
	background: linear-gradient(to bottom,
			#020D17 0%,
			#020D17 10%,
			#142D40 100%);
	color: #fff;
	text-align: center;
	overflow: hidden;
}

.main .c-voice::before {
	content: "";
	position: absolute;
	bottom: -600px;
	right: -55px;
	width: 522px;
	aspect-ratio: 100 / 240;
	background-image: url(img/voice_bk.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	z-index: 0;
}

.main .c-voice>* {
	position: relative;
	z-index: 1;
}

.main .c-voice .msg {
	padding: 60px 20px 50px;
}

.main .c-voice .graph {
	padding: 30px 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main .c-voice .graph .item {
	display: flex;
	align-items: center;
	gap: 15px;
	color: #fff;
	margin-bottom: 15px;
}

.main .c-voice .graph .item .line {
	position: relative;
	height: 40px;
	display: flex;
	align-items: center;
	font-size: 16px;
	padding-left: 15px;
	color: #fff;
	opacity: 0;
	transition: opacity 400ms ease;
	white-space: nowrap;
}

.main .c-voice .graph .item .line::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right,
			#265112 0%,
			#2E6115 20%,
			#000000 100%);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 1500ms ease;
	z-index: -1;
	will-change: transform;
}

.main .c-voice .graph .item.is-show .line {
	opacity: 1;
}

.main .c-voice .graph .item.is-show .line::before {
	transform: scaleX(1);
}

.main .c-voice .graph .item .num {
	font-size: 20px;
}

.main .c-voice .graph .item .num span {
	font-size: 26px;
}

.main .c-voice .graph .text-area img {
	max-width: 292px;
}

.main .c-voice .graph .text-area .text {
	display: none;
}

.main .c-voice .note {
	font-size: 12px;
	text-align: right;
}

.main .c-series {
	background-color: #030E17;
	color: #fff;
	text-align: center;
	padding: 40px 20px;
	/* background-image: url(img/series_bk.png);
	background-repeat: no-repeat;
	background-position: center 80px;
	background-size: cover; */
}

.main .c-series .top-label {}

.main .c-series .head {
	font-family: "Noto Serif JP", serif;
	font-size: 26px;
	padding-top: 10px;
}

.main .c-series .bk-img {
	position: absolute;
	top: 18%;
	left: 50%;
	width: 100vw;
	height: auto;
	transform: translateX(-50%);
	object-fit: cover;
}

.main .c-series .goods-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10%;
	position: relative;
	padding-top: 17vw;
}

.main .c-series .goods-list .item img {
	height: 409px;
	margin-bottom: 20px;
}

.main .c-series .goods-list .item:nth-of-type(2) img {
	height: 406px;
	margin-bottom: 23px;
}

.main .c-series .goods-list .item:nth-of-type(3) img {
	height: 414px;
	margin-bottom: 15px;
}

.main .c-series .goods-list .item .text {
	font-size: 14px;
}

.main .c-safety {
	padding: 60px 20px;
	background-color: #fff;
}

.main .c-safety .content {
	display: grid;
	grid-template-columns: 3fr 7fr;
}

.main .c-safety .content .title-area {
	font-size: 24px;
	border-right: 1px solid #000;
	display: flex;
	align-items: center;
}

.main .c-safety .content .img {
	display: flex;
	align-items: end;
	height: 100%;
}

.main .c-safety .content .text-area {
	padding-left: 8%;
}

.main .c-safety .content .text-area .explan {
	display: flex;
	gap: 10px;
	padding-bottom: 10px;
}

.main .c-safety .content .text-area .explan .head {
	background-color: #DC000C;
	width: 145px;
	height: 22px;
	border-radius: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	margin-top: 3px;
}

.main .c-safety .content .text-area .img-area {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding-top: 10px;
}

.main .c-safety .content .text-area .img-area .item .text {
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	color: #DC010B;
	padding-top: 10px;
}

.main .c-story {
	padding: 60px 20px 0;
	background-image: url(img/story_bk.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.main .c-story .content {
	display: grid;
	grid-template-columns: 3.6fr 6.4fr;
	gap: 10px;
	align-items: center;
	color: #fff;
}

.main .c-story .content .img {
	display: flex;
	align-items: end;
	height: 100%;
}

.main .c-story .content .text-area .title {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 20px;
}

.main .c-story .content .text-area .text {
	font-size: 14px;
}

@media screen and (max-width: 1050px) {
	.main .c-introduction h2 {
		font-size: 29px;
	}

	.main .c-introduction .list .item {
		width: 158px;
		height: 158px;
		font-size: 18px;
	}

	.main .c-trouble .inner img {
		max-width: 200px;
	}

	.main .c-trouble .inner h3 {
		font-size: 26px;
	}

	.main .c-lineup .list .item img {
		height: 30vw;
	}

	.main .c-lineup .list .item:nth-of-type(2) img {
		height: 29.6vw;
	}

	.main .c-lineup .list .item:nth-of-type(3) img {
		height: 30vw;
		margin-bottom: 18px;
	}

	.main .common-product .text-area .title {
		font-size: 20px;
	}

	.main .common-product .text-area .title span {
		font-size: 28px;
	}

	.main .common-product .text-area .title label {
		font-size: 15px;
		display: block;
		width: fit-content;
		margin-left: 0;
	}

	.main .common-product .text-area .title .img2 {
		max-width: 190px;
	}

	.main .c-product2 .common-product .text-area .title .img2 {
		right: -20px;
	}

	.main .common-product .text-area .title .img1 {
		right: 120px;
		max-width: 180px;
		bottom: 56px;
	}

	.main .c-product2 .common-product .text-area .title .img1 {
		right: 120px;
		bottom: 47px;
	}

	.main .c-product3 .common-product .text-area .title .img1 {
		right: 125px;
		bottom: 50px;
	}

	.main .c-product-content .content {
		padding: 0 30px 60px;
	}

	.main .c-product-content.c-product3 .content .head3 {
		max-width: 750px;
	}

	.main .c-voice .graph {
		display: block;
	}

	.main .c-voice .graph .graph-area {
		width: fit-content;
		margin: auto;
	}

	.main .c-series .bk-img {
		top: 25%;
	}

	.main .c-voice .graph .text-area img {
		display: none;
	}

	.main .c-voice .graph .text-area .text {
		text-align: center;
		font-weight: bold;
		font-size: 20px;
		display: block;
		padding-top: 20px;
	}

	.main .c-series .goods-list {
		padding-top: 20vw;
	}

	.main .c-series .goods-list .item img {
		height: 34vw;
	}

	.main .c-series .goods-list .item:nth-of-type(2) img {
		height: 33.4vw;
		margin-bottom: 22px;
	}

	.main .c-series .goods-list .item:nth-of-type(3) img {
		height: 34.5vw;
		margin-bottom: 17px;
	}

	.main .c-story .content .text-area .text {
		padding-bottom: 30px;
	}
}

@media screen and (max-width: 768px) {
	.main .c-overlay span {
		font-size: 28px;
		letter-spacing: 10px;
	}

	.main .c-fv .fv img {
		padding-top: 40px;
	}

	.main .c-fv .title .title-img {}

	.main .c-fv .sub-msg {
		font-size: 10px;
		bottom: 40px;
		left: 20px;
	}

	.main .c-fv .title {
		right: auto;
		padding: 20px;
		top: auto;
		width: 100%;
		bottom: 80px;
	}

	.main .c-fv .title .goods-list {
		margin-top: 0px;
		justify-content: center;
	}

	.main .c-fv .title .goods-list .item .text {
		font-size: 10px;
	}

	.main .c-fv .title .goods-list .item .text span {
		font-size: 12px;
	}

	.main .c-fv .title .goods-list .item.item:nth-child(1) img {
		height: 35vw;
	}

	.main .c-fv .title .goods-list .item.item:nth-child(2) img {
		height: 33vw;
		margin: 2vw auto 0;
		display: block;
	}

	.main .c-fv .title .goods-list .item.item:nth-child(3) img {
		height: 33vw;
		top: 2vw;
	}

	.main .c-fv .title .goods-list .item.item:nth-child(3) .text {
		top: 2vw;
	}

	.main .c-fv .title .title-img img.img2 {
		margin-top: -5%;
		transform: scale(1.1);
		margin-left: 0;
	}

	.main .c-fv .title .title-img img.img3 {
		margin: -15% 0 0 78%;
	}

	.main .c-introduction {
		background-image: url(img/introduction_bk_sp.png);
		background-size: 100%;
		padding: 55vw 20px 30vw;
		background-color: #072009;
	}

	.main .c-introduction .list {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		row-gap: 20px;
	}

	.main .c-introduction .list .item {
		grid-column: auto !important;
		grid-row: auto !important;
		transform: translateY(0px) !important;
		background: #2B462F;
	}

	.main .c-introduction .list .item:nth-child(2) {
		transform: translateY(60px) !important;
	}

	.main .c-introduction .list .item:nth-child(4) {
		transform: translateY(60px) !important;
	}

	.main .c-introduction .list .item:nth-child(6) {
		transform: translateY(60px) !important;
	}

	.main .c-introduction .note {
		position: absolute;
		right: 20px;
		bottom: auto;
		font-size: 10px;
		top: 83vw;
	}

	.main .c-trouble {
		padding: 30px 10px 20px;
	}

	.main .c-trouble .inner img {
		max-width: 238px;
		bottom: auto;
		top: -206px;
		left: -10px;
	}

	.main .c-trouble .inner h3 {
		font-size: 27px;
	}

	.main .c-lineup {
		padding: 50px 10px;
	}

	.main .c-lineup h2 {
		font-size: 20px;
		padding: 10px 10px 5px;
		mask-image: linear-gradient(to right,
				transparent 0%,
				rgba(0, 0, 0, 0.5) 5%,
				rgba(0, 0, 0, 0.8) 10%,
				#000 15%,
				#000 85%,
				rgba(0, 0, 0, 0.8) 90%,
				rgba(0, 0, 0, 0.5) 95%,
				transparent 100%);
		width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}

	.main .c-lineup {
		background-image: url(img/linenap_bk_sp.png);
		background-size: 100%;
		background-position: bottom center;
	}

	.main .c-lineup .list {
		display: block;
	}

	.main .c-lineup .list .item {
		margin-bottom: 30px;
	}

	.main .c-lineup .list .item img {
		height: 250px !important;
		margin-bottom: 10px !important;
	}

	.main .c-lineup .list .item .text {
		font-size: 16px;
	}

	.main .common-head {
		max-width: 220px;
	}

	.main .common-head::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: -13px;
		width: 24px;
		height: 29px;
		background: url(img/star.png) no-repeat left bottom / 24px 29px;
		opacity: 0;
		transform: translateX(0);
		pointer-events: none;
	}

	.show_mv .play-icon img {
		max-width: 40px;
	}

	.main .c-movie {
		padding: 60px 20px 0;
		overflow: hidden;
	}

	.main .c-movie .dialog-btn {
		margin: 40px auto 50px;
	}

	.main .c-movie .font .img-area {
		gap: 50px;
	}

	.main .c-movie .font .img-area .img {
		width: 675px;
	}

	.main .c-products {
		padding: 60px 20px 0;
	}

	.main .common-product {
		display: block;
	}

	.main .common-product .img-area .img img {
		transform: scale(1);
		padding: 0;
		max-width: 400px;
		margin: auto;
		padding-left: 15px;
	}

	.main .c-product2 .common-product .img-area .img img {
		padding-left: 20px;
	}

	.main .c-product3 .common-product .img-area .img img {
		max-width: 300px;
		padding-left: 42px;
	}

	.main .common-product .img-area .feature {
		padding: 0 20px;
	}

	.main .common-product .text-area .title .img2 {
		max-width: 140px;
	}

	.main .common-product .text-area .title .img1 {
		right: 75px;
		max-width: 140px;
		bottom: 40px;
	}

	.main .common-product .text-area .main-text .head {
		font-size: 18px;
	}

	.main .common-product .text-area .main-text {
		display: block;
	}

	.main .common-product .text-area .main-text .right {
		display: none;
	}

	.main .common-btn {
		margin: auto;
	}

	.main .common-product::before {
		width: calc(80vw - 40px);
		height: 80vw;
	}

	.main .c-product2 .common-product::before {
		top: 6%;
	}

	.main .c-product3 .common-product::before {
		top: 4%;
	}

	.main .common-product .text-area .title {
		padding: 60px 0 10px;
	}

	.main .c-product-content {
		padding: 70px 20px 40px;
	}

	.main .c-product-content .dialog-btn {
		margin: 0 auto 60px;
	}

	.main .c-product-content::before {
		top: 200px;
		left: auto;
		width: 281px;
		right: -40px;
		background-image: url(img/product_bk1_sp.png);
	}

	.main .c-product-content .content .head {
		font-size: 20px;
		margin: 30px 0 20px;
	}

	.main .c-product-content .content .head::before {
		bottom: 2px;
	}

	.main .c-product-content .content .head.line2::before {
		width: 153px;
		left: -30px;
	}

	.main .c-product-content .content .head.line2::after {
		content: "";
		position: absolute;
		right: 0;
		bottom: 31px;
		height: 2px;
		width: calc(100% + 80px);
		background: #FF0000;
	}

	.main .c-product-content .content {
		padding: 0 10px 40px;
	}

	.main .c-product-content .content .note {
		padding-top: 20px;
		font-size: 12px;
	}

	.main .c-sub-product-content .inner {
		padding: 0px 0px 30px;
	}

	.main .c-sub-product-content .head {
		font-size: 18px;
	}

	.main .c-sub-product-content .content {
		display: block;
	}

	.main .c-product-lineup {
		padding: 50px 0px 40px 20px;
		overflow: hidden;
	}

	.main .c-product-lineup .lineup-img1 {
		margin-left: 10px;
	}

	.main .c-product2 .common-product .text-area .title .img2 {
		right: -8px;
		max-width: 120px;
		bottom: 0px;
	}

	.main .c-product2 .common-product .text-area .title .img1 {
		right: 60px;
		bottom: 67px;
	}

	.main .c-product2 .common-product .text-area .title {
		padding: 90px 0 10px;
	}

	.main .c-product-content .move-area {
		display: block;
	}

	.main .c-product-content .content .img-area {
		display: block;
	}

	.main .c-product-content.c-product2 .dialog-btn {
		margin: 0 auto 30px;
	}

	.main .c-product-content.c-product2 .content .note {
		text-align: left;
		padding-top: 0;
	}

	.main .c-product-content .content .sub-head {
		font-size: 16px;
	}

	.main .c-product-content .content .img-area.area2 {
		display: flex;
	}

	.main .c-product-content .content .img-area .text {
		font-size: 10px;
		padding: 10px 0 30px;
	}

	.main .c-product-content .content .img-area .item img {
		width: 100%;
		margin: auto;
		display: block;
	}

	.main .c-sub-product-content .img2 img {
		margin: auto;
		display: block;
	}

	.main .c-product-lineup.c-product2 {
		padding: 50px 20px 40px 20px;
	}

	.main .common-product.c-product3 .img-area .img img {
		max-width: 80%;
		margin: 0 0 0 auto;
	}

	.main .c-product3 .common-product .text-area .title .img1 {
		right: 73px;
		bottom: 50px;
		max-width: 110px;
	}

	.main .common-product .text-area .sub-content {
		display: block;
		padding: 30px 15px;
	}

	.main .common-product .text-area .sub-content .img img {
		display: block;
		margin: 20px auto;
	}

	.main .common-product .text-area .sub-content .head {
		font-size: 20px;
		font-weight: bold;
		color: #039300;
		padding-bottom: 0px;
		text-align: center;
	}

	.main .common-product .text-area .sub-content .head span {
		font-size: 24px;
		color: #FFD94A;
	}

	.main .common-product .text-area .sub-content .text-content .entry {
		position: absolute;
		right: -25px;
		top: -110px;
		color: #039300;
		background-color: #FFD84B;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
		text-align: center;
		line-height: 1.2;
		font-size: 18px;
	}

	.main .c-product-content.c-product3 .content .head3 {
		width: 100%;
		margin: auto;
		left: 0px;
		max-width: 340px;
	}

	.main .c-voice {
		padding: 40px 20px 20px;
	}

	.main .c-voice::before {
		bottom: -450px;
		right: -125px;
		width: 350px;
	}

	.main .c-voice .graph .item {
		gap: 10px;
	}

	.main .c-voice .graph .item .line {
		font-size: 11px;
		height: auto;
		padding: 5px 5px 5px 10px;
		text-align: left;
		white-space: normal;
	}

	.main .c-voice .graph .item .num {
		font-size: 12px;
	}

	.main .c-voice .graph .item .num span {
		font-size: 15px;
	}

	.main .c-voice .note {
		font-size: 10px;
	}

	.main .c-series {
		background-color: #030E17;
		padding: 30px 20px 0;
	}

	.main .c-series .top-label {
		font-size: 15px;
	}

	.main .c-series .head {
		font-size: 24px;
		font-weight: normal;
	}

	.main .c-series .bk-img {
		/* top: 0px; */
		top: 13%;
	}

	.main .c-series .goods-list {
		display: block;
		padding-top: 72%;
	}

	.main .c-series .goods-list .item img {
		height: auto !important;
		max-width: 450px;
		width: 100%;
		margin-bottom: 13px !important;
		padding-right: 40px;
	}

	.main .c-series .goods-list .item .text {
		color: #000;
		padding-bottom: 30px;
	}

	.main .c-safety {
		padding: 40px 20px 10px;
	}

	.main .c-safety .content {
		display: block;
	}

	.main .c-safety .content .title-area {
		border: unset;
		padding-bottom: 30px;
		justify-content: center;
	}

	.main .c-safety .content .text-area {
		padding-left: 0;
	}

	.main .c-safety .content .text-area .explan {
		display: block;
	}

	.main .c-safety .content .text-area .img-area {
		display: block;
		padding: 20px 8px 0;
	}

	.main .c-safety .content .text-area .img-area .item {
		margin-bottom: 20px;
	}

	.main .c-story .content {
		display: block;
	}

	.main .c-story {
		padding: 60px 20px 0;
		background-image: url(img/story_bk_sp.png);
		background-repeat: no-repeat;
		background-position: top left;
		background-size: cover;
	}
}

/*-----------------------------------
dialog
-------------------------------------*/
.fancybox__backdrop {
	background: linear-gradient(to bottom,
			#020D17 0%,
			#020D17 60%,
			#142D40 100%);
}

.fancybox__container .movie-dialog {
	max-width: 960px;
	padding: 0;
	width: 100%;
	aspect-ratio: 560 / 315;
}

.fancybox__container .movie-dialog iframe {
	width: 100%;
	height: 100%;
}

.fancybox__content>.carousel__button.is-close {
	width: 30px;
	height: 30px;
	top: -60px;
	right: -60px;
}

.fancybox__content>.carousel__button.is-close::before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url(img/sp_menu_close.png) no-repeat center / contain;
}

.fancybox__content>.carousel__button.is-close svg {
	display: none;
}

@media screen and (max-width: 1023px) {
	.fancybox__content>.carousel__button.is-close {
		width: 30px;
		height: 30px;
		top: -60px;
		right: 0px;
	}

	.fancybox__content>.carousel__button.is-close::before {
		width: 30px;
		height: 30px;
	}
}

@media screen and (max-width: 768px) {
	.fancybox__slide {
		padding: 48px 20px 8px 20px !important;
	}
}

/*-----------------------------------
footer
-------------------------------------*/
.l-footer {
	padding: 35px 0 40px;
	background: #fff;
}

.l-footer__menus {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 880px;
	max-width: 100%;
	margin: 0 auto 40px;
}

.l-footer__menu {
	font-size: 20px;
	line-height: 1.8;
}

@media screen and (width <=834px) {
	.l-footer__menu {
		font-size: 14px;
	}
}

.l-footer__menu::after {
	content: "｜";
}

.l-footer__logo {
	width: 207px;
	margin: 0 auto 30px;
}

@media screen and (width <=834px) {
	.l-footer__logo {
		width: 140px;
	}
}

.l-footer__copy {
	display: block;
	margin: 13px auto auto;
	font-size: 18px;
	line-height: 2.78rem;
	text-align: center;
}

@media screen and (width <=834px) {
	.l-footer__copy {
		font-size: 10px;
	}
}