@charset "utf-8";

/* ===================================================================
TOP KV BUTTON
=================================================================== */

/* LAYOUT
--------------------*/

.top-kv-btn {
	padding: 15px 0;
}

.top-kv-btn-list ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

.top-kv-btn-list ul li {
    width: 170px;
	margin: 0 20px 0 0;
}

.top-kv-btn-list ul li:last-of-type {
	margin: 0;
}

.top-kv-btn-list ul li a {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
    width: 100%;
    min-height: 50px;
    padding: 5px 50px 2.5px 10px;
    font-size: 16px; /* 固定 */
    font-weight: 700;
	text-align: center;
	line-height: 1.2; /* 特殊 */
	border: 2px solid #009B95;
    border-radius: 10px;
	word-break: normal;
}

.top-kv-btn-list ul li a:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	right: 10px;
	width: 30px;
	height: 30px;
}

/* ===================================================================
TOP KV
=================================================================== */

.top-kv {
	position: relative;
}

/* ===================================================================
TOP MAIN
=================================================================== */

/* MAIN LAYOUT
--------------------*/

.top-main {
	display: flex;
	justify-content: space-between;
	margin: 0 0 50px;
}

.top-main-left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: calc(100% - 480px);
}

.top-main-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 460px;
}

.top-main-left-lower,
.top-main-right-lower {
	margin: auto 0 0;
}

/* TOPICS LAYOUT
--------------------*/

.top-main-topics {
	display: flex;
	justify-content: space-between;
}

.top-main-topics-left,
.top-main-topics-right {
	width: 49.5%;
}

/* TOPICS LEFT
--------------------*/

.top-main-topics-left .s-img-cont.split1,
.top-main-topics-left .s-img-cont.split1 ul {
    height: 100%;
}

/* DISASTER LAYOUT
--------------------*/

.top-disaster {
	margin: 0 0 50px;
}

.top-disaster-list ul li {
	margin: 0 0 10px;
}

.top-disaster-list ul li a {
	display: block;
}

.top-disaster-content {
    position: relative;
    background: #FFF;
    border-radius: 10px;
    box-shadow: 3px 3px #009B95;
    overflow: hidden;
    transition: box-shadow .2s ease-out 0s;
}

.top-disaster-content:hover {
    box-shadow: 6px 6px #009B95;
}

.top-disaster-content .top-disaster-title {
    position: relative;
    padding: 5px 160px 2.5px 20px;
    color: #FFF;
    font-size: 2.4rem;
    font-weight: 700;
    background: #009B95;
}

.top-disaster-content .top-disaster-title .top-disaster-btn {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 70px 5px 20px;
    font-size: 16px; /* 固定 */
    color: #009B95;
    background: #FFF;
    border-radius: 30px;
}

.top-disaster-content .top-disaster-title .top-disaster-btn i[class^=fa] {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	right: 20px;
	color: #009B95;
	font-size: 24px; /* 固定 */
}

.top-disaster-detail {
	padding: 15px 20px;
}

@media screen and (min-width: 1001px) and (max-width: 1500px) {

	/* ===================================================================
	TOP MAIN
	=================================================================== */

	/* MAIN LAYOUT
	--------------------*/

	.top-main {
		display: block;
	}

	.top-main-left,
	.top-main-right {
		display: block;
		width: 100%;
	}

	.top-main-left {
		margin: 0 0 50px;
	}

	.top-main-left-lower,
	.top-main-right-lower {
		margin: 0;
	}

	/* DISASTER LAYOUT
	--------------------*/

	.top-disaster {
		margin: 0 0 50px;
	}

	.top-disaster-list ul {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.top-disaster-list ul li {
		width: 48.5%;
		margin: 0;
	}

}

@media screen and (max-width: 1000px) {

	/* ===================================================================
	TOP KV BUTTON
	=================================================================== */

	/* LAYOUT
	--------------------*/

	.top-kv-btn {
		padding: 20px 0;
	}

	.top-kv-btn-list ul li {
		width: 24%;
		margin: 0 calc(4% / 3) 0 0;
	}
	
	.top-kv-btn-list ul li a {
		justify-content: center;
		min-height: 85px;
		padding: 42.5px 5px 2.5px;
		font-size: 12px; /* 固定 */
	}

	.top-kv-btn-list ul li a:before {
		content: '';
		position: absolute;
		top: 8px;
		right: auto;
		left: 50%;
		transform: translate(-50%, 0);
	}

	/* ===================================================================
	TOP MAIN
	=================================================================== */

	/* MAIN LAYOUT
	--------------------*/

	.top-main {
		display: block;
	}

	.top-main-left,
	.top-main-right {
		display: block;
		width: 100%;
	}

	.top-main-left {
		margin: 0 0 50px;
	}

	/* TOPICS LAYOUT
	--------------------*/

	.top-main-topics {
		display: block;
	}

	/* DISASTER LAYOUT
	--------------------*/

	.top-disaster-content .top-disaster-title {
		padding: 5px 105px 2.5px 20px;
		font-size: 2rem;
	}
	
	.top-disaster-content .top-disaster-title .top-disaster-btn {
		right: 5px;
		padding: 2.5px 40px 2.5px 10px;
		font-size: 14px; /* 固定 */
	}
	
	.top-disaster-content .top-disaster-title .top-disaster-btn i[class^=fa] {
		right: 10px;
		font-size: 20px; /* 固定 */
	}

}