@charset "UTF-8";

/* 全体 */
html {
	font-size: 100%;
	scroll-behavior: smooth;
}

body {
	color: #000;
	font-family: 'Yusei Magic', sans-serif;
	background-color: #eeebdd;
	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(178, 255, 80, 0.6);
	border-radius: 50%;
	transform: translate(0, 0);
	transition: 0.3s;
	transition-timing-function: ease-out;
	z-index: 9999;
	box-shadow: 0 0 28px rgba(178, 255, 80, 0.6);
}

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;
}

.read-more {
	text-align: right;
	padding: 8px 16px 8px 0;
	text-shadow: 0 13.36px 8.896px #c4b59d, 0 -2px 1px #fff;
}

.read-more p::after {
	content: "→";
}

.read-more a span {
	display: inline-block;
	transition: 0.3s;
}

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

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

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

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

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

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

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

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

.read-more a:hover span:nth-of-type(8) {
	-webkit-transition-delay: .16s;
	transition-delay: .16s;
}


/* ヘッダー */
/* スクロールダウンのためのCSS */
/*スクロールダウン全体の場所*/
.scrolldown4 {
	/*描画位置*/
	position: absolute;
	bottom: 0;
	right: 25%;
	/*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
	0% {
		bottom: 1%;
	}

	50% {
		bottom: 3%;
	}

	100% {
		bottom: 1%;
	}
}

/*Scrollテキストの描写*/
.scrolldown4 span {
	/*描画位置*/
	position: absolute;
	left: -20px;
	bottom: 10px;
	/*テキストの形状*/
	color: #b2ff50;
	font-size: 20px;
	letter-spacing: 0.05em;
	font-family: 'Times New Roman', Times, serif;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}


/* 矢印の描写 */
.scrolldown4:before {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	right: -6px;
	/*矢印の形状*/
	width: 1px;
	height: 20px;
	background: #b2ff50;
	transform: skewX(-31deg);
}

.scrolldown4:after {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	right: 0;
	/*矢印の形状*/
	width: 1px;
	height: 50px;
	background: #b2ff50;
}


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

.header {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	width: 100%;
	height: 100vh;
	background-image: url(../img/room/hans-isaacson-bQTVoJHrkO0-unsplash.jpg);
}

.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.3s ease;
}

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

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

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

	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: space-around;
	margin-right: 16px;
	align-items: center;
	height: 30px;
}

.pc-menu {
	display: none;
}

.left-title {
	display: none;
}

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

.sp-menu:hover {
	opacity: 0.6;
}

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

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

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

.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 li :hover {
	opacity: 0.6;
}

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

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

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

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

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

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

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

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

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

/* SVG */
svg {
	display: block;
}

.svg-container {
	position: relative;
	width: 320px;
}

.svg-content {
	position: absolute;
	top: -30px;
	left: 0;
}

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

	50% {
		opacity: 0.8;
	}

	90% {
		opacity: 0;
	}

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

.my-text1 {
	font-size: 32px;
	font-weight: bold;
	fill: #fff;
	stroke: #fff;
	animation: text-move 6s ease-out;
	stroke-dasharray: 500;
	filter: drop-shadow(5px 5px 10px #333);
}

.my-text2 {
	font-size: 82px;
	font-weight: bold;
	fill: #fff;
	stroke: #fff;
	animation: text-move 6s ease-out;
	stroke-dasharray: 500;
	filter: drop-shadow(5px 5px 10px #333);
}

/* PCメニューの回るアニメ */
.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;
}

/* アバウト */
.about h2 {
	margin: 130px 0 30px 0;
	text-align: center;
	text-shadow: 0 13.36px 8.896px #c4b59d, 0 -2px 1px #fff;
}

.about {
	width: 100%;
}

.about p {
	line-height: 1.5;
	padding: 0 16px 0 16px;
}

.about-img {
	display: flex;
	position: relative;
}

.img-left {
	position: absolute;
	width: 45%;
	margin-top: 110px;
	left: 40px;
	overflow: hidden;
}

.img-right {
	position: absolute;
	right: 40px;
	width: 45%;
	margin-top: 30px;
	overflow: hidden;
}

.img-left img {
	display: block;
	transform: scale(1.5);
	transition-duration: 0.5s;
	transition-delay: 0.2s;
}

.img-right img {
	display: block;
	transform: scale(1.5);
	transition-duration: 0.5s;
	transition-delay: 0.2s;
}

.img-left img:hover {
	transform: scale(1);
	transition-duration: 0.5s;
	transition-delay: 0.2s;
}

.img-right img:hover {
	transform: scale(1);
	transition-duration: 0.5s;
	transition-delay: 0.2s;
}

/*  ニュース */
.news {
	max-width: 100%;
}

.news h2 {
	text-align: center;
	margin: 300px 0 30px 0;
	text-shadow: 0 13.36px 8.896px #c4b59d, 0 -2px 1px #fff;
}

.inner-news {
	display: flex;
	justify-content: space-between;
}

.news-left-top {
	width: 50%;
	opacity: 0;
}

.news-right-top {
	width: 50%;
}

.news-left-bottom {
	width: 50%;
}

.news-right-bottom {
	width: 50%;
}

.news-text {
	font-size: 16px;
	padding: 8px;
}

.news p {
	margin: 8px;
}

.news-img {
	overflow: hidden;
}

.news img {
	object-fit: cover;
	width: 500px;
	height: 200px;
}

.news img:hover {
	transform: scale(1.1);
	transition: 0.3s;
	transition-delay: 0.3s;
}

.news dt {
	padding: 4px 8px 4px 8px;
}

.news dd {
	padding: 4px 8px 4px 8px;
}

/* APIアニメ */
.animate {
	opacity: 0;
	transform: translateZ(40px);
	transition: opacity 0.5s, transform 0.5s;
}

.animate.slide-from-left {
	transform: translateX(-40px);
}

.animate.slide-from-right {
	transform: translateX(40px);
	transition-delay: 0.5s;
}

.animate.appear {
	opacity: 1;
	transform: none;
}

.animate.delay {
	transition-delay: 0.3s;
}

/* トップへ戻るボタン */
.to-top {
	position: fixed;
	bottom: 16px;
	right: 16px;
}


.to-top i {
	font-size: 56px;
	color: #000;
}

.to-top:hover {
	animation: move 0.3s ease;
}

@keyframes move {
	0% {
		transform: translateY(0);
	}

	20% {
		transform: translateY(-16px);
	}

	50% {
		transform: translateY(-8px);
	}

	90% {
		transform: translateY(-1px);
	}

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


/* コンセプト */
.concept {
	max-width: 100%;
}

.concept h2 {
	margin: 100px 0 30px 0;
	text-align: center;
	text-shadow: 0 13.36px 8.896px #c4b59d, 0 -2px 1px #fff;
}

.concept p {
	line-height: 1.5;
}

.concept-img {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 30em;
	margin: 0 auto;
}

.concept-img1 {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center bottom;
	background-image: url(../img/other/father-79456_1920.jpg);
}

.concept-img1::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 30em;
	content: '';
	background-color: #fff;
	opacity: 0.5;
}

.concept-img2 {
	position: absolute;
	width: 100%;
	height: auto;
	font-size: 40px;
	font-weight: bold;
	background-size: cover;
	background-position: center top;
	background-image: url(../img/other/father-79456_1920.jpg);
	-webkit-background-clip: text;
	color: transparent;
	text-align: center;
	top: 30%;
	transform: translate(0, -25%);
}

.concept .concept-text {
	font-size: 16px;
	color: #000;
	padding: 32px 16px 0 16px;
	text-align: left;
}

/* クオリティー */
.quality {
	max-width: 100%;
}

.quality h2 {
	margin: 130px 0 30px 0;
	text-align: center;
	text-shadow: 0 13.36px 8.896px #c4b59d, 0 -2px 1px #fff;
}

.quality-text {
	text-align: center;
	font-size: 24px;
	text-shadow: 0 13.36px 8.896px #c4b59d, 0 -2px 1px #fff;
}

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

.quality-img {
	position: relative;
	width: 100%;
	max-width: 800px;
	height: auto;
	max-height: 15vh;
	margin: 0 auto;
}

.quality-img>p {
	position: absolute;
	visibility: hidden;
	animation: anime_slider_fade 16s 0s infinite;
}

.quality-img>p:nth-child(2) {
	animation-delay: 4s;
}

.quality-img>p:nth-child(3) {
	animation-delay: 8s;
}

.quality-img>p:nth-child(4) {
	animation-delay: 12s;
}

@keyframes anime_slider_fade {
	0% {
		visibility: visible;
		opacity: 0;
	}

	15% {
		opacity: 1;
	}

	25% {
		opacity: 1;
	}

	40% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

/* ギャラリー */
.gallery {
	width: 100%;
}

.gallery h2 {
	margin-top: 400px;
	text-align: center;
	text-shadow: 0 13.36px 8.896px #c4b59d, 0 -2px 1px #fff;
}

.gallery-img img {
	width: 320px;
	height: 300px;
	object-fit: cover;
	filter: grayscale(100%);
	transition: .3s ease-in-out;
}

.gallery-img img:hover {
	filter: grayscale(0);
}

/* 横スクロール*/
.side-scroll {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.side-scroll-list-wrapper {
	position: relative;
	width: 100%;
	height: 400px;
	margin: 100px;
}

.side-scroll-list {
	position: absolute;
	top: 100px;
	left: 0;
	display: flex;
}

.side-scroll-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 320px;
	height: 300px;
}

.side-scroll-item+.side-scroll-item {
	margin-left: 30px;
}

/* オーナーヴォイス */
.voice {
	width: 100%;
}

.voice h2 {
	margin: 30px 0 30px 0;
	text-align: center;
	text-shadow: 0 13.36px 8.896px #c4b59d, 0 -2px 1px #fff;
}

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

.avatar {
	width: 15%
}

.avatar p {
	text-align: center;
}

.avatar img {
	animation: fluffy 3s ease infinite;
}

@keyframes fluffy {
	0% {
		transform: translateY(0);
	}

	5% {
		transform: translateY(0);
	}

	10% {
		transform: translateY(0);
	}

	20% {
		transform: translateY(-10px);
	}

	25% {
		transform: translateY(0);
	}

	30% {
		transform: translateY(-10px);
	}

	50% {
		transform: translateY(0);
	}

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

.bubble {
	position: relative;
	display: inline-block;
	margin: 0 0 0 16px;
	width: 60%;
	line-height: 1.5;
	text-align: center;
	color: #000;
	font-size: 16px;
	background-color: rgba(178, 255, 80, 0.1);
	box-shadow: 10px 10px 50px rgba(178, 255, 80, 0.1);
	border-radius: 50%;
	box-sizing: border-box;
}

.bubble::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -25px;
	margin-top: -10px;
	border: 10px solid transparent;
	border-right: 24px solid rgba(178, 255, 80, 0.1);
}

.voice-text2 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.voice-img {
	display: flex;
	justify-content: space-evenly;
	padding-top: 16px;
	margin: 16px 0 16px 0;
	overflow: hidden;
}

.voice-img-left {
	width: 30%
}

.voice-img-center {
	width: 30%;
}

.voice-img-right {
	width: 30%;
}

.voice-img img {
	width: 400px;
	height: 130px;
	object-fit: cover;
	filter: brightness(80%);
}

.voice-img img:hover {
	filter: brightness(120%);
	transition: all 0.5s;
}

/* フッター */
.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: 8px;
	font-size: 16px;
}

.policy a:hover {
	opacity: 0.6;
}

.copyright {
	text-align: center;
	white-space: nowrap;
	padding-top: 8px;
	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: 85%;
	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);
}