@charset "UTF-8";

/* ------------------------
    ヘッダー
------------------------ */
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background-color: transparent;
	transition: .3s;
}

.header.js-scroll {
	background-color: rgba(255, 255, 255, 0.85);
}

/* .header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	height: 80px;
	transition: .3s;
	position: relative;
} */



.header .global-nav {
	height: 100%;
}
.header .global-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;
}

/* .header .global-nav__item {
	position: relative;
	margin-right: 35px;
	padding: 15px 0;
} */

.header .global-nav__link {
	display: block;
	position: relative;
	text-decoration: none;
	color: #fff;
	font-size: 1.7rem;
	font-weight: 500;
	padding: 5px 0;
	line-height: 1;
}


.header .global-nav__link:hover:before {
	width: 100%;
	transition: .3s;
}

.header.js-scroll .global-nav__link {
	color: #333;
}



@media only screen and (max-width: 1024px) {
	.header.js-open {
		background-color: rgba(255, 255, 255, 0.85);
	}

	/* .header__inner {
		height: 60px;
		padding-right: 0;
	} */



	/* .header .global-nav {
		width: 100vw;
		height: calc(100vh - 60px);
		border-left: 0 none;
		position: absolute;
		top: 60px;
		left: 50%;
		transform: translateY(calc(-100% - 60px)) translateX(-50%);
		transition: .3s;
		opacity: 0;
	} */
	.header .global-nav {
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		transform: translateY(-100%);
		transition: .3s;
		opacity: 0;
		background-color: #FFF1DE;
	}

	/* .header .global-nav.js-open {
		transform: translateY(0) translateX(-50%);
		transition: .3s;
		opacity: 1;Ï
	} */
	.header .global-nav.js-open {
		transform: translateY(0);
		opacity: 1;
	}

	.header .global-nav__list {
		display: block;
		height: auto;
		padding: 15px 15px 30px;
		/* margin-top: -60px; */
		/* background-color: #FFF1DE; */
		height: 100%;
		overflow: scroll;
	}

	.header .global-nav__item {
		margin-right: 0;
		/* border-bottom: 1px solid #ffffff; */
		padding: 0;
	}

	.global-nav__item img {
		width: 70%;
	}

	.header .global-nav__link {
		padding: 0;
		color: #fff;
		padding: 5px 0;
		text-align: center;
	}


	.header.js-scroll .global-nav__link {
		color: #fff;
	}

	.header .global-nav .sub-nav {
		position: relative;
		top: auto;
		left: auto;
		white-space: normal;
		background-color: rgba(255, 255, 255, 0);
		box-shadow: none;
		padding: 0;
		opacity: 1;
		pointer-events: auto;
		display: none;
		transition: unset;
		transform: unset;
		padding-bottom: 20px;
	}

	


}

/* ------------------------
    スマホナビ
------------------------ */
@media only screen and (max-width: 1024px) {
	.header__hamburger {
		position: absolute;
		top: 20px;
		right: 20px;
		width: 60px;
		height: 60px;
		background-color: #ffffff;
		border: 2px solid #F19500;
		border-radius: 5px;
		z-index: 1;
	}

	.header__hamburger span {
		background-color: #F19500;
		border-radius: 2px;
		width: 30px;
		height: 3px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		transition: .3s;
	}

	.header__hamburger span::before,
	.header__hamburger span::after {
		content: '';
		background-color: #F19500;
		border-radius: 2px;
		width: 30px;
		height: 3px;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: .3s;
	}

	.header__hamburger span::before {
		top: -9px;
	}

	.header__hamburger span::after {
		bottom: -9px;
	}

	.header__hamburger.js-open span {
		background-color: transparent;
		transition: .3s;
	}

	.header__hamburger.js-open span::before {
		top: 1px;
		transition: .3s;
		transform: translateX(-50%) rotate(45deg);
	}

	.header__hamburger.js-open span::after {
		bottom: -1px;
		transition: .3s;
		transform: translateX(-50%) rotate(-45deg);
	}

	.nav-ttl-deco {
		border-bottom: 2px solid #F19500;
		padding-top: 20px;
		margin-bottom: 10px;
	}

	.nav-ttl-deco img {
		width: 60%;
	}

	.nav-ttl-kokoru {
		position: relative;
		padding-top: 120px;
	}

	.nav-ttl-kokoru::before {
		content: "";
		position: absolute;
		right: 0px;
		top: 85%;
		transform: translateY(-50%);
		width: 80px;
		height: 80px;
		background-image: url(./img/hamburger_kokoru.svg);
		background-size: contain;
		background-repeat: no-repeat;
	}

}

/* ------------------------
    フッター
------------------------ */
.footer {
	position: relative;
	/* margin-top: 100px; */
	background-color: #e0f5ff;
	padding: 50px 15px 90px;
	color: #ffffff;
	font-size: 1.6rem;
	overflow-x: hidden;
}

.footer__inner {
	/* display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 1120px;
	margin: 0 auto; */
	background-color: #fff;
	border: 2px solid #F19500;
	border-radius: 10px;
	padding: 30px 40px;
	margin: 70px 0;
	text-align: center;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	margin: 30px 0;
}
.footer-content img{
	width: 40%;
}
.fotter-copyright {
	position: absolute;
	width: 100%;
	bottom: 2%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	font-size: 1.1rem;
	color: #2CA5DF;
}

.fotter-deco::before {
	content: "";
	position: absolute;
	top: 60px;
	left: 118px;
	width: 100%;
	height: 140px;
	background: url("./img/kokoru_02.svg") no-repeat center top;
	z-index: 1;
}
.footer-text{
	font-size: 1.8rem;
    color: #333;
	border-bottom: 3px solid #F19500;
	width: fit-content;
	margin: 0 auto;
}
.footer-enakiss{
	 position: absolute;
	width: 100%;
	bottom: 12%;
	left: 50%;
	transform: translateX(-50%);
	width: 30%; 
	padding-top: 30px; 

}

@media screen and (max-width: 767px) {

	.footer {
		padding-top: 130px;
	}

	.footer__inner {
		margin-top: 30px;
	}

	.fotter-deco::before {
		top: 105px;
		left: 140px;
	}

	/* .footer::before {
		bottom: 375px;
		height: 137px;
	} */
}