@charset "utf-8";

/* ==========================================
index
========================================== */

/* 共通 */

.top-title01 {
	font-size: 3.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.top-title-span01 {
	font-size: 5.6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.top-title-span02 {
	font-size: 4.4rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.top-text-illust01 {
    max-width: 15rem;
    width: 100%;
    position: absolute;
    margin: auto;
    z-index: -1;
}

.top-text-illust02 {
    max-width: 12rem;
    width: 100%;
    position: absolute;
    margin: auto;
    z-index: -1;
}

/* ==========================================
下層ヘッダー
========================================== */

.in-header-nav-area {
	display: none;
}

.header.clone .in-header-nav-area {
	display: flex;
}

/* ==========================================
cover
========================================== */

.cover {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.cover:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: radial-gradient(#CDD2D8, #7E858E);
	mix-blend-mode: multiply;
	z-index: 2;
}

.cover-title-box {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80.7rem;
    height: auto;
    position: absolute;
    top: 24%;
    right: 0;
    left: 1%;
    margin: auto;
    z-index: 3;
}

.cover-title {
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
}

.cover-span {
    font-size: 5.8rem;
}

.cover-nav-area {
    max-width: 23rem;
    width: 100%;
    position: absolute;
    bottom: 5rem;
    left: 2rem;
    margin: auto;
    z-index: 3;
}

.cover-nav-link {
	margin: 1.2rem 0 0 0;
    display: inline-flex;
	align-items: center;
	position: relative;
}

.cover-nav-link:hover:before {
	content: "";
	display: inline-block;
	bottom: 0;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	margin: auto;
	border-bottom: 1px solid #FFF;
}

.cover-nav-link:first-child {
	margin: 0;
}

.cover-nav-link-text01 {
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: 0.05em;
}

.cover-nav-link-text02 {
	margin: 0 0 0 2rem;
	font-size: 1.6rem;
	font-weight: 900;
	letter-spacing: 0.05em;
}

.cover-sns-box {
    display: inline-block;
    max-width: 5rem;
    width: 100%;
    margin: 4rem 0 0 0;
	transition: all .3s;
}

.cover-sns-box:hover {
    opacity: 0.7;
}

#head-key {
	height: 960px;
	position: relative;
	z-index: 1;
}

#head-key * {
	height: inherit;
}

#head-key .container {
	overflow: hidden;
	position: relative;
	height: inherit;
}

#head-key .slide {
	-webkit-animation-duration: 7s;
	animation-duration: 7s;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	opacity: 0;
}

#head-key .slide:nth-child(1) {
	opacity: 1;
	z-index: 1;
}

#head-key .slide-img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

#head-key .slide.active {
	-webkit-animation-name: showImg;
	animation-name: showImg;
	z-index: 2;
}

#head-key img {
	max-width: none !important;
	width: 100% !important;
	height: 100% !important;
	-o-object-fit: cover;
	object-fit: cover;
}

#head-key .slide.active .slide-inner {
	-webkit-animation: showTranslate 7s linear forwards;
	animation: showTranslate 7s linear forwards;
}

#head-key .slide.prev {
	-webkit-animation-name: hideImg;
	animation-name: hideImg;
	z-index: 2;
}

#head-key .slide.prev .slide-inner {
	-webkit-animation: hideTranslate 7s linear forwards;
	animation: hideTranslate 7s linear forwards;
}

/*=============================================
******************* animation****************
*=============================================*/
@-webkit-keyframes showImg {
	0% {
	opacity: 0;
	}
	50% {
	opacity: 1;
	}
	100% {
	opacity: 1;
	}
}

@keyframes showImg {
	0% {
	opacity: 0;
	}
	50% {
	opacity: 1;
	}
	100% {
	opacity: 1;
	}
}

@-webkit-keyframes hideImg {
	0% {
	opacity: 1;
	}
	50% {
	opacity: 0;
	}
	100% {
	opacity: 0;
	}
}

@keyframes hideImg {
	0% {
	opacity: 1;
	}
	50% {
	opacity: 0;
	}
	100% {
	opacity: 0;
	}
}

@-webkit-keyframes showTranslate {
	0% {
	-webkit-transform: translate3d(50px, 0, 0);
	transform: translate3d(50px, 0, 0);
	}
	100% {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	}
}

@keyframes showTranslate {
	0% {
	-webkit-transform: translate3d(50px, 0, 0);
	transform: translate3d(50px, 0, 0);
	}
	100% {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes hideTranslate {
	0% {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	}
	100% {
	-webkit-transform: translate3d(-50px, 0, 0);
	transform: translate3d(-50px, 0, 0);
	}
}

/* ==========================================
top01
========================================== */

.top01 {
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.top01-container {
    max-width: 184rem;
    width: 100%;
    margin: 8rem auto 0;
	position: relative;
}

.top01-container:before {
    content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: url(../../../../uploads/top_bg01.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: scroll;
	mix-blend-mode: multiply;
	z-index: 2;
}

.top01-container:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background: linear-gradient(100deg, rgba(45, 52, 61, 100%) 54%, rgba(45, 52, 61, 50%) 80%);
    z-index: 1;
    mix-blend-mode: multiply;
}

.top01-text-container {
    max-width: 105.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	z-index: 3;
}

.top01-text-container:before {
    content: "";
    display: block;
    max-width: 46.4rem;
    width: 100%;
    position: absolute;
    top: 11%;
    bottom: 0;
    left: 5.5%;
    margin: auto;
    background: url(../../../../uploads/top_illust01.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
    mix-blend-mode: multiply;
    z-index: -1;
}

.top01-text-area {
    max-width: 40.7rem;
    width: 100%;
    margin: 12rem auto auto 13rem;
}

.top01-map-box {
    max-width: 48.1rem;
    width: 100%;
}

.top01-text {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gray);
}

.top01-text01-01 {
    font-size: 5.6rem;
    line-height: 1.4;
}

.top01-text01-02 {
    font-size: 4.4rem;
}

.top01-text01-03 {
    font-size: 4rem;
}

.top01-text-margin {
    margin: 0 0 0 5.7rem;
}

.top01-text-box02 {
    margin: 4rem 0 0 0;
}

.top01-text-02 {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--gray);
}

.top01-text-02 span {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--light-gray);
}

.top01-img-box {
    max-width: 95.8rem;
    width: 100%;
	margin: 0 0 0 auto;
}

/* ==========================================
top02
========================================== */

.top02 {
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
    padding: 8rem 3.5rem 0 0;
	display: flex;
    align-items: center;
    justify-content: flex-start;
	position: relative;
}

.top02-img-box {
    max-width: 96rem;
    width: 100%;
}

.top02-text-area {
	margin: 0 0 0 8rem;
    max-width: 64rem;
    width: 100%;
	position: relative;
	z-index: 1;
}

.top02-text-box {
    margin: 2.4rem 0 0 0;
}

.top02-text-box:first-child {
    margin: 0;
}

.top02-btn-area {
    margin: 6rem 0 0 0;
}

.top02-illust-box {
	max-width: 53.3rem;
	width: 28%;
	position: absolute;
	bottom: -24%;
	right: 0;
	margin: auto;
}

/* ==========================================
top03
========================================== */

.top03 {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	padding: 12rem 0 0;
}

.top03-container {
	margin: 6rem 0 0 0;
	padding: 0 0 0 3.5rem;
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: flex-start;
	position: relative;
}

.top03-img-box {
	max-width: 96rem;
	width: 100%;
}

.top03-text-area {
	max-width: 64rem;
	width: 100%;
	margin: 4rem 8rem 0 0;
	position: relative;
	z-index: 1;
}

.top03-illust-box {
	max-width: 49.8rem;
	width: 26.2%;
	position: absolute;
	left: 0;
	bottom: -22.1%;
	margin: auto;
}

.top03-text-illust01 {
    left: 22%;
}

.top03-text-illust02 {
    right: 20%;
    bottom: 0;
}

/* ==========================================
top04
========================================== */

.top04 {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	padding: 12rem 0 0;
}

.top04-container {
	margin: 6rem 0 0 0;
	padding: 0 3.5rem 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

.top04-text-area {
    max-width: 64rem;
    width: 100%;
    margin: 4rem 0 0 8rem;
	position: relative;
	z-index: 1;
}

.top04-illust-box {
    max-width: 57.9rem;
    width: 30.2%;
    position: absolute;
    right: 0;
    bottom: -25%;
}

.top04-text-illust01 {
    top: 0;
    right: 0%;
    left: 20%;
}

.top04-text-illust02 {
    bottom: 5%;
    right: 20%;
    left: 0;
}

/* ==========================================
top05
========================================== */

.top05 {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	padding: 12rem 0;
	position: relative;
}

.top05-container {
    padding: 0 1.5rem;
    max-width: 117rem;
    width: 100%;
    margin: 4rem auto 0;
}

.top05-text-area {
    text-align: center;
}

.top05-img-box {
    margin: 4rem 0 0 0;
    max-width: 114rem;
    width: 100%;
}

.top05-btn-area {
    margin: 8rem 0 0 0;
}

.top05-btn-area p.btn01 {
	text-align: center;
}

.top05-title-area .top-title01 br {
	display: none;
}

.top05-text-illust01 {
    right: 0;
    left: 39%;
}

.top05-text-illust02 {
    left: 15%;
    bottom: 8%;
}

.top05-illust-box01 {
    max-width: 40rem;
    width: 21%;
    position: absolute;
    top: 20%;
    left: 0;
    z-index: -1;
}

.top05-illust-box02 {
    max-width: 60rem;
    width: 31.5%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.top05-illust-box02 img {
    width: 100%;
}

/* ==========================================
top06
========================================== */

.top06 {
	max-width: 192rem;
	width: 100%;
	margin: auto;
	padding: 6rem 1.5rem 21rem;
	position: relative;
	background: url(../../../../uploads/top_bg02.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: scroll;
}

.top06-title01 {
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.top06-text-box {
	margin: 6rem 0 0 0;
	text-align: center;
}

.top06-btn-area {
	margin: 6rem auto 0;
	max-width: 60rem;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

/* ==========================================
top07 
========================================== */

.top07 {
	max-width: 192rem;
	width: 100%;
	margin: -9rem auto 0;
	padding: 6rem 1.5rem 12rem;
	position: relative;
	background: url(../../../../uploads/top_bg03.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: scroll;
}

.top07-text-box {
    margin: 6rem 0 0 0;
    text-align: center;
}

.top07-btn-area {
    margin: 6rem 0 0 0;
}

.top07-btn-area p.btn01 {
	text-align: center;
}

.top07-illust-box01 {
    max-width: 39.6rem;
	width: 20.8%;
    position: absolute;
    top: 18%;
    left: 0;
    margin: auto;
}

.top07-illust-box02 {
    max-width: 23.4rem;
    width: 12.3%;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: auto;
}

.top07-instagram-container {
	max-width: 144rem;
	width: 100%;
	margin: 6rem auto;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1550px) {

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1024px) {

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

	.top01-text-container {
		position: relative;
		padding: 1rem;
	}

	.top01-text-container:after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
		background: rgba(45, 52, 61, 100%);
		mix-blend-mode: multiply;
		z-index: -1;
	}

	.top01-text-area {
		margin: auto auto auto 10%;
	}

	.top05-title-area .top-title01 br {
		display: block;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 768px) {

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	.header.clone .in-header-nav-area {
		display: none;
	}

	/* ==========================================
	cover
	========================================== */

	.cover-title-box {
		top: 0;
		bottom: 0;
	}

	.cover-title {
		font-size: 3rem;
	}

	.cover-title span {
		font-size: 3.4rem;
	}

	.cover-nav-area {
		display: none;
	}

	#head-key {
		height: 68.5vh;
		position: relative;
		z-index: 1;
	}

	#head-key img {
		max-width: none !important;
		width: 100% !important;
		height: 100% !important;
		-o-object-fit: cover;
		object-fit: cover;
	}

	/* ==========================================
	top01
	========================================== */

	.top01-container {
		margin: 6rem 0 0 0;
	}

	.top01-text-container {
		padding: 5rem;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.top01-text-container:before {
		max-width: 26.4rem;
		width: 100%;
		top: 4%;
		bottom: 0;
		left: 0;
		right: 6%;
		margin: auto;
	}

	
	.top01-text-area {
		margin: auto;
	}

	/* ==========================================
	top02
	========================================== */

	.top02 {
		padding: 6rem 1.5rem 0;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
	.top02-img-box {
		max-width: 100%;
		width: 100%;
	}

	.top02-text-area {
		margin: 4rem 0 0 0;
		max-width: 100%;
		width: 100%;
	}

	.top02-btn-area p.btn01 {
		text-align: center;
	}

	.top02-illust-box {
		bottom: 0%;
		right: 0;
	}

	/* ==========================================
	top03
	========================================== */

	.top03 {
		padding: 6rem 0 0;
	}

	.top03-container {
		margin: 4rem 0 0 0;
		padding: 0 1.5rem;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.top03-img-box {
		max-width: 100%;
		width: 100%;
	}

	.top03-text-area {
		max-width: 100%;
		width: 100%;
		margin: 4rem 0 0 0;
	}

	.top03-illust-box {
		max-width: 49.8rem;
		width: 26.2%;
		position: absolute;
		left: 0;
		bottom: 0;
		margin: auto;
	}

	.top03-text-illust01 {
		left: 22%;
	}

	.top03-text-illust02 {
		right: 20%;
		bottom: 0;
	}

	/* ==========================================
	top04
	========================================== */

	.top04 {
		padding: 6rem 0 0;
	}

	.top04-container {
		margin: 4rem 0 0 0;
		padding: 0 1.5rem;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.top04-text-area {
		max-width: 100%;
		width: 100%;
		margin: 4rem 0 0;
	}

	.top04-illust-box {
		right: 0;
		bottom: 0;
	}

	/* ==========================================
	top05
	========================================== */

	.top05 {
		padding: 6rem 0;
	}

	.top05-text-area .text01 br {
		display: none;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 576px) {

	html {
		/* 12px */
		font-size: 2.08333vw;
	}

	/* ==========================================
	cover
	========================================== */

    .cover-title {
        font-size: 2.2rem;
    }

	.cover-title span {
        font-size: 2.6rem;
    }

	/* ==========================================
	top01
	========================================== */

	.top01-text-container {
		padding: 2rem;
	}

	.top01-text-box01 {
		margin: 0 0 0 2rem;
	}
	
	.top01-text-area {
		margin: auto auto auto 10%;
	}

	.top01-text {
		font-size: 1.8rem;
		margin: auto auto auto 3rem;
	}

	.top01-text01-01 {
		font-size: 3rem;
	}

	.top01-text01-02 {
		font-size: 2.2rem;
	}

	.top01-text01-03 {
		font-size: 2rem;
	}

	.top01-text-margin {
        margin: 0 0 0 3.2rem;
    }

	.top01-text-box02 {
		margin: 4rem 0 0 0;
	}

	.top01-text-02 {
		font-size: 1.8rem;
	}

	.top01-text-02 span {
		font-size: 2rem;
	}

	.top01-map-box {
		margin: 4rem 0 0 0;
	}

	/* ==========================================
	top03
	========================================== */

	.top03-text-illust01 {
        left: 24%;
    }

	/* ==========================================
	index
	========================================== */

	/* 共通 */

	.top-title01 {
		font-size: 2rem;
	}

	.top-title-span01 {
		font-size: 3rem;
	}

	.top-title-span02 {
		font-size: 2rem;
	}

	.top-text-illust01 {
		width: 20%;
	}

	.top-text-illust02 {
		width: 15%;
	}

	/* ==========================================
	top06
	========================================== */

	.top06 {
		padding: 6rem 1.5rem 15rem;
	}

	.top06-title01 {
		font-size: 2.4rem;
	}

	.top06-btn-area {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 414px) {

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

		
	.top01-text-area {
		margin: auto auto auto 3%;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */