@charset "UTF-8";
/* loading */
.loading {
	position: fixed;
	z-index: 10000;
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
	background: #fdfdfd;
}
.loading.hide {
	opacity: 0;
	pointer-events: none;
	transition: opacity 500ms;
}
.loading .circle {
	display: block;
	position: relative;
	top: calc(50% - 20px);
	width: 40px;
	height: 40px;
	margin: 0 auto;
	border: 3px solid #e0e0e0;
	border-top: 2px solid #e9607c;
	border-radius: 100px;
	animation: loading 700ms linear 0ms infinite normal both;
}
@keyframes loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/* ------ General Settings ------ */
html {
}
#wrapper {
	padding-top: 100px;
}
@media screen and (max-width: 639px) {
	#wrapper {
		padding-top: 60px;
	}
}
#pageContent {
	padding: 0 5% 60px;
	min-width: 900px;
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 639px) {
	#pageContent {
		min-width: inherit;
		max-width: inherit;
	}
}
.fLeft {
	float: left;
}
.fRight {
	float: right;
}
a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha( opacity=50 )";
	line-height: 1px;
	transition: .3s;
}
.forPc {
	display: block;
}
.forMobile {
	display: none;
}
@media screen and (max-width: 639px) {
	.forPc {
		display: none;
	}
	.forMobile {
		display: block;
	}
}
/* ------ webfont ------ */
/* 日本語フォント */
body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 160%;
	color: #222;
	text-align: left;
	-webkit-text-size-adjust: none;
	font-weight: 400;
}
/* 指定英字フォント */
.webfontM {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
.webfontMB {
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
/* ------ ライン ------ */
/* leftLine */
.leftLine {
	line-height: 100%;
	display: flex;
	align-items: center;
}
.leftLine:after {
	border-top: 1px solid;
	content: "";
	flex-grow: 1;
	margin-left: 2%;
}
/* 左右ライン */
.wLine {
	display: flex;
	align-items: center;
}
.wLine:before, .wLine:after {
	content: "";
	height: 1px;
	flex-grow: 1;
	background-color: #222;
}
.wLine:before {
	margin-right: 1rem;
}
.wLine:after {
	margin-left: 1rem;
}
/* linkBox */
.linkBox {
	position: relative;
	z-index: 1;
}
.linkBox a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent: -999px;
	z-index: 11;
}
/* zoomBox */
.zoomBox {
	display: block;
	transition-duration: 0.3s; /*変化に掛かる時間*/
}
.zoomBox:hover {
	transform: scale(1.05); /*画像の拡大率*/
	transition-duration: 0.3s; /*変化に掛かる時間*/
}
/* ------ inview アニメーション ------ */
/* fade-In */
.fade-In {
	opacity: 0;
	transition: 3s;
}
.fade-In.is-show {
	opacity: 1;
}
/* fadeIn_up */
.fadeIn_up {
	opacity: 0;
	transform: translate(0, 40px);
	transition: 1.6s;
}
.fadeIn_up.is-show {
	transform: translate(0, 0);
	opacity: 1;
}
/* fadeIn_left */
.fadeIn_left {
	opacity: 0;
	transform: translate(-10%, 0);
	transition: 3s;
}
.fadeIn_left.is-show {
	transform: translate(0, 0);
	opacity: 1;
}
/* fadeIn_right */
.fadeIn_right {
	opacity: 0;
	transform: translate(10%, 0);
	transition: 3s;
}
.fadeIn_right.is-show {
	transform: translate(0, 0);
	opacity: 1;
}
/* icon */
/* → */
.icon01::before {
	font-family: 'Material Symbols Outlined';
	content: "\eaaa";
	vertical-align: -5%;
	margin-right: 0.2em;
}
/* ↓ */
.icon02::before {
	font-family: 'Material Symbols Outlined';
	content: "\f181";
	vertical-align: -5%;
	margin-right: 0.2em;
}
/* ブランク */
.icon03::before {
	font-family: 'Material Symbols Outlined';
	content: "\e02e";
	vertical-align: -10%;
	margin-right: 0.2em;
}
/* ← */
.icon04::before {
	font-family: 'Material Symbols Outlined';
	content: "\eaa7";
	vertical-align: -5%;
	margin-right: 0.2em;
}
.icon08::before {
	content: "◼︎";
	margin-right: 0.2em;
}
.icon09::before {
	content: "・";
	margin-right: 0.2em;
}
.icon10::before {
	content: "↓";
	margin-right: 0.2em;
	margin-left: 2em;
}
/* linkLine */
.linkLine {
	/*線の基点とするためrelativeを指定*/
	position: relative;
	/*リンクの形状*/
	padding: 10px 0;
	text-decoration: none;
	outline: none;
}
/*線の設定*/
.linkLine::before, .linkLine::after {
	content: '';
	/*絶対配置で線の位置を決める*/
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	/*線の形状*/
	background: #fff;
	width: 100%;
	height: 1px;
	/*アニメーションの指定*/
	transition: all 0.3s ease-in-out;
}
/*hover時に伸びる線の形状*/
.linkLine::after {
	width: 0;
	background: #e9607c;
}
/*hover時に100%に伸びる*/
.linkLine:hover::after {
	width: 100%;
}
/* wakiArea
================================================== */
.wakiArea {
	padding-bottom: 30px;
}
.wakiArea .fLeft {
	width: 380px;
}
.wakiArea .fRight {
	width: 540px;
}
@media screen and (max-width: 639px) {
	.wakiArea {
		padding: 5%;
		margin-bottom: 5%;
		background-color: #efefef;
		border-radius: 3px;
	}
	.txtBox .fLeft {
		float: none;
		width: 100%;
	}
	.txtBox .fRight {
		float: none;
		width: 100%;
		padding-bottom: 20px;
	}
}
/* wakiList
================================================== */
.wakiList {}
@media screen and (max-width: 639px) {
	.wakiList {
		width: 90%;
		margin: 0 auto;
	}
}
.wakiList .wakiListBox {
	float: left;
	width: 30%;
	margin-right: 5%;
}
.wakiList .wakiListBox:last-child {
	margin: 0;
}
@media screen and (max-width: 600px) {
	.wakiList .wakiListBox {
		float: none;
		width: 100%;
		margin: 0;
	}
}
.wakiList .wakiListBox h3 img {
	width: 100%;
}
.wakiList dl {
	padding: 0 0 10px;
	font-weight: bold;
}
.wakiList dt {
	padding: 0 0 5px;
}
.wakiList dd {
	font-size: 80%;
}
@media screen and (max-width: 639px) {
	.wakiList .wakiListBox {
		float: none;
		width: 100%;
	}
	.wakiList .wakiListBox:last-child {
		float: none;
		width: 100%;
	}
}
/* footArea
================================================== */
#footArea {
	min-width: 900px;
	background-color: #eee;
}
@media screen and (max-width: 639px) {
	#footArea {
		min-width: inherit;
	}
}
/* footBlock
================================================== */
.footBlock {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3% 5%;
}
.footBox {
	padding-bottom: 20px;
}
/* footLogo */
.footLogo {
	width: 30%;
	max-width: 320px;
	padding: 20px 0 0 0;
}
@media screen and (max-width: 639px) {
	.footLogo {
		width: 60%;
		padding: 20px 0 0 0;
	}
}
.footLogo h2 {
	margin: 0;
}
/* footNav */
#footNav {
	border-top: solid #ddd 1px;
	padding: 2% 0;
}
#footNav ul li {
	float: left;
	width: 18%;
	padding-right: 2%;
	font-size: 90%;
	line-height: 100%;
	list-style: none;
}
@media screen and (max-width: 1100px) {
	#footNav ul li {
		font-size: 80%;
	}
}
@media screen and (max-width: 639px) {
	#footNav ul li {
		float: none;
		width: 100%;
		padding: 0;
	}
}
#footNav ul li a {
	display: block;
	color: #222;
	font-weight: 500;
}
#footNav ul li .icon01::before, #footNav ul li .icon07::before {
	vertical-align: -12%;
}
#footNav ul .btnlinestretches4 {
	/*線の基点とするためrelativeを指定*/
	position: relative;
	/*リンクの形状*/
	padding: 10px 0;
	text-decoration: none;
	outline: none;
}
/*線の設定*/
#footNav ul .btnlinestretches4::before, #footNav ul .btnlinestretches4::after {
	content: '';
	/*絶対配置で線の位置を決める*/
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	/*線の形状*/
	background: #eee;
	width: 100%;
	height: 2px;
	/*アニメーションの指定*/
	transition: all 0.3s ease-in-out;
}
/*hover時に伸びる線の形状*/
#footNav ul .btnlinestretches4::after {
	width: 0;
	background: #e9607c;
}
/*hover時に100%に伸びる*/
#footNav ul .btnlinestretches4:hover::after {
	width: 100%;
}
/* crArea
================================================== */
#crArea {
	background-color: #ddd;
}
#crArea p {
	text-align: center;
	font-size: 60%;
	line-height: 60px;
}
@media screen and (max-width: 639px) {
	#crArea {
		padding: 0 5%;
	}
	#crArea p {
		font-size: 2.2vw;
		text-align: left;
	}
}
/* breadArea
================================================== */
#breadArea {
	background-color: #fff;
}
@media screen and (max-width: 1500px) {
	#breadArea {
		margin-bottom: 0;
	}
}
#breadArea nav {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 3%;
}
.breadcrumbs {
	height: 40px;
	padding: 0;
	margin: 0;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	font-size: 70%;
	line-height: 40px;
}
.breadcrumbs li {
	display: inline-block;
	font-weight: 400;
}
.breadcrumbs li a {
	/*線の基点とするためrelativeを指定*/
	position: relative;
	/*リンクの形状*/
	padding: 3px 0;
	text-decoration: none;
	outline: none;
	color: #222;
	transition: .3s;
}
.breadcrumbs li a:hover {
	color: #e9607c;
	transition: .3s;
}
/*線の設定*/
.breadcrumbs li a::before, .breadcrumbs li a::after {
	content: '';
	/*絶対配置で線の位置を決める*/
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	/*線の形状*/
	background: #efefef;
	width: 100%;
	height: 1px;
	/*アニメーションの指定*/
	transition: all 0.3s ease-in-out;
}
/*hover時に伸びる線の形状*/
.breadcrumbs li a::after {
	width: 0;
	background: #e9607c;
}
/*hover時に100%に伸びる*/
.breadcrumbs li a:hover::after {
	width: 100%;
}
/* centerBtnMore センター寄せ
================================================== */
.centerBtnMore {
	display: flex;
	justify-content: center;
}
.centerBtnMore p {
	position: relative;
	border: solid 1px #222;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	text-align: center;
	background-color: #fff;
}
.centerBtnMore p:hover {
	border: solid 1px #e9607c;
	transition: .3S;
	-webkit-transition: .3s;
}
.centerBtnMore p a {
	padding: 5px 25px 5px 35px;
	color: #222;
	display: block;
	font-size: 80%;
	font-weight: 500;
}
.centerBtnMore p:hover a {
	transition: .3S;
	-webkit-transition: .3s;
	color: #e9607c;
}
.centerBtnMore p .centerBtn-border:before {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: .3s;
	transition: .3s;
	font-family: 'Material Symbols Outlined';
	content: "\eaaa";
	-webkit-transform: translateX(10px) translateY(5px);
	transform: translateX(10px) translateY(5px);
}
.centerBtnMore p:hover .centerBtn-border:before {
	-webkit-transform: translateX(16px) translateY(5px);
	transform: translateX(16px) translateY(5px);
	color: #e9607c;
}
/* btnMore 左揃え
================================================== */
.btnMore {
	position: relative;
	display: none;
	border: solid 1px #222;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color: #fff;
}
@media screen and (max-width: 639px) {
	.btnMore {
		display: inline-block;
	}
}
.btnMore:hover {
	border: solid 1px #e9607c;
	transition: .3S;
	-webkit-transition: .3s;
}
.btnMore a {
	padding: 5px 25px 5px 35px;
	color: #222;
	display: block;
	font-size: 80%;
	font-weight: 500;
}
.btnMore:hover a {
	transition: .3S;
	-webkit-transition: .3s;
	color: #e9607c;
}
.btnMore .btn-border:before {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: .3s;
	transition: .3s;
	font-family: 'Material Symbols Outlined';
	content: "\eaaa";
	-webkit-transform: translateX(10px) translateY(5px);
	transform: translateX(10px) translateY(5px);
}
.btnMore:hover .btn-border:before {
	-webkit-transform: translateX(16px) translateY(5px);
	transform: translateX(16px) translateY(5px);
	color: #e9607c;
}
/* backtotop
================================================== */
.backtotop {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 900;
	display: none;
}
.icon-top::before {
	font-family: 'Material Symbols Outlined';
	content: "\e25a";
	vertical-align: 0;
	margin-right: 0;
}
.hovicon {
	display: inline-block;
	font-size: 80%;
	line-height: 60px;
	cursor: pointer;
	width: 60px;
	height: 60px;
	text-align: center;
	position: relative;
	text-decoration: none;
	z-index: 1;
	color: #fff;
}
.hovicon:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.hovicon:before {
	speak: none;
	font-size: 140%;
	line-height: 60px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	display: block;
}
/* Effect 1 */
.hovicon.effect-1 {
	background: #e9607c;
	-webkit-transition: background 0.2s, color 0.2s;
	-moz-transition: background 0.2s, color 0.2s;
	transition: background 0.2s, color 0.2s;
}
.hovicon.effect-1:after {
	top: -7px;
	left: -7px;
	padding: 7px;
	box-shadow: 0 0 0 4px #e9607c;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(.8);
	-moz-transition: -moz-transform 0.2s, opacity 0.2s;
	-moz-transform: scale(.8);
	-ms-transform: scale(.8);
	transition: transform 0.2s, opacity 0.2s;
	transform: scale(.8);
	opacity: 0;
}
/* Effect 1a */
.hovicon.effect-1.sub-a:hover {
	background: #e9607c;
	color: #fff;
}
.hovicon.effect-1.sub-a:hover p {
	color: #fff;
}
.hovicon.effect-1.sub-a:hover:after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}