@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

:root{
	--main-color:#6FBA2C;
	--sub-color:#1D50A2;
}
/* ------------------------------------
	html,body
------------------------------------ */
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;
	-webkit-print-color-adjust: exact;
}
body{
	line-height: 2;
	color: #333;
	text-align: left;
	background: #fff;
	font-size: 16px;
	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;
}

/* 768px */
@media only screen and (max-width: 768px) {
	body{
		padding: 80px 0 0;
	}
	.sp {
		display: block;
	}	
}
/* ------------------------------------
	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: 60px;
	vertical-align: middle;
}
#global_header .info .code {
	display: inline-block;
}
.sub_menu {
	display: flex;
}
.sub_menu > ul li a {
	display:flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 60px;
	background-repeat: no-repeat;
	background-position: 100% 0;
	background-size: 200% auto;
	background-image: linear-gradient(to right, var(--sub-color) 0%, var(--sub-color) 50%, #fff 50%, #fff 100%);
	transition: background-position ease 0.4s;
	text-align: center;
	color:var(--main-color);
	font-size: 1.4rem;
	font-weight: bold;
	border:2px solid var(--main-color);
	position:relative;
}
.sub_menu > ul li a:hover {
	background-position: 0 0;
	border-color:var(--sub-color);
	color:#fff;
}
.sub_menu > ul li a img.hover_after,
.sub_menu > ul li a:hover img.hover_before {
	display: none;
}
.sub_menu > ul li a img.hover_before,
.sub_menu > ul li a:hover img.hover_after{
	display:block;
}
.sub_menu > ul li a img {
	width: 30px;
	padding-right:10px;
}

/*　hamburger　*/
.hamburger {
	position: relative;
	z-index : 3;
	width : 60px;
	height: 60px;
	margin: 0 0 0 3px;
	cursor: pointer;
	text-align: center;
	background-color: #333;
}
.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;
}
.hamburger span:nth-child(1) {
	top: 20px;
}
.hamburger span:nth-child(2) {
	top: 30px;
}
.hamburger span:nth-child(3) {
	top: 40px;
}

/* hamburger_open */
.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);
  }
.hamburger.active span:nth-child(2),
.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: #333;
	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%;
	border-bottom: solid 1px #8C9BA5;
	transition: .4s all;
	font-size: 1.6rem;
	font-weight: bold;
}
.global_menu_sp ul li:first-child {
	padding: 30px 0;
	font-size: 2rem;
	color:var(--sub-color);
}
.global_menu_sp ul li a {
	display: block;
	padding: 22px 0;
	text-align: left;
}

/* このクラスを、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 {
		width: 45%;
	}
	#global_header .info .name {
		margin: 0 10px 0 0;
	}
	#global_header .info .name img {
		max-height: 30px;
		margin: 5px 0;
	}
	.sub_menu > ul li a {
		width: 60px;
		gap:2px;
		border-color:var(--main-color) !important;
		background: #fff;
		color: var(--main-color) !important;
		flex-direction: column;
		font-size: 1rem;
	}
	.sub_menu > ul li a img.hover_before{
		display: block !important;
		padding:0;
		width:20px;
	}
	.sub_menu > ul li a img.hover_after{
		display: none !important;
	}
	.sub_menu > ul li a > span {
		height:15px;
	}
	.global_menu_sp.active {
		left: 0;
	}
}
/* ------------------------------------
	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;
	text-align: left;
	overflow: hidden;
}
#global_nav ul {
	position: relative;
	display: block;
	list-style: none;
	white-space: nowrap;
	width: 90%;
	max-width: 1280px;
    height: 50px;
	margin: 0 auto;
	overflow-x: auto;
}
#global_nav ul li {
	letter-spacing: 0;
	display: inline-block;
	font-size: 1.4rem;
	position: relative;
	margin: 0 15px;
}
#global_nav ul li::after,
#global_nav a.active::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 4px;
	left: 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::after{
	bottom: 0;
	background-color: rgba(0,45,120,0);
}
#global_nav ul li:hover::after {
	background-color:var(--sub-color);
}
#global_nav ul li:first-child {
	margin: 0 22px 0 0;
}
#global_nav a {
	line-height: 50px;
	font-weight: bold;
	position: relative;
}
#global_nav a.active,
#global_nav a:hover{
	color: var(--sub-color);
}
#global_nav a.active::after {
    bottom:-16px;
    background-color:var(--sub-color);
}

/* 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 article{
	width: 100%;
	margin: 0 auto 120px;
}
main section {
	width: 100%;
	margin: 0 auto 80px;
}
h1,
h2,
h3{
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 30px;
}
h1 {
	font-size: 2.6rem;
}
h2 {
	font-size: 2.4rem;
	color:var(--sub-color);
}
h3 {
	font-size: 2rem;
}
main a[target='_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: 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 p {
	margin: 0 0 15px;
	text-align: left;
}
main img {
	width: 100%;
	max-width: 100%;
}
.contents_wrap {
	width: 94%;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}
.flex{
	display: flex;
}
.text-right{
	text-align: right;
}
figcaption{
	font-weight: bold;
}

/* 768px */
@media only screen and (max-width: 768px) {
	main section {
		margin: 0 auto 50px;
	}
	h2 {
		margin: 0 0 26px;
	}
	h3 {
		padding: 10px 0 0;
	}
}
/* ------------------------------------
	main end
------------------------------------ */


/* ------------------------------------
	cont_header
------------------------------------ */
.cont_header .wrap {
	width: 92%;
	max-width: 800px;
	margin: 0 auto;
	padding: 30px 0;
	height:100%;
}
.cont_header h1 {
	margin: 0;
	text-align: center;
}

/* cont_header visual */
.cont_header.visual {
	height: 290px;
	display: flex;
	align-items: center;
	margin:0 0 80px; 
	position: relative;
	color:#fff;
	font-weight: bold;
}
.cont_header.visual .wrap {
	max-width: 1100px;
	display: grid;
	align-items: center;
}
.cont_header.visual h1 {
	text-align: left;
	font-size: 5rem;
}
.cont_header.visual h1 small {
	display: block;
	font-size: 2.5rem;
	padding: 5px 0 2px;
}
.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-size: cover;
	z-index: -1;
}

/* 768px */
@media only screen and (max-width: 768px) {
	.cont_header,
	.cont_header.visual {
		margin: 0 0 30px !important;
		text-align: center;
	}
	.cont_header.visual h1 {
		font-size: 2.8rem;
	}
	.cont_header.visual p {
		width: 100%;
		font-size: 1.6rem;
		margin: 0.2em 0 0;
	}
}
/* ------------------------------------
	cont_header end
------------------------------------ */


/* ------------------------------------
	btn_area
------------------------------------ */
.btn_area {
	text-align: center;
	letter-spacing: -1em;
	margin: 40px 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;
	border: 2px solid #333;
	border-radius: 100em;
	margin: 10px;
}
.btn_area a[target='_blank']::after,
.btn_area a[href*='.pdf']::after {
	margin-left: 1em;
}
/* ------------------------------------
	btn_area end
------------------------------------ */


/* ------------------------------------
	global_footer
------------------------------------ */
#global_footer {
	margin-top: auto;
	text-align: center;
	line-height: 1.1;
}

/* cont_menu */
#cont_menu {
	width: 94%;
	max-width: 800px;
	margin: 0 auto 40px;
	text-align: left;
}
.issue {
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 2;
	padding: 0 0 5px;
	margin: 0 0 30px;
	border-bottom: 1px solid var(--main-color);
}
#cont_menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
#cont_menu ul li {
	padding: 0 0 20px;
	width: 31%;
	margin: 0 3% 0 0;
}
#cont_menu ul li:nth-child(3n) {
	margin: 0;
}
#cont_menu ul li a {
	display: inline-block;
	position: relative;
	padding: 0 0 0 20px;
	line-height: 1.4;
}
#cont_menu ul li a::before {
	content: '';
	position: absolute;
	top:3px;
	left: 0;
	width:0;
	height:14px;
	border-left: 2px solid var(--main-color);
}

/* home_area */
.home_area {
	padding: 20px 10px 20px;
}
.home_are a {
	display: inline-block;
}
.home_area img {
	max-height: 50px;
}

/* ft_menu */
.ft_menu {
	background:var(--sub-color);
	padding:20px;
}
.ft_menu li {
	display: inline-block;
	overflow: hidden;
	margin-right: 80px;
}
.ft_menu li:last-child {
	margin-right: 0;
}
.ft_menu li a {
	display: inline-block;
	color: #fff;
}
.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 */
.copy {
	width: 100%;
	padding: 24px 20px;
	font-size: 1.2rem;
}

/* 768px */
@media only screen and (max-width: 768px) {
	#cont_menu {
		width: 100%;
		margin: 0;
	}
	.issue {
		padding: 0 3% 1em;
		margin: 0;
	}
	#cont_menu ul {
		display: block;
		padding: 0 3%;
	}
	#cont_menu ul li {
		width: 100%;
		margin: 0;
		padding: 0;
		border-bottom: 1px solid var(--main-color);
	}
	#cont_menu ul li a {
		width: 100%;
		padding: 1.3em 0 1.3em 1.5em;
	}
	#cont_menu ul li a::before {
		top: 39%;
		left: 3px;
	}
	.ft_menu {
		/* background: #999; */
		padding: 21px 3%;
	}
	.ft_menu li {
		margin-right: 20px;
	}
}
/* ------------------------------------
	global_footer end
------------------------------------ */


/* ------------------------------------
	PAGE TOP
------------------------------------ */
#page_top {
	position: fixed;
	bottom: 0;
	right: 40px;
	width: 60px;
	height: 60px;
	background:var(--sub-color);
	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);
}
@media only screen and (max-width: 768px) {
	#page_top {
		right: 0;
	}
}
/* ------------------------------------
	PAGE TOP end
------------------------------------ */

/* ------------------------------------
	PC hover
------------------------------------ */
/* opacity */
body.pc_view #global_footer .home_area{
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
}
body.pc_view #global_footer .home_area a:hover {
	opacity: 0.6;
}
body.pc_view #cont_menu ul li a:hover {
	opacity: 0.7;
}

/* 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;
}

/* all */
/* =====================================
	ClearFixElements
===================================== */
.cf:after {
	content: "";
	clear: both;
	display: block;
}


/* ------------------------------------
	print
------------------------------------ */
@media print {
	* {
		-webkit-print-color-adjust: exact;
		font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	}
	body {
        zoom: .7;
	}
	body,
	body.gnav {
		padding-top: 0;
	}
	#global_header,
	#global_nav{
		position: static;
	}
	main article{
		margin:0 auto 50px !important;
	}
	section,
	.cont_header,
	.cont_header.visual {
		margin: 0 0 30px !important;
	}
	.sub_menu > ul li a {
		background:none;
	}
	.cont_header.visual h1 {
		font-size: 2.8rem;
	}
	.cont_header.visual p {
		width: 100%;
		font-size: 1.6rem;
		margin: 0.2em 0 0;
	}
	#page_top{
		display: none;
	}
}
