@charset "UTF-8";

.signboard {
	background-color: transparent;
	backdrop-filter: initial;
	--webkit-backdrop-filter: initial;
	box-shadow: none;
	transition: ease .5s;
}
.signboard.bgwhite {
	backdrop-filter: blur(30px);
	--webkit-backdrop-filter: blur(30px);
	background-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 10px 0 #C1C1C1;
}

.top_page {
	position: relative;
}
.top_page::before {
	background: url("../img/common/flower_01.png") no-repeat center / cover;
	content: '';
	display: block;
	position: fixed;
	height: 100vh;
	width: 100%;
	z-index: -2;
}
.top_page::after {
	background: linear-gradient(transparent 0, transparent 1500px, rgba(255, 255, 255, .5) 2000px);
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
}

.top_page .headline01 {
	font-size: 20px;
	letter-spacing: 3px;
	margin-bottom: 30px;
	text-align: center;
}

@media screen and (max-width: 1280px) {
	.top_page::after {
		background: linear-gradient(transparent 0, transparent 1200px, rgba(255, 255, 255, .5) 1800px);
	}

	.top_page .headline01 {
		font-size: 1.7vw;
		letter-spacing: .2vw;
		margin-bottom: 2.2vw;
	}
}

@media screen and (max-width: 640px) {
	.top_page::after {
		background: linear-gradient(transparent 0, transparent 900px, rgba(255, 255, 255, .5) 1200px);
	}

	.top_page .headline01 {
		font-size: 3.8vw;
		letter-spacing: .5vw;
		margin-bottom: 4vw;
	}
}


/** -- mv -- **/
.mv {
	border-radius: 0;
	margin-top: -35px;
	overflow: hidden;
	position: relative;
	height: 100vh;
	width: 100%;
}
.mv > video {
	border: none;
	box-shadow: none;
	position: absolute;
	top: 50%;
	left: 50%;
	height: auto;
	width: 100%;
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 10;
}
.mv > .bg {
	object-fit: cover;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	min-width: 100%;
	min-height: 100%;
}

@media screen and (max-height: 1279px) and (min-width: 1920px) {
	.mv > video {
		height: auto;
		width: 100%;
	}
}
@media screen and (min-height: 1280px) and (max-width: 1919px) {
	.mv > video {
		height: 100%;
		width: auto;
	}
}

@media screen and (max-width: 1280px) {
	.mv {
		margin-top: -3vw;
		height: 100vh;
		width: 100%;
	}
	.mv > video {
		height: 100%;
		width: auto;
	}
}

@media screen and (max-width: 640px) {
	.mv {
		margin-top: -8vw;
		height: calc(100vh - 12vw);
	}
	.mv > video {
		height: 100%;
		width: auto;
	}
}

.mv .sec_inner {
	position: relative;
	height: 100%;
}

.mv .text {
	position: absolute;
	left: 50%;
	top: 45%;
	text-shadow: 0 0 10px rgba(131, 175, 200, .2), 0 0 5px rgba(131, 175, 200, .2);
	transform: translate(-50%, -50%);
}
.mv .text h1 {
	color: white;
	font-size: 290px;
	letter-spacing: 28px;
	line-height: .9;
}
.mv .text p {
	color: white;
	font-size: 28px;
	letter-spacing: 3px;
	position: absolute;
	bottom: -45px;
	left: 290px;
}

.mv .info_li {
	background-color: white;
	border-radius: 50px 0 0 50px;
	display: table;
	padding: 0 50px;
	position: absolute;
	right: 0;
	bottom: 60px;
}
.mv .info_li article {
	align-items: center;
	height: 50px;
}
.mv .info_li article h2 {
	font-size: 14px;
	font-weight: 400;
	margin-left: 40px;
}
.mv .info_li article a {
	font-size: 18px;
	margin-left: 50px;
}

.mv .logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 1200px;
}
.mv .logo img {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 200px;
}

@media screen and (max-width: 1280px) {
	.mv .text {
		text-shadow: 0 0 10px rgba(131, 175, 200, .2), 0 0 5px rgba(131, 175, 200, .2);
	}
	.mv .text h1 {
		font-size: 21.8vw;
		letter-spacing: 2.2vw;
	}
	.mv .text p {
		font-size: 2vw;
		letter-spacing: .3vw;
		bottom: -3.2vw;
		left: 22.5vw;
	}

	.mv .info_li {
		padding: 0 4vw;
		bottom: 4.8vw;
	}
	.mv .info_li article {
		height: 4vw;
	}
	.mv .info_li article h2 {
		font-size: 1.1vw;
		margin-left: 3vw;
	}
	.mv .info_li article a {
		font-size: 1.44vw;
		margin-left: 4vw;
	}

	.mv .logo {
		width: calc(100% - 4vw);
	}
	.mv .logo img {
		width: 16vw;
	}
}

@media screen and (max-width: 640px) {
	.mv .text {
		left: 52%;
		text-shadow: 0 0 10px rgba(131, 175, 200, .2), 0 0 5px rgba(131, 175, 200, .2);
	}
	.mv .text h1 {
		font-size: 23vw;
		letter-spacing: 2.4vw;
	}
	.mv .text p {
		font-size: 4.3vw;
		bottom: -12vw;
		left: 0;
	}

	.mv .info_li {
		padding: 0 4vw 0 10vw;
		bottom: 10vw;
		left: 4vw;
	}
	.mv .info_li article {
		height: 24vw;
	}
	.mv .info_li article h2 {
		font-size: 3vw;
		margin-left: 0;
		margin-top: -4vw;
	}
	.mv .info_li article a {
		font-size: 3.2vw;
		margin-left: auto;
		margin-top: -5vw;
	}

	.mv .logo {
		width: calc(100% - 4vw);
	}
	.mv .logo img {
		left: 6vw;
		right: auto;
		top: calc(50% - 48vw);
		width: 28vw;
	}
}


/** -- about -- **/
.top_page .about {
	padding: 50px 0;
}
.top_page .about .sec_inner {
	padding: 50px 0;
	position: relative;
	z-index: 1;
}

.top_page .about .deco {
	position: absolute;
	left: 0;
	top: 0;
	width: 283px;
	z-index: -1;
}

.top_page .about h3 {
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 1.8;
	margin-bottom: 50px;
	text-align: center;
}
.top_page .about p.exp {
	font-size: 18px;
	line-height: 2.2;
	margin-bottom: 40px;
	text-align: center;
}
.top_page .about p.link {
	font-size: 18px;
	text-align: center;
}

@media screen and (max-width: 1280px) {
	.top_page .about {
		padding: 4vw 0;
	}
	.top_page .about .sec_inner {
		padding: 4vw 0;
	}

	.top_page .about .deco {
		width: 22.4vw;
	}

	.top_page .about h3 {
		font-size: 2.2vw;
		letter-spacing: .15vw;
		margin-bottom: 4vw;
	}
	.top_page .about p.exp {
		font-size: 1.44vw;
		margin-bottom: 3.8vw;
	}
	.top_page .about p.link {
		font-size: 1.44vw;
	}
}

@media screen and (max-width: 640px) {
	.top_page .about {
		padding: 10vw 0;
	}
	.top_page .about .sec_inner {
		padding: 4vw 0;
	}

	.top_page .about .deco {
		width: 24vw;
	}

	.top_page .about h3 {
		font-size: 4vw;
		margin-bottom: 6vw;
	}
	.top_page .about p.exp {
		font-size: 3.4vw;
		margin-bottom: 10vw;
	}
	.top_page .about p.link {
		font-size: 3.4vw;
	}
}


/** -- summary -- **/
.top_page .summary {
	margin: 0 20px 140px;
	overflow: visible;
	position: relative;
}
.top_page .summary .deco {
	position: absolute;
	left: calc(50% + 200px);
	top: -30px;
	transform: translateX(-50%);
	width: 276px;
}

.top_page .summary .sec_inner {
	padding: 60px 0;
}

.top_page .summary h3 {
	font-size: 16px;
	margin-bottom: 30px;
	text-align: center;
}

.top_page .summary .inner {
	margin: 0 -12.5px;
}
.top_page .summary .box {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(137, 137, 137, .16),
		inset 0 0 15px rgba(131, 175, 200, .16),
		inset 0 0 15px rgba(131, 175, 200, .16);
	margin: 0 12.5px;
	overflow: hidden;
	padding: 40px 20px 30px;
	position: relative;
	height: 256px;
	width: calc(20% - 25px);
}
.top_page .summary .box .num {
	font-size: 30px;
	position: absolute;
	left: 20px;
	top: 20px;
}
.top_page .summary .box h4 {
	font-size: 14px;
	margin-bottom: 40px;
	padding-left: 70px;
}
.top_page .summary .box .exp {
	font-size: 14px;
	font-weight: 700;
}
.top_page .summary .box a {
	display: block;
	font-size: 18px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}
.top_page .summary .box a.pe-none {
	pointer-events: none;
}

.top_page .summary .box.coming_soon p,
.top_page .summary .box.coming_soon h4,
.top_page .summary .box.coming_soon a {
	opacity: .2;
}
.top_page .summary .box.coming_soon::before,
.top_page .summary .box.coming_soon::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
}
.top_page .summary .box.coming_soon::before {
	background: url("../img/common/bg_cs.png") no-repeat center / cover;
	top: 0;
	height: 100%;
	width: 100%;
}
.top_page .summary .box.coming_soon::after {
	color: white;
	content: 'coming soon';
	display: block;
	font-family: "futura-pt-bold", sans-serif;
	font-size: 24px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 1px;
	text-align: center;
	top: calc(50% - 5px);
	transform: translateY(-50%);
	width: 100%;
}

@media screen and (max-width: 1280px) {
	.top_page .summary {
		margin: 0 1.6vw 12vw;
	}
	.top_page .summary .doco {
		left: calc(50% + 16vw);
		top: -2.4vw;
		width: 22vw;
	}

	.top_page .summary .sec_inner {
		padding: 4.8vw 0;
	}

	.top_page .summary h3 {
		font-size: 1.28vw;
		margin-bottom: 2.4vw;
	}

	.top_page .summary .inner {
		margin: 0 -.9vw;
	}
	.top_page .summary .box {
		border-radius: .8vw;
		margin: 0 .9vw;
		padding: 3.2vw 1.6vw 2vw;
		height: 20.2vw;
		width: calc(20% - 1.8vw);
	}
	.top_page .summary .box .num {
		font-size: 2.36vw;
		left: 1.6vw;
		top: 1.5vw;
	}
	.top_page .summary .box h4 {
		font-size: 1.1vw;
		margin-bottom: 3.2vw;
		padding-left: 5.6vw;
	}
	.top_page .summary .box .exp {
		font-size: 1.1vw;
	}
	.top_page .summary .box a {
		font-size: 1.44vw;
		bottom: 2.4vw;
	}
	
	.top_page .summary .box.coming_soon::after {
		font-size: 1.88vw;
		letter-spacing: .08vw;
		top: calc(50% - .4vw);
	}
}

@media screen and (max-width: 640px) {
	.top_page .summary {
		margin: 0 4vw 12vw;
	}
	.top_page .summary .deco {
		left: calc(50% + 34vw);
		top: -3vw;
		width: 34vw;
	}

	.top_page .summary .sec_inner {
		padding: 4vw 0 2vw;
	}

	.top_page .summary h3 {
		font-size: 3.2vw;
		margin-bottom: 8vw;
	}

	.top_page .summary .inner {
		margin: 0 -2vw;
	}
	.top_page .summary .box {
		border-radius: 2vw;
		margin: 0 2vw 6vw;
		padding: 6vw 4vw 2vw;
		height: 42vw;
		width: calc(50% - 4vw);
	}
	.top_page .summary .box .num {
		font-size: 4.6vw;
		left: 4vw;
		top: 4vw;
	}
	.top_page .summary .box h4 {
		font-size: 3.2vw;
		margin-bottom: 4vw;
		padding-left: 12vw;
	}
	.top_page .summary .box .exp {
		font-size: 3.2vw;
	}
	.top_page .summary .box a {
		font-size: 3.6vw;
		bottom: 4vw;
	}
	
	.top_page .summary .box.coming_soon::after {
		font-size: 4.2vw;
		letter-spacing: .4vw;
		top: calc(50% - 1vw);
	}
}


/** -- service -- **/
.top_page .service {
	margin-bottom: 100px;
}
.top_page .service .sec_inner {
	padding: 0 30px;
}

.top_page .service h3 {
	font-size: 18px;
	font-weight: 400;
	line-height: 2.0;
	margin-bottom: 40px;
	text-align: center;
}

.top_page .service .select {
	width: 540px;
}
.top_page .service .select article {
	background-color: white;
	border-radius: 20px;
	box-shadow: inset 0 0 15px rgba(131, 175, 200, .16);
	display: none;
	padding: 60px 0 170px;
	position: relative;
	text-align: center;
	z-index: 1;
}
.top_page .service .select article.active {
	display: block;
}
.top_page .service .select article::before {
	background: url("../img/common/deco_fuun_circle.png") no-repeat center / 100%;
	content: '';
	display: block;
	position: absolute;
	bottom: 30px;
	right: 20px;
	height: 270px;
	width: 270px;
	z-index: -1;
}
.top_page .service .select article .num {
	position: absolute;
	left: 30px;
	top: 30px;
}
.top_page .service .select article h3 {
	display: table;
	font-size: 24px;
	font-weight: 700;
	margin: 0 auto;
}
.top_page .service .select article p.exp {
	display: table;
	font-size: 14px;
	line-height: 2.0;
	margin: 30px auto 50px;
}
.top_page .service .select article h4 {
	display: table;
	font-size: 26px;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 2.0;
	margin: 0 auto;
	text-align: left;
}
.top_page .service .select article h4 span {
	position: relative;
	left: -10px;
}
.top_page .service .select article a {
	display: table;
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
}
.top_page .service .select article .deco {
	position: absolute;
	bottom: -70px;
	right: -20px;
	height: 300px;
	width: 300px;
}
.top_page .service .select article:nth-child(2) .deco {
	bottom: -50px;
	right: -50px;
}
.top_page .service .select article:nth-child(3) .deco {
	bottom: -100px;
	right: -40px;
}
.top_page .service .select article:nth-child(4) .deco {
	bottom: -40px;
	right: -40px;
}
.top_page .service .select article:nth-child(5) .deco {
	bottom: -80px;
	right: -60px;
}

.top_page .service .list {
	margin-left: 40px;
	width: calc(100% - 540px - 40px);
}
.top_page .service .list li {
	background-color: white;
	margin-bottom: 24px;
}
.top_page .service .list li a {
	align-items: center;
	border-radius: 10px;
	box-shadow: inset 0 0 15px rgba(131, 175, 200, .16);
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	padding: 0 20px 0 70px;
	position: relative;
	height: 100px;
	z-index: 1;
}
.top_page .service .list li a span {
	font-size: 16px;
	margin-right: 40px;
}
.top_page .service .list li a::before {
	left: 30px;
}
.top_page .service .list li a::after {
	background: linear-gradient( 70deg, rgba(204, 231, 247, .2), rgba(240, 240, 240, .64) 65%, rgba(245, 206, 199, 1));
	border-radius: 10px;
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	transition: ease .3s;
	height: 100%;
	width: 0;
	z-index: -1;
}
.top_page .service .list li.active a::after {
	width: 100%;
}
.top_page .service .list li a:hover::after {
	width: 100%;
}

@media screen and (max-width: 1280px) {
	.top_page .service {
		margin-bottom: 8vw;
	}
	.top_page .service .sec_inner {
		padding: 0 2.4vw;
	}

	.top_page .service h3 {
		font-size: 1.44vw;
		margin-bottom: 3.2vw;
	}

	.top_page .service .select {
		width: 42.7vw;
	}
	.top_page .service .select article {
		border-radius: 1.6vw;
		padding: 4.7vw 0 13.4vw;
	}
	.top_page .service .select article::before {
		bottom: 2.4vw;
		right: 1.6vw;
		height: 21.4vw;
		width: 21.4vw;
	}
	.top_page .service .select article .num {
		left: 2.3vw;
		top: 2.4vw;
	}
	.top_page .service .select article h3 {
		font-size: 1.88vw;
	}
	.top_page .service .select article p.exp {
		display: table;
		font-size: 1.1vw;
		margin: 2.4vw auto 3.9vw;
	}
	.top_page .service .select article h4 {
		font-size: 2.04vw;
		letter-spacing: .16vw;
	}
	.top_page .service .select article h4 span {
		left: -.8vw;
	}
	.top_page .service .select article a {
		bottom: 4vw;
	}
	.top_page .service .select article .deco {
		bottom: -5.5vw;
		right: -1.6vw;
		height: 23.5vw;
		width: 23.5vw;
	}
	.top_page .service .select article:nth-child(2) .deco {
		bottom: -3.9vw;
		right: -3.9vw;
	}
	.top_page .service .select article:nth-child(3) .deco {
		bottom: -7.8vw;
		right: -3.1vw;
	}
	.top_page .service .select article:nth-child(4) .deco {
		bottom: -3.2vw;
		right: -3.2vw;
	}
	.top_page .service .select article:nth-child(5) .deco {
		bottom: -6.3vw;
		right: -4.7vw;
	}

	.top_page .service .list {
		margin-left: 3vw;
		width: calc(100% - 42.7vw - 3vw);
	}
	.top_page .service .list li {
		margin-bottom: 1.9vw;
	}
	.top_page .service .list li a {
		border-radius: .8vw;
		font-size: 1.44vw;
		padding: 0 1.4vw 0 5.5vw;
		height: 7.8vw;
	}
	.top_page .service .list li a span {
		font-size: 1.28vw;
		margin-right: 3.1vw;
	}
	.top_page .service .list li a::before {
		left: 2.4vw;
	}
	.top_page .service .list li a::after {
		border-radius: .8vw;
	}
}

@media screen and (max-width: 640px) {
	.top_page .service {
		margin-bottom: 10vw;
	}
	.top_page .service .sec_inner {
		padding: 0;
	}

	.top_page .service h3 {
		font-size: 4.6vw;
		margin-bottom: 8vw;
	}

	.top_page .service .select {
		width: 100%;
	}
	.top_page .service .select article {
		display: block;
		border-radius: 3vw;
		padding: 12vw 0 26vw;
		margin-bottom: 8vw;
	}
	.top_page .service .select article::before {
		bottom: 4vw;
		right: 2vw;
		height: 48vw;
		width: 48vw;
	}
	.top_page .service .select article .num {
		left: 6vw;
		top: 5vw;
	}
	.top_page .service .select article h3 {
		font-size: 4.2vw;
	}
	.top_page .service .select article p.exp {
		font-size: 3.6vw;
		margin: 4vw auto 6vw;
	}
	.top_page .service .select article h4 {
		font-size: 5.4vw;
		letter-spacing: .2vw;
	}
	.top_page .service .select article h4 span {
		left: -2.8vw;
	}
	.top_page .service .select article a {
		bottom: 10vw;
	}
	.top_page .service .select article .deco {
		bottom: -10vw;
		right: -6vw;
		height: 50vw;
		width: 50vw;
	}
	.top_page .service .select article:nth-child(2) .deco {
		bottom: -8vw;
		right: -10vw;
	}
	.top_page .service .select article:nth-child(3) .deco {
		bottom: -16vw;
		right: -7vw;
	}
	.top_page .service .select article:nth-child(4) .deco {
		bottom: -7vw;
		right: -7vw;
	}
	.top_page .service .select article:nth-child(5) .deco {
		bottom: -13vw;
		right: -11vw;
	}

	.top_page .service .list {
		display: none;
	}
}


/** -- beliefs -- **/
.top_page .beliefs {
	margin-bottom: 140px;
}
.top_page .beliefs .sec_inner {
	border-radius: 30px;
	overflow: hidden;
	padding: 100px 0;
	position: relative;
	z-index: 1;
}
.top_page .beliefs .sec_inner::before {
	background-image: url("../img/common/bg_grad.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: '';
	display: block;
	opacity: .4;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 100%;
	width: 100%;
	z-index: -1;
}

.top_page .beliefs .deco {
	color: white;
	font-size: 100px;
	letter-spacing: 10px;
	position: absolute;
	z-index: -1;
}
.top_page .beliefs .deco01 {
	left: 5px;
	top: -50px;
}
.top_page .beliefs .deco02 {
	left: calc(50% + 17px);
	top: 50%;
	transform: translate(-50%, -50%);
}
.top_page .beliefs .deco03 {
	bottom: -45px;
	right: -8px;
}

.top_page .beliefs .inner {
	margin: 0 auto;
	width: 680px;
}
.top_page .beliefs .inner p {
	display: table;
	font-size: 20px;
	letter-spacing: 2px;
	line-height: 2.4;
}
.top_page .beliefs .inner p.txt01 {
	margin-bottom: 50px;
}
.top_page .beliefs .inner p.txt02 {
	margin-left: auto;
}

@media screen and (max-width: 1280px) {
	.top_page .beliefs {
		margin-bottom: 11vw;
	}
	.top_page .beliefs .sec_inner {
		border-radius: 2.3vw;
		padding: 7.9vw 0;
	}

	.top_page .beliefs .deco {
		font-size: 7.8vw;
		letter-spacing: .78vw;
	}
	.top_page .beliefs .deco01 {
		left: .4vw;
		top: -3.7vw;
	}
	.top_page .beliefs .deco02 {
		left: calc(50% + 1.3vw);
	}
	.top_page .beliefs .deco03 {
		bottom: -3.6vw;
		right: -.3vw;
	}

	.top_page .beliefs .inner {
		width: 53.3vw;
	}
	.top_page .beliefs .inner p {
		font-size: 1.57vw;
		letter-spacing: .16vw;
	}
	.top_page .beliefs .inner p.txt01 {
		margin-bottom: 3.9vw;
	}
}

@media screen and (max-width: 640px) {
	.top_page .beliefs {
		margin-bottom: 14vw;
	}
	.top_page .beliefs .sec_inner {
		border-radius: 3vw;
		padding: 18vw 0;
	}

	.top_page .beliefs .deco {
		font-size: 10.2vw;
		letter-spacing: .82vw;
	}
	.top_page .beliefs .deco01 {
		left: .6vw;
		top: -4.7vw;
	}
	.top_page .beliefs .deco02 {
		left: calc(50% + 1.3vw);
	}
	.top_page .beliefs .deco03 {
		bottom: -4.7vw;
		right: -.4vw;
	}

	.top_page .beliefs .inner {
		width: 76vw;
	}
	.top_page .beliefs .inner p {
		font-size: 3.4vw;
		letter-spacing: .16vw;
	}
	.top_page .beliefs .inner p.txt01 {
		margin-bottom: 8vw;
	}
	.top_page .beliefs .inner p.txt02 {
		margin-left:0;
	}
}


/** -- information -- **/
.top_page .information {
	margin-bottom: 140px;
}
.top_page .information .inner {
	background-color: white;
	border-radius: 20px;
	box-shadow: 0 0 15px rgba(131, 175, 200, .16);
	margin: 0 auto;
	padding: 60px;
	width: 980px;
}

.top_page .information .list article {
	margin-bottom: 20px;
	padding: 0 30px 20px;
	position: relative;
	z-index: 1;
}
.top_page .information .list article::after {
	background-image : linear-gradient(to right, #2E6280 1px, transparent 1px);
	background-size: 7px 1px;
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 100%;
}
.top_page .information .list article a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: calc(100% - 20px);
	width: 100%;
}
.top_page .information .list article a::before,
.top_page .information .list article a::after {
	box-sizing: border-box;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	content: '';
	position: absolute;
	top: 0;
	transition: ease .3s;
	width: 10px;
	height: 100%;
}
.top_page .information .list article a::before {
	border-left: solid 1px transparent;
	left: 0;
	border-radius: 25px 0 0 25px; /* 左上 | 右上 | 右下 | 左下 */
}
.top_page .information .list article a::after {
	border-right: solid 1px transparent;
	right: 0;
	border-radius: 0 25px 25px 0; /* 左上 | 右上 | 右下 | 左下 */
}
.top_page .information .list article a:hover::before,
.top_page .information .list article a:hover::after {
	border-color: #2E6280;
}
.top_page .information .list article .hover {
	background: radial-gradient( #F5CEC7, #F5CEC7 50% ,transparent );
	border-radius: 17px;
	content: '';
	display: block;
	filter: blur(10px);
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	transition: ease .3s;
	height: 0;
	width: 0;
	z-index: -1;
}
.top_page .information .list article a:hover + .hover {
	height: 70px;
	width: 150px;
}
.top_page .information .list article .other {
	margin-bottom: 10px;
}
.top_page .information .list article .other .date {
	letter-spacing: 1px;
	margin-right: 30px;
}
.top_page .information .list article .other .new {
	background-color: #F5CEC7;
	border-radius: 5px;
	color: white;
	font-size: 12px;
	font-weight: 700;
	padding: 3px 20px;
}
.top_page .information .list article .other .cat {
	font-size: 12px;
	font-weight: 700;
	margin-left: 25px;
	padding-top: 3px;
}

.top_page .information .list article h2 {
	font-size: 14px;
	font-weight: 400;
}

.top_page .information .list + a {
	display: table;
	margin: 30px auto 0;
}

@media screen and (max-width: 1280px) {
	.top_page .information {
		margin-bottom: 11vw;
	}
	.top_page .information .inner {
		border-radius: 1.6vw;
		padding: 4.7vw;
		width: 76.8vw;
	}

	.top_page .information .list article {
		margin-bottom: 1.6vw;
		padding: 0 2.3vw 1.6vw;
	}
	.top_page .information .list article::after {
		background-size: .55vw 1px;
	}
	.top_page .information .list article a {
		height: calc(100% - 1.3vw);
	}
	.top_page .information .list article a::before,
	.top_page .information .list article a::after {
		width: .8vw;
	}
	.top_page .information .list article a::before {
		border-radius: 2vw 0 0 2vw; /* 左上 | 右上 | 右下 | 左下 */
	}
	.top_page .information .list article a::after {
		border-radius: 0 2vw 2vw 0; /* 左上 | 右上 | 右下 | 左下 */
	}
	.top_page .information .list article .hover {
		border-radius: 1.3vw;
		filter: blur(.8vw);
	}
	.top_page .information .list article a:hover + .hover {
		height: 5.8vw;
		width: 11vw;
	}
	.top_page .information .list article .other {
		margin-bottom: .8vw;
	}
	.top_page .information .list article .other .date {
		letter-spacing: .08vw;
		margin-right: 2.3vw;
	}
	.top_page .information .list article .other .new {
		border-radius: .4vw;
		font-size: .95vw;
		padding: .5vw 1.6vw;
	}
	.top_page .information .list article .other .cat {
		font-size: .95vw;
		margin-left: 2vw;
		padding-top: .5vw;
	}

	.top_page .information .list article h2 {
		font-size: 1.1vw;
	}

	.top_page .information .list + a {
		margin: 2.6vw auto 0;
	}
}

@media screen and (max-width: 640px) {
	.top_page .information {
		margin-bottom: 14vw;
	}
	.top_page .information .inner {
		border-radius: 3vw;
		margin: 0 4vw;
		padding: 8vw 4vw;
		width: auto;
	}

	.top_page .information .list article {
		margin-bottom: 4vw;
		padding: 0 2vw 4vw;
	}
	.top_page .information .list article::after {
		background-size: 1.2vw 1px;
	}
	.top_page .information .list article a {
		height: calc(100% - 3.6vw);
	}
	.top_page .information .list article a::before,
	.top_page .information .list article a::after {
		width: 1.6vw;
	}
	.top_page .information .list article a::before {
		border-radius: 4vw 0 0 4vw; /* 左上 | 右上 | 右下 | 左下 */
	}
	.top_page .information .list article a::after {
		border-radius: 0 4vw 4vw 0; /* 左上 | 右上 | 右下 | 左下 */
	}
	.top_page .information .list article .hover {
		border-radius: 3vw;
		filter: blur(1.6vw);
	}
	.top_page .information .list article a:hover + .hover {
		height: 12vw;
		width: 24vw;
	}
	.top_page .information .list article .other {
		margin-bottom: 3vw;
	}
	.top_page .information .list article .other .date {
		letter-spacing: .2vw;
		margin-right: 4vw;
	}
	.top_page .information .list article .other .new {
		border-radius: 1vw;
		font-size: 3vw;
		padding: .3vw 3vw 0;
	}
	.top_page .information .list article .other .cat {
		font-size: 3vw;
		margin-left: 4vw;
		padding-top: .2vw;
	}

	.top_page .information .list article h2 {
		font-size: 3.2vw;
	}

	.top_page .information .list + a {
		margin-top: 10vw;
	}
}
