@charset "UTF-8";
/* LAYOUT */
/* for NARROW DISPLAY */
/* for SMARTPHONE */
/* for TABLET < */
/* for PC DISPLAY < */
main {
	position: relative;
}

#header, #content {
	position: relative;
	margin: auto;
}

#header {
	z-index: 2000;
}

#content {
	position: 0;
}

/*
#footer {
z-index: 1000;
}
*/
/* HEADER 
============================== */
#header {
	color: #000;
	background-color: #FFF;
	-webkit-box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.2);
}

#header a {
	color: #000;
}

#header .site_title {
	z-index: 100;
}

#header #head_menu {
	z-index: 200;
}

#header .headmenu_btn {
	z-index: 300;
}

#header .site_title {
	margin-top: 1.2em;
	margin-bottom: 1.2em;
	display: inline-block;
	text-decoration: none;
}

#header .site_title ._logo {
	width: 10em;
	height: 2.69em;
	vertical-align: bottom;
}

#header .site_title ._subtitle {
	display: block;
	margin-left: 0.5em;
	line-height: 1.5;
}

@media all and (min-width: 768px) {
	#header {
		height: 14rem;
	}
}

/* z-index */
@media all and (min-width: 768px) {
	#header .site_title {
		z-index: 300;
	}
	#header #head_menu {
		z-index: auto;
	}
	#header .site_menu {
		z-index: 100;
	}
	#header .info_menu {
		z-index: 200;
	}
}

/* site_title */
@media all and (min-width: 768px) {
	#header {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
	}
	#header .site_title ._subtitle {
		display: inline-block;
		margin-left: auto;
		font-size: 1.125em;
	}
}

/* headmenu_btn */
html.-fixed {
	position: fixed;
	overflow: hidden;
}

#header .headmenu_btn {
	display: none;
}

@media only screen and (max-width: 767px) {
	#header .headmenu_btn {
		border-color: #ccc;
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		margin: 1rem;
		padding-top: 0.5em;
		padding-bottom: 0.5em;
		width: 1em;
		height: 1em;
		border-style: solid;
		border-width: thin;
		background-color: rgba(255, 255, 255, 0.2);
		font-size: 4.4rem;
	}
	#header .headmenu_btn:before, #header .headmenu_btn:after {
		border-color: #ccc;
	}
	/* open */
	#headmenu_switch + .headmenu_btn:before, #headmenu_switch + .headmenu_btn:after {
		content: '';
		display: block;
		position: absolute;
		right: 0;
		left: 0;
		margin: auto;
		width: 0.6em;
		height: 0.3em;
		border-style: solid;
		-webkit-transition: height 0.2s ease 0.2s, transform 0.2s ease 0s;
		-ms-transition: height 0.2s ease 0.2s, transform 0.2s ease 0s;
		transition: height 0.2s ease 0.2s, transform 0.2s ease 0s;
	}
	#headmenu_switch + .headmenu_btn:before {
		top: 50%;
		border-width: 1px 0 2px;
	}
	#headmenu_switch + .headmenu_btn:after {
		bottom: 50%;
		border-width: 2px 0 1px;
	}
	#headmenu_switch:checked + .headmenu_btn {
		position: fixed;
	}
	#headmenu_switch:checked + .headmenu_btn:before, #headmenu_switch:checked + .headmenu_btn:after {
		top: 0;
		bottom: 0;
		height: 0;
		-webkit-transition: height 0.2s ease 0s, transform 0.2s ease 0.2s;
		-ms-transition: height 0.2s ease 0s, transform 0.2s ease 0.2s;
		transition: height 0.2s ease 0s, transform 0.2s ease 0.2s;
	}
	#headmenu_switch:checked + .headmenu_btn:before {
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#headmenu_switch:checked + .headmenu_btn:after {
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	/* close */
}

/* head_menu */
/*
#head_menu, 
#head_menu a {
  color: #FFF;
}
#head_menu {
  display: block;
}
#head_menu .menu_list a {
  letter-spacing: 0.1em;
}
*/
#head_menu {
	color: #FFF;
}

#head_menu a {
	color: inherit;
}

#head_menu .submenu_block .submenu_list {
	list-style: none;
}

@media only screen and (max-width: 767px) {
	#head_menu {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		margin: auto;
		padding-left: 0;
		padding-right: 5rem;
		background-color: rgba(0, 0, 0, 0.8);
		text-align: left;
		overflow: hidden;
	}
	#headmenu_switch ~ #head_menu {
		max-height: 0;
		padding: 0;
		overflow-y: auto;
		-webkit-transition: 0.4s all ease;
		-ms-transition: 0.4s all ease;
		transition: 0.4s all ease;
	}
	#headmenu_switch:checked ~ #head_menu {
		height: 100%;
		height: 100vh;
		max-height: 100vh;
		-webkit-box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.2);
		-moz-box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.2);
		box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.2);
	}
}

@media print, (min-width: 768px) {
	#head_menu {
		background-color: #101885;
	}
}

@media only screen and (max-width: 767px) {
	#head_menu .site_menu {
		padding: 1.5rem 5.5rem 1.5rem 0;
	}
	#head_menu .site_menu .menu_list .menu:not(.menu_home) {
		display: none;
	}
	#head_menu .submenu_block {
		margin-top: 1.5rem;
	}
	#head_menu .submenu_block .work_list, #head_menu .submenu_block .submenu_group, #head_menu .submenu_block .submenu_img {
		display: none;
	}
	#head_menu .submenu_block .submenu_head {
		padding-bottom: 0.5em;
		border-style: solid;
		border-width: 0 0 1px;
		font-size: 0.875em;
		letter-spacing: 0.1em;
		text-indent: 0.1em;
	}
	#head_menu .submenu_block > .inner {
		width: auto;
	}
	#head_menu .site_menu .menu_home, #head_menu .submenu_block a {
		display: block;
		position: relative;
		padding: 0.5em 0 0.5em 1.5em;
		line-height: 1;
		font-size: 0.875em;
	}
	#head_menu .site_menu .menu_home::before {
		content: '';
		display: inline-block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		width: 0.6em;
		height: 0.6em;
		border-style: solid;
		border-width: 1px 1px 0 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#head_menu .submenu_block a::before {
		content: '';
		display: inline-block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		width: 0.6em;
		height: 0.6em;
		border-style: solid;
		border-width: 1px 1px 0 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#head_menu .submenu_block .submenu_list > li {
		margin: auto;
	}
}

@media print, (min-width: 768px) {
	#head_menu {
		position: absolute;
		bottom: 0;
		right: 0;
		left: 0;
	}
	#head_menu .site_menu .menu {
		cursor: pointer;
		padding: 1em 0.5em;
		line-height: 1;
		letter-spacing: 0.2em;
		text-indent: 0.2em;
	}
	#head_menu .site_menu .menu::after {
		content: '';
		display: block;
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		margin: auto;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0.8em 0 0;
		border-color: #101885 transparent;
		-webkit-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s;
		z-index: 100;
	}
	#head_menu .site_menu .menu_list > li:hover .menu::after {
		border-right-width: 0.5em;
		border-left-width: 0.5em;
	}
	#head_menu .site_menu > .inner > .menu_list {
		display: table;
		table-layout: fixed;
		border-collapse: separate;
		border-spacing: 1px 0;
		width: 100%;
		text-align: center;
	}
	#head_menu .site_menu > .inner > .menu_list > li {
		display: table-cell;
		margin: auto 0;
		width: 25%;
	}
	#head_menu .site_menu > .inner > .menu_list > li:first-child {
		display: none;
	}
	#head_menu .site_menu > .inner > .menu_list > li::before, #head_menu .site_menu > .inner > .menu_list > li:last-child::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		width: 0;
		height: 1em;
		border-style: solid;
		border-width: 0 0 0 1px;
	}
	#head_menu .site_menu > .inner > .menu_list > li::before {
		right: 100%;
	}
	#head_menu .site_menu > .inner > .menu_list > li::after {
		left: 100%;
	}
	#head_menu .site_menu .submenu_block {
		display: block;
		position: fixed;
		top: 14rem;
		right: 0;
		left: 0;
		max-height: 0;
		overflow: hidden;
		background-color: rgba(255, 255, 255, 0.86);
		-webkit-transition: all 0s;
		-o-transition: all 0s;
		transition: all 0s;
	}
	#head_menu .site_menu .menu_list > li:hover .submenu_block {
		max-height: 30rem;
		-webkit-transition: all 0.4s;
		-o-transition: all 0.4s;
		transition: all 0.4s;
	}
	#head_menu .submenu_block > .inner {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		justify-content: space-between;
		padding: 3rem 0;
	}
	#head_menu .submenu_block .submenu_head {
		position: relative;
		width: 17%;
		height: 8em;
		border-style: solid;
		border-width: 0 1px;
		color: #101885;
		letter-spacing: 0.1em;
		text-indent: 0.1em;
	}
	#head_menu .submenu_block .submenu_head .title_ja, #head_menu .submenu_block .submenu_head .title_en {
		display: inline-block;
		position: absolute;
		right: 0;
		left: 0;
		margin: 0.5rem auto;
	}
	#head_menu .submenu_block .submenu_head .title_ja {
		bottom: 50%;
	}
	#head_menu .submenu_block .submenu_head .title_en {
		top: 50%;
	}
	#head_menu .submenu_block .submenu_body {
		width: 83%;
		text-align: left;
		color: #424142;
		font-size: 0.75em;
	}
	#head_menu .submenu_block .submenu_list {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
	}
	#head_menu .submenu_block .submenu_list > li {
		margin: 0 0 0 5%;
		width: 20%;
	}
	#head_menu .submenu_block .submenu_list > li.work_list {
		width: 70%;
	}
	#head_menu .submenu_block .submenu {
		display: block;
		color: inherit;
	}
	#head_menu .submenu_block .submenu .submenu_txt {
		margin-bottom: 1em;
	}
	#head_menu .submenu_block .submenu_group {
		display: block;
		margin-top: 0.5em;
		padding: 0.5em 0;
		border-style: solid;
		border-width: thin 0;
		border-color: #bebdbd;
	}
	#head_menu .work_list .index_list > dt::before {
		content: '';
		display: inline-block;
		margin-right: 0.2em;
		border-style: solid;
		border-width: 0.4em;
	}
	#head_menu .work_list .menu_list {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 1em;
	}
	#head_menu .work_list .comprehensive_work .menu_list {
		height: 8em;
	}
	#head_menu .work_list .menu_list > li {
		margin: -1px 0 0;
		width: 30%;
		border-style: solid;
		border-width: 1px 0;
		border-color: #bebdbd;
		margin-right: 12px;
	}
	#head_menu .work_list a {
		display: block;
		padding: 0.75em 0;
		line-height: 1;
	}
}

#head_menu .work_list .randd_work_list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 1em;
	height: 6em;
}

#head_menu .work_list .randd_work_list dt {
	margin: -1px 0 0;
	width: 33.3%;
}

#head_menu .work_list .randd_work_list a.randd_work_block {
	display: inline;
}

/* menu_list */
/*
#head_menu .menu_list {
  display: block;
}
#head_menu .menu_list > li {
  border-style: solid;
  border-width: 0 0 thin;
  border-color: #FFF;
}
#head_menu .menu_list > li {
  margin-top: auto;
}
#head_menu .menu_list a {
  padding: 0.75em 0;
  color: #FFF;
}
#head_menu .info_menu {
  margin: 0.5em auto;
}
#head_menu .info_menu .menu_list > li {
  float: left;
  border: none;
  width: 49%;
}
#head_menu .info_menu .menu_list > li + li {
  margin-left: 2%;
}
#head_menu .info_menu a {
text-align: center;
}
}
@media all and (min-width: 768px) {
#head_menu {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
margin: auto;
height: 13rem;
}

.site_menu, 
.info_menu a {
background-color: #111986;
}
*/
/* site_menu */
/*
.site_menu {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
.site_menu .menu_list {
  display: table;
  text-align: center;
}
.site_menu .menu_list > li {
  display: table-cell;
  vertical-align: middle;
}
.site_menu .menu_list > li:before, 
.site_menu .menu_list > li:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 1em;
  border-style: solid;
  border-color: #FFF;
  border-width: 0;
}
.site_menu .menu_list > li:before {
  left: 0;
  border-left-width: 1px;
}
.site_menu .menu_list > li:last-child:after {
  right: 0;
  border-right-width: 1px;
}
.site_menu a {
  padding: 1em 0;
  font-size: 0.875em;
}
*/
/* info_menu */
#header .info_menu {
	height: 2.5em;
	text-align: center;
}

.info_menu a {
	display: block;
	padding: 0.75em 0;
}

.info_menu .mypage {
	background-color: #101885;
	color: #FFF !important;
}

.info_menu .entry {
	background-color: #fff100;
	color: #000 !important;
}

@media only screen and (max-width: 767px) {
	#header .info_menu .menu_list {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
	}
	#header .info_menu .menu_list > li {
		margin: 0;
		width: 50%;
	}
}

@media print, (min-width: 768px) {
	#header .info_menu {
		position: absolute;
		top: 1.5em;
		right: 0;
		left: 0;
		margin-top: auto;
	}
	#header .info_menu .menu_list {
		float: right;
	}
	.info_menu a {
		width: 12em;
		font-size: 0.75em;
		padding: 0.5em 0;
	}
	.info_menu .menu_list > li {
		display: inline-block;
		text-align: center;
	}
}

@media all and (min-width: 1000px) {
	.site_menu .menu_list {
		table-layout: fixed;
	}
}

@media only screen and (max-width: 767px) {
	#entry_unit.-active {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		opacity: 0.9;
	}
}

/* FOOTER 
============================== */
/*
#footer, 
#footer a {
color: #666;
}
#footer {
padding: 1.5rem 0;
background-color: #FFF;
}

@media all and (min-width: 768px) {
#footer {
position: absolute;
bottom: -12em;
right: 0;
left: 0;
}
}*/
/* foot_menu */
#footer .foot_menu {
	/*
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
  */
	margin: 1.5rem auto;
	font-size: 0.8125em;
	color: #666;
}

#footer .foot_menu a:hover {
	text-decoration: underline;
}

#footer .foot_menu a:hover span {
	text-decoration: underline;
}

#footer .foot_menu::after {
	content: '';
	clear: both;
	display: block;
}

#footer .foot_menu .menu_list {
	margin-bottom: 1em;
}

#footer .foot_menu .menu_list > li {
	margin-top: 1.5em;
}

#footer .foot_menu .menu_list a {
	padding-left: 1em;
	color: #666;
}

#footer .foot_menu .menu_list a:before {
	content: '';
	display: inline-block;
	margin-left: -1em;
	margin-right: 0.5em;
	border-style: solid;
	border-width: 0.4em 0 0.4em 0.5em;
	border-color: transparent transparent transparent #666;
}

#footer .foot_menu .mark_list > li {
	margin-top: 0;
}

#footer .foot_menu .menu_list > li a.career, #footer .foot_menu .menu_list > li a.disability {
	background: #111986;
	padding: 0.75em;
	color: #fff;
	text-indent: 0;
}

#footer .foot_menu .menu_list > li a.career:before, #footer .foot_menu .menu_list > li a.disability:before {
	border: none;
	margin: 0;
}

#footer .foot_menu ul {
	list-style: none;
}

#footer .foot_menu li {
	margin-top: 1.5em;
}

#footer .foot_menu li > ul {
	margin-left: 1em;
}

#footer .foot_menu .bc {
	display: inline-block;
	margin-left: -0.1em;
	margin-right: -0.1em;
}

@media print, (min-width: 768px) {
	#footer .foot_menu .menu_list {
		float: left;
		width: 23.5%;
		width: -webkit-calc( 94% / 4);
		width: calc( 94% / 4);
	}
	#footer .foot_menu .menu_list:not(:first-child) {
		margin-left: 2%;
	}
}

@media only screen and (max-width: 767px) {
	#footer > .inner {
		width: auto;
	}
	#footer .foot_menu {
		/*
          -webkit-flex-wrap: wrap;
          -moz-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
          -o-flex-wrap: wrap;
          flex-wrap: wrap;
      */
		font-size: 0.75em;
	}
	#footer .foot_menu .menu_list:nth-child(2n + 1) {
		float: left;
	}
	#footer .foot_menu .menu_list:nth-child(2n + 0) {
		float: right;
	}
	#footer .foot_menu .menu_title {
		display: inline-block;
	}
	#footer .foot_menu .menu_list {
		margin-bottom: 0.5rem;
		width: 48%;
	}
	#footer .foot_menu .menu_list > li > ul {
		margin-left: 0;
	}
}

/* copyright */
/*
.copyright {
margin-top: 1.5rem;
font-size: 0.75em;
text-align: center;
clear:both;
border-top:1px solid #ccc;
padding:1.5rem 0 0 0;
position:relative;
}
.copyright .foot_logo ._logo {
margin: 1em 0;
width: 12.8rem;
height: 2.56rem;
}
.copyright .foot_logo .logo_message {
fill: #FFF;
}
.copyright .foot_logo ._logo {
margin: 1em 0;
width: 12.8rem;
height: 2.56rem;
}
.copyright .foot_logo ._logo02{
margin: 1em 0;
width:107px;
height:68px;
vertical-align:top;
}

.copyright ul.fgnavi{
left:0;
top:1rem;
list-style:none;
margin:0 0 2rem;
}
.copyright ul.fgnavi > li{
display:inline-block;
}
.copyright ul.fgnavi > li:after{
content:"|";
display:inline-block;
margin:0 0.5em;
}
.copyright ul.fgnavi > li:last-child:after{
display:none;
}
*/
@media all and (min-width: 768px) {
	.copyright {
		text-align: right;
	}
	.copyright ul.fgnavi {
		position: absolute;
	}
}

/* CONTENT
==============================*/
#content {
	position: relative;
	width: auto;
}

#content .content_main {
	margin: auto auto 3rem;
}

#content .sns_area {
	clear: both;
	margin: 3rem auto;
}

#content .bnr_area {
	clear: both;
}

@media all and (min-width: 768px) {
	#content {
		padding-top: 14rem;
		/*padding-bottom: 30rem;*/
		padding-bottom: 0;
	}
	#content .content_main {
		margin-top: 3rem;
	}
}

/* sns_area */
/* bnr_area */
/* pagetop_btn */
/*
#footer .pagetop_btn {
display: block;
position: absolute;
top: 0;
right: 0;
left: 0;
margin: auto;
width: 6rem;
height: 3rem;
background-color: transparent;
border-radius: 0 0 0.5rem 0.5rem;
color: #101885;
font-size: 1.2rem;
z-index: 2200;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
#footer .pagetop_btn:before, 
#footer .pagetop_btn:after {
content: '';
display: block;
position: absolute;
top: 0;
margin: 0.5rem auto auto;
width: 2em;
height: 2px;
background-color: #101885;
}
#footer .pagetop_btn:before {
right: 50%;
-webkit-transform-origin: right top;
-ms-transform-origin: right top;
transform-origin: right top;
-webkit-transform: rotate(-40deg);
-ms-transform: rotate(-40deg);
transform: rotate(-40deg);
} 
#footer .pagetop_btn:after {
left: 50%;
-webkit-transform-origin: left top;
-ms-transform-origin: left top;
transform-origin: left top;
-webkit-transform: rotate(40deg);
-ms-transform: rotate(40deg);
transform: rotate(40deg);
}
@media all and (min-width: 768px) {
}
*/
/* PAGETOP
============================== */
#pagetop {
	position: fixed;
	bottom: -3em;
	right: 5%;
	opacity: 0;
	border-radius: 0.5rem 0.5rem 0 0;
	background-color: rgba(255, 255, 255, 0.5);
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	z-index: 1999;
}

#pagetop.-active {
	bottom: 0;
	opacity: 1;
}

#pagetop a {
	display: block;
	position: relative;
	padding: 2.2em 0 0.2em;
	width: 4em;
	color: #101885;
	font-size: 0.75em;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	text-shadow: 1px 0 0 #fff, -1px 0 0 #fff,  0 1px 0 #fff,  0 -1px 0 #fff;
}

#pagetop a:before, #pagetop a:after {
	content: '';
	display: block;
	position: absolute;
	top: 0.25em;
	margin: 0.5rem auto auto;
	width: 2em;
	height: 2px;
	background-color: #101885;
}

#pagetop a:before {
	right: 50%;
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: rotate(-40deg);
	-ms-transform: rotate(-40deg);
	transform: rotate(-40deg);
}

#pagetop a:after {
	left: 50%;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	transform: rotate(40deg);
}

/*
#pagetop a:before {
content: '';
position: absolute;
top: -1.5em;
right: 0;
left: 0;
margin: auto;
width: 0;
height: 0;
border-style: solid;
border-width: 1.2em;
border-color: #101885 #101885 transparent transparent;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
*/
/* PARTS 
============================== */
.page_head {
	margin-bottom: 6rem;
}

.page_head .page_title {
	padding: 0.75em 0 0.75em 0.75em;
	font-family: "Times New Roman", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3",  "游明朝", "Yu Mincho", "游明朝体", "YuMincho",  "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 1.5em;
	font-size: 8vw;
	line-height: 1;
}

.page_head .page_title .-kn_nr {
	margin-right: -0.25em;
	margin-left: -0.25em;
	word-break: keep-all;
	white-space: nowrap;
}

.page_head .page_title:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 0.3em;
	height: auto;
	background-color: #fff100;
	border-top: solid 0.3em #101885;
}

.page_head .page_title > span[lang="en"] {
	position: absolute;
	top: 0;
	left: auto;
	display: block;
	color: #101885;
	font-weight: normal;
	font-size: 0.4em;
}

@media all and (min-width: 768px) {
	.page_head .page_title {
		font-size: 2.5em;
	}
	.page_head .page_title > span[lang="en"] {
		font-size: 0.35em;
	}
}

/* SECTION */
.sect_block {
	position: relative;
	margin: 4.5rem auto;
}

.sect_block .sect_title {
	margin-bottom: 1.5rem;
	color: #101885;
	font-size: 1.25em;
}

.sect_block .block_body {
	padding: 1.5rem;
	color: #666;
}

@media all and (min-width: 768px) {
	.sect_block .block_body {
		padding: 3rem;
	}
}

/* breadcrumb */
.breadcrumb .bc_list {
	list-style: none;
	padding: 1em 0;
	font-size: 0.75em;
}

.breadcrumb .bc_list > li {
	display: inline-block;
}

.breadcrumb .bc_list > li:first-child {
	/*font-weight: bold;*/
}

.breadcrumb .bc_list > li + li:before {
	content: '›';
	display: inline-block;
	margin: auto 0.5em;
}

.breadcrumb .bc_list a {
	color: #666;
	text-decoration: none;
}

/* pager */
.pager {
	margin: 3rem auto;
	text-align: center;
	background-color: transparent;
	color: #101885;
}

.pager a {
	background-color: transparent;
	color: #101885;
	display: block;
	text-decoration: none;
	line-height: 1;
}

.pager .pager_list {
	list-style: none;
	display: table;
	table-layout: fixed;
	width: 100%;
}

.pager .pager_list > li {
	display: table-cell;
	border: solid thin #101885;
}

.pager .pager_list > li:first-child {
	border-right: none;
}

.pager .pager_list > li:last-child {
	border-left: none;
}

.pager .pager_list > li:first-child a:before, .pager .pager_list > li:last-child a:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0.5em;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.4em 0.5em;
	border-color: transparent #101885;
}

.pager .pager_list > li:first-child a {
	padding-left: 1.2em;
	text-align: left;
	border-right: none;
}

.pager .pager_list > li:first-child a:before {
	left: 0;
	border-left: none;
}

.pager .pager_list > li:last-child a {
	padding-right: 1.2em;
	text-align: right;
	border-left: none;
}

.pager .pager_list > li:last-child a:before {
	right: 0;
	border-right: none;
}

a.-comingsoon {
	pointer-events: none;
	position: relative;
	text-decoration: none;
}

a.-comingsoon::before {
	content: 'Coming Soon';
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background-color: rgba(100, 100, 100, 0.8);
	color: #FFF;
	text-decoration: none;
	line-height: 1;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
}

.menu_list a[href=""] {
	pointer-events: none;
	opacity: 0.3;
}

/*20200422_entry hide*/
a[href*="rid_mypage"] {
	display: none;
	pointer-events: none;
}

@media print, (min-width: 768px) {
	.info_menu a {
		width: 16em !important;
		font-size: 0.75em !important;
		padding: 0.75em 0 !important;
	}
}

@media only screen and (max-width: 767px) {
	#header .info_menu .menu_list > li {
		margin: 0;
		width: 100%;
	}
	#header .info_menu .menu_list > li:first-child {
		display: none;
	}
}

/*# sourceMappingURL=../_map/css/layout.css.map */
