@charset "utf-8";

/* =======================================

	CommonElements

======================================= */
html * {
	font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", YuGothic, "メイリオ", "Meiryo", "Osaka", "MS Pゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html,
body {
	font-size: 10px;
	display: flex;
}

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%;
}

a:link { text-decoration:none; color: #333;}
a:visited { text-decoration:none; color: #333;}
a:active { text-decoration:none; color: #333;}
a:hover { text-decoration:none; color: #333;}


.sp { display: none; }
@media only screen and (max-width: 768px) {
	.sp { display: block; }
	.pc { display: none !important; }
	.hamburger.sp { display: none !important; }
	.gnav .hamburger.sp { display: block !important; }    
}


/* ------------------------------------

	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: 95%;
	max-width: 1280px;
	margin: 0 auto;
}

#global_header .info .name {
	margin: 0 20px 0 0;
}
#global_header .info .name img {
	max-height: 50px;
	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: #0084d9 10px center no-repeat;
	background-size: 25px;
	color: #fff;
	/* width: 130px; */
	height: 60px;
	padding: 10px 9px 10px 34px;
	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.nav_03 .sub_menu > ul li a.ir { background-image: url(../img/ico_ir_03.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%;
}
#global_header .sub_menu .hamburger a {
	background-color: #333333;
}


/*　ハンバーガーボタン　*/
#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   : 30px;
	height  : 1px ;
	left    : 15px;
	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;
}

/* ナビ開いてる時のボタン */
#global_header .hamburger.active span:nth-child(1) {
	top: 50%;
    left: 15px;
	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;

}


@media only screen and (max-width: 768px) {
	#global_header .wrap {
		width: 94%;
		font-size: 1.2rem;
	}
	#global_header .info .name img {
		max-height: 30px;
		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;
	}
}

/* ------------------------------------

	globalNav

------------------------------------ */
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;
	overflow: hidden;
	text-align: center;
}
#global_nav::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 50px;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 82%, #fff 100%);
	pointer-events: none;
}

#global_nav ul {
	display: inline-block;
	list-style: none;
	letter-spacing: -1em;
	white-space: nowrap;
    overflow-x: auto;
    max-width: 100%;
    height: 100px;
    -webkit-overflow-scrolling: touch;
    position: relative;
}
#global_nav ul li {
	letter-spacing: 0;
	display: inline-block;
	font-size: 1.4rem;
	position: relative;
	padding: 0 1.4em;
}
#global_nav ul li::before {
	background: #999;
}
#global_nav ul li:nth-child(n+2)::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	position: absolute;
	top: 50%;
	left: -2px;
	margin-top: -2px;
}

#global_nav a {
	line-height: 50px;
	color: #333;
}
#global_nav a.active {
	font-weight: bold;
}

/* ------------------------------------

	main

------------------------------------ */
main {
	flex: 1 0 auto;
	min-height: 1px;
	width: 100%;
}

main section {
	width: 100%;
	margin: 0 auto 30px;
}



h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	line-height: 1.5;
	margin: 0.5em 0;
	font-size: 1.6rem;
}
h1 {
	font-size: 2.6rem;
}
h2 {
	font-size: 2rem;
}


main a:visited { text-decoration:none; color: #0084d9; font-weight: bold;}
main a:active { text-decoration:none; color: #0084d9; font-weight: bold;}


main .icon {
  position: relative;
  display: inline-block;        
  padding-right: 2.4em;        
}

main .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%); 
  width: 1em;
  height: 1em;
  background: transparent url(../img/ico_pdf.png) center center no-repeat;
  background-size: 100%;
}





main .icon:hover::after,
main .icon:focus-visible::after{
  background-image:url("../img/ico_pdf1.png");
}


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;
}

.btn_area a.blank::after{
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background: transparent url(../img/ico_blank.png) center center no-repeat;
    background-size: 100%;
    margin-left: 1.8rem;
    margin-bottom: -2px;
    
}

.btn_area a.blank:hover::after{
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background: transparent url(../img/ico_blank1.png) center center no-repeat;
    background-size: 100%;
    margin-left: 1.8rem;
    margin-bottom: -2px;
    
}

main a.img_link::after {
	content: none;
}

main p {
	margin: 0 0 1em;
}
main p:last-child {
	margin: 0;
}

main img {
	max-width: 100%;
}

main figure {
	margin: 0 auto 30px;
}

.base_wrap {
	width: 94%;
	max-width: 800px;
	margin: 0 auto 100px;
	position: relative;
}
.base_wrap.wide {
	max-width: 1100px;
}
.base_wrap.tiny {
	max-width: 700px;
}

@media only screen and (max-width: 768px) {
	h2 {
		font-size: 1.8rem;
	}
	body.gnav {
		padding-top: 80px;
	}
	#global_nav {
		display: none;
	}
}


/* ------------------------------------
	cont_header
------------------------------------ */
.cont_header {
	background: #e2e2e2;
	margin: 0 0 50px;
}
.cont_header .wrap {
	width: 92%;
	max-width: 800px;
	margin: 0 auto;
}
.cont_header h1 {
	margin: 0;
}
.cont_header .txt_catch {
	font-weight: bold;
}

/* cont_header visual */
.cont_header.visual {
	height: 250px;
	display: flex;
	align-items: center;
	margin: 0 0 120px;
	position: relative;
	overflow: hidden;
}
.cont_header.visual::after {
	/* content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #e2e2e2;
	background-size: cover;
	z-index: -1; */

	  content: '';
  position: absolute;
  inset: 0;  /* top:0; right:0; bottom:0; left:0; のショートハンド */

  /* 下がグレー、その上に白グラデーション */
  background:
    linear-gradient(
      to right,
      rgba(255,255,255,1)   0%,   /* 左はしっかり白 */
      rgba(255,255,255,0.7) 55%,  /* だんだん薄く */
      rgba(255,255,255,0)   80%   /* 右で透明 */
    ),
    #e2e2e2;  /* ベースのグレー */

  z-index: -1;           /* 後で人画像を上に載せる用 */

	
}
.cont_header.visual .wrap {
	max-width: 1100px;
}
.cont_header.visual h1 {
	text-align: left;
	font-size: 5rem;
}
.cont_header.visual h1 small {
	display: block;
	font-size: 2.5rem;
	padding: 0.5em 0 0.2em;
}
.cont_header.visual p {
	font-size: 2rem;
	line-height: 1.5;
	margin: 1em 0 0;
}
.cont_header.visual .catch {
	font-size: 2.2rem;
	line-height: 2;
}

/* cont_header visual large */
.cont_header.visual.large {
	height: 500px;
}
@media only screen and (max-width: 768px) {
	.cont_header,
	.cont_header.visual {
		margin: 0 0 50px;
	}
	.cont_header.visual h1 {
		font-size: 2.8rem;
	}
	.cont_header.visual h1 small {
		font-size: 1.6rem;
	}
	.cont_header.visual p {
		font-size: 1.6rem;
	}

}



/* ------------------------------------
	cont_menu
------------------------------------ */
#cont_menu {
	width: 94%;
	max-width: 800px;
	margin: 40px auto 40px;
	text-align: left;
}
#cont_menu .issue {
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 2;
	padding: 0 0 0.5em;
	margin: 0 0 1em;
	border-bottom: 1px solid #707070;
}
#cont_menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
#cont_menu ul li {
	width: 48%;
	margin: 0 4% 0 0;
	padding: 0 0 20px;
}
#cont_menu ul li:nth-child(even) {
	margin-right: 0;
}


/* 親リンクにスペースと相対配置 */
#cont_menu ul li a{
  position: relative;
  padding-left: 1.2em;   
  font-weight: bold;
}

/* 左側の丸（ドット） */
#cont_menu ul li a::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;               /* 縦中央に配置 */
  transform: translateY(-50%);
  width: 10px;            /* 直径 */
  height: 10px;           /* 直径 */
  background-color: #009944;  /* 好きな色 (#002D78等) */
  border-radius: 50%;     /* 真円に */
}

#cont_menu ul li a.active {
	font-weight: bold;
}

@media only screen and (max-width: 768px) {
	#cont_menu {
		width: 100%;
		padding: 25px 3% 10px;
		background: #EAEAEA;
	}
	#cont_menu ul {
		display: block;
	}
	#cont_menu ul li {
		width: 100%;
		margin: 0;
	}
}

/* ------------------------------------
	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-top: 4rem;
	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.icon-right[target='_blank']::after{
	margin-left: 2em !important;
}

.contents-4 .btn_area a.icon-right[target='_blank']::after{
	margin-left: 5.5em !important;
}

@media(max-width: 768px){
.btn_area a.icon-right[target='_blank']::after{
	margin-left: 2.5em !important;
}

.contents-4 .btn_area a.icon-right[target='_blank']::after{
	margin-left: 5.5em !important;
}
}


/* ------------------------------------

	footer

------------------------------------ */

#global_footer {
	margin-top: auto;
	text-align: center;
	line-height: 1.1;
}

#global_footer .home_area {
	padding: 10px 10px 20px;
}
#global_footer .home_are a {
	display: inline-block;
}
#global_footer .home_area img {
	max-height: 50px;
}

#global_footer .ft_menu {
	background: #999;
	padding: 21px 20px;
}
#global_footer .ft_menu li {
	display: inline-block;
	overflow: hidden;
	padding: 0 20px;
}
#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;
}

#global_footer .copy {
	width: 100%;
	padding: 24px 20px;
	background: #333;
	color: #fff;
	font-size: 1.2rem;
}

/* ベース：リンク本体 */
#global_footer .ft_menu li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;              /* 文字と矢印の間隔 */
}

/* ベース：矢印 */
#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 #009944; /* 通常時の色 */
  transition: transform .3s ease, border-color .3s ease;
}

/* ホバー時：少し右にスライド */
#global_footer .ft_menu li a:hover::after {
  transform: translateX(6px);
}

@media only screen and (max-width: 768px) {

}



/* ------------------------------------
	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: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 0 solid #fff;
	border-top-width: 2px;
	border-left-width: 2px;
	transform: rotate(45deg);
}
#page_top:link, #page_top:hover, #page_top:active, #page_top:visited {
	text-decoration: none;
}
@media only screen and (max-width: 768px) {
	#page_top {
		right: 0;
	}
}

/* all */

/* =====================================
	ClearFixElements
===================================== */
.cf:after {
	content: "";
	clear: both;
	display: block;
}

@media print {
 	body {
        width: 1280px !important;
    }
	body,
	body.gnav {
				  padding-top: 0;
	}
	#global_header {
				  position: static; /*position: fixed;*/
	}
	#global_nav {
				  position: static; /*position: fixed;*/
	}
	#page_top{
				  display: none;
	}
}