@charset "UTF-8";



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
*{margin:0;padding:0;text-decoration:none;box-sizing: border-box;;}fieldset{border:0}body{line-height:1.8}body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,select,ul{margin:0;padding:0}img{border:0;vertical-align:top}a{text-decoration:none}em{font-style:normal}ul li{list-style-type:none;list-style-image:none}address{font-style:normal}strong {font-weight: bold}ul li {list-style:none}img{width: 100%;height: auto}
html{font-size: 62.5%;}
body{font-size: 1.5rem;}




/* body */
body {
	font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	color: #222222;
	padding: 0;
	margin: 0;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}
body.jp {
	font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
body.en {
	font-family: "DM Sans", sans-serif;
}
body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow: hidden;
}


/* テキスト装飾 */
.c-red {
	color: #AB3535;
}
.c-white {
	color: #fff;
}
a {
	color: #222222;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:before {
	transition: 0.3s;
	-webkit-transition: 0.3s;
}


/* flex */
.flex {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-start {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.flex-end {
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	 -ms-flex-direction: row-reverse;
		 flex-direction: row-reverse;
}
.flex-center {
	display: flex;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: #fff;
	padding: 0.8vw 4vw 0.8vw 2vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 12;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
	#header .logo {
		width: 12vw;
		line-height: 1;
	}

	#header .globalnav {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
		#header .globalnav .list li {
			margin-left: 4vw;
		}
		#header .globalnav .list li:nth-child(1) {
			margin-left: 0;
		}
			#header .globalnav .list li a {
				display: block;
				font-size: 1.1vw;
				font-weight: 500;
			}
			#header .globalnav .list li a:hover {
				color: #AB3535;
			}

		#header .globalnav .language {
			margin-left: 4vw;
			position: relative;
		}
			#header .globalnav .language a.head {
				display: flex;
				justify-content: center;
				align-items: center;
				height: 4vw;
				background: url("../img/common/icon_language.svg") no-repeat left center / 1vw;
				padding-left: 1.3vw;
				font-size: 1.1vw;
			}

			#header .globalnav .language .sub-list {
				display: none;
				width: 6vw;
				background: #AB3535;
				border-radius: 0.3vw;
				position: absolute;
				top: 3.5vw;
				left: 50%;
				margin-left: -3vw;
			}
				#header .globalnav .language .sub-list li {
					border-bottom: solid 1px rgba(255,255,255,0.3);
				}
				#header .globalnav .language .sub-list li:nth-last-child(1) {
					border-bottom: solid 1px none;
				}
					#header .globalnav .language .sub-list li a {
						display: block;
						font-size: 1.0vw;
						font-weight: 500;
						color: #fff;
						line-height: 1;
						text-align: center;
						padding: 0.5vw 1vw;
					}
					#header .globalnav .language .sub-list li a:hover {
						opacity: 0.7;
					}
@media screen and (max-width: 767px) {
	#header {
		padding: 0 17vw 0 3vw;
		height: 16vw;
	}
		#header .logo {
			width: 30vw;
		}

		#header .globalnav .list {
			display: none;
		}

		#header .globalnav .language a.head {
			height: 16vw;
			background: url("../img/common/icon_language.svg") no-repeat left center / 4vw;
			padding-left: 6vw;
			font-size: 3.4vw;
			line-height: 1;
		}

		#header .globalnav .language .sub-list {
			width: 12vw;
			border-radius: 1vw;
			top: 12vw;
			margin-left: -6vw;
		}
			#header .globalnav .language .sub-list li a {
				font-size: 3.4vw;
				padding: 2vw 1vw;
			}
}


	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニューボタン */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#menubtn {
	width: 16vw;
	height: 16vw;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 25;
}
	#menubtn .menu {
		display: block;
		position: relative;
		cursor: pointer;
		width: 16vw;
		height: 16vw;
	}
		#menubtn .menu span {
			width: 8vw;
			display: inline-block;
			border-radius: 1px;
			position: absolute;
			top: 50%;
			left: 50%;
			margin-left: -4vw;
			height: 1px;
			background: #000;
			transition: 0.3s;
			-webkit-transition: 0.3s;
		}
		#menubtn .menu span:nth-of-type(1) {
			margin-top: -3px;
		}
		#menubtn .menu span:nth-of-type(2) {
			margin-top: 3px;
		}

		#menubtn .menu.active .openbtn-area {
			transform: rotateY(-360deg);
		}
			#menubtn .menu.active span:nth-of-type(1) {
				transform: translateY(6px) rotate(-155deg);
				margin-top: -6px;
			}
			#menubtn .menu.active span:nth-of-type(2) {
				transform: translateY(-6px) rotate(155deg);
				margin-top: 6px;
			}
@media screen and (min-width: 768px) {
	#menubtn {
		display: none;
	}
}


	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#menubox {
	display: none;
}
@media screen and (max-width: 767px) {
	#menubox {
		width: 100%;
		background: #222222;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 11;
	}
		#menubox .menunav {
			display: flex;
			justify-content: center;
			align-items: center;
			width: 100%;
			height: 100vh;
			height: 100dvh;
		}
			#menubox .menunav .list {
				width: 86%;
			}
				#menubox .menunav .list li {
					border-bottom: solid 1px rgba(255,255,255,0.3);
				}
				#menubox .menunav .list li:nth-last-child(1) {
					border-bottom: none;
				}
					#menubox .menunav .list li a {
						display: block;
						padding: 6vw 0;
						font-size: 4.4vw;
						font-weight: 700;
						line-height: 1;
						color: #fff;
					}
}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* タイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* h2-tit */
.h2-tit {
	font-size: 2.6vw;
	font-weight: 700;
	line-height: 1.3em;
	text-align: center;
	margin-bottom: 2vw;
}
@media screen and (max-width: 767px) {
	/* h2-tit */
	.h2-tit {
		font-size: 6.8vw;
		margin-bottom: 5vw;
	}
}



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.sp {
	display: none;
}

/* main */
#main {
	display: block;
}
.inner {
	width: 90%;
	margin: 0 auto;
	position: relative;
}
.inner-half {
	width: 45%;
	margin: 0 auto;
	position: relative;
}

/* img-over */
a .img-over {
	overflow: hidden;
}
	a .img-over img {
		-moz-transition: -moz-transform 0.2s linear;
		-webkit-transition: -webkit-transform 0.2s linear;
		-o-transition: -o-transform 0.2s linear;
		-ms-transition: -ms-transform 0.2s linear;
		transition: transform 0.2s linear;
	}
	a:hover .img-over img {
		-webkit-transform: scale(1.05);
		-moz-transform: scale(1.05);
		-o-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05);
	}

/* wrap */
.wrap-top {
	padding-top: 8vw;
}
.wrap-bottom {
	padding-bottom: 8vw;
}

/* txt */
.txt-20 {
	font-size: 1.45vw;
	line-height: 1.6em;
}
.txt-18 {
	font-size: 1.3vw;
	line-height: 1.6em;
}
.txt-16 {
	font-size: 1.15vw;
	line-height: 1.6em;
}
.txt-14 {
	font-size: 1.0vw;
	line-height: 1.6em;
}

/* btn */
.btn {
	width: 14vw;
	margin: 0 auto;
}
.btn-black {
	width: 11vw;
}
	.btn a {
		display: flex;
		justify-content: center;
		align-items: center;
		background: #fff;
		height: 4vw;
		border: solid 1px #AB3535;
		border-radius: 2vw;
		font-weight: 500;
		color: #AB3535;
		line-height: 1;
	}
	.btn a:hover {
		background: #AB3535;
		color: #fff;
	}
	.btn-black a {
		display: flex;
		justify-content: center;
		align-items: center;
		background: #222222;
		height: 3vw;
		border: solid 1px #222222;
		border-radius: 1.5vw;
		font-size: 1.1vw;
		font-weight: 500;
		color: #fff;
		line-height: 1;
	}
	.btn-black a:hover {
		background: #AB3535;
		border: solid 1px #AB3535;
		color: #fff;
	}
@media screen and (max-width: 767px) {
	.sp {
		display: block;
	}
	.pc {
		display: none !important;
	}

	/* inner */
	.inner {
		width: 86%;
	}
	.inner-half {
		width: 86%;
	}

	/* wrap */
	.wrap-top {
		padding-top: 15vw;
	}
	.wrap-bottom {
		padding-bottom: 15vw;
	}

	/* txt */
	.txt-20 {
		font-size: 4.3vw;
		line-height: 1.6em;
	}
	.txt-18 {
		font-size: 4.2vw;
		line-height: 1.6em;
	}
	.txt-16 {
		font-size: 3.8vw;
		line-height: 1.6em;
	}
	.txt-14 {
		font-size: 3.4vw;
		line-height: 1.4em;
	}
	.txt-12 {
		font-size: 2.8vw;
		line-height: 1.2em;
	}

	/* pagenavi */
	.wp-pagenavi a, .wp-pagenavi span {
		width: 8vw;
		height: 8vw;
		font-size: 3.2vw;
		line-height: 8vw;
		margin: 0 1vw;
	}

	/* btn */
	.btn {
		width: 44vw;
	}
		.btn a {
			height: 12vw;
			font-size: 3.8vw;
			border-radius: 6vw;
		}
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* READ MORE */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#read-more {
	overflow: hidden;
}
	#read-more .swiper-container {
		width: 100%;
		padding: 0;
		position: relative;
	}
		#read-more .swiper-container .swiper-slide {
			display: block;
			padding: 0 1.5vw 0 1.5vw;
		}
			#read-more .swiper-container .swiper-slide .pht {
				border-radius: 1.5vw;
			}

			#read-more .swiper-container .swiper-slide h3 {
				margin-top: 1vw;
				transition: 0.3s;
				-webkit-transition: 0.3s;
			}
			#read-more .swiper-container .swiper-slide:hover h3 {
				color: #AB3535;
			}

		#read-more .swiper-container  .swiper-button-prev {
			display: block;
			width: 4vw;
			height: 4vw;
			aspect-ratio: 1 / 1;
			background: url("../img/common/btn_prev.svg") no-repeat center / 100%;
			border-radius: 50%;
			margin: 0;
			box-shadow: 7px 7px 15px 0px rgba(0, 0, 0, 0.35);
			position: absolute;
			top: 32%;
			left: -0.5vw;
			transition: 0.3s;
			-webkit-transition: 0.3s;
			z-index: 2;
		}
		#read-more .swiper-container  .swiper-button-prev:after,
		#read-more .swiper-container  .swiper-button-prev:before {
			display: none;
		}
		#read-more .swiper-container  .swiper-button-prev:hover:before {
		}

		#read-more .swiper-container  .swiper-button-next {
			display: block;
			width: 4vw;
			height: 4vw;
			aspect-ratio: 1 / 1;
			background: url("../img/common/btn_next.svg") no-repeat center / 100%;
			border-radius: 50%;
			margin: 0;
			box-shadow: 7px 7px 15px 0px rgba(0, 0, 0, 0.35);
			position: absolute;
			top: 32%;
			right: -0.5vw;
			transition: 0.3s;
			-webkit-transition: 0.3s;
			z-index: 2;
		}
		#read-more .swiper-container  .swiper-button-next:after,
		#read-more .swiper-container  .swiper-button-next:before {
			display: none;
		}
@media screen and (max-width: 767px) {
	#read-more .swiper-container .swiper-slide {
		padding: 0 2vw 0 2vw;
	}
		#read-more .swiper-container .swiper-slide .pht {
			border-radius: 3vw;
		}
	
		#read-more .swiper-container .swiper-slide h3 {
			margin-top: 1.5vw;
		}

	#read-more .swiper-container  .swiper-button-prev,
	#read-more .swiper-container  .swiper-button-prev:after,
	#read-more .swiper-container  .swiper-button-prev:before {
		display: none;
	}

	#read-more .swiper-container  .swiper-button-next,
	#read-more .swiper-container  .swiper-button-next:after,
	#read-more .swiper-container  .swiper-button-next:before {
		display: none;
	}
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* EXPLORE */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#explore .list a.linkbox {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 22%;
	height: 100%;
	aspect-ratio: 1 / 1;
	background: #AB3535;
	border-radius: 50%;
	font-size: 1.8vw;
	line-height: 1;
	font-weight: 700;
	-moz-transition: -moz-transform 0.2s linear;
	-webkit-transition: -webkit-transform 0.2s linear;
	-o-transition: -o-transform 0.2s linear;
	-ms-transition: -ms-transform 0.2s linear;
	transition: transform 0.2s linear;
}
#explore .list a.linkbox:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
@media screen and (max-width: 767px) {
	#explore .list a.linkbox {
		font-size: 2.8vw;
	}
}




/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	width: 100%;
	background: #222;
	padding: 3vw 0;
	text-align: center;
}
	#footer .logo {
		width: 30%;
		margin: 0 auto 0.5vw auto;
	}

	#footer .link {
		margin-bottom: 1vw;
	}
		#footer .link a {
			text-decoration: underline;
		}
		#footer .link a:hover {
			text-decoration: none;
		}
@media screen and (max-width: 767px) {
	#footer {
		padding: 8vw 0;
	}
		#footer .logo {
			width: 50%;
			margin: 0 auto 3vw auto;
		}

		#footer .link {
			margin-bottom: 4vw;
		}
}



























