/* CSSのインクルード */
@import url("utility.css");
@import url("system.css");


/* サイトCSS */
body{
	font-family: hiragino-kaku-gothic-pron, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 3px;
	color: #462610;
	background-color: #fefcf5;
}
.menu{
	border: none;
	border-radius: 0;
}
.container{
	width: 100%;
	max-width: 1440px;
	position: relative;
	margin: 0 auto;
}
a{
	color: #333333;
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
a:hover{
	color: #036217;
}
a.cmn_btn{
	display: block;
	width: 480px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	color: #ffffff;
	background-color: rgb(87,179,138);
	border-radius: 35px;
	margin: 135px auto 0;
	font-size: 2.5rem;
}
a.sub_btn{
	display: block;
	width: 480px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #ffffff;
	background-color: #726055;
	border-radius: 20px;
	margin: 70px auto 0;
	font-size: 2rem;
}
.en{
	font-family: clother, sans-serif;
	font-weight: 400;
	font-style: normal;
}

/* -------------------------------------------------------------
レイアウト
-------------------------------------------------------------- */
.flex_wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.flex_inner{
	flex-basis: 50%;
}
.floating_btn{
	width: 8vw;
	height: 8vw;
	background: url('../images/bg_floating.webp') no-repeat center;
	background-size: contain;
	position: fixed;
	top: 1vw;
	right: 2vw;
	z-index: 6;
	color: #ffffff;
	text-align: center;
	font-size: 1vw;
	display: flex;
	justify-content: center;
	align-items: center;
}
.floating_btn:hover{
	transform: rotate(380deg);
	color: #ffffff;
}

/* header */
header#header{
	position: fixed;
	top: 1vw;
	left: 2vw;
	z-index: 10;
}
#site-title a{
	display: block;
	text-indent: -9999px;
	width: 240px;
	height: 46px;
	background: url('../images/logo.webp') no-repeat center;
	background-size: contain;
}

/* menu */
.topPage_menu{
	width: 100%;
	position: sticky;
	top: -1.68vw;
	margin: -1.68vw 0;
	z-index: 5;
}
.topPage_menu::before{
	content: "";
	display: block;
	width: 100vw;
	height: 1.68vw;
	background: url('../images/wave_top.webp') no-repeat center bottom;
	background-size: contain;
}
.topPage_menu::after{
	content: "";
	display: block;
	width: 100vw;
	height: 1.68vw;
	background: url('../images/wave_bottom.webp') no-repeat center top;
	background-size: contain;
}
.topPage_menu .bg_matt{
	background-color: #fefcf5;
}
ul#nav{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
}
ul#nav li::after{
	content: "/";
}
ul#nav li:last-child::after{
	content: "";
}
ul#nav li a{
	font-size: 1.6rem;
	padding: 10px 20px;
}
ul#nav li a:hover{
	font-weight: bold;
}

/* footer */
.footer_inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
#copy{
	padding: 30px;
	text-align: center;
	font-size: 0.75rem;
}

/* その他 */
.page_hgroup > h2{
	font-size: 8.75rem;
	text-align: center;
}
.page_hgroup > p{
	font-size: 3.45rem;
	text-align: center;
	color: #ffffff;
}

/* -------------------------------------------------------------
トップページ
-------------------------------------------------------------- */
#fv{
	width: 100vw;
	height: 100vh;
	background: url('../images/bg_fv.webp') no-repeat center;
	background-size: cover;
}
.en_ttl{
	color: #bed5a6 !important;
	font-size: 7.5rem !important;
}
.en_ttl2{
	color: #63a781 !important;
	font-size: 7.5rem !important;
}
.cmn_ttl{
	font-size: 4.375rem !important;
	font-weight: 300;
}
section.sec_cnt_wrapper{
	padding: 150px 0;
	position: relative;
}
section.sec_cnt_wrapper p{
	font-size: 1.75rem;
	margin-top: 50px;
}
section.sec_cnt_wrapper p:first-child{
	margin-top: 0;
}
#series{
	background-color: #ddf1ce;
}
#series .cmn_ttl,
#series p{
	text-align: center;
}
#series p{
	margin-top: 100px;
}
#series p:first-child{
	margin-top: 0;
}
#story::before{
	content: "";
	display: block;
	width: 100vw;
	height: 22vw;
	background: url('../images/mon_bottom.webp') no-repeat center;
	background-size: contain;
	position: absolute;
	top: -3px;
	left: 0;
	z-index: 3;
}
#news{
	position: relative;
	background-color: #ddf1ce;
}
#news::before{
	content: "";
	display: block;
	width: 100vw;
	height: 1.68vw;
	background: url('../images/wave_bottom.webp') no-repeat center top;
	background-size: contain;
	position: absolute;
	top: -3px;
	left: 0;
	z-index: 3;
}
#contents{
	background-color: #ddf1ce;
}
#contents::before{
	content: "";
	display: block;
	width: 100vw;
	height: 22vw;
	background: url('../images/wmon_top.webp') no-repeat center;
	background-size: contain;
	position: absolute;
	top: -3px;
	left: 0;
	z-index: 1;
}

.item_list_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.item_list_wrap li{
	flex-basis: 36%;
	padding: 5%;
	background-color: #eeeceb;
	border-radius: 10px;
	margin-top: 350px;
	position: relative;
}
.item_list_wrap li figure{
	width: 100%;
	text-align: center;
	position: absolute;
	top: -30%;
	left: 0;
	right: 0;
	margin: auto;
}
.item_sub{
	text-align: center;
}
.item_ttl{
	text-align: center;
	font-size: 3.6rem !important;
}

/*.LOOP AREA */
.wp-pagenavi{
	display: none;
}
.news_loop .thumbnail{
	display: none;
}
.loop_area article.post{
	margin-top: 40px;
}
.loop_area article.post:first-child{
	margin-top: 0;
}
.loop_area p.published{
	font-size: 2rem;
	margin-top: 0;
}
.loop_area h3.entry-title{
	font-size: 1.75rem;
}
p.post_tags{
	margin-top: 0 !important;
	font-size: 1rem !important;
}
.news_loop{
	background-color: #fdfaee;
	border-radius: 15px;
	padding: 7%;
}
.loop_area article.post .entry-header{
	display: flex;
	gap: 5%;
}
.loop_area .article.post .info_box{
	flex-basis: 20%;
}
.loop_area .article.post .entry-title{
	flex-basis: 75%;
}


/* -------------------------------------------------------------
ストーリー
-------------------------------------------------------------- */
.page-id-8{
	background-color: #daf0ca;
}
#history{
	background-color: #63a781;
}
.history_wrap{
	padding: 8%;
	background-color: #fefcf5;
	border-radius: 15px;
}
.history_table tbody td{
	position: relative;
	border-top: none !important;
	padding: 20px;
	vertical-align: middle !important;
	font-size: 1.875rem;
	font-weight: 500;
	color: #462610;
}
.history_table tbody td.column-1{
	border-right: solid 2px #aa9b91;
}
.history_table tbody td.column-1::before{
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 7.5px;
	background-color: #aa9b91;
	position: absolute;
	top: 50%;
	right: -15.5px;
	transform: translate(-50%, -50%);
}
.st_sec h3{
	color: #462610;
	font-weight: 600;
	font-size: 3.75rem;
	margin-bottom: 120px;
	position: relative;
}
#st01.st_sec h3::before{
	content: "01";
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #ffffff;
	font-size: 15rem;
	letter-spacing: -15px;
	position: absolute;
	left: 0;
	bottom: -100%;
	z-index: -1;
}
#st02.st_sec h3::before{
	content: "02";
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #ffffff;
	font-size: 15rem;
	letter-spacing: -15px;
	position: absolute;
	left: 0;
	bottom: -100%;
	z-index: -1;
}
#st03.st_sec h3::before{
	content: "03";
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #ffffff;
	font-size: 15rem;
	letter-spacing: -15px;
	position: absolute;
	left: 0;
	bottom: -100%;
	z-index: -1;
}
#st01 .page_hgroup,
#history .page_hgroup{
	margin-bottom: 80px;
}
#history .page_hgroup h2{
	color: #ddf1ce;
}
#st01 .page_hgroup p,
#history .page_hgroup p{
	margin: 0;
	font-size: 3.5rem;
}
#mec01 .page_hgroup p{
	color: #63a781;
	margin: 0;
	font-size: 3.5rem;
	font-weight: 600;
}