@charset "UTF-8";

/* リンクページの記述 */
/* 全体 */
html {
	font-size: 100%;
	scroll-behavior: smooth;
}

body {
	color: #000;
	overflow-x: hidden;
	font-family: 'DotGothic16', sans-serif;
	background-repeat: repeat;
	background-position: left;
	background-image: url(../img/denim2.png);
	cursor: none;
}

#mouse {
	pointer-events: none;
	position: fixed;
	top: -4px;
	left: -4px;
	width: 8px;
	height: 8px;
	background: #000;
	border-radius: 50%;
	transform: translate(0, 0);
	transition-timing-function: ease-out;
	z-index: 10000;
}

#mouse-stalker {
	pointer-events: none;
	position: fixed;
	top: -14px;
	left: -14px;
	width: 28px;
	height: 28px;
	background: rgba(240, 237, 45, 0.4);
	border-radius: 50%;
	transform: translate(0, 0);
	transition: 0.3s;
	transition-timing-function: ease-out;
	z-index: 9999;
	box-shadow: 0 0 20px rgba(173, 238, 53, 0.5);
}

.back-img {
	background-color: rgba(255, 255, 255, 0.3);
	width: 100%;
	height: 100%;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

a {
	color: #000;
	text-decoration: none;
	cursor: none;
}

li {
	list-style: none;
}

.en {
	font-size: 40px;
	display: block;
	margin-bottom: 10px;
}

.jp {
	font-size: 16px;
	text-decoration: underline 1px solid #111;
}

.other-text {
	padding: 16px;
	line-height: 1.5;
}

/* ヘッダー */
.header {
	width: 100vw;
	height: 20vw;
}

.logo {
	padding: 10px;
	width: 60px;
}

.nav {
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: rgba(255, 255, 255, 0.3);
	z-index: 100;
}

.sns {
	width: 100%;
	position: fixed;
	top: 80px;
	background-color: rgba(255, 255, 255, 0.3);
	z-index: 100;
}

.sns li:hover {
	animation: shake 0.4s ease;
}

@keyframes shake {
	0% {
		transform: translate(0);
	}

	16% {
		transform: translate(5px);
	}

	32% {
		transform: translate(-5px);
	}

	48% {
		transform: translate(2px);
	}

	64% {
		transform: translate(-2px);
	}

	80% {
		transform: translate(1px);
	}

	96% {
		transform: translate(-1px);
	}

	100% {
		transform: translate(0);
	}
}

.sns ul {
	display: flex;
	justify-content: center;
	margin-right: 16px;
	gap: 32px;
	align-items: center;
	height: 30px;
}

.pc-menu {
	display: none;
}

/* ハンバーガー */
.sp-menu #open {
	font-size: 40px;
	cursor: pointer;
	padding-right: 16px;
}

.sp-menu #open.hide {
	display: none;
}

.overlay p {
	margin-top: 100px;
}

.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.8);
	text-align: center;
	padding: 64px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.8s;
}

.overlay.show {
	opacity: 1;
	pointer-events: auto;
	z-index: 1000;
}

.overlay #close {
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 40px;
	cursor: pointer;
}

.overlay li {
	margin-top: 30px;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.3s, transform 0.3s;
	font-size: 30px;
}

.overlay.show li {
	opacity: 1;
	transform: none;
}

.overlay.show li:nth-child(1) {
	transition-delay: 0.2s;
}

.overlay.show li:nth-child(2) {
	transition-delay: 0.3s;
}

.overlay.show li:nth-child(3) {
	transition-delay: 0.4s;
}

.overlay.show li:nth-child(4) {
	transition-delay: 0.5s;
}

.overlay.show li:nth-child(5) {
	transition-delay: 0.6s;
}

.overlay.show li:nth-child(6) {
	transition-delay: 0.7s;
}

.overlay.show li:nth-child(7) {
	transition-delay: 0.8s;
}

.overlay .logo {
  position: absolute;
	left: 0;
	top: -1px;
}

@keyframes text-move {
	0% {
		stroke-dashoffset: 500;
		fill: none;
	}

	50% {
		opacity: 0.8;
	}

	90% {
		opacity: 0;
	}

	100% {
		stroke-dashoffset: 0;
		fill: #fff;
	}
}

.pc-menu a {
	transition: .3s;
}

.pc-menu a span {
	display: inline-block;
}

.pc-menu a:hover span {
	transform: rotateY(360deg);
	transition: .6s;
}

.pc-menu a:hover span:nth-of-type(1) {
	-webkit-transition-delay: .02s;
	transition-delay: .02s;
}

.pc-menu a:hover span:nth-of-type(2) {
	-webkit-transition-delay: .04s;
	transition-delay: .04s;
}

.pc-menu a:hover span:nth-of-type(3) {
	-webkit-transition-delay: .06s;
	transition-delay: .06s;
}

.pc-menu a:hover span:nth-of-type(4) {
	-webkit-transition-delay: .08s;
	transition-delay: .08s;
}

.pc-menu a:hover span:nth-of-type(5) {
	-webkit-transition-delay: .10s;
	transition-delay: .10s;
}

.pc-menu a:hover span:nth-of-type(6) {
	-webkit-transition-delay: .12s;
	transition-delay: .12s;
}

.pc-menu a:hover span:nth-of-type(7) {
	-webkit-transition-delay: .14s;
	transition-delay: .14s;
}



/* アバウト */
h2 {
	text-align: center;
	font-weight: normal;
	margin: 30px 0 30px 0;
	text-shadow: 0 13.36px 8.896px #1b1813, 0 -2px 1px #fff;
}

.about p {
	padding: 16px;
	font-size: 20px;
}

.map iframe {
	width: 100%;
	filter: grayscale(1);
}

/* ニュース */
.inner-news dl {
	margin: 16px;
	width: 80%;
	margin: 16px auto;
}

.inner-news img {
	width: 80%;
	margin: 0 auto;
	display: block;
}

/* コンセプト */
.concept-title {
	font-size: 24px;
}

.concept-text {
	padding: 16px;
	line-height: 1.5;
}

/* クオリティー */
.quality-title {
	font-size: 24px;
}

.quality-text {
	padding: 16px;
	line-height: 1.5;
}

.quality-img-slide {
	display: flex;
	animation: loop-slide 20s infinite linear 1s both;
}

.d-demo__item {
	width: 350px;
	height: 350px;
	margin-top: 70px;
}

.quality-wrap {
	display: flex;
	height: 350px;
	overflow: hidden;
}

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

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

/* コンタクト */
dl {
	margin: 0 auto;
	width: 90%;
	border-top: 3px dashed #c9ab53;
	border-right: 3px dashed #c9ab53;
	border-left: 3px dashed #c9ab53;
}

dl dt {
	padding: 1em;
	color: #000;
}

dl dd {
	border-bottom: 3px dashed #c9ab53;
	margin: 0;
	padding: 1em;
}

dl dt .must {
	color: #d23939;
}

input[type="email"] {
	width: 60%;
}

input {
	font-size: 1em;
	padding: 5px;
}

label {
	margin-right: 1em;
}

select {
	font-size: 1em;
}

textarea {
	width: 80%;
	font-size: 1em;
	padding: 5px;
}

p.submit {
	text-align: center;
}

input[type="submit"] {
	margin: 20px 0 20px 0;
	padding: 20px 60px;
	background: #fff;
	font-size: 1em;
	color: #000;
	font-weight: bold;
	border-radius: 20px;
	cursor: pointer;
}

input[type="submit"]:hover {
	opacity: 0.7;
}

/* 採用*/
.recruit p {
	padding: 16px;
}

.recruit a:hover {
	opacity: 0.6;
}

/* ご購入までの流れ */
.purchase p {
	padding: 16px;
	font-size: 20px;
}

.purchase-inner-text {
	border: 3px dashed #c9ab53;
	margin: 16px;
	border-radius: 30px;
}

.allow {
	text-align: center;
	margin: 16px;
}

/* フッター */
.footer {
	width: 100%;
	height: 100vh;
	background-image: url(../img/other/lake-1681485_1920.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}

.footer-text {
	background-color: rgba(255, 255, 255, 0.5);
	width: 100%;
	height: 100vh;
}

.f-nav {
	font-size: 16px;
	padding: 150px 0 16px 32px;
}

.f-nav a:hover {
	opacity: 0.6;
}

.f-nav li::before {
	content: "◀";
}

.footer li {
	line-height: 1.3;
}

.group {
	padding: 16px 0 16px 32px;
	font-size: 16px;
}

.group a::before {
	content: "- ";
}

.group p a:hover {
	opacity: 0.6;
}

.group p {
	line-height: 1.3;
}

.company {
	padding: 16px 0 16px 32px;
	font-size: 16px;
}

.company a:hover {
	opacity: 0.6;
}

.company p {
	line-height: 1.3;
}

.policy {
	text-align: center;
	padding: 16px;
	font-size: 16px;
}

.policy a:hover {
	opacity: 0.6;
}

.copyright {
	text-align: center;
	white-space: nowrap;
	padding-top: 16px;
	font-size: 16px;
}

/* プライバシーポリシーのモダール */
#close_modal {
	cursor: pointer;
	width: 150px;
	border: 1px solid #111;
	border-radius: 20px;
	text-align: center;
	padding: 12px;
	margin: 16px auto 0;
}

#close_modal:hover {
	opacity: 0.6;
}

#mask {
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 100;
}

#modal {
	background: #fff;
	width: 70%;
	height: 80%;
	padding: 20px;
	position: absolute;
	transform: translate(0, -100%);
	left: 0;
	right: 0;
	margin: 0 auto;
	transition: transform 0.5s;
	z-index: 101;
}

#modal>p {
	margin: 0 0 20px;
	line-height: 1.3;
}

#modal>p:hover {
	opacity: 0.6;
}

#modal>h4 {
	text-align: center;
	margin: 16px;
	font-size: 32px;
}

#mask.hidden {
	display: none;
}

#modal.hidden {
	transform: translate(0, -15000px);
}