@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;600&display=swap');

/*
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Barlow Semi Condensed', sans-serif;
*/

html {
	font-size: 62.5%;
	height: 100%;
	overflow-y:scroll;
}
body {
	position: relative;
	background-color: #fff;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.75;
	color: #333;
	width: 100%;
	height: 100%;
	text-size-adjust: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}
a {
	color: #ef857d;
}
a:hover {
	color: #eb6d34;
}
img.fix {
	width: 100%;
	height: auto;
}
figure img {
	display: block;
}

.content-wrap .content-wrap-inner {
	padding: 0 5% 6.5rem;
}
.content-wrap .content-wrap-inner p {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.8;
	text-align: left;
	margin: 1.75rem 0;
}
.content-wrap .content-wrap-inner .note {
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	margin: 1.5rem 0 0;
}
.content-wrap .content-wrap-inner .section-title {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	text-align: center;
	width: 14rem;
	height: 8.4rem;
	margin: 0 auto;
	z-index: 3;
	-webkit-transform: translateY(-25%);
	transform: translateY(-25%);
}
.content-wrap .content-wrap-inner .section-title::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 50%;
	width: 90vw;
	height: 100%;
	background: url('../images/title-bg-photo.png?20221107-3') no-repeat center center;
	background-size: contain;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
	overflow: hidden;
}
.content-wrap .content-wrap-inner .section-title small {
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 3px;
	text-indent: 3px;
	margin-bottom: 0.25rem;
}
.content-wrap .content-wrap-inner .section-title em {
	display: block;
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1;
	margin-top: 0.25rem;
}
.content-wrap .content-wrap-inner .section-body {
	position: relative;
	z-index: 2;
}
@media only screen and (min-width: 480px) {
	.content-wrap .content-wrap-inner {
		padding: 0 2.5% 7.5rem;
	}
	.content-wrap .content-wrap-inner p {
		margin: 2rem 0;
	}
	.content-wrap .content-wrap-inner .flex-wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	.content-wrap .content-wrap-inner .section-title {
		width: 16rem;
		height: 9.6rem;
		margin-bottom: 1.5rem;
	}
	.content-wrap .content-wrap-inner .section-title::before {
		height: 12rem;
	}
	.content-wrap .content-wrap-inner .section-title small {
		font-size: 1.5rem;
		line-height: 1;
		letter-spacing: 5px;
		text-indent: 5px;
		margin-bottom: 0.25rem;
	}
	.content-wrap .content-wrap-inner .section-title em {
		font-size: 2.8rem;
		margin-top: 0.25rem;
	}
}
@media only screen and (min-width: 1025px) {
	.content-wrap .content-wrap-inner {
		padding: 0 10px 8.5rem;
		max-width: 1100px;
		margin: 0 auto;
	}
	.content-wrap .content-wrap-inner .section-title {
		width: 16rem;
		height: 12rem;
		margin-bottom: 2rem;
	}
	.content-wrap .content-wrap-inner .section-title::before {
		height: 15rem;
	}
	.content-wrap .content-wrap-inner .section-title small {
		font-size: 1.8rem;
	}
	.content-wrap .content-wrap-inner .section-title em {
		font-size: 3.6rem;
		margin-top: 0.35rem;
	}
	.content-wrap .content-wrap-inner p {
		font-size: 1.6rem;
	}

	a img {
		opacity: 1;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}
	a:hover img {
		opacity: 0.75;
	}
	a .image-zoom {
		display: block;
		overflow: hidden;
		width: 100%;
		height: auto;
	}
	a .image-zoom img {
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
		overflow: hidden;
	}
	a:hover .image-zoom img{
		-webkit-transform: scale(1.1, 1.1);
		transform: scale(1.1, 1.1);
	}
}


/*--------------------------*/
/* リンクボタン */
/*--------------------------*/
.link-btn {
	text-align: center;
}
.link-btn a,
.link-btn span {
	position: relative;
	display: inline-block;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 400;
	color: #fff;
	line-height: 4rem;
	margin: 0 auto;
	padding: 0 3.5rem;
	background-color: #ee7800;
	border-radius: 2rem;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	opacity: 1;
}
.link-btn a:hover,
.link-btn span:hover {
	opacity: 0.5;
}
@media only screen and (min-width: 480px) {
	.link-btn a,
	.link-btn span {
		max-width: 400px;
		font-size: 1.5rem;
		line-height: 4.6rem;
		border-radius: 2.3rem;
		padding: 0 4.5rem;
	}
}
@media only screen and (min-width: 1025px) {
	.link-btn a,
	.link-btn span {
		max-width: 480px;
	}
}

/*--------------------------*/
/* Youtube埋め込み*/
/*--------------------------*/
 .youtube-area {
	margin-top: 2rem;
	padding-top: 2rem;
}
.youtube-area .youtube-area-inner span {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 56.25%;
}
.youtube-area .youtube-area-inner span iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
@media only screen and (min-width: 1025px) {

}

/*--------------------------*/
/* ヘッダー */
/*--------------------------*/
.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 16vw;
	z-index: 100;
	background: url('../images/header-bg.png') no-repeat bottom center;
	background-size: 160%;
}
.header-inner {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: space-between;
}
.header-inner .logo,
.header-inner .logo h1 {
	width: 32.5vw;
	height: auto;
	margin: 0.5rem 0 0 0.5rem;
}
.header-inner .sns-link ul {
	display: flex;
	margin: 1.25rem 1rem 0 0;
}
.header-inner .sns-link ul li {
	width: 5vw;
	margin-left: 0.75rem;
}
@media only screen and (min-width: 480px) {
	.header {
		height: 10vw;
		background-size: cover
	}
	.header-inner .logo,
	.header-inner .logo h1 {
		width: 22.5vw;
		margin: 0.5rem 0 0 0.75rem;
	}
	.header-inner .sns-link ul {
		margin: 1.25rem 1.5rem 0 0;
	}
	.header-inner .sns-link ul li {
		width: 3vw;
		margin-left: 1rem;
	}
}
@media only screen and (min-width: 1025px) {
	.header {
		height: 100px;
		background-size: 1000px auto;
		background-repeat: repeat-x;
	}
	.header-inner {
		max-width: 1200px;
		margin: 0 auto;
	}
	.header-inner .logo,
	.header-inner .logo h1 {
		width: 220px;
		margin: 0.75rem 0 0 1rem;
	}
	.header-inner .sns-link ul {
		margin: 1.5rem 1.5rem 0 0;
	}
	.header-inner .sns-link ul li {
		width: 26px;
		margin-left: 1rem;
	}
}

/*--------------------------*/
/* ページTOPボタン */
/*--------------------------*/
#page-top {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 700;
}
#page-top a {
	position: relative;
	display: block;
	width: 42px;
	height: 42px;
	text-decoration: none;
	background-color: rgba(163, 150, 137, 0.85);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#page-top a::before{
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: translateY(-30%) translateX(-50%) rotate(-45deg);
	transform: translateY(-30%) translateX(-50%) rotate(-45deg);
}
#page-top a:hover {
	text-decoration: none;
	opacity: .5;
}
@media only screen and (min-width: 480px) {
	#page-top a {
		width: 58px;
		height: 58px;
	}
	#page-top a::before{
		width: 16px;
		height: 16px;
	}
}
@media only screen and (min-width: 1025px) {

}

/*--------------------------*/
/* フッター */
/*--------------------------*/
#footer {
	background-color: #fff;
	border-top: 5px solid #ee847d;
	padding: 2.5rem 0 3.5rem;
}
#footer .share-title {
	text-align: center;
	margin-bottom: 1.5rem;
}
#footer .share-title em {
	display: inline-block;
	position: relative;
	font-size: 1.4rem;
	font-weight: 400;
	color: #ee847d;
	padding: 0 1.5rem;
}
#footer .share-title em::before {
	position: absolute;
	content: '';
	display: block;
	top: 0;
	left: 0;
	width: 0;
	height: 25px;
	border-left: 2px solid #ee847d;
	transform: rotate(-25deg);
}
#footer .share-title em::after {
	position: absolute;
	content: '';
	display: block;
	top: 0;
	right: 0;
	width: 0;
	height: 25px;
	border-left: 2px solid #ee847d;
	transform: rotate(25deg);
}
#footer .footer-sns-nav {
	display: flex;
	justify-content: center;
}
#footer .footer-sns-nav > li {
	width: 4.0rem;
	margin: 0 1rem;
}
#footer h2 {
	width: 35vw;
	max-width: 200px;
	margin: 3.5rem auto 1.5rem;
}
#footer .copy {
	text-align: center;
	font-size: 1.2rem;
	font-family: 'Barlow Semi Condensed', sans-serif;
}
@media only screen and (min-width: 480px) {
	#footer {
		padding: 3rem 0 4rem;
	}
	#footer .share-title {
		margin-bottom: 2rem;
	}
	#footer .share-title em {
		font-size: 1.5rem;
		padding: 0 2rem;
	}
	#footer .copy {
		font-size: 1.3rem;
	}
}
@media only screen and (min-width: 1025px) {
	#footer .share-title {
		margin-bottom: 2.5rem;
	}
	#footer .footer-sns-nav > li {
		width: 4.5rem;
		margin: 0 1.5rem;
	}
}

/*--------------------------*/
/* ローディング */
/*--------------------------*/
#loading {
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	background-color: #004a93;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.loader {
	position: absolute;
	color: #4392e0;
	font-size: 14px;
	top: 50%;
	left: 50%;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	text-indent: -9999em;
	-webkit-animation: load4 1.3s infinite linear;
	animation: load4 1.3s infinite linear;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.loader::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	display: block;
	width: 160px;
	height: 24px;
	background: url('../images/loading-logo.png') no-repeat center center;
	background-size: cover;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
@-webkit-keyframes load4 {
	0%,
	100% {
		box-shadow: 0 -4.5em 0 0.3em, 3em -3em 0 0em, 4.5em 0 0 -1.5em, 3em 3em 0 -1.5em, 0 4.5em 0 -1.5em, -3em 3em 0 -1.5em, -4.5em 0 0 -1.5em, -3em -3em 0 0;
	}
	12.5% {
		box-shadow: 0 -4.5em 0 0, 3em -3em 0 0.3em, 4.5em 0 0 0, 3em 3em 0 -1.5em, 0 4.5em 0 -1.5em, -3em 3em 0 -1.5em, -4.5em 0 0 -1.5em, -3em -3em 0 -1.5em;
	}
	25% {
		box-shadow: 0 -4.5em 0 -0.5em, 3em -3em 0 0, 4.5em 0 0 0.3em, 3em 3em 0 0, 0 4.5em 0 -1.5em, -3em 3em 0 -1.5em, -4.5em 0 0 -1.5em, -3em -3em 0 -1.5em;
	}
	37.5% {
		box-shadow: 0 -4.5em 0 -1.5em, 3em -3em 0 -1.5em, 4.5em 0em 0 0, 3em 3em 0 0.3em, 0 4.5em 0 0em, -3em 3em 0 -1.5em, -4.5em 0em 0 -1.5em, -3em -3em 0 -1.5em;
	}
	50% {
		box-shadow: 0 -4.5em 0 -1.5em, 3em -3em 0 -1.5em, 4.5em 0 0 -1.5em, 3em 3em 0 0em, 0 4.5em 0 0.3em, -3em 3em 0 0, -4.5em 0em 0 -1.5em, -3em -3em 0 -1.5em;
	}
	62.5% {
		box-shadow: 0 -4.5em 0 -1.5em, 3em -3em 0 -1.5em, 4.5em 0 0 -1.5em, 3em 3em 0 -1.5em, 0 4.5em 0 0, -3em 3em 0 0.3em, -4.5em 0 0 0, -3em -3em 0 -1.5em;
	}
	75% {
		box-shadow: 0em -4.5em 0 -1.5em, 3em -3em 0 -1.5em, 4.5em 0em 0 -1.5em, 3em 3em 0 -1.5em, 0 4.5em 0 -1.5em, -3em 3em 0 0, -4.5em 0em 0 0.3em, -3em -3em 0 0;
	}
	87.5% {
		box-shadow: 0em -4.5em 0 0, 3em -3em 0 -1.5em, 4.5em 0 0 -1.5em, 3em 3em 0 -1.5em, 0 4.5em 0 -1.5em, -3em 3em 0 0, -4.5em 0em 0 0, -3em -3em 0 0.3em;
	}
}
@keyframes load4 {
	0%,
	100% {
		box-shadow: 0 -4.5em 0 0.3em, 3em -3em 0 0em, 4.5em 0 0 -1.5em, 3em 3em 0 -1.5em, 0 4.5em 0 -1.5em, -3em 3em 0 -1.5em, -4.5em 0 0 -1.5em, -3em -3em 0 0;
	}
	12.5% {
		box-shadow: 0 -4.5em 0 0, 3em -3em 0 0.3em, 4.5em 0 0 0, 3em 3em 0 -1.5em, 0 4.5em 0 -1.5em, -3em 3em 0 -1.5em, -4.5em 0 0 -1.5em, -3em -3em 0 -1.5em;
	}
	25% {
		box-shadow: 0 -4.5em 0 -0.5em, 3em -3em 0 0, 4.5em 0 0 0.3em, 3em 3em 0 0, 0 4.5em 0 -1.5em, -3em 3em 0 -1.5em, -4.5em 0 0 -1.5em, -3em -3em 0 -1.5em;
	}
	37.5% {
		box-shadow: 0 -4.5em 0 -1.5em, 3em -3em 0 -1.5em, 4.5em 0em 0 0, 3em 3em 0 0.3em, 0 4.5em 0 0em, -3em 3em 0 -1.5em, -4.5em 0em 0 -1.5em, -3em -3em 0 -1.5em;
	}
	50% {
		box-shadow: 0 -4.5em 0 -1.5em, 3em -3em 0 -1.5em, 4.5em 0 0 -1.5em, 3em 3em 0 0em, 0 4.5em 0 0.3em, -3em 3em 0 0, -4.5em 0em 0 -1.5em, -3em -3em 0 -1.5em;
	}
	62.5% {
		box-shadow: 0 -4.5em 0 -1.5em, 3em -3em 0 -1.5em, 4.5em 0 0 -1.5em, 3em 3em 0 -1.5em, 0 4.5em 0 0, -3em 3em 0 0.3em, -4.5em 0 0 0, -3em -3em 0 -1.5em;
	}
	75% {
		box-shadow: 0em -4.5em 0 -1.5em, 3em -3em 0 -1.5em, 4.5em 0em 0 -1.5em, 3em 3em 0 -1.5em, 0 4.5em 0 -1.5em, -3em 3em 0 0, -4.5em 0em 0 0.3em, -3em -3em 0 0;
	}
	87.5% {
		box-shadow: 0em -4.5em 0 0, 3em -3em 0 -1.5em, 4.5em 0 0 -1.5em, 3em 3em 0 -1.5em, 0 4.5em 0 -1.5em, -3em 3em 0 0, -4.5em 0em 0 0, -3em -3em 0 0.3em;
	}
}
