@charset "utf-8";

/* =======================================

	CommonElements

======================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* ------------------------------------
	html,body
------------------------------------ */
html * {
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html,
body {
	font-size: 10px;
	display: flex;
	-webkit-print-color-adjust: exact;
}
body{
	line-height: 2;
	color: #333;
	text-align: left;
	background: #fff;
	font-size: 1.6rem;
	padding: 110px 0 0;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	overflow: hidden;
}
.is-fixed {
	height: 100%;
    overflow: hidden;
}
a:link,
a:visited,
a:active,
a:hover{
	text-decoration:none;
	color: #333;
}
.sp {
	display: none!important;
}

/* 768px */
@media only screen and (max-width: 768px) {
	body{
		padding: 80px 0 0;
	}
	.sp {
		display: block!important;
	}
	.pc {
		display: none !important;
	}
}
/* ------------------------------------
	html,body end
------------------------------------ */


/* ------------------------------------
	global_header
------------------------------------ */
#global_header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 1000;
}
#global_header .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 110px;
	font-size: 1.4rem;
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
}
#global_header .info .name {
	margin: 0 20px 0 0;
}
#global_header .info .name img {
	max-height: 110px;
	vertical-align: middle;
}
#global_header .info .code {
	display: inline-block;
}
#global_header .sub_menu {
	display: flex;
}
#global_header .sub_menu > ul {
	display: flex;
}
#global_header .sub_menu > ul li {
	margin: 0 0 0 10px;
}
#global_header .sub_menu > ul li a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: #002d78 10px center no-repeat;
	background-size: 25px;
	color: #fff;
	width: 130px;
	height: 60px;
	padding: 10px 10px 10px 44px;
	font-weight: bold;
	position: relative;
}
#global_header .sub_menu > ul li a.ir {
	background-image: url(../img/ico_ir.png);
	background-position: 20px center;
	padding: 10px 10px 10px 50px;
}
#global_header .sub_menu > ul li a > span{
	display: block;
	text-align: center;
	width: 100%;
}

/*　hamburger　*/
#global_header .hamburger {
	display : block;
	position: relative;
	z-index : 3;
	width : 60px;
	height: 60px;
	margin: 0 0 0 3px;
	cursor: pointer;
	text-align: center;
	background-color: #333;
}
#global_header .hamburger span {
	display : block;
	position: absolute;
	width   : 24px;
	height  : 2px ;
	left    : 19px;
	background : #fff;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}
#global_header .hamburger span:nth-child(1) {
	top: 20px;
}
#global_header .hamburger span:nth-child(2) {
	top: 30px;
}
#global_header .hamburger span:nth-child(3) {
	top: 40px;
}

/* hamburger_open */
#global_header .hamburger.active span:nth-child(1) {
	top: 50%;
    left: 18px;
	background :#fff;
	-webkit-transform: translateY(-50%) rotate(-46deg);
	-moz-transform: translateY(-50%) rotate(-46deg);
	transform: translateY(-50%) rotate(-46deg);
}
#global_header .hamburger.active span:nth-child(2),
#global_header .hamburger.active span:nth-child(3) {
	top: 50%;
	background :#fff;
	-webkit-transform: translateY(-50%) rotate(46deg);
	-moz-transform   : translateY(-50%) rotate(46deg);
	transform        : translateY(-50%) rotate(46deg);
}
.global_menu_sp {
	position: fixed;
	z-index : 2;
	top: 80px;
	left: 100vw;
	color: #222;
	background: #fff;
	text-align: center;
	width: 100%;
	height: 100vh;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
}
.global_menu_sp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: 74%;
	overflow-y: scroll;
}
.global_menu_sp ul li {
	list-style-type: none;
	margin: 0 auto;
	width: 90%;
	color: #333;
	border-bottom: solid 1px #8C9BA5;
	transition: .4s all;
	font-size: 1.6rem;
}
.global_menu_sp ul li:first-child {
	padding: 30px 0;
	font-size: 2rem;
	color: #002D78;
	font-weight: bold;
}
.global_menu_sp ul li a {
	display: block;
	color: #222;
	padding: 22px 0;
	text-align: left;
	text-decoration :none;
	font-weight: bold;
}

/* このクラスを、jQueryで付与・削除する */
 .global_menu_sp.active {
	opacity: 100;
}

/* 768px */
@media only screen and (max-width: 768px) {
	#global_header .wrap {
		width: 94%;
		font-size: 1.2rem;
		height: 80px;
	}
	#global_header .info .name {
		margin: 0 10px 0 0;
	}
	#global_header .info {
		width: 45%;
	}
	#global_header .info .name img {
		max-height: 100px;
		margin: 5px 0;
	}
	#global_header .sub_menu > ul li {
		margin: 0 0 0 4px;
	}
	#global_header .sub_menu > ul li a {
		width: 60px;
		flex-direction: column;
		padding: 40px 0 0 !important;
		font-size: 1rem;
		background-position: center 10px !important;
	}
	#global_header .sub_menu > ul li a > span {
		position: absolute;
		bottom: 2px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	#global_header .global_menu_sp.active {
		left: 0;
	}
	.hamburger.sp {
		display: none !important;
	}
}
/* ------------------------------------
	global_header end
------------------------------------ */


/* ------------------------------------
	global_nav
------------------------------------ */
body.gnav {
	padding-top: 160px;
}
#global_nav {
	position: fixed;
	top: 110px;
	left: 0;
	background: #fff;
	z-index: 1000;
	width: 100%;
	height: 50px;
	border-top: 1px solid #707070;
	text-align: left;
	overflow: hidden;
}
body.gnav #global_nav {
	border-top: none;
}
#global_nav ul {
	position: relative;
	display: block;
	list-style: none;
	letter-spacing: -1em;
	white-space: nowrap;
	width: 90%;
	max-width: 1280px;
    height: 70px;
	margin: 0 auto;
	overflow-x: auto;
	-webkit-flow-scrolling: touch;
}
#global_nav ul::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 82%, #fff 100%);
	pointer-events: none;
}
#global_nav ul li {
	letter-spacing: 0;
	display: inline-block;
	font-size: 1.4rem;
	position: relative;
	margin: 0 1.4em;
}
#global_nav ul li::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 4px;
	left: 0;
	bottom: 0;
	background-color: rgba(0,45,120,0);
	-webkit-transition: background-color 0.2s ease-out;
    -moz-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
}
#global_nav ul li:hover::after {
	background-color: rgba(0,45,120,1);
}
#global_nav ul li:first-child {
	margin: 0 1.4em 0 0;
}
#global_nav a {
	line-height: 50px;
	color: #333;
	font-weight: bold;
	position: relative;
}
#global_nav a.active{
  color: #002d78;
}
#global_nav a.active:after {
	content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    /*bottom: -18px;*/
    bottom: -14px;
    background-color: rgba(0,45,120,1);
    -webkit-transition: background-color 0.2s ease-out;
    -moz-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
}

/* 768px */
@media only screen and (max-width: 768px) {
	body.gnav {
		padding-top: 80px;
	}
	.gnav .hamburger.sp {
		display: block !important;
	}
	#global_nav {
		display: none;
	}
}
/* ------------------------------------
	global_nav end
------------------------------------ */


/* ------------------------------------
	main
------------------------------------ */
main {
	flex: 1 0 auto;
	min-height: 1px;
	width: 100%;
}
main section {
	width: 100%;
	margin: 0 auto 100px;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 38px;
	font-size: 1.6rem;
}
h1 {
	font-size: 2.6rem;
	color: #002d78;
}
h2 {
	font-size: 2.4rem;
	margin: 0 0 28px;
	color: #002d78;
}
h3 {
	padding: 15px 0 0;
	margin: 0 0 24px;
}
main a:link,
main a:visited,
main a:active,
main a:hover{
	text-decoration:none; color: #003FB5; font-weight: bold;
}
main a[target='_blank']::after,
main .btn_area a[href*='.pdf']::after {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	background: transparent url("../img/ico_arrow_r.png") center center no-repeat;
	background-size: 100%;
	margin-left: 0.2em;
	margin-bottom: -2px;
}
main a[href*='.pdf']::after {
	content: '';
	display: inline-block;
	width: 1.125em;
	height: 1.125em;
	background: transparent url("../img/ico_pdf.png") center center no-repeat;
	background-size: 100%;
	margin-left: 0.2em;
	margin-bottom: -2px;
}
main a.blank[target='_blank']::after {
	background: transparent url("../img/ico_blank.png") center center no-repeat;
  background-size: 100%;
}
main p {
	margin: 0 0 10px;
}
main p:last-child {
	margin: 0;
}
main img {
	width: 100%;
	max-width: 100%;
}
main figure {
	margin: 0 auto 30px;
}

/*　contents　*/
.contents_wrap {
	width: 94%;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}
.base_wrap {
	width: 94%;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}
.base_wrap .base_wrap {
	width: 100%;
}

/* img_title */
.txt_note {
	font-size: 1.3rem;
}
.txt_note_single {
	font-size: 1.3rem;
	text-align: center;
	padding-top: 6px;
}

/* list */
.ul_round {
	margin: 30px 0 0;
}
.ul_round li {
	padding: 0 0 0 20px;
	position: relative;
	font-weight: bold;
}
.ul_round li::before {
	content: '';
	position: absolute;
	top: 11px;
	left: 0;
	display: block;
	width: 10px;
	height: 10px;
	background: #002d78;
	border-radius: 100%;
}

/* ※list */
.ul_attn {
	margin: 0 0 30px;
}
.ul_attn li {
	position: relative;
	padding-left: 1.5em;
}
.ul_attn li span {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
}


/* 768px */
@media only screen and (max-width: 768px) {
	main section {
		margin: 0 auto 50px;
	}
	h2 {
		font-size: 1.8rem;
		margin: 0 0 26px;
	}
	h3 {
		padding: 10px 0 0;
	}
}
/* ------------------------------------
	main end
------------------------------------ */


/* ------------------------------------
	cont_header
------------------------------------ */
.cont_header {
	background: #E8F0F5;
	margin: 0 0 50px;
}
.cont_header .wrap {
	width: 92%;
	max-width: 800px;
	margin: 0 auto;
	padding: 30px 0;
}
.cont_header h1 {
	margin: 0;
	text-align: center;
}

/* cont_header visual */
.cont_header.visual {
	height: 290px;
	display: flex;
	align-items: center;
	margin: 0 0 100px;
	position: relative;
	background: transparent;
}
.cont_header.visual.lower {
	height: 240px;
}
.cont_header.visual .wrap {
	max-width: 1100px;
}
.cont_header.visual h1 {
	text-align: left;
	font-size: clamp(2.5rem,calc(100vw/35),5rem);
}
.cont_header.visual p {
	width: 73%;
	font-size: 2rem;
	line-height: 1.5;
	margin:0;
}

/* cont_header visual background-image*/
.cont_header.visual::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #e2e2e2 url(../img/header_bg_pc.jpg) bottom 15% center no-repeat;
	background-size: cover;
	z-index: -1;
}
.topics .cont_header.visual::after {
	background: #e2e2e2 url(../img/topics/lower_header_bg_pc.jpg) top center no-repeat;
	background-size: cover;
}
.feature .cont_header.visual::after {
	background: #e2e2e2 url(../img/feature/lower_header_bg_pc.jpg) bottom center no-repeat;
	background-size: cover;
}

/* 768px */
@media only screen and (max-width: 768px) {
	.cont_header.visual::after {
		/*background: #e2e2e2 url(../img/header_bg_sp.jpg) center center no-repeat;*/
    background-position-x: right 20%;
		background-size: cover;
	}
	.topics .cont_header.visual::after {
		/*background: #e2e2e2 url(../img/topics/lower_header_bg_sp.jpg) right 20% no-repeat;
		background-size: cover;*/
    background-position-x: right 60%;
	}
  .topics .cont_header.visual.lower h1 {
  text-shadow: #FFF 0px 0px 5px,#FFF 0px 0px 5px,#FFF 0px 0px 5px;
}
	.feature .cont_header.visual::after {
		/*background: #e2e2e2 url(../img/feature/lower_header_bg_pc.jpg) center right 30% no-repeat;
		background-size: cover;*/
    background-position-x: right 25%;
	}
	.cont_header.visual,
	.cont_header.visual.large::after {
		background: none;
	}
	.cont_header,
	.cont_header.visual {
		margin: 0 0 30px;
		text-align: center;
	}
	.cont_header.visual h1 {
		font-size: 2.8rem;
		text-align: center;
	}
	.cont_header.visual p {
		width: 100%;
		font-size: 1.6rem;
		margin: 0.2em 0 0;
	}
	.cont_header.visual.lower {
		height: 222px;
		margin: 0 0 30px;
	}
	.cont_header.visual.lower h1 {
		text-align: left;
	}
  .feature .cont_header.visual.lower h1 {
    text-shadow: #FFF 0px 0px 5px,#FFF 0px 0px 5px,#FFF 0px 0px 5px;
  }
}
/* ------------------------------------
	cont_header end
------------------------------------ */


/* ------------------------------------
	btn_area
------------------------------------ */
.btn_area {
	text-align: center;
	letter-spacing: -1em;
	margin: 20px auto;
	font-weight: bold;
}
.btn_area a {
	display: inline-block;
	letter-spacing: 0;
	line-height: 1.5;
	padding: 0.7em 1.5em;
	min-width: 280px;
	max-width: 100%;
	background: #fff;
	color: #333;
	border: 2px solid #333;
	border-radius: 100em;
	margin: 10px;
	text-decoration: none !important;
}
.btn_area a:link,
.btn_area a:visited,
.btn_area a:active,
.btn_area a:hover {
	color: #333;
}
.btn_area a[target='_blank']::after,
.btn_area a[href*='.pdf']::after {
	margin-left: 1em;
}
.btn_area a:hover{
	background-color: #d7f1fc !important;
}
/* ------------------------------------
	btn_area end
------------------------------------ */


/* ------------------------------------
	topics/feature
------------------------------------ */
/* article */
.topics_list article {
	padding: 0 0 75px;
	margin: 0;
}
.topics_list article:last-of-type {
	padding: 0;
}

/* detail */
.topics_content__detail{
	overflow: hidden;
	padding: 0 0 50px;
	border-bottom: 1px dashed #707070;
	margin: 0 0 50px;
}
.topics_content__detail.border_none {
  border-bottom: none;
  margin: 0 0 25px;
}
.topics_content__detail:last-of-type {
	border-bottom: none;
	margin: 0;
	padding: 0;
}
.topics_content__detail h2{
	margin: 0 0 20px;
	color: #293D84;
	font-size: 2.0rem;
	font-weight: 600;
}
.topics_content__detail_txt p {
	font-size: 1.6rem;
	line-height: 1.875;
	font-weight: 300;
	margin-bottom: 30px;
}
.topics_content__detail_txt ul{
	font-size: 1.6rem;
	line-height: 2;
	font-weight: 600;
	margin-top: 20px;
}
.topics_content__detail_txt ul li{
	margin-top: 10px;
}
.topics_content__detail_txt .ul_round{
	margin: 5px 0 0;
}
.topics_content__detail_txt .ul_round li{
	margin-top: 0;
	color: #293D84;
}
.topics_content__detail_txt strong {
	color: #293D84;
	font-weight: 600;
	padding: 6px 0;
	display: block;
}
.topics_content__detail_img01{
	margin-top: 50px;
}
.topics_content__detail_img02 {/*spでも横並び*/
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
}
.topics_content__detail_img02 > div {
	width: calc(50% - 20px);
}
.topics_content__detail_img02.three_column{
  gap: 30px 40px;
}
.topics_content__detail_img02.three_column > div{
  width: auto;
}
.topics_content__detail_img03 {/*spで縦並び*/
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.topics_content__detail_img03 > div {
	width: calc(50% - 20px);
}
.topics_content__detail_img03 > .topics_content__detail_txt{
	width: 50%;
}
.topics_content__detail_img03.j_c_center{
  justify-content: center;
}
[class^="topics_content__detail_img"] p {
	font-size: 1.6rem;
	line-height: 1.875;
	font-weight: 300;
}
[class^="topics_content__detail_img"] .txt_note,
#topics3 [class^="topics_content__detail_img"] + .txt_note{
	line-height: 1.28;
	margin-top: 6px;
	font-size: 1.4rem;
}
[class^="topics_content__detail_img"] + .topics_content__detail_txt{
	margin-top: 30px;
}
.topics_content__detail_imgnote {
  line-height: 1.28;
  margin-top: 6px;
  font-size: 1.4rem;
  text-align: right;
}
/* 768px */
@media only screen and (max-width: 768px) {
	.topics_list article {
		padding: 0 0 30px;
	}
	.topics_list article img {
		width: 100%;
	}
  .topics_content__detail_img02.three_column{
    flex-wrap: wrap;
  }
	.topics_content__detail_img02 > div {
		width: 47.5%;
	}
	.topics_content__detail_img03 > div {
		width: 100% !important;
	}
	.topics_content__detail_img03 > div:not(:first-child) {
		  margin-top: 30px;
	}
	.topics_content__detail_img02 > div {
		width: 47.5%;
	}
	.topics_content__detail_img03 > div {
		width: 100% !important;
	}
	.topics_content__detail_img03 > div:not(:first-child) {
		margin-top: 30px;
	}
}
/* ------------------------------------
	topics/feature end
------------------------------------ */


/* ------------------------------------
	座談会
------------------------------------ */
.zadankai .cont_header.visual.lower {
    align-items: end;
}
.zadankai .cont_header.visual::after {
  background: #e2e2e2 url(../img/zadankai/lower_header_bg_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .zadankai .cont_header.visual::after {
    background: #e2e2e2 url(../img/zadankai/lower_header_bg_sp.jpg) center center no-repeat;
    background-size: cover;
  }
  .zadankai .cont_header.visual.lower h1 {
  text-shadow: #FFF 0px 0px 5px,#FFF 0px 0px 5px,#FFF 0px 0px 5px;
}
}

/* ------------------------------------
	座談会 end
------------------------------------ */


/* ------------------------------------
	footer
------------------------------------ */
#global_footer {
	margin-top: auto;
	text-align: center;
	line-height: 1.1;
}

/* nav */
#cont_menu {
	width: 94%;
	max-width: 800px;
	margin: 0 auto 40px;
	text-align: left;
}
#cont_menu .issue {
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 2;
	margin: 0 0 1.5em;
	text-align: center;
	background: #E8F0F5;
}
#cont_menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  align-items: center;
}
#cont_menu ul li {
	margin: 0;
	padding: 0 0 20px;
}
#cont_menu ul li a {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: 1.4;
	color: #333;
	transition: .2s;
  padding-right: 20px;
}
#cont_menu ul li a:hover{
  color: #002D78;
}
#cont_menu ul li a::after {
	content: '';
	width: 11px;
	height: 11px;
	border-top: solid 2px #293d84;
	border-right: solid 2px #293d84;
	position: absolute;
	top: calc(50% - 7px);
	right: 5px;
	transform: rotate(45deg);
	transition: all 0.3s;
	margin-left: 0.2em;
	transition: .2s;
}
#cont_menu ul li a.active {
	font-weight: bold;
}
#cont_menu ul li a:hover::after{
	background-position-x:left 7px;
	right: 0;
}
#global_footer nav.three_column ul li {
	width: 31%;
	margin: 0 3% 0 0;
}
#global_footer nav.three_column ul li:nth-child(3n) {
	margin: 0;
}

/* home_area */
#global_footer .home_area {
	padding: 20px 10px 20px;
}
#global_footer .home_are a {
	display: inline-block;
}
#global_footer .home_area img {
	max-height: 50px;
  width: auto;
  max-width: 100%;
}
#global_footer .home_area .code{
  width: max-content;
  font-size: 1.2rem;
  text-align: center;
  margin: 20px auto 10px;
  padding: 8px 10px;
  border: 1px solid #ACACAC;
}

/* ft_menu */
#global_footer .ft_menu {
	padding: 21px 20px;
	width: 100%;
	background: #8c9ba5;
}
#global_footer .ft_menu li {
	display: inline-block;
	overflow: hidden;
	margin-right: 80px;
}
#global_footer .ft_menu li:last-child {
	margin-right: 0;
}
#global_footer .ft_menu li a {
	display: inline-block;
	color: #fff;
}
#global_footer .ft_menu li a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent #fff;
	margin: 0 10px;
}

/* copy */
#global_footer .copy {
	width: 100%;
	padding: 24px 20px;
	background: #333;
	color: #fff;
	font-size: 1.2rem;
}

/* 768px */
@media only screen and (max-width: 768px) {
	#global_footer nav.three_column ul li {
		width: 100%;
	}
	#cont_menu {
		width: 100%;
		margin: 0;
		padding: 25px 0 0;
		background: #E8F0F5;
	}
	#cont_menu .issue {
		padding: 0 3% 1em;
		margin: 0;
		text-align: left;
		border-bottom: 2px solid #333;
	}
	#cont_menu ul {
		display: block;
		padding: 0 3%;
	}
	#cont_menu ul li {
		width: 100%;
		margin: 0;
		padding: 0;
		border-bottom: 1px solid #8C9BA5;
	}
	#cont_menu ul li:last-child {
		border-bottom: none;
	}
	#cont_menu ul li a {
		width: 100%;
		padding: 1.3em 0 1.3em 1.5em;
	}
	#cont_menu ul li a::before {
		content: '';
		position: absolute;
		top: 43%;
		left: 3px;
		width: 10px;
		height: 10px;
		border-top: 1px solid #002D78;
		border-right: 1px solid #002D78;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#cont_menu ul li a::after{
		display: none;
	}
	#global_footer .ft_menu {
		padding: 21px 3%;
	}
	#global_footer .ft_menu li {
		margin-right: 20px;
	}
}
/* ------------------------------------
	global_footer end
------------------------------------ */


/* ------------------------------------
	PAGE TOP
------------------------------------ */
#page_top {
	position: fixed;
	bottom: 0;
	right: 40px;
	width: 60px;
	height: 60px;
	background: #333;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
}
#page_top:before {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	border: 0 solid #fff;
	border-top-width: 2px;
	border-left-width: 2px;
	top: 45%;
	transform: rotate(45deg);
}
#page_top:link,
#page_top:hover,
#page_top:active,
#page_top:visited {
	text-decoration: none;
}

/* 768px */
@media only screen and (max-width: 768px) {
	#page_top {
		right: 0;
	}
}
/* ------------------------------------
	PAGE TOP end
------------------------------------ */


/* ------------------------------------
	PC hover
------------------------------------ */
/* opacity */
body.pc_view #global_footer .home_area,
body.pc_view #cont_menu ul li a {
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
}

/* margin */
body.pc_view #global_footer .ft_menu li a::after {
	-webkit-transition: margin 0.2s ease-out;
	-moz-transition: margin 0.2s ease-out;
	transition: margin 0.2s ease-out;
}
body.pc_view #global_footer .ft_menu li a:hover::after {
	margin: 0 5px 0 15px;
}

/* background */
body.pc_view #global_header .sub_menu > ul li a,
body.pc_view .btn_area a {
	-webkit-transition: background-color 0.2s ease-out;
	-moz-transition: background-color 0.2s ease-out;
	transition: background-color 0.2s ease-out;
}
body.pc_view #global_header .sub_menu > ul li a:hover {
	background-color: #003fb5;
}

/* all */
.cf:after {
	content: "";
	clear: both;
	display: block;
}

/* ------------------------------------
	print
------------------------------------ */
@page {
	size: A4 portrait;
	margin: 12.7mm 9.7mm;
}
@media print {
	html,
	body {
		display: block;
	}
	body,
	main {
		width: 1100px;
	}
	body,
	body.gnav {
		padding-top: 0;
	}
	#global_header {
		position: static;
	}
	#global_nav {
		position: static;
	}
	.cont_header,
	.cont_header.visual {
		margin: 0 0 30px;
		text-align: center;
	}
	.cont_header.visual,
	.cont_header.visual.large::after {
		background: none;
	}
	.cont_header.visual h1 {
		font-size: 2.8rem;
		text-align: center;
	}
	#pg_index .cont_header.visual h1 {
		font-size: 4rem;
		text-align: center;
	}
	.cont_header.visual h1 small {
		font-size: 1.6rem;
	}
	.cont_header.visual p {
		width: 100%;
		font-size: 1.6rem;
		margin: 0.2em 0 0;
	}
	.cont_header.visual.lower {
		height: 222px;
		margin: 0 0 30px;
	}
	.cont_header.visual.lower h1 {
		text-align: left;
	}
	#page_top{
		display: none;
		opacity: 0;
	}
}
/* ------------------------------------
	print end
------------------------------------ */
