@charset "UTF-8";



/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
	background: url("../img/i-seifu_navi/beginning_bg.svg") no-repeat center top / 100%;
}



/* フォント */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.en {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
}





/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 13;
	padding: 0 35px;
}
	#header .logo {
		width: 248px;
		margin-top: 20px;
	}


	#header .external-list {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 40px;
		margin-right: 70px;
	}
		#header .external-list .logo-seifu {
			width: 96px;
			margin-right: 12px;
		}

		#header .external-list ul {
			background: #fff;
			padding: 0 5px;
			border-radius: 20px;
			box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.05);
		}
			#header .external-list ul li {
				position: relative;
			}
			#header .external-list ul li:before {
				content: "";
				width: 1px;
				height: 20px;
				background: #ddd;
				position: absolute;
				top: 10px;
				right: 0;
			}
			#header .external-list ul li:nth-last-child(1):before {
				display: none;
			}
				#header .external-list ul li a {
					display: flex;
					justify-content: center;
					align-items: center;
					height: 40px;
					font-size: 1.1rem;
					font-weight: 500;
					padding: 0 20px;
				}


	#header #menubtn {
		display: block;
		width: 35px;
		height: 40px;
		position: absolute;
		top: 41px;
		right: 35px;
		transition: 0.3s;
		-webkit-transition: 0.3s;
	}
		#header #menubtn .menu {
			display: block;
			position: relative;
			cursor: pointer;
			width: 35px;
			height: 40px;
		}
			#header #menubtn .menu .openbtn-area {
				transition: all .4s;
			}
				#header #menubtn .menu span {
					width: 35px;
					display: inline-block;
					transition: all .4s;
					border-radius: 1px;
					position: absolute;
					top: 50%;
					left: 50%;
					margin-left: -17.5px;
					height: 1px;
					background: #707070;
				}
				#header #menubtn .menu span:nth-of-type(1) {
					margin-top: -8px;
				}
				#header #menubtn .menu span:nth-of-type(2) {
					margin-top: -1px;
				}
				#header #menubtn .menu span:nth-of-type(3) {
					margin-top: 6px;
				}

				#header #menubtn.active .menu span:nth-of-type(1) {
					transform: translateY(6px) rotate(-155deg);
					margin-top: -7px;
				}
				#header #menubtn.active .menu span:nth-of-type(2) {
					opacity: 0;
				}
				#header #menubtn.active .menu span:nth-of-type(3) {
					transform: translateY(-6px) rotate(155deg);
					margin-top: 5px;
				}

	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#menubox {
	display: none;
	width: 100%;
	height: 100vh;
	background: rgba(255,255,255,0.5);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 12;
}
	#menubox .menunav {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100vh;
		overflow: hidden;
	}
		#menubox .menunav .globalnav  {
			max-width: 920px;
		}
			#menubox .menunav .globalnav .navbox {
				width: 48%;
				margin-right: 4%;
				margin-top: 50px;
			}
			#menubox .menunav .globalnav .navbox:nth-child(1) {
				display: flex;
				justify-content: flex-start;
				align-items: center;
				width: 100%;
				margin-top: 0;
				margin-right: 0;
			}
			#menubox .menunav .globalnav .navbox:nth-child(3),
			#menubox .menunav .globalnav .navbox:nth-child(5) {
				width: 48%;
				margin-right: 0;
			}
				#menubox .menunav .globalnav .navbox .head {
					font-size: 4.0rem;
					font-weight: 700;
					line-height: 1.0em;
					margin-bottom: 10px;
				}
				#menubox .menunav .globalnav .navbox:nth-child(1) .head {
					margin-right: 15px;
					margin-bottom: 0;
				}

				#menubox .menunav .globalnav .navbox ul.navlist li {
					margin-top: 5px;
				}
					#menubox .menunav .globalnav .navbox ul.navlist li a {
						display: inline-block;
						font-size: 1.6rem;
						font-weight: 500;
						line-height: 1.5em;
						position: relative;
					}
					#menubox .menunav .globalnav .navbox ul.navlist li a:before {
						content: "";
						width: 0;
						height: 1px;
						background: #3B3B3B;
						position: absolute;
						bottom: 0;
						left: 0;
					}
					#menubox .menunav .globalnav .navbox ul.navlist li a:hover:before {
						width: 100%;
					}

				#menubox .menunav .globalnav .navbox ul.ctalist li {
					max-width: 280px;
					margin-bottom: 10px;
				}
				#menubox .menunav .globalnav .navbox ul.ctalist li:nth-last-child(1) {
					margin-bottom: 0;
				}
					#menubox .menunav .globalnav .navbox ul.ctalist li a {
						display: flex;
						justify-content: flex-start;
						align-items: center;
						height: 64px;
						background: #454545 url("../img/i-seifu_navi/icon_external.svg") no-repeat right 15px center / 30px;
						border-radius: 10px;
						padding: 0 50px 0 17px;
						font-size: 1.8rem;
						line-height: 1.3em;
						font-weight: 700;
						color: #fff;
					}
					#menubox .menunav .globalnav .navbox ul.ctalist li a:hover {
						opacity: 1;
						background: #262626 url("../img/i-seifu_navi/icon_external.svg") no-repeat right 12px center / 36px;
					}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* main */
#main {
	display: block;
}
.inner {
	width: 1200px;
	margin: auto;
	position: relative;
}
.inner_800 {
	width: 800px;
	margin: auto;
	position: relative;
}
.inner_1000 {
	width: 1000px;
	margin: auto;
	position: relative;
}
.inner_full {
	width: 100%;
	position: relative;
}


/* wrap */
.wrap-top {
	padding-top: 150px;
}
.wrap-bottom {
	padding-bottom: 150px;
}


/* txt */
.txt {
	font-size: 1.6rem;
	line-height: 2em;
}


/* view-more */
.view-more a {
	display: inline-block;
	background: url("../img/i-seifu_navi/icon_arrow.svg") no-repeat right center;
	font-size: 1.4rem;
	font-weight: 700;
	padding-right: 27px;
}
.view-more a:hover {
	padding-right: 23px;
}


/* btn */
a .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 194px;
	height: 50px;
	border-radius: 25px;
	margin: 0 auto;
	border: solid 1px #ddd;
	font-size: 1.4rem;
	line-height: 1;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a .btn.gray {
	background: #F5F5F5 url("../img/i-seifu_navi/icon_arrow.svg") no-repeat right 12px center;
}
a .btn.white {
	background: #fff url("../img/i-seifu_navi/icon_arrow.svg") no-repeat right 12px center;
}
a:hover .btn {
	color: #fff;
	border: solid 1px #3B3B3B;
}
a:hover .btn.gray {
	background: #3B3B3B url("../img/i-seifu_navi/icon_arrow.svg") no-repeat right 8px center;
}
a:hover .btn.white {
	background: #3B3B3B url("../img/i-seifu_navi/icon_arrow.svg") no-repeat right 8px center;
}


/* column3-swiper */
.column3-swiper {
	position: relative;
	padding-bottom: 55px;
}
	.column3-swiper a.linkbox {
		display: block;
	}
	.column3-swiper a.linkbox:hover {
		opacity: 1;
	}
		.column3-swiper a.linkbox .pht {
			border-radius: 10px;
		}

		.column3-swiper a.linkbox .text {
			padding: 16px 20px 0 20px;
		}
			.column3-swiper a.linkbox .text .head {
				margin-bottom: 3px;
			}
				.column3-swiper a.linkbox .text .head time {
					margin-right: 15px;
				}
				.column3-swiper a.linkbox .text .head .cat {
					font-size: 1.3rem;
				}

			.column3-swiper a.linkbox .text .principal-h3 {
				font-size: 2.0rem;
				font-weight: 700;
				line-height: 1.5em;
				margin-bottom: 15px;
				overflow: hidden;
				display: -webkit-box;
				-webkit-box-orient: vertical;
				-webkit-line-clamp: 3;
			}
			.column3-swiper a.linkbox .text .movie-h3 {
				font-size: 2.0rem;
				font-weight: 700;
				line-height: 1.5em;
				margin-bottom: 10px;
			}
			.column3-swiper a.linkbox .text .other-h3 {
				font-size: 2.4rem;
				font-weight: 700;
				line-height: 1.5em;
				text-align: center;
				margin-bottom: 8px;
			}
			.column3-swiper a.linkbox .text .blog-h3 {
				font-size: 2.4rem;
				font-weight: 700;
				line-height: 1.5em;
				margin-bottom: 8px;
			}

			.column3-swiper a.linkbox .text .read {
				font-size: 1.4rem;
				line-height: 1.7em;
				margin-bottom: 15px;
				overflow: hidden;
				display: -webkit-box;
				-webkit-box-orient: vertical;
				-webkit-line-clamp: 3;
			}

			.column3-swiper a.linkbox .text time {
				font-size: 1.4rem;
				font-weight: 500;
				color: #B4B4B4;
				line-height: 1;
			}

			.column3-swiper a.linkbox .text .more {
				display: inline-block;
				background: url("../img/i-seifu_navi/icon_arrow.svg") no-repeat right center;
				font-size: 1.4rem;
				font-weight: 500;
				padding-right: 27px;
				position: absolute;
				bottom: 0;
				right: 20px;
				transition: 0.3s;
				-webkit-transition: 0.3s;
			}
			.column3-swiper a.linkbox:hover .text .more {
				padding-right: 23px;
			}


	.column3-swiper .swiper-pagination {
		bottom: 0;
	}
		.column3-swiper .swiper-pagination .swiper-pagination-bullet {
			width: 10px;
			height: 10px;
			background: #fff;
			border: solid 1px #2C2C2C;
			border-radius: 50%;
			opacity: 1.0;
		}
		.column3-swiper .swiper-pagination .swiper-pagination-bullet-active {
			background: #2C2C2C;
		}


/* other-cont */
.other-cont {
	max-width: 1000px;
	margin: 0 auto 80px auto;
}
.other-cont:nth-last-child(1) {
	margin-bottom: 0;
}
	.other-cont .h2_tit {
		font-size: 2.6rem;
		font-weight: 700;
		line-height: 1.3em;
		border-bottom: solid 1px #ddd;
		padding-bottom: 12px;
		padding-left: 22px;
		background: url("../img/i-seifu_navi/icon_circle_head.svg") no-repeat left top 12px;
	}
	.other-cont .h2_tit.mb {
		margin-bottom: 20px;
	}

	.other-cont .h3_tit {
		font-size: 2.0rem;
		font-weight: 700;
		line-height: 1.3em;
		padding-bottom: 12px;
	}
	.other-cont .h3_tit a {
		display: block;
		background: url("../img/i-seifu_navi/icon_pdf.svg") no-repeat left 0 center;
		padding-left: 25px;
	}
	.other-cont .h3_tit a:hover {
		background: url("../img/i-seifu_navi/icon_pdf.svg") no-repeat left 5px center;
	}

	.other-cont .cell {
		margin-top: 40px;
	}

	.other-cont ul.pdf-list li:nth-child(odd) {
		background: #F7F7F7;
	}
		.other-cont ul.pdf-list li a {
			display: block;
			background: url("../img/i-seifu_navi/icon_pdf.svg") no-repeat left 20px center;
			padding: 15px 15px 15px 50px;
			font-size: 1.6rem;
		}
		.other-cont ul.pdf-list li a:hover {
			background: url("../img/i-seifu_navi/icon_pdf.svg") no-repeat left 24px center;
		}
		.other-cont ul.pdf-list li span {
			display: block;
			padding: 15px 15px 15px 50px;
			font-size: 1.6rem;
		}
			.other-cont ul.pdf-list li .pdf-sub_list {
				padding-left: 50px;
			}
			.other-cont ul.pdf-list li .pdf-sub_list:nth-last-child(1) {
				padding-bottom: 15px;
			}
				.other-cont ul.pdf-list li .pdf-sub_list li {
					background: none;
					margin-right: 20px;
				}
				.other-cont ul.pdf-list li .pdf-sub_list li:nth-last-child(1) {
					margin-right: 0;
				}
					.other-cont ul.pdf-list li .pdf-sub_list li a {
						display: block;
						background: url("../img/i-seifu_navi/icon_pdf.svg") no-repeat left 0 center;
						padding: 0 0 0 20px;
					}

	.other-cont table {
		width: 100%;
		border-collapse: collapse;
	}
		.other-cont table th {
			width: 210px;
			padding: 20px 15px;
			border-bottom: solid 1px #ddd;
			font-size: 1.6rem;
			font-weight: 700;
			line-height: 1.3em;
			text-align: left;
		}
		.other-cont table td {
			width: -webkit-calc(100% - 210px);
			width: calc(100% - 210px);
			border-bottom: solid 1px #ddd;
			padding: 20px 15px 20px 0;
		}
		.other-cont table tr:nth-last-child(1) th,
		.other-cont table tr:nth-last-child(1) td {
			border-bottom: none;
			padding-bottom: 0;
		}
			.other-cont table td .txt {
				margin-bottom: 12px;
			}
			.other-cont table td .txt:nth-last-child(1) {
				margin-bottom: 0;
			}

	.other-cont .rainbowbox {
		background: url("../img/i-seifu_navi/successful_bg.svg") no-repeat center / 100%;
		padding: 30px 40px;
		border-radius: 15px;
	}
		.other-cont .rainbowbox .info-txt {
			font-size: 1.8rem;
			line-height: 1.8em;
		}
			.other-cont .rainbowbox .info-txt a {
				text-decoration: underline;
			}
			.other-cont .rainbowbox .info-txt a:hover {
				text-decoration: none;
			}

	.other-cont .entry-btn {
		width: 300px;
		background: url("../img/i-seifu_navi/goal_bg.svg") no-repeat center / cover;
		margin: 50px auto 0 auto;
		border-radius: 35px;
		overflow: hidden;
	}
		.other-cont .entry-btn a {
			display: block;
			height: 70px;
			background: url("../img/i-seifu_navi/icon_arrow_white.svg") no-repeat right 20px center;
			text-align: center;
			line-height: 1;
			color: #fff;
			padding-top: 15px;
		}
		.other-cont .entry-btn a:hover {
			background: url("../img/i-seifu_navi/icon_arrow_white.svg") no-repeat right 15px center;
		}
			.other-cont .entry-btn a .en {
				display: block;
				font-size: 2.2rem;
				font-weight: 600;
				margin-bottom: 3px;
			}
			.other-cont .entry-btn a .jp {
				display: block;
				font-size: 1.2rem;
				font-weight: 700;
			}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ページタイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle {
	padding-top: 180px;
	margin-bottom: 100px;
}
	#pagetitle .breadcrumbs {
		margin-top: 55px;
		padding-bottom: 25px;
		border-bottom: solid 2px #fff;
		font-size: 1.4rem;
		white-space: nowrap;
		overflow-x: scroll;
	}
	#pagetitle .breadcrumbs::-webkit-scrollbar {
		width: 3px;
		height: 3px;
	}
	#pagetitle .breadcrumbs::-webkit-scrollbar-track {
		background: none;
	}
	#pagetitle .breadcrumbs::-webkit-scrollbar-thumb {
		background: #DDDDDD;
	}
		#pagetitle .breadcrumbs a {
			text-decoration: underline;
			color: #8D8D8D;
		}
		#pagetitle .breadcrumbs a:hover {
			text-decoration: none;
		}
		#pagetitle .breadcrumbs .current-item {
			color: #3B3B3B;
		}

/* title */
.title {
	margin-bottom: 40px;
}
.title.subspecies {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}
	.title .beside {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		line-height: 1;
	}
		.title .beside .en {
			font-size: 2.0rem;
			font-weight: 700;
			margin-right: 20px;
			margin-top: 6px;
			padding-left: 15px;
			position: relative;
		}
		.title .beside .en:before {
			content: "";
			width: 40px;
			height: 40px;
			background: url("../img/i-seifu_navi/icon_circle.svg") no-repeat center / 100%;
			position: absolute;
			top: -10px;
			left: 0;
		}

	.title .vertical {
		line-height: 1;
	}
		.title .vertical .en {
			font-size: 2.0rem;
			font-weight: 700;
			margin-top: 6px;
			padding-left: 15px;
			position: relative;
			margin-bottom: 12px;
		}
		.title .vertical .en:before {
			content: "";
			width: 40px;
			height: 40px;
			background: url("../img/i-seifu_navi/icon_circle.svg") no-repeat center / 100%;
			position: absolute;
			top: -11px;
			left: 0;
		}

		.title h2 {
			font-size: 4.0rem;
			font-weight: 700;
		}

		.title .txt {
			margin-left: 30px;
		}
	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フローティングナビ */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#flowting-nav {
	display: none;
}





/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer {
	width: 100%;
	background: #242424;
	position: relative;
}
	#footer .contact-area {
		padding: 80px 0;
		border-bottom: solid 1px #656565;
	}
		#footer .contact-area .inner {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}
			#footer .contact-area .inner .tel {
				width: 29%;
			}

			#footer .contact-area .inner ul.ctalist {
				width: 68%;
			}
				#footer .contact-area .inner ul.ctalist li {
					width: 32%;
				}
					#footer .contact-area .inner ul.ctalist li a {
						display: flex;
						justify-content: flex-start;
						align-items: center;
						height: 90px;
						background: #454545 url("../img/i-seifu_navi/icon_external.svg") no-repeat right 20px center / 30px;
						border-radius: 10px;
						padding: 0 50px 0 20px;
						font-size: 2.0rem;
						line-height: 1.3em;
						font-weight: 700;
						color: #fff;
					}
					#footer .contact-area .inner ul.ctalist li a:hover {
						opacity: 1;
						background: #fff url("../img/i-seifu_navi/icon_external.svg") no-repeat right 17px center / 36px;
						color: #3B3B3B;
					}


	#footer .nav {
		border-bottom: solid 1px #656565;
	}
		#footer .nav .inner_full {
			display: flex;
			display: -webkit-flex;
			justify-content: space-between;
		}
			#footer .nav .inner_full .linkarea {
				display: flex;
				justify-content: center;
				align-items: center;
				width: 50%;
				border-right: solid 1px #656565;
				padding: 80px 0;
			}
				#footer .nav .inner_full .linkarea .text {
					max-width: 460px;
				}
					#footer .nav .inner_full .linkarea .text .infobox {
						display: flex;
						justify-content: flex-start;
						align-items: flex-end;
						margin-bottom: 50px;
					}
						#footer .nav .inner_full .linkarea .text .infobox a.logo {
							display: block;
							line-height: 1;
							margin-right: 15px;
						}
						#footer .nav .inner_full .linkarea .text .infobox a.logo:hover {
							opacity: 0.7;
						}
							#footer .nav .inner_full .linkarea .text .infobox a.logo img {
								width: 250px;
							}

						#footer .nav .inner_full .linkarea .text .infobox ul.snslist li {
							margin-left: 10px;
						}
							#footer .nav .inner_full .linkarea .text .infobox ul.snslist li a {
								display: block;
								width: 28px;
							}


					#footer .nav .inner_full .linkarea .text .box {
						margin-top: 35px;
					}
						#footer .nav .inner_full .linkarea .text .box .head {
							width: 200px;
							font-size: 1.6rem;
							font-weight: 700;
							color: #fff;
							line-height: 1;
						}
							#footer .nav .inner_full .linkarea .text .box .head span {
								color: #A2A2A2;
							}

						#footer .nav .inner_full .linkarea .text .box ul {
							width: -webkit-calc(100% - 200px);
							width: calc(100% - 200px);
						}
							#footer .nav .inner_full .linkarea .text .box ul li {
								margin-bottom: 7px;
								margin-right: 20px;
							}
							#footer .nav .inner_full .linkarea .text .box ul li:nth-last-child(1) {
								margin-bottom: 0;
							}
								#footer .nav .inner_full .linkarea .text .box ul li a {
									display: block;
									font-size: 1.4rem;
									font-weight: 400;
									line-height: 1.4em;
									color: #fff;
								}
								#footer .nav .inner_full .linkarea .text .box ul li a.blank {
									display: inline-block;
									background: url("../img/icon_external_white.svg") no-repeat right top 4px / 10px;
									padding-right: 15px;
								}
								#footer .nav .inner_full .linkarea .text .box ul li a:hover {
									opacity: 0.7;
								}


			#footer .nav .inner_full a.pickup {
				display: flex;
				justify-content: center;
				align-items: center;
				width: 50%;
				background: url("../img/i-seifu_navi/btn_arrow_white.svg") no-repeat center bottom 70px;
				padding: 30px 0;
				color: #fff;
				text-align: center;
			}
			#footer .nav .inner_full a.pickup:hover {
				background: url("../img/i-seifu_navi/btn_arrow_gr.svg") no-repeat center bottom 70px;
				opacity: 1;
			}
				#footer .nav .inner_full a.pickup .head {
					font-size: 2.0rem;
					font-weight: 600;
					line-height: 1;
					text-decoration: underline;
					margin-bottom: 25px;
					margin-top: -60px;
				}

				#footer .nav .inner_full a.pickup .name {
					font-size: 6.0rem;
					font-weight: 800;
					line-height: 1.1em;
					margin-bottom: 15px;
				}

				#footer .nav .inner_full a.pickup .jp {
					font-size: 2.0rem;
					font-weight: 700;
					line-height: 1.3em;
				}


	#footer .info {
		padding: 30px 0;
	}
		#footer .info .inner {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}
			#footer .info .inner ul.linklist li {
				margin-right: 20px;
			}
				#footer .info .inner ul.linklist li a {
					font-size: 1.2rem;
					font-weight: 400;
					line-height: 1;
					color: #fff;
				}

			#footer .info .inner .copyright {
				font-size: 1.2rem;
				font-weight: 400;
				line-height: 1;
				color: #fff;
				text-align: right;
			}
	



/* max 1300px */
@media screen and (max-width: 1300px) {


	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* inner */
.inner {
	width: 100%;
	padding: 0 5%;
}
	
	
}





/* 1024px */
@media screen and (max-width: 1024px) {





/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	padding: 0 25px;
}
	#header .logo {
		width: 200px;
		margin-top: 17px;
	}

	#header .external-list {
		margin-top: 35px;
		margin-right: 50px;
	}
		#header .external-list .logo-seifu {
			width: 80px;
			margin-right: 10px;
		}

		#header .external-list ul {
			background: #fff;
			padding: 0;
			border-radius: 20px;
			box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.05);
		}
			#header .external-list ul li {
				position: relative;
			}
			#header .external-list ul li:before {
				content: "";
				width: 1px;
				height: 20px;
				background: #ddd;
				position: absolute;
				top: 10px;
				right: 0;
			}
			#header .external-list ul li:nth-last-child(1):before {
				display: none;
			}
				#header .external-list ul li a {
					display: flex;
					justify-content: center;
					align-items: center;
					height: 34px;
					font-size: 1.0rem;
					font-weight: 500;
					padding: 0 15px;
				}
	
	#header #menubtn {
		width: 30px;
		height: 34px;
		top: 36px;
		right: 25px;
	}
		#header #menubtn .menu {
			width: 30px;
			height: 34px;
		}
			#header #menubtn .menu span {
				width: 30px;
				margin-left: -15px;
			}

	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#menubox .menunav .globalnav {
	max-width: 920px;
	padding: 0 7%;
}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* inner_1000 */
.inner_1000 {
	width: 100%;
	padding: 0 5%;
}
.inner_800 {
	width: 100%;
	padding: 0 5%;
}

/* wrap */
.wrap-top {
	padding-top: 120px;
}
.wrap-bottom {
	padding-bottom: 120px;
}

/* txt */
.txt {
	font-size: 1.5rem;
	line-height: 1.8em;
}
	
	
/* btn */
a .btn {
	height: 46px;
	border-radius: 23px;
	font-size: 1.3rem;
}


/* column3-swiper */
.column3-swiper a.linkbox .text {
	padding: 10px 10px 0 10px;
}
	.column3-swiper a.linkbox .text .head {
		margin-bottom: 3px;
	}
		.column3-swiper a.linkbox .text .head time {
			margin-right: 10px;
		}
		.column3-swiper a.linkbox .text .head .cat {
			font-size: 1.2rem;
		}

	.column3-swiper a.linkbox .text .principal-h3 {
		font-size: 1.8rem;
		-webkit-line-clamp: 3;
	}
	.column3-swiper a.linkbox .text .movie-h3 {
		font-size: 1.8rem;
	}
	.column3-swiper a.linkbox .text .other-h3 {
		font-size: 2.1rem;
		margin-bottom: 5px;
	}
	.column3-swiper a.linkbox .text .blog-h3 {
		font-size: 2.1rem;
		margin-bottom: 5px;
	}

	.column3-swiper a.linkbox .text .read {
		font-size: 1.3rem;
	}

	.column3-swiper a.linkbox .text time {
		font-size: 1.3rem;
	}

	.column3-swiper a.linkbox .text .more {
		font-size: 1.3rem;
	}


/* other-cont */
.other-cont {
	margin: 0 auto 60px auto;
}
	.other-cont .h2_tit {
		font-size: 2.4rem;
		background: url("../img/i-seifu_navi/icon_circle_head.svg") no-repeat left top 11px;
	}

	.other-cont .h3_tit {
		padding-bottom: 10px;
	}

	.other-cont .cell {
		margin-top: 35px;
	}

	.other-cont ul.pdf-list li a,
	.other-cont ul.pdf-list li span {
		font-size: 1.5rem;
	}

.other-cont table th {
	width: 180px;
	font-size: 1.5rem;
}
.other-cont table td {
	width: -webkit-calc(100% - 180px);
	width: calc(100% - 180px);
}

.other-cont .rainbowbox {
	padding: 20px 30px;
	border-radius: 12px;
}
	.other-cont .rainbowbox .info-txt {
		font-size: 1.6rem;
	}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ページタイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle {
	padding-top: 130px;
	margin-bottom: 80px;
}
	#pagetitle .breadcrumbs {
		margin-top: 45px;
		padding-bottom: 20px;
		font-size: 1.2rem;
		border-bottom: solid 1px #ddd;
	}

/* title */
.title {
	margin-bottom: 35px;
}
.title.subspecies {
	display: block;
}
	.title .beside .en {
		font-size: 1.6rem;
	}
	.title .beside .en:before {
		top: -13px;
	}

	.title .vertical .en {
		font-size: 1.6rem;
	}
	.title .vertical .en:before {
		top: -14px;
	}

	.title h2 {
		font-size: 3.2rem;
	}

	.title .txt {
		margin-top: 20px;
		margin-left: 0;
	}



/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer .contact-area {
	padding: 50px 0;
}
	#footer .contact-area .inner .tel {
		width: 30%;
	}

	#footer .contact-area .inner ul.ctalist {
		width: 68%;
}
		#footer .contact-area .inner ul.ctalist li a {
			height: 70px;
			background: #454545 url("../img/i-seifu_navi/icon_external.svg") no-repeat right 15px center / 20px;
			padding: 0 40px 0 15px;
			font-size: 1.5rem;
		}
		#footer .contact-area .inner ul.ctalist li a:hover {
			background: #fff url("../img/i-seifu_navi/icon_external.svg") no-repeat right 12px center / 26px;
		}


	#footer .nav .inner_full .linkarea {
		padding: 50px 5%;
	}
		#footer .nav .inner_full .linkarea .text .infobox {
			margin-bottom: 30px;
		}
			#footer .nav .inner_full .linkarea .text .infobox a.logo {
				margin-right: 10px;
			}
				#footer .nav .inner_full .linkarea .text .infobox a.logo img {
					width: 160px;
				}

			#footer .nav .inner_full .linkarea .text .infobox ul.snslist li a {
				width: 22px;
				height: 22px;
			}

		#footer .nav .inner_full .linkarea .text .box {
			margin-top: 25px;
		}
			#footer .nav .inner_full .linkarea .text .box .head {
				width: 150px;
				font-size: 1.3rem;
			}

			#footer .nav .inner_full .linkarea .text .box ul {
				width: -webkit-calc(100% - 150px);
				width: calc(100% - 150px);
			}
				#footer .nav .inner_full .linkarea .text .box ul li a {
					display: block;
					font-size: 1.2rem;
				}


	#footer .nav .inner_full a.pickup {
		background: url("../img/i-seifu_navi/btn_arrow_white.svg") no-repeat center bottom 60px / 50px;
		padding: 30px 5%;
	}
	#footer .nav .inner_full a.pickup:hover {
		background: url("../img/i-seifu_navi/btn_arrow_gr.svg") no-repeat center bottom 60px / 50px;
	}
		#footer .nav .inner_full a.pickup .head {
			font-size: 1.8rem;
		}

		#footer .nav .inner_full a.pickup .name {
			font-size: 4.2rem;
		}

		#footer .nav .inner_full a.pickup .jp {
			font-size: 1.6rem;
		}


#footer .info {
	padding: 25px 0;
}
	#footer .info .inner ul.linklist li a {
		font-size: 1.1rem;
	}

	#footer .info .inner .copyright {
		font-size: 1.1rem;
	}
	
	
	
}	





/* max 767px */
@media screen and (max-width: 767px) {


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



/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
	background: url("../img/i-seifu_navi/beginning_bg.svg") no-repeat center top / 180%;
}





/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	padding: 0 10px;
}
	#header .logo {
		width: 160px;
		margin-top: 10px;
	}

	#header .external-list {
		margin-top: 24px;
	}
		#header .external-list .logo-seifu {
			width: 70px;
		}
	
		#header .external-list ul {
			display: none;
		}

	#header #menubtn {
		top: 20px;
		right: 20px;
	}

	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* メニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#menubox {
	height: 100dvh;
}
#menubox .menunav {
	display: block;
	height: 100dvh;
	overflow-y: scroll;
}
#menubox .menunav .globalnav {
	display: block;
	max-width: 920px;
	padding: 80px 7% 50px 7%;
}
	#menubox .menunav .globalnav .navbox {
		width: 100%;
		margin-right: 0;
		margin-top: 25px;
	}
	#menubox .menunav .globalnav .navbox:nth-child(1) {
		display: block;
	}
	#menubox .menunav .globalnav .navbox:nth-child(3),
	#menubox .menunav .globalnav .navbox:nth-child(5) {
		width: 100%;
		margin-right: 0;
	}
		#menubox .menunav .globalnav .navbox .head {
			font-size: 2.8rem;
			margin-bottom: 6px;
		}
		#menubox .menunav .globalnav .navbox:nth-child(1) .head {
			margin-right: 0;
			margin-bottom: 6px;
		}

		#menubox .menunav .globalnav .navbox ul.navlist li {
			margin-top: 3px;
		}
			#menubox .menunav .globalnav .navbox ul.navlist li a {
				font-size: 1.5rem;
				line-height: 1.3em;
			}

		#menubox .menunav .globalnav .navbox ul.ctalist li {
			max-width: 100%;
		}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* wrap */
.wrap-top {
	padding-top: 80px;
}
.wrap-bottom {
	padding-bottom: 80px;
}

/* txt */
.txt {
	font-size: 1.4rem;
}


/* column3-swiper */
.column3-swiper a.linkbox .text .principal-h3 {
	font-size: 1.6rem;
	-webkit-line-clamp: 3;
}
.column3-swiper a.linkbox .text .movie-h3 {
	font-size: 1.6rem;
}
.column3-swiper a.linkbox .text .other-h3 {
	font-size: 1.8rem;
}
.column3-swiper a.linkbox .text .blog-h3 {
	font-size: 1.8rem;
}

.column3-swiper a.linkbox .text .read {
	-webkit-line-clamp: 2;
}


/* other-cont */
.other-cont {
	margin: 0 auto 60px auto;
}
	.other-cont .h2_tit {
		font-size: 2.2rem;
		background: url("../img/i-seifu_navi/icon_circle_head.svg") no-repeat left top 10px;
	}

	.other-cont .h3_tit {
		font-size: 1.8rem;
	}
	.other-cont .h3_tit a {
		display: block;
		background: url("../img/i-seifu_navi/icon_pdf.svg") no-repeat left 0 center;
		padding-left: 20px;
	}
	.other-cont .h3_tit a:hover {
		background: url("../img/i-seifu_navi/icon_pdf.svg") no-repeat left 0 center;
	}

	.other-cont .cell {
		margin-top: 30px;
	}

	.other-cont ul.pdf-list li a {
		background: url("../img/i-seifu_navi/icon_pdf.svg") no-repeat left 15px center;
		padding: 12px 12px 12px 40px;
		font-size: 1.4rem;
	}
	.other-cont ul.pdf-list li a:hover {
		background: url("../img/i-seifu_navi/icon_pdf.svg") no-repeat left 15px center;
	}
	.other-cont ul.pdf-list li span {
		padding: 12px 12px 12px 40px;
		font-size: 1.4rem;
	}
		.other-cont ul.pdf-list li .pdf-sub_list {
			padding-left: 40px;
		}
		.other-cont ul.pdf-list li .pdf-sub_list:nth-last-child(1) {
			padding-bottom: 12px;
		}

.other-cont table th {
	display: block;
	width: 100%;
	font-size: 1.8rem;
	border-bottom: none;
	padding-bottom: 5px;
	padding: 20px 10px 10px 10px !important;
}
.other-cont table td {
	display: block;
	width: 100%;
	padding: 0 10px 20px 10px;
}

.other-cont .rainbowbox {
	background: url("../img/i-seifu_navi/successful_bg.svg") no-repeat center / cover;
	padding: 20px 20px;
	border-radius: 12px;
}
	.other-cont .rainbowbox .info-txt {
		font-size: 1.5rem;
	}

.other-cont .entry-btn {
	width: 70%;
	margin-top: 40px;
}





	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ページタイトル */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* pagetitle */
#pagetitle {
	padding-top: 100px;
	margin-bottom: 60px;
}
	#pagetitle .breadcrumbs {
		margin-top: 30px;
		padding-bottom: 10px;
		font-size: 1.1rem;
	}

/* title */
.title {
	margin-bottom: 30px;
}
	.title .beside {
		display: block;
	}
		.title .beside .en {
			font-size: 1.4rem;
			margin-bottom: 12px;
		}
		.title .beside .en:before {
			width: 30px;
			height: 30px;
			top: -8px;
		}

	.title .vertical .en {
		font-size: 1.4rem;
	}
	.title .vertical .en:before {
		width: 30px;
		height: 30px;
		top: -9px;
	}

	.title h2 {
		font-size: 2.8rem;
	}

	.title .txt {
		font-size: 1.3rem;
		margin-top: 15px;
		margin-left: 0;
	}
	



	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フローティングナビ */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#flowting-nav {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	width: 100%;
	border-top: solid 1px #ddd;
	background: #fff;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10;
}
	#flowting-nav li {
		width: 33.3333333%;
		border-right: solid 1px #ddd;
	}
	#flowting-nav li:nth-last-child(1) {
		border-right: none;
	}
		#flowting-nav li a {
			display: flex;
			justify-content: center;
			align-items: center;
			height: 60px;
			font-size: 1.2rem;
			font-weight: 600;
			line-height: 1.3em;
			text-align: center;
		}






/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#footer .inner,
#footer .inner_full {
	display: block !important;
}

#footer .contact-area {
	padding: 40px 0 40px 0;
}
	#footer .contact-area .inner {
		display: block;
	}
		#footer .contact-area .inner .tel {
			width: 80%;
			margin: 0 auto 30px auto;
		}

		#footer .contact-area .inner ul.ctalist {
			display: block;
			width: 100%;
		}
			#footer .contact-area .inner ul.ctalist li {
				width: 100%;
				margin-bottom: 12px;
			}
			#footer .contact-area .inner ul.ctalist li:nth-last-child(1) {
				margin-bottom: 0;
			}
				#footer .contact-area .inner ul.ctalist li a {
					height: 60px;
				}


	#footer .nav .inner_full .linkarea {
		display: block;
		width: 100%;
		padding: 40px 7%;
	}
		#footer .nav .inner_full .linkarea .text .infobox {
			margin-bottom: 40px;
		}

		#footer .nav .inner_full .linkarea .text .box {
			margin-top: 25px;
		}
			#footer .nav .inner_full .linkarea .text .box .head {
				width: 150px;
				font-size: 1.2rem;
			}

			#footer .nav .inner_full .linkarea .text .box ul {
				width: -webkit-calc(100% - 150px);
				width: calc(100% - 150px);
			}


	#footer .nav .inner_full a.pickup {
		width: 100%;
		background: url("../img/i-seifu_navi/btn_arrow_white.svg") no-repeat center bottom 30px / 40px;
		padding: 40px 7% 100px 7%;
		border-top: solid 1px #656565;
	}
	#footer .nav .inner_full a.pickup:hover {
		background: url("../img/i-seifu_navi/btn_arrow_gr.svg") no-repeat center bottom 30px / 40px;
	}
		#footer .nav .inner_full a.pickup .head {
			font-size: 1.6rem;
			margin-top: 0;
		}

		#footer .nav .inner_full a.pickup .name {
			font-size: 3.5rem;
			margin-bottom: 7px;
		}

		#footer .nav .inner_full a.pickup .jp {
			font-size: 1.4rem;
		}


#footer .info {
	padding: 0 0 90px 0;
}
	#footer .info .inner {
		padding: 0;
	}
	#footer .info .inner ul.linklist {
		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
		#footer .info .inner ul.linklist li {
			width: 50%;
			margin-right: 0;
			border-bottom: solid 1px #656565;
		}
		#footer .info .inner ul.linklist li:nth-child(2n) {
			border-left: solid 1px #656565;
		}
			#footer .info .inner ul.linklist li a {
				display: block;
				text-align: center;
				padding: 18px 0;
			}

	#footer .info .inner .copyright {
		font-size: 1.0rem;
		text-align: center;
		padding-top: 30px;
	}
	
	
	
}	
	