:root{
	--main-color:#424188;
	--message-color:#F18E10;
	--news-color:#6FBA2C;
	--topics01-color:#00AAC3;
	--topics02-color:#B68D5D;
}
body{
	overflow: hidden;
}

/* ------------------------------------
	header
------------------------------------ */
#global_header .sub_menu > ul li a {
    background: #fff;
    color:var(--main-color);
    padding: 10px 30px;
    border-radius: 5px;
	border:2px solid var(--main-color);
    justify-content:center;
}
#global_header .sub_menu a.index {
	border-color:#84BEFE;
	color:#84BEFE;
}
#global_header .sub_menu > ul li a::before{
	position: absolute;
	content: "";
	width:15px;
	height:15px;
	background:var(--main-color);
	top:0;
	left:0;
	border-radius:0 0 100% 0;
}
#global_header .sub_menu > ul li a.index::before{
	background:#84BEFE;
}
#global_header .sub_menu > ul li:first-child a:hover{
	background:rgba(66, 65, 136, .2);
}
#global_header .sub_menu > ul li:nth-of-type(2) a:hover{
	background:rgba(132, 190, 254, .2);
}

#global_header .sub_menu > ul li a > span{
	display: block;
	text-align: center;
	width: 100%;
}
/*　ハンバーガーボタン　*/
#global_header .hamburger {
    border-radius: 5px;
	margin-left:4px;
}
@media only screen and (max-width: 768px) {
    #global_header .sub_menu > ul li a img{
		position: absolute;
		top: 4px;
		width: auto;
		height: 23px;
	}
}
/* ------------------------------------
	globalNav
------------------------------------ */
#global_nav ul {
    height:100%;
}
#global_nav ul li:hover::after,
#global_nav a.active::after {
	width:0;
	height:0;
	left:50%;
	transform: translateX(-50%);
	bottom: 2px;
	border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--main-color);
	content: '';
	position: absolute;
	transition-duration: .5s;
}
#global_nav ul li:nth-of-type(2):hover::after {
	border-top:8px solid var(--message-color);
}
#global_nav ul li:nth-of-type(3):hover::after {
	border-top:8px solid var(--news-color);
}
#global_nav ul li:nth-of-type(4):hover::after {
	border-top:8px solid var(--topics01-color);
}
#global_nav ul li:nth-of-type(5):hover::after {
	border-top:8px solid var(--topics02-color);
}
#global_nav a {
    display: block;
	width:100%;
	height:100%;
}
#global_nav li:first-child:hover a {
	color:var(--main-color);
}
#global_nav ul li:nth-of-type(2):hover a,
#global_nav a.active{
	color:var(--message-color);
}
#global_nav ul li:nth-of-type(3):hover a,
#global_nav li:nth-of-type(3) a.active{
	color:var(--news-color);
}
#global_nav ul li:nth-of-type(4):hover a,
#global_nav li:nth-of-type(4) a.active{
	color:var(--topics01-color);
}
#global_nav ul li:nth-of-type(5):hover a,
#global_nav li:nth-of-type(5) a.active{
	color:var(--topics02-color);
}

#global_nav li:nth-of-type(2) a.active::after {
	border-top: 8px solid var(--message-color);
}
#global_nav li:nth-of-type(3) a.active::after {
	border-top: 8px solid var(--news-color);
}
#global_nav li:nth-of-type(4) a.active::after {
	border-top: 8px solid var(--topics01-color);
}
#global_nav li:nth-of-type(5) a.active::after {
	border-top: 8px solid var(--topics02-color);
}
/* ------------------------------------
	cont_header
------------------------------------ */
/* cont_header visual 上半期トピックス */
.cont_header.visual.enquete::after {
	background:url(../img/news_header_bg_pc.png) center center no-repeat;
	background-size:cover;
}
/* cont_header visual 特集1 */
.cont_header.visual.closeup::after {
	background: url(../img/topics1_header_bg_pc.png) right center no-repeat;
	background-size: cover;
}
/* cont_header visual 特集2 */
.cont_header.visual.topics::after{
	background:url(../img/topics2_header_bg_pc.png) right center no-repeat;
	background-size: cover;
}
.earth {
	position: absolute;
	bottom: 0;
	right: 10px;
	width: 307px;
}
@media only screen and (max-width: 1280px) {
	.cont_header.visual.closeup::after {
		background-position: right -70px center;
	}
}
@media only screen and (max-width: 820px) {
	.cont_header.visual.closeup::after,
	.cont_header.visual.topics::after{
		background-position: center;
	}
}
@media only screen and (max-width: 768px) {
    .cont_header.visual::after {
		background:url(../img/page_header_bg_sp.png) no-repeat;
		background-size:cover ;
	}
	.cont_header.visual.enquete::after {
		background: url(../img/top_news_sp.png) top center no-repeat;
		background-size: cover;
	}
	.cont_header.visual.closeup::after {
		background: url(../img/top_topics1_sp.png) no-repeat;
		background-size: cover;
	}
	.cont_header.visual.topics::after{
		background:url(../img/top_topics2_sp.png) no-repeat center;
		background-size: cover;
	}
    .cont_header.visual h1 {
        color: #333;
    }
	.banner.cont_page01:after{
		background-position:top -43px center;
	}
	.banner.cont_page02:after{
		background-position:top -20px center;
	}
}
@media only screen and (max-width: 600px) {
	.banner.cont_page01:after,
	.banner.cont_page02:after{
		background-position: center;
	}
	body #pg_index .btn_area a{
		width:100%;
	}
}
#t-label {
    display:inline-flex;
    background:var(--topics01-color);
    width: 85px;
	height: 35px;
    justify-content: center;
	align-items: center;
}
header.topics #t-label{
	background:var(--topics02-color);
}
/* ------------------------------------
	cont_menu
------------------------------------ */
#cont_menu {
    margin: 0 auto 75px;
}
#cont_menu ul li {
    min-width:calc(800px / 3);
    margin:0;
}
#cont_menu ul li:nth-of-type(4),
#cont_menu ul li:last-child{
	width: 100%;
}
#cont_menu ul li a::before {
    display: inline-block;
    height: 10px;
	background: #84BEFE;
	border-radius: 50%;
	vertical-align: inherit;
	margin-right:10px;
}
@media only screen and (max-width: 820px) {
	#cont_menu ul li:first-child,
	#cont_menu ul li:nth-of-type(2),
	#cont_menu ul li:nth-of-type(3){
		min-width:225px;
	}
}
/* ------------------------------------
	message
------------------------------------ */
#pg_index .cont_header.visual {
	height: 290px;
}
.cont_header.visual.large {
    width:100%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
#message .top-message {
    padding: 20px 0 0 100px;
}
#message .top-name {
    padding: 10px 0 20px 100px;
}
.cont_header.visual.message::after{
	background: url(../img/message_header_bg_pc_img.png) right no-repeat, url(../img/page_header_bg.png) left no-repeat;
	background-size: contain, cover;
	background-color: #b7e0e9;
}
.cont_header.visual.message .wrap {
	max-width:1300px;
}
@media only screen and (max-width: 1500px) {
    .cont_header.visual.message::after{
          background-size: cover;
      }
}
@media only screen and (max-width: 820px) {
	#message .cont_header.visual{
		justify-content: flex-end;
	}
	.cont_header.visual.message .wrap{
		padding-bottom:0;
	}
	#message .top-message,
	#message .top-name{
		padding-left:0;
	}
}
@media only screen and (max-width: 768px) {
	.cont_header.visual.message .wrap{
		padding-bottom:20px;
	}
    .cont_header.visual.message::after{
        background:url(../img/message_header_bg_sp.png) top -26px center no-repeat;
        height: 100%;
        background-size: cover;
        position:absolute;
    }
    .cont_header.visual.message .wrap::after {
        content: none;
    }
    #message .top-message,
    #message .top-name {
    	padding:0;
    }
	#message .top-name{
		font-size:2rem !important;
	}
    .cont_header.visual.message h1 {
        font-size: 2.8rem;
        order: -2;
        margin-bottom: 0;
    }
    #message .cont_header img {
        z-index: 1;
        width: 50%;
        height: auto;
    }
}
@media only screen and (max-width: 600px) {
	.cont_header.visual.message::after{
		background-position-x:center ;
	}
}
@media only screen and (max-width: 400px) {
	#message .cont_header.visual{
		margin-bottom:40px !important;	
	}
	.cont_header.visual.message::after{
		background-position-y:center ;
	}
}
/* ------------------------------------
	topics1
------------------------------------ */
.base_wrap h2.topics1 a{
	color: var(--main-color);
}
body.closeup h3{
	font-size: 20px;
	margin-bottom:30px;
}
body.closeup .base_wrap:nth-of-type(2){
	margin-bottom:60px;
}
body.closeup .message-img-content a{
	display: block;
	margin-bottom:15px;
}
body.closeup hr{
	margin-bottom: 50px;
    max-width: 800px;
}
.sns_area{
	width:fit-content;
	background:#EBEBFA;
	padding:25px;
	height:72px;
	display: flex;
	align-items: center;
	justify-content:space-between;
	color:var(--main-color);
	font-weight: bold;
	gap:32px;
	font-size: 15px;
}
.sns_area > a{
	text-decoration: none;
	color:var(--main-color) !important;
}
.sns_area span{
	display: flex;
	align-items: center;
	gap: 15px;
}
.sns_area span a::after{
	content: none;
}
.sns_area span img{
	width:48px;
	height:48px;
	vertical-align: middle;
}
@media (max-width:768px){
	.sns_area{
		margin:auto;
		display: flex;
		gap:1em;
		flex-direction: column;
		height: 100%;
	}
}
/* ------------------------------------
	topics2
------------------------------------ */
table.four_column thead tr th,
table.four_column tbody tr th,
table.four_column tbody tr td{
  max-width:160px;
}
p.rsc.asterisk{
	margin-top:0 !important;
	font-size: 15px;
	margin-bottom:60px;
}
@media only screen and (max-width: 820px) {
    table.four_column tbody tr th br.sp{
      display: block !important;
    }
}
@media only screen and (max-width: 768px) {
	table.four_column thead tr th,
	table.four_column tbody tr th,
	table.four_column tbody tr td {
		width: 20%;
		font-size: 1.4rem;
	}
	table.four_column tr td small {
		font-size: 1rem;
	}
}
@media only screen and (max-width: 400px) {
	table.four_column thead tr th:last-child,
	table.four_column tbody tr td:last-child{
		padding:0;
	}
}
a.icon::after{
	background:transparent url(../img/ico_blank.png) center center no-repeat !important;
	width: 1em !important;
	height: 1em !important;
	background-size:100% !important;
  }
/* ------------------------------------
	print
------------------------------------ */
@media print{
	#pg_index .cont_header .wrap{
		width:auto;
	}
	.btn_area{
		gap:1em;
	}
	body #pg_index .btn_area a{
		width:calc(100% / 2);
	}
	.cont_header.visual.message .wrap{
		width:100%;
		margin-left:150px;
	}
	#message .top-message{
		padding: 20px 0 10px;
	}
	#message .top-name {
		padding:0;
	}
	.cont_header.visual.message::after{
		background-size:cover;
	}
	.content-area,
	.content-area.step > div{
		padding:3em 2em !important;
		gap:1em !important;
	}
	.content-area.step{
		align-items: center !important;
	}
	.content-area.step > div{
		width:fit-content !important;
		padding:0 !important;
	}
	.img-area{
		margin: auto !important;
        height: calc(147px* 2) !important;
        width: calc(236px* 2) !important;
	}
	#topics #global_footer{
		margin-top:2em !important;
	}
}