/* ================================================
	HOME
=================================================== */
/*  main
=================================================== */
#top-main {
	position: relative;
	height: 100vh;
	background: url("../img/home/main.jpg") no-repeat center top;
	background-size: cover;
}

.top-logo-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}

.top-main-logo {
	width: 150px;
	margin: 0 auto 30px auto;
}


.top-main-logo2 {
	width: 300px;
	margin: 0 auto 50px auto;
}

.top-main-title {
	font-size: clamp(1.8rem, 4vw, 2rem);
	font-weight: bold;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.2em;
	color: #fff;
}


.top-main-catch {
	font-size: clamp(2rem, 5vw, 3rem);
	line-height: 3;
	position: absolute;
	top: 10%;
	right: 5%;
	letter-spacing: 0.3em;
	color: #fff;

	writing-mode: vertical-rl;
}

.top-main-scroll {
	position: absolute;
	bottom: 12%;
	width: 100%;
	text-align: center;
	letter-spacing: 0.2em;
	color: #fff;
}

.top-main-scroll::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: auto;
	content: "";
	transform: rotate(-45deg);
	animation: scroll 3.5s infinite;
	border: solid #fff;
	border-width: 0 0 1px 1px;
}

@keyframes scroll {
	0% {
		transform: rotate(-45deg) translate(-10px, 10px);
	}

	80% {
		transform: rotate(-45deg) translate(-20px, 20px);
	}

	100% {
		opacity: 0;
	}

	40% {
		opacity: 1;
	}
}

@media (max-width: 767px) {
	.top-logo-wrap {
		top: 45%;
		transform: translate(-50%, 0);
	}

	.top-main-logo {
		width: 80px;
		margin-bottom: 10px;
	}

	.top-main-logo2 {
		width: 150px;
		margin-bottom: 20px;
	}

	.top-main-title {
		font-size: 1.6rem;
	}


	.top-main-catch {
		font-size: clamp(1.6rem, 4vw, 2.4rem);
		line-height: 2;
		right: 43%;
	}

	.top-main-scroll {
		bottom: 20%;
	}

	.top-main-scroll::before {
		width: 4vw;
		height: 4vw;
	}
}


@media (max-width: 320px) {
	.top-main-title {
		font-size: 3.7333vw;
	}


	.top-main-catch {
		font-size: 3.7333vw;
		top: 5%;
	}

	.top-main-scroll {
		font-size: 2vw;
		bottom: 26%;
	}
}

/*  追加　fix
=================================================== */
.top-main_fix {
	position: absolute;
	bottom: 2%;
	display: block;
	width: 100%;
}

.top-main_fix ul {
	display: flex;
	justify-content: center;
	width: 90%;
	margin: 0 auto;
}

.top-main_fix ul li {
	display: flex;
	align-items: center;
	flex-basis: 400px;
	justify-content: center;
	margin-right: 2%;
}


.top-main_fix ul li a {
	display: block;
}

.top-main_fix ul li a.top-main_fix_btn {
	font-size: 2.4rem;
	font-weight: bold;
	width: 100%;
	border-radius: 10px;
	box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.6);
}

.top-main_fix ul li img {
	width: 60px;
}

.top-main_fix ul li:last-child {
	margin-right: 0;
}

.top-main_fix ul li:last-child a + a {
	margin-left: 5%;
}

@media (max-width: 767px) {
	.top-main_fix {
		bottom: 15%;
	}

	.top-main_fix ul li a.top-main_fix_btn {
		font-size: 5vw;
		border-radius: 5px;
	}

	.top-main_fix ul li img {
		width: 12vw;
	}
}



/*  spot
=================================================== */
#top-spot {
	padding-bottom: 100px;
	text-align: center;
}

@media (max-width: 767px) {
	#top-spot {
		padding-bottom: 50px;
	}
}

/*  toki
=================================================== */
#top-toki {
	padding: 200px 0;
	background: #d2d4d5 url("../img/home/toki.jpg") no-repeat center center/cover;
}

#top-toki h2 {
	font-size: clamp(30px, 6vw, 50px);
	font-weight: 700;
	margin-bottom: 40px;
	letter-spacing: 0.2em;

	filter: drop-shadow(0px 0px 3px #fff);
}

#top-toki p {
	font-size: 26px;
}

#top-toki p span {
	padding: 0 10px;
	background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
	#top-toki {
		padding: 20vw 0;
		background: #d2d4d5 url("../img/home/toki_sp.jpg") no-repeat right bottom/cover;
	}

	#top-toki h2 {
		font-size: 6.1333vw;
		margin-bottom: 5vw;
		letter-spacing: 0.2em;
	}

	#top-toki p {
		font-size: 3.7333vw;
	}

	#top-toki p span {
		padding: 0 1vw;
	}
}

/*  hn title
=================================================== */
.hn-ttl {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.hn-ttl h2 {
	font-size: clamp(4rem, 7vw, 5.6rem);
	font-weight: bold;
	line-height: 1.2;
	position: relative;
	margin-bottom: 50px;
	padding-bottom: 30px;
}

.hn-ttl h2:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	content: "";
	background: #1a1a1a;
}

.hn-ttl h2 span:last-child {
	font-size: 1.6rem;
	margin-left: 20px;
}

.hn-ttl-link {
	display: flex;
	align-items: center;
	padding-top: 30px;
}

.hn-ttl-link a:hover img {
	transform: translateX(10px);
}

.hn-ttl-link img {
	width: 50px;
	margin-top: -10px;
	margin-left: 20px;
	transition: 0.3s;
}

@media (max-width: 767px) {
	.hn-ttl h2 {
		font-weight: bold;
		margin-bottom: 30px;
		padding-bottom: 20px;
	}

	.hn-ttl h2 span:last-child {
		font-size: 1.4rem;
		display: block;
		margin-left: 0;
	}

	.hn-ttl-link {
		padding-top: 20px;
	}

	.hn-ttl-link img {
		margin-top: -10px;
		margin-left: 10px;
	}
}

/*  house
=================================================== */
#top-house {
	padding: 100px 0;
}

#top-house iframe {
	width: 100%;
}

@media (max-width: 767px) {
	#top-house {
		padding: 50px 0;
	}
}

/*  estate
=================================================== */
#top-estate {
	padding-bottom: 100px;
}

@media (max-width: 767px) {
	#top-estate {
		padding-bottom: 50px;
	}
}

#top-estate iframe {
	width: 100%;
}
