@charset 'utf-8';

/*PC用CSS(ipad mini 7.9インチ対応)*/
@media only screen and (min-width: 768px) {
	.pc_none{
		display: none!important;
	}
}
/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {
	.sp_none{
		display: none!important;
	}
}


/*リキッドの場合に使用*/
@media only screen and (min-width: 768px){
/*	768px-1280px 画面幅1280px閲覧で1px=0.1rem可変*/
	html{
/*			font-size: 0.782vw;*/
		}
}
@media only screen and (max-width: 767px){
/*	-767px 画面幅375px閲覧で1px=0.1rem可変*/
	html{
/*			font-size: 2.67vw;*/
		}
}
@media only screen and (max-width: 374px){
/*	-374px 画面幅374pxで1px=0.1rem固定*/
	html{
/*			font-size: 62.5%;*/
		}
}
@media only screen and (min-width: 1280px){
/*	1280px- 画面幅1280pxで1px=0.1rem固定*/
	html{
/*		font-size: 62.5%;*/
	}
}

/*Googleフォントここから*/
body{
	-webkit-text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-style: normal;
	font-weight: 400;
	color: #000000;
	letter-spacing: calc((0/1000)*1em);
	/*text-decoration-thickness: 1px;
	text-decoration-line: underline;
	text-decoration-color: #000000;
	text-decoration-style: solid;
	text-underline-offset: 3px;
	text-decoration-skip-ink: none;*/
}
html.active,
body.active{
	overflow: hidden;
}

/*Zen Kaku Gothic New ベースフォント*/
.light{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 300;
	font-style: normal;
}
.regular{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.mid{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.bold{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.black{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
}

/*Inter*/
.i_thin{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 100;
}
.i_elight{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 200;
}
.i_light{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 300;
}
.i_regular{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
}
.i_mid{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 500;
}
.i_sbold{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 600;
}
.i_bold{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 700;
}
.i_ebold{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 800;
}
.i_black{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 900;
}
.i_thin_i{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: italic;
	font-weight: 100;
}
.i_elight_i{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: italic;
	font-weight: 200;
}
.i_light_i{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: italic;
	font-weight: 300;
}
.i_regular_i{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: italic;
	font-weight: 400;
}
.i_mid_i{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: italic;
	font-weight: 500;
}
.i_sbold_i{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: italic;
	font-weight: 600;
}
.i_bold_i{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: italic;
	font-weight: 700;
}
.i_ebold_i{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: italic;
	font-weight: 800;
}
.i_black_i{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: italic;
	font-weight: 900;
}
/*Googleフォントここまで*/
*{
	box-sizing: border-box;
}

svg{
	width: 100%;
	min-width: initial;
	height: 100%;
	min-height: initial;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
}
iframe{
	width: 100%;
	min-width: initial;
	height: 100%;
	min-height: initial;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
}
::-webkit-scrollbar{
	display: none;
}
::scrollbar{
	display: none;
}

body,
main,
header,
footer{
	min-width: 1280px;
}
@media only screen and (max-width: 767px){
	body,
	main,
	header,
	footer{
		min-width: 320px;
	}
}

body{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	position: relative;
}

main{
	width: 100%;
	height: auto;
	padding-top: 93px;
	margin: 0 auto;
	display: block;
	overflow: hidden;
	position: relative;
}
@media only screen and (max-width: 767px) {
	main{
		padding-top: 90px;
	}
}
main::before{
	content: '';
	width: calc(100% - (100% - 1200px) / 2);
	height: auto;
	background-color: #ffffff;
	border-radius: 0 0 15px 0;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: auto;
	margin: auto;
}
@media only screen and (max-width: 767px) {
	main::before{
		width: calc(100% - (100% - 345px) / 2);
	}
}


/*headerここから*/
header{
	width: 100%;
	height: 93px;
	margin: 0 auto;
	background-color: #ffffff;
	display: block;
	position: fixed;
	top: 0;
	bottom: auto;
	left: 0;
	right: 0;
	z-index: 100;
}
@media only screen and (max-width: 767px){
	header{
		height: 90px;
		background-color: transparent;
		transition: all .5s;
	}
	header.active{
		height: 65px;
		background-color: #ffffff;
		transition: all .5s;
	}
}
header .header01{
	width: 100%;
	max-width: 2000px;
	height: 100%;
	padding: 25px 50px 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
@media only screen and (max-width: 767px){
	header .header01{
		max-width: initial;
		padding: 15px;
	}
}
header .header01 h1{
	width: 100px;
	height: auto;
	margin: 0 5px 0 0;
	display: block;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
@media only screen and (min-width: 768px){
	header .header01 h1{
		transition: all .5s;
	}
	header.active .header01 h1{
		width: 60px;
		transition: all .5s;
	}
}
@media only screen and (max-width: 767px){
	header .header01 h1{
		width: 52px;
		position: relative;
		z-index: 0;
		transition: all 0s;
	}
	header.active .header01 h1{
		width: 33px;
		transition: all .5s;
	}
	header .header01 h1.active{
		z-index: 100;
		transition: all 0s .5s;
	}
}
header .header01 h1 a{
	width: 100%;
	height: auto;
	font-size: 0;
	line-height: 0;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: 0;
	margin: auto;
}
header .header01 h1 a::before{
	content: '';
	width: 100%;
	height: auto;
	aspect-ratio: 100/115;
	background-image: url(../img/common/logo01.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
	opacity: 1;
	transition: all .5s;
}
header.active .header01 h1 a::before{
	opacity: 0;
	transition: all .5s;
}
header .header01 h1 a::after{
	content: '';
	width: 100%;
	height: auto;
	aspect-ratio: 100/100;
	background-image: url(../img/common/logo01_1.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
	opacity: 0;
	transition: all .5s;
}
header.active .header01 h1 a::after{
	opacity: 1;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
/*メニューオープンボタン*/
	header .header01 .slide-menu-btn{
		width: 40px;
		height: 37px;
		margin: 0;
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		flex-direction: column;
		flex-shrink: 0;
		cursor: pointer;
		position: relative;
		z-index: 10;
	}
	header .header01 .slide-menu-btn.active{
	}
	/*メニューオープンボタン内部テキスト*/
	header .header01 .slide-menu-btn::after{
		content: 'Menu';
		width: auto;
		height: auto;
		margin: 6px 0 0;
		font-size: 8px;
		line-height: 8px;
		font-weight: 400;
		color: #0064B0;
		display: block;
		text-align: center;
	}
	header .header01 .slide-menu-btn.active::after{
		content: 'Close';
		margin: 6px auto 0;
	}
	/*メニューオープンボタン内部の線*/
	header .header01 .slide-menu-btn .line-bar_area{
		width: 100%;
		height: 17px;
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		flex-direction: column;
		position: relative;
	}
	header .header01 .slide-menu-btn .line-bar_area::before{
		content: '';
		width: 100%;
		height: 1px;
		background-color: #AFAFAF;
		display: block;
		position: absolute;
		top: 0;
		bottom: auto;
		left: auto;
		right: 0;
		margin: auto;
		transition: all 0.6s ease;
	}
	header .header01 .slide-menu-btn.active .line-bar_area::before{
		width: 28px;
		transform: rotate(calc(180deg + 45deg));
		bottom: 0;
		left: 0;
	}
	header .header01 .slide-menu-btn .line-bar_area::after{
		content: '';
		width: 28px;
		height: 1px;
		background-color: #AFAFAF;
		display: block;
		position: absolute;
		top: auto;
		bottom: 0;
		left: auto;
		right: 0;
		margin: auto;
		transition: all 0.6s ease;
	}
	header .header01 .slide-menu-btn.active .line-bar_area::after{
		transform: rotate(calc(180deg + 45deg + 90deg));
		top: 0;
		left: 0;
	}
	header .header01 .slide-menu-btn .line-bar_area .line-bar{
		width: 100%;
		height: 1px;
		margin: 0;
		background-color: #AFAFAF;
		display: block;
		transition: all 1.0s ease;
	}
	header .header01 .slide-menu-btn.active .line-bar_area .line-bar{
		background-color: transparent;
		transition: all 1.0s ease;
	}
/*メニューオープンボタン*/
}
header .header01 nav{
	box-sizing: border-box;
	width: 911px;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 nav{
		width: 100%;
		min-width: 320px;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		padding: 92px 0 42px;
		background-color: #ffffff;
		display: block;
		position: fixed;
		top: calc(var(--vh, 1vh) * -100);
		right: 0;
		z-index: 1;
		transition: all .5s;
	}
	header .header01 .panelactive{
		top: 0;
		right: 0;
		transition: all .5s;
	}
}
header .header01 nav .nav_01{
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01{
		width: 90%;
		max-width: 320px;
		height: 100%;
		margin: 0 auto;
		display: block;
		overflow-y: scroll;
		overflow-x: hidden;
	}
}
header .header01 nav .nav_01 > li{
	width: auto;
	height: 100%;
	display: block;
	text-align: center;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li{
		width: 100%;
		height: auto;
		margin: 37px 0 0;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-direction: column;
		text-align: left;
	}
	header .header01 nav .nav_01 > li:nth-of-type(1){
		margin-top: 0;
	}
}
header .header01 nav .nav_01 > li > .link01{
	box-sizing: border-box;
	width: auto;
	height: auto;
	font-size: 18px;
	line-height: 28px;
	color: #333333;
	letter-spacing: calc((50/1000)*1em);
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	position: relative;
	z-index: 10;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li > .link01{
		align-items: center;
	}
}
header .header01 nav .nav_01 > li > p.link01{
	cursor: pointer;
	transition: all .5s;
}
header .header01 nav .nav_01 > li > .link01 > .item01{
	width: 100%;
	height: 14px;
	margin: 0 0 3px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: bottom left;
	display: block;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li > .link01 > .item01{
		margin: 0 0 6px;
		background-size: contain;
		background-position: center;
	}
}
header .header01 nav .nav_01 > li:nth-of-type(1) > .link01 > .item01{
	width: 69px;
	background-image: url(../img/header/item01_1.png);
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li:nth-of-type(1) > .link01 > .item01{
		height: 13px;
	}
}
header .header01 nav .nav_01 > li:nth-of-type(2) > .link01 > .item01{
	width: 46px;
	background-image: url(../img/header/item01_2.png);
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li:nth-of-type(2) > .link01 > .item01{
		height: 12px;
	}
}
header .header01 nav .nav_01 > li:nth-of-type(3) > .link01 > .item01{
	width: 31px;
	background-image: url(../img/header/item01_3.png);
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li:nth-of-type(3) > .link01 > .item01{
		height: 9px;
	}
}
header .header01 nav .nav_01 > li:nth-of-type(4) > .link01 > .item01{
	width: 41px;
	background-image: url(../img/header/item01_4.png);
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li:nth-of-type(4) > .link01 > .item01{
		height: 9px;
	}
}
header .header01 nav .nav_01 > li:nth-of-type(5) > .link01 > .item01{
	width: 35px;
	background-image: url(../img/header/item01_5.png);
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li:nth-of-type(5) > .link01 > .item01{
		height: 12px;
	}
}
header .header01 nav .nav_01 > li:nth-of-type(6) > .link01 > .item01{
	width: 39px;
	background-image: url(../img/header/item01_6.png);
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 > li:nth-of-type(6) > .link01 > .item01{
		height: 10px;
	}
}
header .header01 nav .nav_01 .drop{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop{
		justify-content: flex-start;
		align-items: center;
		flex-wrap: nowrap;
		flex-direction: column;
	}
}
header .header01 nav .nav_01 .drop > .link01{
	width: auto;
	flex-grow: 1;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop > .link01{
		max-width: calc(100% - 60px);
		flex-grow: 0;
	}
}
header .header01 nav .nav_01 .drop:hover > .link01{
	color: #858585;
}
header .header01 nav .nav_01 .drop > .link01:hover{
	opacity: 1;
}
header .header01 nav .nav_01 .drop .drop-btn{
	width: 12px;
	height: auto;
	aspect-ratio: 1/1;
	margin: 0 0 6px 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	flex-shrink: 0;
	-webkit-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	transition: all .5s;
}
@media only screen and (min-width: 768px){
	header .header01 nav .nav_01 .drop:hover .drop-btn{
		-webkit-transform: rotateZ(180deg);
		transform: rotateZ(180deg);
		transition: all .5s;
	}
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop .drop-btn{
		width: 14px;
		margin: 10px 0 0;
	}
	header .header01 nav .nav_01 .drop .drop-btn.drop-active{
		transform: rotateZ(180deg);
		transition: all .5s;
	}
}
header .header01 nav .nav_01 .drop .drop-btn::before{
	content: '';
	width: 100%;
	height: 2px;
	background-color: #A4C7E3;
	border-radius: calc(2px / 2);
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop .drop-btn::before{
	}
}
header .header01 nav .nav_01 .drop .drop-btn::after{
	content: '';
	width: 100%;
	height: 2px;
	background-color: #A4C7E3;
	border-radius: calc(2px / 2);
	opacity: 1;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	transition: all .5s;
}
@media only screen and (min-width: 768px){
	header .header01 nav .nav_01 .drop:hover .drop-btn::after{
		opacity: 0;
		transition: all .5s;
	}
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop .drop-btn.drop-active::after{
		opacity: 0;
		transition: all .5s;
	}
}
header .header01 nav .nav_01 .drop > .drop_01{
	width: auto;
	height: auto;
	padding-top: 53px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	bottom: auto;
	z-index: -1;
	margin: auto;
}
@media only screen and (min-width: 768px){
	header .header01 nav .nav_01 .drop > .drop_01{
		visibility: hidden;
		opacity: 0;
		animation: tooltipShow2 0.3s linear 0s;
	}
	header .header01 nav .nav_01 .drop > .drop_01.right{
		left: auto;
		right: 0;
	}
	header .header01 nav .nav_01 .drop:hover .drop_01{
		visibility: visible;
		opacity: 1;
		animation: tooltipShow 0.3s linear 0s;
	}
	/*ナビアニメーション(ドロップダウン)指示*/
	@keyframes tooltipShow{
		from{
			-webkit-transform: translateY(-10px);
			-moz-transform: translateY(-10px);
			-ms-transform: translateY(-10px);
			-o-transform: translateY(-10px);
			transform: translateY(-10px);
		}
		to{
			-webkit-transform: translateY(0px);
			-moz-transform: translateY(0px);
			-ms-transform: translateY(0px);
			-o-transform: translateY(0px);
			transform: translateY(0px);
		}
	}
	@keyframes tooltipShow2{
		from{
			opacity: 1;
			-webkit-transform: translateY(0px);
			-moz-transform: translateY(0px);
			-ms-transform: translateY(0px);
			-o-transform: translateY(0px);
			transform: translateY(0px);
		}
		to{
			opacity: 0;
			-webkit-transform: translateY(-10px);
			-moz-transform: translateY(-10px);
			-ms-transform: translateY(-10px);
			-o-transform: translateY(-10px);
			transform: translateY(-10px);
		}
	}
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop > .drop_01{
		width: 100%;
		max-width: 180px;
		padding-top: 0;
		position: static;
		margin: 10px 0 0;
		display: none;
	}
}
header .header01 nav .nav_01 .drop > .drop_01 > ul{
	width: auto;
	height: auto;
	padding: 22px 19px;
	margin: 0;
	border: 1px solid #A4C7E3;
	background-color: rgba(255, 255, 255, .5);
	backdrop-filter: blur(30px) brightness(130%);
	border-radius: 15px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop > .drop_01 > ul{
		padding: 20px 19px;
	}
}
/*ナビアニメーション(ドロップダウン)指示*/
header .header01 nav .nav_01 .drop > .drop_01 > ul li{
	width: auto;
	height: auto;
	margin: 10px 0 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop > .drop_01 > ul li{
		margin: 14px 0 0;
	}
}
header .header01 nav .nav_01 .drop > .drop_01 > ul li:nth-of-type(1){
	margin-top: 0;
}
header .header01 nav .nav_01 .drop > .drop_01 > ul li a{
	width: auto;
	height: auto;
	font-size: 14px;
	line-height: 18px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop > .drop_01 > ul li a{
		flex-shrink: 1;
	}
}
header .header01 nav .nav_01 .drop > .drop_01 > ul li a:hover{
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop > .drop_01 > ul li a:hover{
	}
}
header .header01 nav .nav_01 .drop > .drop_01 > ul li .link01::after{
	content: '';
	width: 9px;
	height: 9px;
	margin: 0 0 0 6px;
	background-image: url(../img/header/item02.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 nav .nav_01 .drop > .drop_01 > ul li .link01::after{
		width: 8px;
		height: 8px;
		margin: 0 0 0 5px;
	}
	header .header01 nav .nav_01 > .li01 > a{
		width: 100%;
		max-width: 249px;
		height: auto;
		margin: 0;
		display: block;
		position: relative;
	}
	header .header01 nav .nav_01 > .li01 > a::before{
		content: '';
		width: 24px;
		height: 5px;
		background-image: url(../img/header/item03_2.png);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		display: block;
		position: absolute;
		top: auto;
		bottom: 23px;
		left: auto;
		right: 20px;
		margin: auto;
		opacity: 0;
		transition: all .5s;
	}
	header .header01 nav .nav_01 > .li01 > a:hover::before{
		right: 15px;
		opacity: 1;
		transition: all .5s;
	}
	header .header01 nav .nav_01 > .li01 > a > img{
		width: 100%;
		height: auto;
		margin: 0;
		display: block;
	}
}
/*headerここまで*/

/*footerここから*/
footer{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	position: relative;
}
footer::before{
	content: '';
	width: auto;
	height: 1210px;
	background-image: url(../img/footer/item00.png);
	background-repeat: repeat-x;
	background-size: auto 100%;
	background-position: center;
	display: block;
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
}
@media only screen and (max-width: 767px) {
	footer::before{
		height: 1370px;
		background-image: url(../img/footer/item00_sp.png);
	}
}
footer .footer01{
	width: 1200px;
	height: auto;
	padding: 120px 0 60px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	footer .footer01{
		width: 90%;
		max-width: 315px;
		padding: 64px 0 50px;
	}
}
footer .footer01 .footer01_01{
	width: 1000px;
	height: auto;
	margin: 0 0 38px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01{
		width: 100%;
		margin: 0 0 15px;
	}
}
footer .footer01 .footer01_01 > .link01{
	width: 100%;
	height: auto;
	aspect-ratio: 1000/192;
	padding: 0 47px 43px 0;
	margin: 0;
	border-radius: 15px;
	background-image: url(../img/footer/item01.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	transform: scale(1);
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 > .link01{
		aspect-ratio: 315/133;
		padding: 0 0 21px;
		background-image: url(../img/footer/item01_sp.png);
		justify-content: center;
	}
}
footer .footer01 .footer01_01 > .link01:hover{
	opacity: 1;
	transform: scale(.98);
}
footer .footer01 .footer01_01 > .link01 > .link01_01{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
footer .footer01 .footer01_01 > .link01 > .link01_01 > .text01{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 18px;
	line-height: 26px;
	color: #ffffff;
	letter-spacing: calc((100/1000)*1em);
	display: block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 > .link01 > .link01_01 > .text01{
		font-size: 12px;
		line-height: 17px;
	}
}
footer .footer01 .footer01_01 > .link01 > .link01_01 > .item01{
	width: 40px;
	height: 40px;
	margin: 0 0 0 32px;
	background-color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 > .link01 > .link01_01 > .item01{
		width: 27px;
		height: 27px;
		margin: 0 0 0 19px;
	}
}
footer .footer01 .footer01_01 > .link01:hover > .link01_01 > .item01{
	border: 1px solid #0F68CA;
	transition: all .5s;
}
footer .footer01 .footer01_01 > .link01 > .link01_01 > .item01 > img{
	width: 11px;
	height: auto;
	margin: 0;
	display: block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_01 > .link01 > .link01_01 > .item01 > img{
		width: 7px;
	}
}
footer .footer01 .footer01_02{
	width: 1000px;
	height: auto;
	margin: 0 0 120px;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_02{
		width: 100%;
		margin: 0 0 98px;
		align-items: flex-start;
		flex-direction: column;
	}
}
footer .footer01 .footer01_02 > .link01{
	width: calc((100% - 20px * 2) / 3 );
	height: 80px;
	padding: 0 24px;
	margin: 0 20px 0 0;
	font-size: 16px;
	line-height: 26px;
	color: #333333;
	background-color: #ffffff;
	border-radius: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_02 > .link01{
		width: 100%;
		padding: 0 21px;
		margin: 15px 0 0;
	}
	footer .footer01 .footer01_02 > .link01:nth-of-type(1){
		margin-top: 0;
	}
}
@media only screen and (max-width: 374px) {
	footer .footer01 .footer01_02 > .link01{
		font-size: 15px;
		line-height: 25px;
	}
}
footer .footer01 .footer01_02 > .link01:hover{
	opacity: 1;
}
footer .footer01 .footer01_02 > .link01:nth-of-type(3){
	margin-right: 0;
}
footer .footer01 .footer01_02 > .link01 > .item01{
	width: 40px;
	height: 40px;
	margin: 0 0 0 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
footer .footer01 .footer01_02 > .link01 > .item01 > .item01_01{
	width: auto;
	height: auto;
	background-image: url(../img/footer/item03_0.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
footer .footer01 .footer01_02 > .link01 > .item01 > .item01_01_1{
	clip-path: polygon(calc(100% - 8px) 32px, 100% 32px, 100% 32px, calc(100% - 8px) 32px);
	transition: clip-path .1s .3s;
}
footer .footer01 .footer01_02 > .link01:hover > .item01 > .item01_01_1{
	clip-path: polygon(calc(100% - 8px) 0px, 100% 0, 100% 32px, calc(100% - 8px) 32px);
	transition: clip-path .1s;
}
footer .footer01 .footer01_02 > .link01 > .item01 > .item01_01_2{
	clip-path: polygon(calc(100% - 8px) 8px , calc(100% - 8px) 0px, calc(100% - 8px) 0px, calc(100% - 8px) 8px);
	transition: clip-path .1s .2s;
}
footer .footer01 .footer01_02 > .link01:hover > .item01 > .item01_01_2{
	clip-path: polygon(0px 8px, 0px 0px, calc(100% - 8px) 0px , calc(100% - 8px) 8px);
	transition: clip-path .1s .1s;
}
footer .footer01 .footer01_02 > .link01 > .item01 > .item01_01_3{
	clip-path: polygon(8px 8px , 0px 8px, 0px 8px, 8px 8px);
	transition: clip-path .1s .1s;
}
footer .footer01 .footer01_02 > .link01:hover > .item01 > .item01_01_3{
	clip-path: polygon(8px 100%, 0px 100%, 0px 8px , 8px 8px);
	transition: clip-path .1s .2s;
}
footer .footer01 .footer01_02 > .link01 > .item01 > .item01_01_4{
	clip-path: polygon(8px calc(100% - 8px) , 8px 100%, 8px 100%, 8px calc(100% - 8px));
	transition: clip-path .1s;
}
footer .footer01 .footer01_02 > .link01:hover > .item01 > .item01_01_4{
	clip-path: polygon(100% calc(100% - 8px), 100% 100%, 8px 100%, 8px calc(100% - 8px));
	transition: clip-path .1s .3s;
}
footer .footer01 .footer01_02 > .link01 > .item01 > img{
	height: auto;
	margin: 0;
	display: block;
	position: relative;
}
footer .footer01 .footer01_02 > .link01:nth-of-type(1) > .item01 > img{
	width: 17px;
}
footer .footer01 .footer01_02 > .link01:nth-of-type(2) > .item01 > img{
	width: 16px;
}
footer .footer01 .footer01_02 > .link01:nth-of-type(3) > .item01 > img{
	width: 19px;
}
footer .footer01 .footer01_03{
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}
footer .footer01 .footer01_03 > .text01{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 20px;
	line-height: 30px;
	color: #ffffff;
	display: block;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .footer01_03 > .text01{
		font-size: 12px;
		line-height: 17px;
	}
}
/*footerここまで*/

/*btn-topここから*/
.btn-top{
	width: 25px;
	height: 23px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: auto;
	bottom: -50px;
	left: auto;
	right: 50px;
	margin: auto;
	z-index: 10;
	cursor: pointer;
}
@media only screen and (max-width: 767px) {
	.btn-top {
		right: 15px;
	}
}
.btn-top::before{
	content: '';
	width: 100%;
	height: 100%;
	margin: 0;
	background-image: url(../img/footer/item04_2.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: bottom center;
	display: block;
}
.btn-top::after{
	content: '';
	width: 13px;
	height: 7px;
	background-image: url(../img/footer/item04_1.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: 0;
	margin: auto;
	transition: all .5s;
}
.btn-top:hover::after{
	top: -5px;
	transition: all .5s;
}
/*btn-topここまで*/

/*includeここから*/

/*.eyecatch_incここから*/
.eyecatch_inc.top{
	width: 100%;
	min-width: 1280px;
	height: auto;
	margin: 0 auto;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top{
		min-width: 320px;
	}
	.eyecatch_inc.top::before{
		content: '';
		width: 240px;
		height: 240px;
		background-image: url(../img/index/eye02_5.png);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		display: block;
		position: absolute;
		top: -148px;
		bottom: auto;
		left: -71px;
		right: auto;
		margin: auto;
	}
}
.eyecatch_inc.top .eyecatch_inc01{
	width: 100%;
	max-width: 1300px;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01{
		width: 92%;
		max-width: 345px;
		justify-content: flex-end;
		position: relative;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01{
	width: 360px;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01{
		width: 71px;
		position: absolute;
		top: calc(32px + 20px);
		bottom: auto;
		left: auto;
		right: 16px;
		margin: auto;
		z-index: 1;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01{
	width: 114px;
	height: auto;
	margin: 68px 0 0;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01{
		width: 100%;
		margin: 0;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item01{
	height: auto;
	display: block;
	position: absolute;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	margin: auto;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item01_1{
	width: 103px;
	top: -21px;
	right: -42px;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item01_2{
	width: 132px;
	top: 161px;
	left: -65px;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item01_3{
	width: 135px;
	top: 481px;
	right: -44px;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item01_4{
	width: 240px;
	top: 632px;
	left: -104px;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item02{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item02{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: row-reverse;
	}
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item02 > .item02_01{
		width: auto;
		height: auto;
		padding: 15px 10px 17px;
		margin: 0;
		background-color: rgba(255, 255, 255, .3);
		backdrop-filter: blur(5px);
		display: flex;
		justify-content: center;
		align-items: flex-start;
	}
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item02 > .item02_01:nth-of-type(1){
		backdrop-filter: blur(5px) brightness(115%);
	}
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item02 > .item02_01:nth-of-type(2){
		backdrop-filter: blur(5px) brightness(115%);
	}
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item02 > .item02_01 > img{
		height: auto;
		margin: 0;
		display: block;
	}
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item02 > .item02_01:nth-of-type(1) > img{
		width: 14px;
	}
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_01 > .text01 > .item02 > .item02_01:nth-of-type(2) > img{
		width: 12px;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02{
	width: calc(100% - 360px);
	height: auto;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02{
		width: 90%;
		max-width: 295px;
		padding: 32px 0 0;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01{
	width: 100%;
	height: auto;
	aspect-ratio: 940/687;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
	z-index: 10;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01{
		top: 32px;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 > .item01{
	width: 838px;
	height: auto;
	display: block;
	position: absolute;
	top: auto;
	bottom: -226px;
	left: -159px;
	right: auto;
	margin: auto;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 > .item01{
		width: 263px;
		bottom: -36px;
		left: -59px;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 > .link01{
	width: 120px;
	height: auto;
	aspect-ratio: 120/57;
	border-radius: 4px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
	overflow: hidden;
	display: block;
	position: absolute;
	top: auto;
	bottom: 30px;
	left: auto;
	right: 30px;
	margin: auto;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 > .link01:hover{
	opacity: 1;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 > .link01::before{
	content: '';
	width: auto;
	height: auto;
	background-image: url(../img/index/eye03_2_1.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 > .link01::after{
	content: '';
	width: auto;
	height: auto;
	background-image: url(../img/index/eye03_2_2.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
	transition:  all .5s;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 > .link01:hover::after{
	opacity: 1;
	transition:  all .5s;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01{
	width: 170px;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	top: auto;
	bottom: -80px;
	left: auto;
	right: 0;
	margin: auto;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01{
		width: 87px;
		top: -32px;
		bottom: auto;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .slick-list{
	width: 100%;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .slick-list .slick-track{
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .slick-list .slick-track::before, 
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .slick-list .slick-track::after{
	display: none;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .dot{
	width: 44px;
	height: 44px;
	margin: 0;
	display: block;
	flex-shrink: 0;
	position: relative;
	cursor: pointer;
	transition: all .5s;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .dot{
		width: 22px;
		height: 22px;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .dot:hover{
	opacity: .8;
	transition: all .5s;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .dot.slick-current > svg{
	width: 100%;
	height: 100%;
	margin: 0;
	display: block;
	transform: rotate(-90deg);
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .dot > svg > circle{
	position: relative;
	fill: none;
	stroke-width: 2;
	stroke: #f3f3f3;
	stroke-dasharray: 150;
	stroke-dashoffset: 0;
	stroke-linecap: round;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .dot > svg > circle{
		stroke-width: 1;
		stroke-dasharray: 70;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .dot > svg > .line{
	stroke: #ffffff;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .dot.slick-current > svg > .line{
	animation: circleAnim 7s forwards 0s;
}
@keyframes circleAnim{
	0% {
		stroke: #7EC1E6;
		stroke-dasharray: 0 150;
	}
	99.9%,
	to {
		stroke: #7EC1E6;
		stroke-dasharray: 150 150;
	}
}
@media only screen and (max-width: 767px) {
	@keyframes circleAnim{
		0% {
			stroke: #7EC1E6;
			stroke-dasharray: 0 70;
		}
		99.9%,
		to {
			stroke: #7EC1E6;
			stroke-dasharray: 70 70;
		}
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .dot > span{
	width: auto;
	height: auto;
	font-size: 19px;
	line-height: 19px;
	color: #AFAFAF;
	letter-spacing: calc((50/1000)*1em);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .dot > span{
		font-size: 9px;
		line-height: 9px;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_01 .dot.slick-current > span{
	color: #0064B0;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_02{
	width: 170px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: auto;
	bottom: -80px;
	left: auto;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_02{
		width: 87px;
		top: -32px;
		bottom: auto;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_02 > .item01{
	width: 47px;
	height: 1px;
	margin: 0;
	background-color: #707070;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_02 > .item01{
		width: 24px;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_02 > .space{
	width: 44px;
	height: 44px;
	margin: 0 16px;
	display: block;
	flex-shrink: 0;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_01 .eyecatch_inc01_02_01_02 > .space{
		width: 22px;
		height: 22px;
		margin: 0 7px;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_02{
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_02 .slick-list{
	width: 100%;
	height: auto;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_02 .eye_img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .eyecatch_inc01_02_02 .eye_img > img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .slick-dots{
	width: 200px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: absolute;
	top: auto;
	bottom: 30px;
	left: 0;
	right: 0;
	z-index: 10;
	margin: auto;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .slick-dots{
	}
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .slick-dots li{
	width: 8px;
	height: 8px;
	margin: 4px 4px 0;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .slick-dots li:nth-of-type(-n+12){
	margin-top: 0;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .slick-dots li button{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .slick-dots li button::before{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border-radius: 50%;
	display: block;
	font-family: none;
	font-size: 0;
	line-height: 0;
	position: static;
	background: none;
	background-color: #abbcca;
}
.eyecatch_inc.top .eyecatch_inc01 .eyecatch_inc01_02 .slick-dots .slick-active button::before{
	background-color: #19496f;
}
.eyecatch_inc.short{
	width: 100%;
	height: 315px;
	margin: 0 auto;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.short{
		height: 199px;
	}
}
.eyecatch_inc.short .eyecatch_inc01{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.short .eyecatch_inc01{
		width: 90%;
		max-width: 320px;
		padding: 28px 0 0;
		align-items: flex-start;
	}
}
.eyecatch_inc.short .eyecatch_inc01 .text01{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.eyecatch_inc.short .eyecatch_inc01 .text01 > .text01_01{
	width: auto;
	height: auto;
	margin: 0;
	display: block;
	position: relative;
}
.eyecatch_inc.short .eyecatch_inc01 .text01 > .text01_01::before{
	content: '';
	width: 100px;
	height: 100px;
	background-image: url(../img/common/eye01.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: block;
	position: absolute;
	top: -54px;
	bottom: auto;
	left: -54px;
	right: auto;
	margin: auto;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.short .eyecatch_inc01 .text01 > .text01_01::before{
		width: 52px;
		height: 52px;
		top: -28px;
		left: -28px;
	}
}
.eyecatch_inc.short .eyecatch_inc01 .text01 > .text01_01 > img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
	position: relative;
}
.eyecatch_inc.short .eyecatch_inc01 .text01 > .text01_02{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: calc((50/1000)*1em);
	display: block;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.short .eyecatch_inc01 .text01 > .text01_02{
		font-size: 14px;
		line-height: 24px;
	}
}
/*.eyecatch_incここまで*/

/*.pan_incここから*/
.pankuzu_inc{
	width: 100%;
	height: auto;
	padding: 0 0 50px;
	margin: 0;
	display: block;
	position: relative;
}
.pankuzu_inc .pankuzu_inc_inner{
	width: 1000px;
	height: auto;
	margin: 0 auto;
	font-size: 0;
	line-height: 0;
	display: block;
}
@media only screen and (max-width: 767px) {
	.pankuzu_inc .pankuzu_inc_inner{
		width: 90%;
		max-width: 320px;
	}
}
.pankuzu_inc .pankuzu_inc_inner > a{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 12px;
	line-height: 22px;
	color: #AFAFAF;
	letter-spacing: calc((50/1000)*1em);
	display: inline;
}
@media only screen and (max-width: 767px) {
	.pankuzu_inc .pankuzu_inc_inner > a{
		font-size: 12px;
		line-height: 22px;
	}
}
.pankuzu_inc .pankuzu_inc_inner > span{
	width: 47px;
	height: 1px;
	margin: 11px 14px 0;
	background-color: #707070;
	display: inline-block;
	vertical-align: top;
}
@media only screen and (max-width: 767px) {
	.pankuzu_inc .pankuzu_inc_inner > span{
		font-size: 12px;
		line-height: 22px;
	}
}
.pankuzu_inc .pankuzu_inc_inner > p{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 12px;
	line-height: 22px;
	color: #333333;
	letter-spacing: calc((50/1000)*1em);
	display: inline;
}
@media only screen and (max-width: 767px) {
	.pankuzu_inc .pankuzu_inc_inner > p{
		font-size: 12px;
		line-height: 22px;
	}
}
/*.pan_incここまで*/

/*.paginationここから*/
.wp-pagenavi {
	width: 100%;
	height: auto;
	padding: 120px 0 0;
	margin: calc(-47px / 2) 0;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: italic;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi {
		width: 100%;
		max-width: 320px;
	}
}
.wp-pagenavi span{
	width: auto;
	height: auto;
	font-size: 15px;
	line-height: 25px;
	color: #AFAFAF;
	display: block;
	margin: calc(47px / 2);
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi span{
		margin: calc(30px / 2) calc(15px / 2);
	}
}
.wp-pagenavi a{
	width: auto;
	height: auto;
	font-size: 15px;
	line-height: 25px;
	color: #AFAFAF;
	display: block;
	margin: calc(47px / 2);
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi a{
		margin: calc(30px / 2) calc(15px / 2);
	}
}
.wp-pagenavi .current{
	width: auto;
	height: auto;
	font-size: 15px;
	line-height: 25px;
	color: #0F68CA;
	display: block;
	margin: calc(47px / 2);
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi .current{
		margin: calc(30px / 2) calc(15px / 2);
	}
}
.wp-pagenavi .previouspostslink{
	width: 19px;
	height: 19px;
	border: 0;
	font-size: 0;
	line-height: 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .16);
}
.wp-pagenavi .previouspostslink::before{
	content: '';
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 50%;
	background-image: url(../img/topics/contents01/item01_1.png);
	background-repeat: no-repeat;
	background-size: 6px auto;
	background-position: center;
	background-color: #333333;
	display: flex;
	justify-content: center;
	align-items: center;
}
.wp-pagenavi .nextpostslink{
	width: 19px;
	height: 19px;
	border: 0;
	font-size: 0;
	line-height: 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .16);
}
.wp-pagenavi .nextpostslink::before{
	content: '';
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 50%;
	background-image: url(../img/topics/contents01/item01_2.png);
	background-repeat: no-repeat;
	background-size: 6px auto;
	background-position: center;
	background-color: #333333;
	display: flex;
	justify-content: center;
	align-items: center;
}
.wp-pagenavi .pages,
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .extend{
	display: none;
}
/*.paginationここまで*/

/*.inc01ここから*/
.inc01{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	position: relative;
}
.inc01 .inc01_01{
	width: 1000px;
	height: auto;
	padding: 135px 0 96px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01{
		width: 92%;
		max-width: 345px;
		padding: 125px 0 96px;
	}
}
.inc01.faculty .inc01_01{
	padding: 109px 0 96px;
}
@media only screen and (max-width: 767px) {
	.inc01.faculty .inc01_01{
		padding: 107px 0 96px;
	}
}
.inc01 .inc01_01 .inc01_01_01{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01{
		width: 100%;
	}
}
.inc01 .inc01_01 .inc01_01_01 > .text01{
	width: 316px;
	height: auto;
	margin: 0 0 3px;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 > .text01{
		width: 140px;
		margin: 0 0 4px;
	}
}
.inc01.faculty .inc01_01 .inc01_01_01 > .text01{
	width: 192px;
	margin: 0 0 6px;
}
@media only screen and (max-width: 767px) {
	.inc01.faculty .inc01_01 .inc01_01_01 > .text01{
		width: 140px;
		margin: 0 0 4px;
	}
}
.inc01 .inc01_01 .inc01_01_01 > .text01 > img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
.inc01 .inc01_01 .inc01_01_01 > .text02{
	width: auto;
	height: auto;
	margin: 0 0 64px;
	font-size: 14px;
	line-height: 24px;
	color: #616161;
	letter-spacing: calc((50/1000)*1em);
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 > .text02{
		margin: 0 0 45px;
		font-size: 10px;
		line-height: 20px;
	}
}
.inc01 .inc01_01 .inc01_01_01 > .text03{
	width: auto;
	height: auto;
	margin: 0 0 47px;
	font-size: 18px;
	line-height: 28px;
	color: #333333;
	letter-spacing: calc((50/1000)*1em);
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 > .text03{
		width: 100%;
		margin: 0 0 23px;
		line-height: 26px;
		text-align: center;
	}
}
@media only screen and (max-width: 374px) {
	.inc01 .inc01_01 .inc01_01_01 > .text03{
		font-size: 16px;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01{
	width: auto;
	height: auto;
	margin: 0 0 53px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01{
		width: 100%;
		margin: 0 0 43px;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01{
	width: auto;
	height: auto;
	margin: 20px 0 0;
	display: block;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01:nth-of-type(1){
	margin-top: 0;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01 > .text01{
	width: auto;
	height: auto;
	margin: 0 0 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01 > .text01 > span{
	width: auto;
	height: auto;
	margin: 0 0 0 26px;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: calc((50/1000)*1em);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01 > .text01 > span:nth-of-type(1){
	margin-left: 0;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01 > .text01 > span::before{
	content: '';
	width: 16px;
	height: 16px;
	margin: 0 8px 0 0;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	flex-shrink: 0;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01:nth-of-type(1) > .text01 > span:nth-of-type(1)::before{
	background-image: url(../img/common/inc01/item04_1.jpg);
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01:nth-of-type(1) > .text01 > span:nth-of-type(2)::before{
	background-image: url(../img/common/inc01/item04_2.jpg);
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01:nth-of-type(2) > .text01 > span:nth-of-type(1)::before{
	background-image: url(../img/common/inc01/item04_3.jpg);
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01:nth-of-type(2) > .text01 > span:nth-of-type(2)::before{
	background-image: url(../img/common/inc01/item04_4.jpg);
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_01 .inc01_01_01_01_01 > .text02{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 14px;
	line-height: 28px;
	color: #333333;
	letter-spacing: calc((50/1000)*1em);
	display: block;
	text-align: center;
}
.inc01 .inc01_01 .inc01_01_01 > .item01{
	width: 630px;
	height: auto;
	margin: 0 0 19px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 > .item01{
		width: 100%;
		margin: 0 0 11px;
	}
}
.inc01.faculty .inc01_01 .inc01_01_01 > .item01{
	margin: 0 0 82px;
}
@media only screen and (max-width: 767px) {
	.inc01.faculty .inc01_01 .inc01_01_01 > .item01{
		margin: 0 0 66px;
	}
}
.inc01 .inc01_01 .inc01_01_01 > .item01 img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
.inc01 .inc01_01 .inc01_01_01 > .item02{
	width: 80px;
	height: auto;
	margin: 0 0 28px;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 > .item02{
		width: 30px;
		margin: 0 0 13px;
	}
}
.inc01 .inc01_01 .inc01_01_01 > .item02 img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
.inc01 .inc01_01 .inc01_01_01 > .text04{
	width: auto;
	height: auto;
	margin: 0 0 27px;
	font-size: 27px;
	line-height: 37px;
	color: #333333;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 > .text04{
		margin: 0 0 15px;
		font-size: 14px;
		line-height: 24px;
		text-align: center;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02{
	width: 685px;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02{
		width: 100%;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02 > .text01{
	width: calc((100% - 15px * 3) / 4 );
	height: auto;
	margin: 0 15px 0 0;
	border-radius: 45px;
	overflow: hidden;
	display: block;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .16);
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02 > .text01{
		width: calc((100% - 8px * 3) / 4 );
		margin: 0 0 0 8px;
		border-radius: 25px;
		box-shadow: 0 2px 4px rgba(0, 0, 0, .16);
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02 > .text01:nth-of-type(4){
	margin-right: 0;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02 > .text01:nth-of-type(1){
		margin-left: 0;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_02 > .text01 > img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03{
	width: 866px;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03{
		width: 100%;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 > .text01{
	width: auto;
	height: auto;
	margin: 0 0 48px;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: calc((50/1000)*1em);
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 > .text01{
		margin: 0 0 24px;
		font-size: 18px;
		line-height: 28px;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 > .text02{
	width: 100%;
	height: auto;
	margin: 0 0 80px;
	font-size: 16px;
	line-height: 28px;
	letter-spacing: calc((50/1000)*1em);
	text-align: justify;
	text-align-last: left;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 > .text02{
		margin: 0 0 48px;
		font-size: 18px;
		line-height: 26px;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01{
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01{
		width: 270px;
		justify-content: flex-start;
		flex-direction: column;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01 > .link01{
	width: 270px;
	height: 67px;
	margin: 0;
	display: block;
	background-color: #ffffff;
	border-radius: calc(67px / 2);
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01 > .link01{
		width: 100%;
		margin: 20px 0 0;
	}
	.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01 > .link01:nth-of-type(1){
		margin-top: 0;
	}
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01 > .link01:hover{
	opacity: 1;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01 > .link01::before{
	content: "履修イメージを知る";
	width: auto;
	height: auto;
	padding: 0 56px 0 0;
	font-size: 16px;
	line-height: 26px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-style: normal;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 1;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01 > .link01:nth-of-type(2)::before{
	content: "授業を知る";
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01 > .link01:nth-of-type(3)::before{
	content: "ゼミを知る";
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01 > .link01 > span{
	width: 40px;
	height: 40px;
	margin: 0;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 16px;
	margin: auto;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01 > .link01 > span::before{
	content: '';
	width: auto;
	height: auto;
	background-image: url(../img/common/inc01/item08_2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01 > .link01 > span::after{
	content: '';
	width: auto;
	height: auto;
	background-image: url(../img/common/inc01/item08_3.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
	transition: all .5s;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01 > .link01:hover > span::after{
	opacity: 1;
	transition: all .5s;
}
.inc01 .inc01_01 .inc01_01_01 .inc01_01_01_03 .inc01_01_01_03_01 > .link01 > span > img{
	width: 11px;
	height: auto;
	margin: 0;
	display: block;
	position: relative;
	z-index: 1;
}
/*.inc01ここまで*/

/*.inc02ここから*/
.inc02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	position: relative;
}
.inc02 .inc02_01{
	width: 1000px;
	height: auto;
	padding: 135px 0 0;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01{
		width: 92%;
		max-width: 345px;
		padding: 124px 0 0;
		flex-direction: column;
	}
}
.inc02.campuslife .inc02_01{
	padding: 109px 0 0;
}
@media only screen and (max-width: 767px) {
	.inc02.campuslife .inc02_01{
		padding: 107px 0 0;
	}
}
.inc02 .inc02_01 .inc02_01_01{
	width: 480px;
	height: auto;
	margin: 0 20px 0 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01{
		width: 100%;
		margin: 0 0 66px;
	}
}
.inc02 .inc02_01 .inc02_01_01 > .text01{
	width: 221px;
	height: auto;
	margin: 0 0 3px;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01 > .text01{
		width: 98px;
		margin: 0 0 4px;
	}
}
.inc02.campuslife .inc02_01 .inc02_01_01 > .text01{
	width: 131px;
	margin: 0 0 7px;
}
@media only screen and (max-width: 767px) {
	.inc02.campuslife .inc02_01 .inc02_01_01 > .text01{
		width: 98px;
		margin: 0 0 4px;
	}
}
.inc02 .inc02_01 .inc02_01_01 > .text01 > img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
.inc02 .inc02_01 .inc02_01_01 > .text02{
	width: auto;
	height: auto;
	margin: 0 0 62px 31px;
	font-size: 18px;
	line-height: 28px;
	color: #333333;
	letter-spacing: calc((50/1000)*1em);
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01 > .text02{
		margin: 0 0 45px 15px;
		font-size: 10px;
		line-height: 20px;
	}
}
.inc02.campuslife .inc02_01 .inc02_01_01 > .text02{
	margin: 0 0 64px 21px;
}
@media only screen and (max-width: 767px) {
	.inc02.campuslife .inc02_01 .inc02_01_01 > .text02{
		margin: 0 0 47px 15px;
	}
}
.inc02 .inc02_01 .inc02_01_01 > .text03{
	width: auto;
	height: auto;
	margin: 0 0 39px;
	font-size: 16px;
	line-height: 28px;
	color: #333333;
	letter-spacing: calc((50/1000)*1em);
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01 > .text03{
		margin: 0 0 25px;
		font-size: 18px;
	}
}
.inc02 .inc02_01 .inc02_01_01 > .text04{
	width: 100%;
	height: auto;
	margin: 0 0 62px;
	font-size: 16px;
	line-height: 28px;
	color: #333333;
	letter-spacing: calc((50/1000)*1em);
	text-align: justify;
	text-align-last: left;
	display: block;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01 > .text04{
		margin: 0 0 30px;
	}
}
.inc02 .inc02_01 .inc02_01_01 > .link01{
	width: 192px;
	height: 40px;
	margin: 0;
	display: block;
	background-color: #ffffff;
	border-radius: calc(40px / 2);
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
	position: relative;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_01 > .link01{
		width: 216px;
		margin: 0 0 0 auto;
	}
}
.inc02.campuslife .inc02_01 .inc02_01_01 > .link01{
	width: 270px;
	height: 67px;
	border-radius: calc(67px / 2);
}
@media only screen and (max-width: 767px) {
	.inc02.campuslife .inc02_01 .inc02_01_01 > .link01{
		width: 220px;
		height: 50px;
		border-radius: calc(50px / 2);
	}
}
.inc02 .inc02_01 .inc02_01_01 > .link01:hover{
	opacity: 1;
}
.inc02 .inc02_01 .inc02_01_01 > .link01::before{
	content: "先輩たちの声";
	width: auto;
	height: auto;
	font-size: 14px;
	line-height: 24px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-style: normal;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 1;
	transition: all .5s;
}
.inc02.campuslife .inc02_01 .inc02_01_01 > .link01::before{
	content: "先輩たちの声をきく";
	padding: 0 56px 0 0;
	font-size: 16px;
	line-height: 26px;
}
@media only screen and (max-width: 767px) {
	.inc02.campuslife .inc02_01 .inc02_01_01 > .link01::before{
		padding: 0 42px 0 0;
		font-size: 12px;
		line-height: 22px;
	}
}
.inc02 .inc02_01 .inc02_01_01 > .link01:hover::before{
	opacity: 0;
	transition: all .5s;
}
.inc02.campuslife .inc02_01 .inc02_01_01 > .link01:hover::before{
	opacity: 1;
}
.inc02 .inc02_01 .inc02_01_01 > .link01::after{
	content: "もっと見る";
	width: auto;
	height: auto;
	font-size: 14px;
	line-height: 24px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-style: normal;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
	transition: all .5s;
}
.inc02.campuslife .inc02_01 .inc02_01_01 > .link01::after{
	display: none;
}
.inc02 .inc02_01 .inc02_01_01 > .link01:hover::after{
	opacity: 1;
	transition: all .5s;
}
.inc02 .inc02_01 .inc02_01_01 > .link01 > span{
	width: 40px;
	height: 40px;
	margin: 0;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
	position: absolute;
	top: auto;
	bottom: -18px;
	left: auto;
	right: -8px;
	margin: auto;
}
.inc02.campuslife .inc02_01 .inc02_01_01 > .link01 > span{
	top: 0;
	bottom: 0;
	right: 16px;
}
@media only screen and (max-width: 767px) {
	.inc02.campuslife .inc02_01 .inc02_01_01 > .link01 > span{
		width: 30px;
		height: 30px;
		right: 12px;
	}
}
.inc02 .inc02_01 .inc02_01_01 > .link01 > span::before{
	content: '';
	width: auto;
	height: auto;
	background-image: url(../img/common/inc02/item04_2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.inc02 .inc02_01 .inc02_01_01 > .link01 > span::after{
	content: '';
	width: auto;
	height: auto;
	background-image: url(../img/common/inc02/item04_3.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
	transition: all .5s;
}
.inc02 .inc02_01 .inc02_01_01 > .link01:hover > span::after{
	opacity: 1;
	transition: all .5s;
}
.inc02 .inc02_01 .inc02_01_01 > .link01 > span > img{
	width: 11px;
	height: auto;
	margin: 0;
	display: block;
	position: relative;
	z-index: 1;
}
.inc02 .inc02_01 .inc02_01_02{
	width: auto;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	flex-direction: column;
	flex-grow: 1;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_02{
		width: 100%;
	}
}
.inc02 .inc02_01 .inc02_01_02 > .item01{
	width: 626px;
	height: auto;
	margin: 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.inc02 .inc02_01 .inc02_01_02 > .item01{
		width: 100%;
	}
}
.inc02 .inc02_01 .inc02_01_02 > .item01 > img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
/*.inc02ここまで*/
/*includeここまで*/