@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* 大枠 */
html,
body {
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	-webkit-overflow-scrolling: touch !important;
	-moz-osx-font-smoothing: grayscale;
}
body {
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: .05em;
	word-wrap : break-word;
	overflow-wrap : break-word;
	font-family: 'Noto Sans JP', sans-serif;
}
#wrapper {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
body > #wrapper {
	height: auto;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	content: " ";
	clear: both;
	height: 0;
}

@media print {
	html,
	html body{overflow: visible !important;}
}

/* アクセシビリティ */
.guidance {
	left:-999px;
	position:absolute;
	width:990px;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	pointer-events: none;
} /* レスポンシブ対応 */
img {
	vertical-align: bottom;
	box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}
img,
x:-moz-any-link,
x:default {
	box-shadow: #000 0 0 0; /* IE7対応 */
}
/* Windows Chrome 画像ぼやけ防止 */
@media screen and (min-width: 768px) {
	img{
		image-rendering: -webkit-optimize-contrast;
	}
}
/* リンク */
a{
	display: inline-block;
}
a:link,
a:visited,
a:active {
	color: inherit;
	text-decoration: none;
}
a:hover {
	color: inherit;
	opacity: .7;
	text-decoration: none!important;
}

/* フォント */
.NotoSans {
	font-family: 'Noto Sans JP', sans-serif;
}
.NotoSerif {
	font-family: 'Noto Serif JP', serif;
}
.Spartan{
	font-family: 'Spartan', sans-serif;
}
.Oswald{
	font-family: 'Oswald', sans-serif;
}
.Kiwi{
	font-family: 'Kiwi Maru', serif;
	font-weight: 500;
}
.Oswald_title{
	font-family: 'Oswald', 'Kiwi Maru', sans-serif;
}
.font_red{
	color: #DD614B;
}
a.txt_link{
	text-indent: 0;
	color: #DD614B;
	text-decoration: underline;
}

/* CLEARFIX */
.container:after,
.row:after,
.col:after {
	content: "";
	display: table;
	clear: both;
}

.container {
	width: 100%;
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}

.sp {display: none;}

#screen {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color:rgba(98,98,98,0.8);
	z-index: 200;
}

/* ▼ タイトル
--------------------------------------- */
#site_title {
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	height: 100%;
	overflow: hidden;
	text-align: center;
}
#site_title a{
	max-width: 84.25px;
}
.ribbon_title{
	/* margin-bottom: 40px; */
	margin-bottom: 10px;
	color: #FFF;
	font-size: 21px;
	font-weight: 500;
	font-family: 'Oswald', 'Kiwi Maru', sans-serif;
	text-align: center;
}
.ribbon_title > span{
	display: inline-block;
	height: 43px;
	padding: 0 20px;
	background: url(../img/title_ribbon_l.png) no-repeat left center/auto 100%,url(../img/title_ribbon_r.png) no-repeat right center/auto 100%;
}
.ribbon_title > span > span{
	display: -webkit-inline-flex;
	display: -ms-inline-flex;
	display: inline-flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	height: 100%;
	padding: 0 13px;
	background: url(../img/title_ribbon_rep.png) repeat-x center center/auto 100%;
}

/* リスト */
.indent_list li{
	text-indent: -1em;
	padding-left: 1em;
}
.kome_list li::before{
	content: '※';
}
.dot_list li::before{
	content: '・';
}

/* ▼▼▼ ヘッダー
====================================================== */
body.wrap {overflow: hidden;}

header {
	width: 100%;
	padding: 0;
	position: fixed;
	height: 100px;
	top: 0;
	left: 0;
	z-index: 99999;
	overflow: visible;
}
.header_inner {
	border-bottom: 1px solid #EDEDED;
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	height: 100px;
	z-index: 99999;
	padding: 0 33px;
}

/* ▼ グローバルナビゲーション
--------------------------------------- */
#gnav {
	display: block!important;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	float: none;
	background: #FEF5EC;
	width: 100%;
	max-height: 100vh;
	padding: 100px 0 0;
	margin: 0;
	position: absolute;
	top: -1000px;
	left: 0;
	z-index: 1000;
	overflow: auto;
}
#gnav.open {
	-moz-transform: translateY(1000px);
	-webkit-transform: translateY(1000px);
	transform: translateY(1000px);
}

	#gnav .nav_bg{
		max-width: 1040px;
		width: 100%;
		padding: 50px 20px;
		margin: 0 auto;
		position: relative;
	}
	#gnav .nav_bg .nav_block{
		padding: 30px 0;
		border-bottom: #773823 1px dashed;
	}
	#gnav .nav_bg .nav_block:first-child{
		border-top: #773823 1px dashed;
	}
	#gnav ul{
		display: flex;
		flex-wrap: wrap;
	}
	#gnav ul.nav_img_list{
		margin: 0 -10px;
	}
	#gnav ul.nav_img_list:not(:last-child){
		margin-bottom: 30px;
	}
	#gnav ul.nav_img_list li{
		width: calc((100%/5) - 20px);
		margin: 0 10px;
	}
	#gnav ul.nav_img_list li a{
		display: block;
		border: #FFF 2px solid;
		background: #FFF;
		border-radius: 10px;
		box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
		position: relative;
		overflow: hidden;
	}
	#gnav ul.nav_txt_list{
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 20px;
	}
	#gnav ul.nav_txt_list li{
		-webkit-flex: 0 0 33%;
		-ms-flex: 0 0 33%;
		flex: 0 0 33%;
		width: 33%;
		max-width: 33%;
		margin-bottom: 10px;
		box-sizing: border-box;
	}
	#gnav ul.nav_txt_list li a{
		color: #773823;
		text-indent: -1em;
		padding-left: 1em;
	}
	#gnav ul.nav_txt_list li a::before{
		content: '◆';
		color: #E56046;
		font-size: 12px;
	}

	#gnav ul:not(.h_share_list) li img{
		max-width: 100%;
		width: 100%;
	}
	#gnav ul.h_share_list li:last-child{
		margin-right: 0!important
	}
	#gnav .nav_title{
		color: #773823;
		font-size: 18px;
		font-weight: 600;
		font-family: 'Kiwi Maru', serif;
		position: relative;
	}
	#gnav .nav_title.nav_title_ac{
		cursor: pointer;
	}
	#gnav .nav_title.nav_title_ac .nav_title_ac_icon{
		content: '';
		width: 27px;
		height: 27px;
		background: #E56046;
		border-radius: 50%;
		position: absolute;
		right: 0;
		top: calc(50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	#gnav .nav_title.nav_title_ac .nav_title_ac_icon::before,
	#gnav .nav_title.nav_title_ac .nav_title_ac_icon::after{
		content: '';
		width: 11px;
		height: 1px;
		background: #FFF;
		position: absolute;
		top: 13px;
		right: 8px;
	}
	#gnav .nav_title.nav_title_ac.open .nav_title_ac_icon::after{
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	#gnav .nav_title.nav_title_ac + .nav_article{
		display: none;
	}
	#gnav .nav_title.nav_title_link a{
		display: block;
		background: url(../img/icon_arrow.png) no-repeat right center/16px;
	}
	#gnav .ribbon_title{
		margin: 30px 0 20px;
		text-align: left;
		font-family: 'Oswald', sans-serif;
		font-size: 16px;
	}
	#gnav .ribbon_title > span{
		height: 34px;
	}

/* ▼メニューボタン
--------------------------------------- */
.menu {
	display: block;
	width: 100px;
	height: 100px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2000;
	cursor: pointer;
}
.menu .icon {
	display: block;
	width: 50px;
	height: 1px;
	border-top: 1px solid #000;
	position: absolute;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.menu .icon:before,
.menu .icon:after{
	content: '';
	width: 50px;
	border-top: 1px solid #000;
	position: absolute;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	right: 0;
	height: auto;
}
.menu .icon:before {
	top: -15px;
}
.menu .icon:after {
	bottom: -14px;
}
.menu .icon.active {
	border-color: #fff;
}
.menu .icon.active:before {
	-moz-transform: rotate(-145deg);
	-webkit-transform: rotate(-145deg);
	transform: rotate(-145deg);
	top: -1px;
	right: 0;
}
.menu .icon.active:after {
	-moz-transform: rotate(145deg);
	-webkit-transform: rotate(145deg);
	transform: rotate(145deg);
	bottom: 0;
	right: 0;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
	margin: 100px auto 0;
	clear: both;
	overflow: hidden;
	font-size: 12px;
}

/* このアイテムをシェアする */
.share_area{
	padding: 60px 0 80px;
	margin: 0 auto;
}
.share_wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFF;
	border-radius: 5px;
	max-width: 485px;
	width: 100%;
	padding: 28px 0;
	margin: 0 auto;
	color: #000;
	font-weight: 500;
}
.share_wrap .share_txt{
	margin-right: 40px;
	font-size: 16px;
}
.share_list{
	display: flex;
	align-items: center;
	justify-content: center;
}
.share_list li a{
	cursor: pointer;
}
.share_list li:not(:last-child){
	margin-right: 15px;
}

a.back_btn{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	height: 66px;
	background: url(../img/icon_arrow_w.png) no-repeat right 16px center/16px,#DD614B;
	border: #FBE7BD 1.5px solid;
	border-radius: 10px;
	box-shadow: 2px 2px 0 #864B39;
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Oswald', 'Noto Sans JP', sans-serif;
}

a.back_btn.nolink_btn{
	box-shadow: none;
	border: #BBB 1.5px solid;
	background: #BBB;
	font-family: 'Noto Sans JP', sans-serif;
	opacity: 1!important;
}

.more_btn{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	max-width: 300px;
	width: 100%;
	margin: 50px auto 0;
	height: 66px;
	background: #FFF;
	border: #DD614B 1.5px solid;
	border-radius: 10px;
	box-shadow: 2px 2px 0 #DD614B;
	color: #DD614B;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Oswald', 'Noto Sans JP', sans-serif;
	cursor: pointer;
}
.more_btn.more_open::before{
	content: 'MORE';
}
.more_btn.more_close::before{
	content: 'CLOSE';
}

/* ▼▼▼ フッター
===================================== */
footer {
	width: 100%;
	background: #3C3C3C;
	padding: 35px 20px;
	clear: both;
	overflow: hidden;
	color: #fff;
}
#footer_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}
.f_wrap{
	display: flex;
	align-items: center;
}
	.f_logo{
		flex-shrink: 0;
		margin-right: 50px;
	}
	.f_sns{
		display: flex;
		align-items: center;
	}
	.f_sns li{
		margin-right: 15px;
	}
	.f_sns .txt{
		font-size: 22px;
		font-family: arial, sans-serif;
	}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop{
	background: #000;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 2000;
	cursor: pointer;
	text-align: center;
}
	.pagetop::before{
		content: "";
		display: inline-block;
		width: 10px;
		height: 10px;
		border-top: 1px solid #fff;
		border-left: 1px solid #fff;
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		position: relative;
		top: 15px;
	}

/* ▼ コピーライト
--------------------------------------- */
#copyright {
	font-size: 12px;
}


/* ▼▼▼ 480px〜768px
====================================================== */
@media screen and (max-width: 768px) {

	body{
		font-size: 14px;
		min-height: 100vh;
	}
	body.wrap {
		overflow: hidden;
	}

	body > #wrapper{
		overflow: hidden;
	}
	#wrapper {width: 100%;}

	/* .container{
		padding: 0 30px;
	} */

	.pc {display: none;}
	.sp {display: block;}

	.loading .circle{
		top: 40%;
	}


	/* ▼タイトル
	--------------------------------------- */
	#site_title {
		align-items: center;
		overflow: hidden;
		margin: 0 auto;
	}
	#site_title a{
		max-width: 51.26px;
	}
	.ribbon_title{
		margin-bottom: 25px;
		font-size: 17px;
	}
	.ribbon_title > span{
		height: 34px;
		}
	.ribbon_title > span > span{
		padding: 0 15px;
	}

	/* ▼▼▼ ヘッダー
	====================================================== */
	header {
		width: 100%;
		padding: 0;
		height: 60px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99999;
		overflow: visible;
	}

	.header_inner {
		width: 100%;
		height: 60px;
		padding: 0 20px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99999;
	}

	/* ▼ グローバルナビゲーション
	--------------------------------------- */
	#gnav {
		border: none;
		padding: 60px 0 100px;
	}
		#gnav > ul {
			display: block;
			padding: 0;
			margin: 0;
		}
			#gnav .nav_bg{
				padding: 30px 24px 0;
				margin: 0;
				text-align: center;
				position: relative;
			}
			#gnav .nav_bg::before{
				display: none;
			}
			#gnav ul.nav_img_list{
				justify-content: space-between;
				margin: 0 0 5px;
			}
			#gnav ul.nav_img_list li{
				justify-content: space-between;
				width: calc(50% - 4px);
				margin: 0 0 0;
			}
			#gnav ul.nav_img_list li:not(:nth-last-child(-n+2)){
				margin-bottom: 20px;
			}
			#gnav ul.nav_img_list:not(:last-child){
				margin-bottom: 10px;
			}
			#gnav ul.nav_txt_list{
				display: block;
				margin-top: 20px;
			}
			#gnav ul.nav_txt_list li{
				width: 100%;
				max-width: 100%;
				margin-bottom: 10px;
				box-sizing: border-box;
			}
			#gnav .ribbon_title{
				text-align: center;
				font-size: 14px;
			}
			#gnav .ribbon_title > span{
				height: 30px;
			}
			#gnav .ribbon_title > span > span{
				padding: 0 15px;
			}

		.h_sns{
			padding: 15px 0;
		}
		.h_share_list{
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 20px 0;
			margin: 25px 0 40px!important;
			background: #FFF;
		}
		.h_share_list li{
			line-height: 1;
			font-size: 14px;
			font-weight: 500;
		}
		.h_share_list li:not(:last-child){
			margin-right: 20px;
		}
		.logo_bk{
			text-align: center;
		}

		/* ▼メニューボタン
		--------------------------------------- */
		.menu {
			display: block;
			width: 60px;
			height: 60px;
			position: absolute;
			top: 0;
			right: 0;
			z-index: 2000;
		}
		.menu .icon {
			display: block;
			width: 30px;
			height: 1px;
			border-top: 1px solid #000;
		}
		.menu .icon:before,
		.menu .icon:after{
			content: '';
			width: 30px;
			border-top: 1px solid #000;
			position: absolute;
			-moz-transition: all 0.3s;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
			right: 0;
		}
		.menu .icon:before {
			top: -9px;
		}
		.menu .icon:after {
			bottom: -8px;
		}

	/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
	====================================================== */
	#header_inner,
	#main,#contents,#side,
	footer,#footer_inner {
		float: none;
		width: 100%;
	}
	#main {
		margin-top: 60px;
	}


	/* このアイテムをシェアする */
	.share_area{
		padding: 60px 0 50px;
		margin: 0 auto;
	}
	.share_wrap{
		display: block;
		width: auto;
		padding: 20px 0;
	}
	.share_wrap .share_txt{
		text-align: center;
		margin: 0 0 10px;
	}
	.share_list li{
		max-width: 40px;
	}
	.share_list li a{
		cursor: pointer;
	}
	.share_list li:not(:last-child){
		margin-right: 15px;
	}

	a.back_btn{
		max-width: 262px;
		height: 45px;
		background: url(../img/icon_arrow_w.png) no-repeat right 14px center/16px,#DD614B;
	}
	.more_btn{
		max-width: 262px;
		margin: 30px auto 0;
		height: 45px;
	}

	/* ▼▼▼ フッター
	====================================================== */
	footer {
		padding: 25px 20px;
	}
	#footer_inner{
		display: block;
	}
	.f_wrap{
		display: block;
	}
		.f_logo{
			margin: 0 0 20px;
			text-align: center;
		}
		.f_sns{
			justify-content: center;
			margin: 0 0 20px;
		}
		.f_sns li{
			margin-right: 15px;
		}

	/* ▼ ページ上部へ戻る
	--------------------------------------- */
	.pagetop{
		right: 10px;
		bottom: 10px;
	}
	/* ▼ コピーライト
	--------------------------------------- */
	#copyright {
		text-align: center;
	}

}
