@charset "utf-8";

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

/* ------------------------------------
	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{
	font-family: Hiragino Sans Pr6N;
}
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;
	}
}
/* ------------------------------------
	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: inherit;
	margin: 0 auto;
}

/* left-content */
#global_header .info {
	display:flex;
	align-items: center;
}
#global_header .info .name {
	margin: 0 20px 0 0;
}
#global_header .info a object{
	width:300px;
	pointer-events:none;
}
#global_header .info .code {
	display: inline-block;
}

/* right-content */
.sub_menu,
.sub_menu > ul {
	display: flex;
}
.sub_menu > ul li {
	margin: 0 0 0 10px;
}
.sub_menu > ul li a {
	display: block;
	width: 120px;
	padding: 15px 10px;
	background-repeat: no-repeat;
	background-position: 100% 0;
	background-size: 200% auto;
	background-image: linear-gradient(to right, #DE873F 0%, #DE873F 50%, #3465A6 50%, #3465A6 100%);
	transition: background-position ease 0.4s;
	text-align: center;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
}
.sub_menu > ul li a:hover {
	background-position: 0 0;
}
.sub_menu > ul li a img {
	width: 35%;
	padding: 0 10px 6px 0;
}

/*　hamburger　*/
.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;
}
.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: #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: #DE873F;
}
.global_menu_sp ul li a {
	display: block;
	color: #222;
	padding: 22px 0;
	text-align: left;
	text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
 .global_menu_sp.active {
	opacity: 100;
}

/* 768px */
@media only screen and (max-width: 768px) {
	#global_header .wrap {
		width: 94%;
		font-size: 1.4rem;
		height: 80px;
		margin: auto;
	}
	#global_header .info {
		width: 45%;
		flex-wrap:wrap;
	}
	#global_header .info .name {
		margin: 0 10px 0 0;
	}
	#global_header .info a object{
		width:210px;
	}
	#global_header .info .code {
    	padding-left: 18px;
    	font-size: 13px;
  	}
	.sub_menu > ul li {
		margin: 0 0 0 4px;
		background: #3465A6;
		width:60px;
		height:60px;
		text-align: center;
	}
	.sub_menu > ul li :hover {
		background: #DE873F !important;
	}
	.sub_menu > ul li a {
		color: #fff;
		background-size: 35px;
		background-image: none;
		padding: 5px 10px;
		font-size: 13px;
		width: 100%;
		height: 100%;
	}
	.sub_menu > ul li a img {
		width: 70%;
		padding: 0;
	}
	.hamburger.sp {
		display: none !important;
	}
	.gnav .hamburger.sp {
		display: block !important;
	}
	.global_menu_sp.active {
		left: 0;
	}
	.global_menu_sp ul li:first-child {
		color: #3465A6;
		font-weight: bold;
  	}
}
/* ------------------------------------
	global_header end
------------------------------------ */


/* ------------------------------------
	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;
	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: linear-gradient(to right,#DE873F 0%,#696969 51%,#3465A6 100%);
	transition: .3s;
	opacity:0;
}
#global_nav ul li:hover::after{
	opacity:1;
}
#global_nav ul li:first-child {
	margin: 0 1.4em 0 0;
}
#global_nav a {
	line-height: 50px;
	font-weight: bold;
	position: relative;
}
#global_nav a.active:after {
	content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: -15px;
	background:  linear-gradient(to right,#DE873F 0%,#696969 51%,#3465A6 100%);
	-webkit-transition: background-color 0.2s ease-out;
	-moz-transition: background-color 0.2s ease-out;
	transition: background-color 0.2s ease-out;
}

/* min-769px */
@media screen and (min-width: 769px) {
	body.pc_view #global_nav ul li::after {
    	z-index: -1;
  	}
	#global_nav ul li {
		font-size: 16px;
		position: relative;
	}
	body.pc_view #global_nav a {
		min-height: 50px;
		display: inline-block;
  	}
  	#global_nav ul li a.active:after {
    	bottom: 0;
  	}
}
/* 768px */
@media only screen and (max-width: 768px) {
	body.gnav {
		padding-top: 80px;
	}
	#global_nav {
		display: none;
	}
}
/* ------------------------------------
	globalNav end
------------------------------------ */


/* ------------------------------------
	main
------------------------------------ */
main {
	flex: 1 0 auto;
	min-height: 1px;
	width: 100%;
}
main section {
	width: 100%;
	margin: 0 auto 100px;
}
main section:last-child {
	margin-bottom: 120px;
}
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: #3465A6;
}
p.font-bold{
	color: #333;
}
p.font-bold2{
	color: #3465A6;
}
h2 {
	font-size: 2.4rem;
	margin: 0 0 28px;
	color: #333;
}
h3 {
	padding: 15px 0 0;
	margin: 0 0 24px;
}
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 10px;
	font-size: 16px;
}
main p:last-child {
	margin: 0;
}
main img {
	width: 100%px;
	max-width: 100%;
}
main figure {
	margin: 0 auto 30px;
}
.contents_wrap {
	width: 94%;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}
.base_wrap {
	width: 94%;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}
img {
	image-rendering: -webkit-optimize-contrast;
}
.font-bold{
	font-weight: bold;
}
.font-bold2{
	font-weight: bold;
}
.font-normal {
	font-weight: normal;
}
.text-right {
	text-align: right;
}

.flex {
	display: flex;
	justify-content: space-around;
}
.flex > p {
	width: 70%;
	font-size: 14px;
}
.flex figure {
	margin: 0;
}
.image.flex {
	justify-content: space-between;
}



.xsp {
	display: none !important;
}

.xsp2 {
	display: none !important;
}

@media only screen and (max-width: 380px) {
.xsp2 {
	display: block !important;
}
}

@media only screen and (max-width: 576px) {
.xsp {
	display: block !important;
}
}

/* min-769px */
@media only screen and (min-width: 769px) {
	.br-sp {
		display: none;
	}
}
/* 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;
		font-size: 20px;
	}
	.flex {
		display: block;
	}
	.flex > p {
		width: 100% !important;
	}
}

/* ------------------------------------
	cont_header
------------------------------------ */
.cont_header {
	margin: 0 0 50px;
}
.cont_header .wrap {
	width: 92%;
	max-width: 800px;
	margin: 0 auto;
	padding: 30px 0;
}
#pg_index .cont_header .wrap {
margin:unset
}
.cont_header h1 {
	margin: 0;
}

/* cont_header visual */
.cont_header.visual {
	height:290px;
	display: flex;
	align-items: center;
	margin: 0 0 100px;
	position: relative;
}
#pg_index .cont_header.visual {
position: relative;
display: flex;
justify-content: flex-end;
}
#pg_index .cont_header.visual .wrap {
	max-width: 520px;
}
.cont_header.visual .wrap {
	max-width: 1100px;
}
.cont_header.visual h1 {
	position: relative;
	text-align: left;
	font-size: 5rem;
}
.cont_header.visual p {
	font-size: 2rem;
	line-height: 1.5;
	margin: 0 0 28px 0;
}

/* cont_header visual background-image*/
#pg_index .cont_header.visual::before,
.content-2 .cont_header.visual::before,
.content-3 .cont_header.visual::before{
	content: '';
    background-image: url(../img/watermark.png);
	background-repeat:  no-repeat;
	background-position: right center;	
    position: absolute;
    right: 0;
	top:0;
    height: 100%;
    width: 40%;
    display: block;
    background-size: contain;
}
.content-2 .cont_header.visual::before,
.content-3 .cont_header.visual::before{
	width:100%;
	right: -50px;
}
.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) {
	#pg_index .cont_header .wrap {
		margin:0 auto
		}
	.cont_header,
	.cont_header.visual {
		margin: 0 0 30px;
		text-align: center;
	}
	.cont_header.visual{
		background: none;
		height: auto !important;
	}
	.cont_header.visual h1 {
		font-size: 2.8rem;
		text-align: left;
	}
	.cont_header.visual p {
		width: 100%;
		font-size: 1.6rem;
		margin: 0.2em 0 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: 10px;
	text-decoration: none !important;
}
.btn_area a[target='_blank']::after,
.btn_area a[href*='.pdf']::after {
	margin-left: 1em;
}
/* ------------------------------------
	main end
------------------------------------ */


/* ------------------------------------
	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 100px;
	text-align: left;
}
#cont_menu .issue {
	font-size: 18px;
	line-height: 2;
	padding: 0 0 5px 0;
	margin: 0 0 29px 0;
	border-bottom: 1px solid #333;
	font-weight: bold;
}
#cont_menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  padding:0;
}
#cont_menu ul li {
	width: 100%;
	text-align: center;
	padding:10px;
}
#cont_menu ul li:nth-child(even) {
	margin-right: 0;
}
#cont_menu ul li a {
	display: inline-block;
	position: relative;
	padding: 0 0 0 20px;
	line-height: 1.4;
	color: #333;
}
#cont_menu ul li a::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #3465A6;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -6px;
}
#cont_menu ul li a.active {
	font-weight: bold;
}

/* banner_area */
.banner_area {
	padding: 20px 10px 30px;
	max-width: 920px;
	margin: auto;
}
.banner_area a:hover img {
	opacity: 0.6;
	max-height: 70px;
}

/* ft_menu */
.ft_menu {
	text-align: center;
	background: linear-gradient(to left, #3465A6 0%, #7A737B 30%, #DE873F 100%);
	height: 4em;
}
.ft_menu ul {
	padding: 20px;
}
.ft_menu li {
	display: inline-block;
	overflow: inherit;
	margin-right: 80px;
}
.ft_menu li:last-child {
	margin-right: 0;
}
.ft_menu li a {
	display: inline-block;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}
.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: 18px;
	background: #31261F;
	color: #fff;
	font-size: 1.2rem;
}

/* min-769px */
@media screen and (min-width: 769px) {
	#cont_menu .issue span {
		color: #FFF;
		font-size: 1.5rem;
	}
	#cont_menu ul li {
		width: 22%;
		margin: 0 3% 0 0;
	}
	#cont_menu ul li:first-child,
	 #cont_menu ul li:nth-of-type(2) {
		text-align: left;
	}
	#cont_menu ul li:nth-of-type(3),
	 #cont_menu ul li:last-child {
		text-align: right;
	}
	.copy {
		height: 60px;
		padding:25px;
	}
}
/* 768px */
@media only screen and (max-width: 768px) {
	#cont_menu {
		width: 100%;
		margin: 0 0 10px 0;
		padding: 25px 0 0;
		background: #e0e8f2;
	}
	#cont_menu .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 #333;
		text-align: left;
	}
	#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 {
		top: 50%;
		left: 3px;
		width: 10px;
		height: 10px;
		border-style: none;
		border-top: 1px solid #333;
		border-right: 1px solid #333;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.banner_area ul li {
		margin-bottom: 10px;
	}
	.ft_menu {
		padding: 21px 3%;
	}
	.ft_menu ul {
		padding:0 !important;
	}
	.ft_menu li {
		margin-right: 20px;
	}
	.copy {
		padding:10px;
		line-height: 1.8;
	}
}
/* ------------------------------------
	footer end
------------------------------------ */


/* ------------------------------------
	PAGE TOP
------------------------------------ */
#page_top {
	position: fixed;
	bottom: 0;
	right: 40px;
	width: 60px;
	height: 60px;
	background: #31261F;
	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);
	left:37%;
}
#page_top:link,
#page_top:hover,
#page_top:active,
#page_top:visited {
	text-decoration: none;
}
#page_top.page_btn_02 {
	border-radius: 50%;
}
.top_btn #page_top.page_btn_02 {
	bottom: 80px;
}
#page_top.page_btn_03 {
	padding: 30px 0 0;
	border-radius: 10px;
	color: #333;
	font-weight: bold;
	background-color: #fff;
	border: 2px solid #333;
}
#page_top.page_btn_03::before {
	width: 0;
	height: 0;
	top: 20%;
	border: none;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 13px solid #333333;
	transform: rotate(0);
}
.top_btn #page_top.page_btn_03 {
	bottom: 160px;
}
#page_top.page_btn_04 {
	width: 212px;
	right: 0;
	font-weight: bold;
}
#page_top.page_btn_04::before {
	display: none;
}
.top_btn #page_top.page_btn_04 {
	bottom: 240px;
;
}
@media only screen and (max-width: 768px) {
	#page_top {
		right: 0;
	}
}
/* ------------------------------------
	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;
}
body.pc_view #global_footer .home_area: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;
}

/* background */
body.pc_view .btn_area a:hover {
	background-color: #e2e2e2;
}

/* 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;
	}
	.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;
	}
	.cont_header.visual p {
		width: 100%;
		font-size: 1.6rem;
		margin: 0.2em 0 0;
	}
	#cont_menu ul li{
		width:auto;
	}
    #page_top {
		display: none;
	}
}

