@charset "utf-8";
/*=============================================================
 contents Layout
=============================================================*/
/* container
------------------------------------------------------------ */
body, #container {
	/*display: flex;
	flex-direction: column;
	min-height: 100vh;*/
}
#pageBody>.clearfix{display: flex;}
#PageTtlArea+#pageBody>.clearfix>#contents{margin-top:90px}
article#contents{flex:1;}
#pageBody .pageTitle+* {
    margin-top: 282px !important;
}
/* boxContentsOuter
------------------------------------------------------------ */
.boxContentsOuter {
	margin: 0 5%;
}
/* boxContents
------------------------------------------------------------ */
.boxContents {
	max-width: 1215px;
	margin: 0 auto;
}
/* Contents Box LAYOUT
------------------------------------------------------------ */
#contentBody {}
#contentBodyInner {
	display: flex;
	padding: 90px 0 0;
}
#PageTtlArea+#pageBody,
#topicPathArea+#pageBody{
	position: relative;
  margin: 0 auto;
	max-width: 1215px;
}
#PageTtlArea+#pageBody,
#topicPathArea+#pageBody{
	padding: 0 5%;
}
#contents {
	flex: 1;
}

/* section
------------------------------------------------------------ */
section + section{
	margin-top: 90px;
}

/* footer
------------------------------------------------------------ */
footer {
	background: #000;
	color: #fff;
	margin-top: auto;
	margin: 0 0;
	padding: 30px 0 30px;
	position: relative;
}
/* animation
-------------------------------------------------------------*/
.setScMc {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease 0.2s;
}
.setScMc.enter {
	opacity: 1;
	transform: translateY(0);
}
/*=============================================================
 txt
=============================================================*/
#contents {
	line-height: 1.85;
}
p {
	font-size: 93.75%;
}
#contents p + p {
	margin-top: 1em;
}
#contents p.lead+p{
	margin-top: 0;
}
/*---------------------------------------------------------- */
/* lead
------------------------------------------------------------ */
p.lead,
.lead{
  font-size: 100%;
  font-weight:700;
  margin-bottom: 30px;
}
#contents .catch {
	font-size: 175%;
	line-height: 1.6;
	font-weight: 700;
    margin-bottom:60px;
}
/*#contents .lead {
	font-size: 187.5%;
	font-weight: 700;
	margin-bottom: 50px;
	text-align: center;
}*/
/*=============================================================
 header-type01-2L
=============================================================*/
/*---------------------------------------------------------- */
/* header-type01-2L
------------------------------------------------------------ */
#header-type01-2L {
	padding: 0;
}
#header-type01-2L #header {
	width: 100%;
	box-sizing: border-box;
	position: relative;
}
/* common */
#headerInner {
}
#headerTop {
	border-bottom: 1px solid #cccccc;
}
#header h1{
	margin-left: 5%;
}
#header h1 a{
	width: 151px;
	height: 70px;
	display: flex;
	align-items: center;
}
#header h1 a img{
	width: 100%;
}
/* #searchArea
------------------------------------------------------------ */
#searchArea {
}
#btnSearch {
	width: 80px;
	height: 70px;
	position: absolute;
	top: 0;
	right: calc(100% / 6);
	background: url("../img/btn_serach.png") no-repeat center center;
	background-size: 21px 20px;
	transition:all 0.4s;
}
#btnSearch:hover {
	opacity: 0.7;
}
#btnSearch > span {
	display: block;
	width: 70px;
	height: 70px;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
	background: #fff;
	opacity: 0;
	transition:all 0.4s;
}
.openSearch #btnSearch > span {
	opacity: 1;
}
#btnSearch > span:before,
#btnSearch > span:after{
	content: "";
	display: block;
	width: 26px;
	height: 2px;
	background: #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition:all 0.4s;
}
.openSearch #btnSearch > span:before{
	transform: translate(-50%,-50%) rotate(45deg);
}
.openSearch #btnSearch > span:after{
	transform: translate(-50%,-50%) rotate(-45deg);
}
#searchArea dd {
	height: 0;
	overflow: hidden;
	background: #cccccc;
	padding-left:  calc(100% / 6);
	padding-right:  calc(100% / 6);
	opacity: 0;
	transition:all 0.4s;
}
.openSearch #searchArea dd {
	height: 58px;
	opacity: 1;
}
#searchArea #srchBox {
	padding: 10px 0;
}
#searchArea dd .yh-search-box {
	width: 100%;
	border-collapse: collapse;
}
#searchArea dd input.yh-input {
	height: 38px;
	line-height: 38px;
	padding: 5px !important;
	box-sizing: border-box;
}
#searchArea dd td.yh-search-button{
	width: 38px;
	height: 38px;
	background: #fff;
}
#searchArea dd td.yh-search-button div{
	background: #eee url("../img/btn_serach.png") no-repeat center center;
	background-size: 21px 20px;
	transition:all 0.4s;
}
#searchArea dd td.yh-search-button div:hover{
	opacity: 0.7;
}
#searchArea dd td.yh-search-button input#srchBtn{
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	border: none;
	background-color: #fff;
	-webkit-appearance: none;
	appearance: none;
	opacity: 0;
	cursor: pointer;
}
/*---------------------------------------------------------- */
/* #globalNavSet
------------------------------------------------------------ */
/* sp-menu */
#globalNavSet > dt {
	display: none;
}
/* pc-menu */
@media print, screen and (min-width:1024px){
#globalNavSet > dd {
	display: block !important;
}
}
/* #globalNav
------------------------------------------------------------ */
#globalNav {
	display: flex;
	flex-wrap: nowrap;
	position: relative;
}
/* #globalNav Category */
#globalNav > li {
	width: calc(100% / 6);
}
#globalNav > li > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 70px;
	color: #000;
	border-left: 1px solid #ccc;
	font-size: 15px;
	transition:all 0.4s ease-out;
}
#globalNav > li:first-child {
	border-left: none
}
#globalNav > li > a:hover {
	color: #da3633;
}
@media print, screen and (min-width:1024px){
#globalNav > li > a.pcOpen,
body#corp #globalNav > li > a#m2ndCorp,
body#vision #globalNav > li > a#m2ndVision,
body#ir #globalNav > li > a#m2ndIr,
body#sustainability #globalNav > li > a#m2ndSustainability,
body#product #globalNav > li > a#m2ndProduct{
	color: #fff;
	background: #da3633;
	position: relative;
}
#globalNav > li > a.pcOpen:after {
	content: "";
	display: block;
	width: 0px;
	height: 0px;
	border-top: 8px solid #da3633;
	border-right: 8px solid #da3633;
	border-bottom: 8px solid transparent;
	border-left: 8px solid transparent;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 1000;
}
}
#globalNav > li#gbRecruit > a span:after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 16px;
	margin: 0px 0 0 5px;
	background: url("../img/hdr_icn_blank.png") no-repeat center center;
	background-size: 100% 100%;
	transform: translateY(2px);
}
/* hdr-gbDrop */
@media print, screen and (min-width:1024px){
#globalNav .hdr-gbDrop {
	display: block !important;
	position: absolute;
	top: 70px;
	left: 0;
	right: 0;
	z-index: 999;
	background: rgba(0,0,0,0.9);
	line-height: 1.35;
	height: 0;
	overflow: hidden;
	transition:all 0.4s;
}
}
#globalNav .hdr-gbDrop > .box{
	padding: 40px 0;
	padding-left: calc(100% / 6);
	padding-right: calc(100% / 6);
}
#globalNav .hdr-gbDrop > .box a{
	color: #fff;
	transition:opacity 0.4s ease-out;
}
#globalNav .hdr-gbDrop > .box a:hover{
	opacity: 0.7;
}
/* ttlArea */
#globalNav .hdr-gbDrop > .box .ttlArea{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}
#globalNav .hdr-gbDrop > .box .ttlArea p a{
	display:inline-block;
	padding: 0 24px 0 0;
	position: relative;
	font-size: 16px;/*font-size: 22px;*/
	font-weight: 700;
}
#globalNav .hdr-gbDrop > .box .ttlArea p a:before{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: url("../img/gb_arw.png") no-repeat center center;
	position: absolute;
	top: 50%;
	right: 0;
	margin: 1px 0 0;
	transform: translateY(-50%);
}
#globalNav .hdr-gbDrop > .box .ttlArea .btnClose{
	width: 36px;
	height: 36px;
	position: relative;
	cursor: pointer;
}
#globalNav .hdr-gbDrop > .box .ttlArea .btnClose:before,
#globalNav .hdr-gbDrop > .box .ttlArea .btnClose:after{
	content: "";
	display: block;
	width: 26px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#globalNav .hdr-gbDrop > .box .ttlArea .btnClose:before{
	transform: translate(-50%,-50%) rotate(45deg);
}
#globalNav .hdr-gbDrop > .box .ttlArea .btnClose:after{
	transform: translate(-50%,-50%) rotate(-45deg);
}
/* level1 */
#globalNav .hdr-gbDrop > .box .level1 a.arw{
	display:inline-block;
	padding-left: 22px;
	position: relative;
}
#globalNav .hdr-gbDrop > .box .level1 a.arw:before{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: url("../img/gb_arw.png") no-repeat center center;
	position: absolute;
	top: 50%;
	left: 0;
	margin: 1px 0 0;
	transform: translateY(-50%);
    border:none;
}
#globalNav .hdr-gbDrop > .box .level1 span.noLink{
	color: #999;
}
#globalNav .hdr-gbDrop > .box .level1 > ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#globalNav .hdr-gbDrop > .box .level1 > ul > *{
	padding-top: 20px;
	width: calc(85% / 4);
}
#globalNav .hdr-gbDrop > .box .level1 > ul:after{
	content: ""; 
	display: block; 
	width: calc(85% / 4);
	height: 0; 
}
#globalNav .hdr-gbDrop > .box .level1 > ul:before{
	content: ""; 
	display: block; 
	width: calc(85% / 4);
	height: 0;
	order:1;
}
#globalNav .hdr-gbDrop > .box .level1 > ul.half > *{
	width: calc(95% / 2);
}
#globalNav .hdr-gbDrop > .box .level1 > ul.half:after{
	display: none; 
}
#globalNav .hdr-gbDrop > .box .level1 > ul.half:before{
	display: none; 
}
/* bnr */
#globalNav .hdr-gbDrop > .box .level1 > ul .bnr{
	display: block;
	margin: 20px 0 0;
	max-width: 420px;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm{
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm > .boxL,
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm > .boxR{
	width: calc(95% / 2);
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm > .boxL > ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm > .boxL > ul > li{
	padding-top: 20px;
	width: calc(95% / 2);
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm > .boxR > ul > li{
	padding-top: 20px;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr{
	display: block;
	margin: 20px 0 0;
	font-size: 10px;
	max-width: 420px;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a{
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
	background: #333;
}
@media print, screen and (min-width:1024px){
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a{
	font-size: 1.05vw;
}
}
@media (min-width: 1280px) {
	#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a{
		font-size: 14px;
	}
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a > span{
	width: 56%;
	font-weight: 700;
	line-height: 1.4;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a > span:nth-child(2){
	width: 44%;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a > span:first-child{
	padding: 0 18px;
	box-sizing: border-box;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a > span > strong{
	display: block;
	font-size: 140%;
	margin-top: 5px;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a > span > strong > span{
	display: block;
}
/* #subMenu
------------------------------------------------------------ */
#subMenu {
	position: absolute;
	top: 0;
	right: calc((100% / 6) + 80px);
}
#subMenu ul{
	display: flex;
	align-items: center;
	height: 70px;
}
#subMenu ul li{
	font-size: 14px;
}
#subMenu ul li a{
	display: inline-block;
	padding: 0 30px;
	border-right: 1px solid #ccc;
	color: #000;
	line-height: 24px;
	transition:all 0.4s;
}
#subMenu ul li a:hover{
	color: #da3633;
}
/* #btnCustomer
------------------------------------------------------------ */
#btnCustomer {
	width: calc(100% / 6);
	position: absolute;
	top: 0;
	right: 0;
}
#btnCustomer a{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 70px;
	background: #7d7d7d;
	color: #fff;
	font-size: 14px;
	line-height: 1.45;
	transition:all 0.4s;
}
#btnCustomer a:hover{
	opacity: 0.7;
}
#btnCustomer a span{
}



/*=============================================================
 topicPath
=============================================================*/
/* topicPath
-------------------------------------------------------------*/
#topicPathArea {
    background: #333333;
    color: #fff;
    font-size: 75%;
    line-height: 1.0;
}
#topicPathArea .clearfix{max-width: 1215px; margin: 0 auto;    width: 90%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;}
#topicPathArea #hdr-menuUtil{order:2;}
#topicPathArea a {color: #fff;}
#topicPathArea a:hover{opacity: .7;}

#topicPath {
	background: #333333;
	color: #fff;
	font-size: 75%;
	line-height: 1.0;
}
#topicPath a {
	color: #fff;
}
#topicPathInner {
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#topicPathInner > ul {
	display: flex;
}
#topicPathInner > ul li:before {
	content: "＞";
	display: inline-block;
	width: 23px;
	text-align: center;
}
#topicPathInner > ul li:first-child:before {
	display: none;
}
#hdr-menuUtil {
	display: flex;
	align-items: center;
}
#hdr-menuUtil dl {
	display: flex;
	align-items: center;
}
#hdr-menuUtil dl dt {
	padding: 0 20px 0 0;
}
#hdr-menuUtil dl dd ul {
	display: flex;
	align-items: center;
}
#hdr-menuUtil dl dd ul li {
	display: block;
	padding: 8px 15px;
	background: #eaeaea;
	color: #a7a7a7;
	cursor: pointer;
}
#hdr-menuUtil dl dd ul li.act {
	color: #fff;
	background: #22bcca;
	opacity: 1;
	cursor: default;
}
#hdr-menuUtil #hdr-btnPrint {
	padding: 0 0 0 10px;
}
#hdr-menuUtil #hdr-btnPrint a {
	display: block;
	padding: 8px 30px;
	background: #22bcca;
}
/*=============================================================
 #localMenu
=============================================================*/
#pageBody>div>#localMenu{
	margin-top:282px;
}
#PageTtlArea+#pageBody>div>#localMenu{margin-top:90px}
#localMenu dt a{
	display: block;
	color: #da3633;
	text-decoration: none;
	padding: 20px 5px;
	box-sizing: border-box;
}
#localMenu {
	width: 255px;
	margin: 0 0 0 6%;
	border-top: 2px solid #da3633;
	line-height: 1.35;
	letter-spacing: 0.02em;
}
#localMenu a {
	color: #333333;
}
#localMenu a:hover {
	color: #da3633;
	background-color: #f0f0f0;
}
#localMenu .act > a {
	color: #da3633;
}
#localMenu nav > dl > dt {
	/*padding: 20px 0;*/
	font-size: 20px;
	color: #da3633;
	font-weight: 700;
}
#localMenu #mainArea > ul {
	padding: 0 0 30px;
}
#localMenu #mainArea > ul li a.levelFirst {
	display: block;
	padding: 15px 0 15px 18px;
	font-weight: 700;
	position: relative;
}
#localMenu #mainArea > ul li.open > a.levelFirst{
	background-color: #f0f0f0;
	color: #da3633;
}
#localMenu #mainArea > ul li.act > a.levelFirst {
	background-color: #f0f0f0;
}
#localMenu #mainArea > ul li a.levelFirst .mark {
	display: block;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
}
#localMenu #mainArea > ul li a.levelFirst .markBox {
	display: block;
	width: 16px;
	height: 16px;
	position: relative;
}
#localMenu #mainArea > ul li a.levelFirst .markBox:before, #localMenu #mainArea > ul li a.levelFirst .markBox:after {
	content: "";
	width: 100%;
	height: 2px;
	display: block;
	background-color: #da3633;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0deg);
	transition: transform 0.3s ease-out;
}
#localMenu #mainArea > ul li a.levelFirst .markBox:before {
	width: 100%;
	height: 2px;
}
#localMenu #mainArea > ul li a.levelFirst .markBox:after {
	width: 2px;
	height: 100%;
}
#localMenu #mainArea > ul li.open a.levelFirst .markBox:before {
	transform: translate(-50%, -50%) rotate(180deg);
}
#localMenu #mainArea > ul li.open a.levelFirst .markBox:after {
	transform: translate(-50%, -50%) rotate(90deg);
}
#localMenu #mainArea > ul li.act.open a.levelFirst .markBox:before, #localMenu #mainArea > ul li.act.open a.levelFirst .markBox:after {
	transition: transform 0s ease-out;
}
#localMenu #mainArea > ul li ul {
	display: none;
	padding: 10px 0 30px 18px;
}
#localMenu #mainArea > ul li.open ul,
#localMenu #mainArea > ul li.act ul {
	display: block;
}
#localMenu #mainArea > ul li li a {
	display: block;
	padding: 10px 0 10px 18px;
	font-size: 87.5%;
}
#localMenu #mainArea > ul li li .txt{margin-right: 4px;}
#localMenu #subArea ul {}
#localMenu #subArea ul li {
	padding: 18px 0 0;
}
#localMenu #subArea ul li a {
	width: 100%;
	display: flex;
	align-items: center;
	font-size: 93%;
}
#localMenu #subArea ul li a span.icn {
	width: 36px;
	height: 36px;
	border-radius: 100px;
	overflow: hidden;
	margin: 0 10px 0 0;
	background-color: #da3633;
}
#localMenu #subArea ul li a span.txt {
	flex: 1;
}
#localMenu #bnrArea ul {
	padding: 20px 0 0;
}
#localMenu #bnrArea ul li {
	padding: 10px 0 0;
}
#localMenu #bnrArea ul li a {
	display: block;
	opacity: 1;
}
#localMenu #bnrArea ul li a:hover {
	opacity: 0.7;
}
/*=============================================================
 footer
=============================================================*/
#footer {
	position: relative;
	margin: 120px 0 0 0;
}
#top #footer,
#vision #footer,
#ir.index #footer{
	margin: 0 0 0 0;
}
/* ftr-pagetop
-------------------------------------------------------------*/
#ftr-pagetop {
	visibility: hidden;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 200;
	transition: opacity 0.4s ease-out;
	opacity: 0;
}
#ftr-pagetop.show {
	visibility: visible;
	opacity: 1;
}
@media only screen and (min-width:1024px) {
	#ftr-pagetop.bottom {
		position: absolute;
		top: -81px;
		bottom: auto;
	}
}
/*---------------------------------------------------------- */
/* footer
------------------------------------------------------------ */
.footerBox {
	position: relative;
}
.footerBox .footerLink {}
.footerBox .footerLink li {
	display: inline-block;
	font-size: 14px;
	padding: 0 20px 0 20px;
	margin-bottom: 40px;
	position: relative;
}
.footerBox .footerLink li:first-child {
	padding-left: 0;
}
.footerBox .footerLink li:after {
	content: "";
	display: block;
	width: 0;
	height: 16px;
	border-right: 1px solid #fff;
	position: absolute;
	right: 0;
	top: 0;
}
.footerBox ul li a {
	color: #fff;
}
.footerBox ul li a:hover {
	text-decoration: underline;
}
.footerBox .footerSns {
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
}
.footerBox .footerSns .snsBtn {
	display: flex;
	margin-right: 20px;
}
.footerBox .footerSns .snsBtn > * {
	margin-right: 14px;
}
.copyright {
	text-align: center;
}
/*=============================================================
 ttl
=============================================================*/
/*---------------------------------------------------------- */
/* PageTtlArea
------------------------------------------------------------ */
#PageTtlArea{
	/*background: url("") center top no-repeat;*/
	background-size:100% auto;
	/*border-top: 1px solid #ccc;*/
	border-bottom: 1px solid #ccc;
}
#pageBody .pageTitle{
	background-size: 100% auto;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    margin-left: -25%;
}
#PageTtlArea h1,
#pageBody .pageTitle h1{
	height: 190px;
	color: #000;
	font-size: 187.5%;
	line-height: 1.25;
  font-weight: 700;
  display: table;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
#PageTtlArea h1>span,
#pageBody .pageTitle h1>span{
	display: table-cell;
	vertical-align: middle;
}
#PageTtlArea h1:after,
#pageBody .pageTitle h1:after{
	content: '';
	position: absolute;
	bottom:0;
	left:50%;
	transform: translateX(-50%);
	width: 122px;
	border-bottom: 6px solid #da3732;
}
/* ttl-underBdr
------------------------------------------------------------ */
.ttl-h2,
.ttl-bg{
	font-size: 150%;
	font-weight: 700;
	padding-bottom: 10px;
  border-bottom: 1px solid #aaaaaa;
	margin:0 0 40px 0; 
}
div+.ttl-h2,
.box-bg+.ttl-h2,
ul+.ttl-h2,
p+.ttl-h2,
table+.ttl-h2{
	margin-top:65px; 
}
/* ttl-h3
------------------------------------------------------------ */
.ttl-h3{
	font-size: 137.5%;
	font-weight: 700;
	padding: 0 0 0 10px;
  border-left: 6px solid #da3634;
	margin:0 0 20px; 
}
p+.ttl-h3{
	margin-top:40px; 
}
/* ttl-underInlineBdr
------------------------------------------------------------ */
.ttl-underInlineBdr{
	font-size: 100%;
	display: inline-block;
	font-weight: normal;
	padding-bottom: 5px;
	letter-spacing: 0.2em;
  border-bottom: 2px solid #da3634;
	margin:0 0 40px 0; 		
}
p+.ttl-underInlineBdr{
	margin:40px 0 0; 
}
/* ttl-h4
------------------------------------------------------------ */
.ttl-h4{
	font-size: 112.5%;
	font-weight: 700;
	color: #da3633;
	margin-bottom:20px;
	margin: 40px 0 30px;
}

.ttl-h2+.ttl-h4,
.ttl-h3+.ttl-h4{margin-top:20px;}

/* ttl-h5 */
.ttl-h5{
	font-size:112.5%;
	line-height:1.3;
	font-weight:bold;
	margin:30px 0 8px;
}
.ttl-h2+.ttl-h5,
.ttl-h3+.ttl-h5,
.ttl-h4+.ttl-h5{margin-top:20px;}

/* ttl-related	
------------------------------------------------------------ */
.box-related{margin-top:90px;}
.box-related dt{
	width: 100%;
	font-size: 112.5%;
	font-weight: 700;
	border-top: 2px solid #aaaaaa;
	padding-top: 10px;
	margin: 0 0 40px 0;
}
.box-related dd li{display: inline-block;
    margin: 0 0 0 60px;
    font-size: 16px;
}
.box-related dd li:first-child{margin-left: 0;}
/* ttl-fig
-------------------------------------------------------------*/
.ttl-fig {
	font-size: 100%;
	font-weight: 700;
	margin-bottom: 16px;
}
.ttl-h2+.ttl-fig,
.ttl-h3+.ttl-fig,
.ttl-h4+.ttl-fig,
.ttl-h5+.ttl-fig{margin-top:20px;}

.ttl-fig .ttl{float:left;}
.ttl-fig .caption{
	font-size:85.7%;
	font-weight:normal;
	float:right;
	padding-top:2px;
}
/* figcaption 
-------------------------------------------------------------*/
figcaption {
	font-size: 87.5%;
	margin-top: 5px;
}
/* h5
-------------------------------------------------------------*/
#contents h5 {
/*	font-size:16px;
	margin:20px 0 20px;*/
}
/*=============================================================
 newsList1L
=============================================================*/
.newsList1L{
	border-bottom: 1px dashed #aaaaaa;
}
.newsList1L>dt{
	font-weight: 700;
	display: inline-block;
	padding-top: 14px;
	border-top: 1px dashed #aaaaaa;
	vertical-align: top;
}
.list-news>dt span{
	font-size: 75%;
	color: #fff;
	display: inline-block;
	width: 80px;
	text-align: center;
	line-height: 1.6;
	margin-left: 10px;
	padding: 2px 0 1px;
}
.newsList1L>dd{
	display: inline-block;
	margin-bottom: 1em;
	width: calc(100% - 230px);
	padding-left: 10px;
	padding-top: 14px;
	box-sizing: border-box;
	border-top: 1px dashed #aaaaaa;
}
.newsList1L>dd a{
	color: #000;
}
.newsList1L>dd a:hover{
	border-bottom: 1px solid #000;
}
.newsList1L>dt:first-child,
.newsList1L>dd:nth-child(2){border: none;}

/*=============================================================
 newsListicon
=============================================================*/
.newsListIcon01 {
	background: #da3633;
}
.newsListIcon02 {
	background: #666666;
}
.newsListIcon03 {
	background: #22bcca;
}
.newsListIcon04 {
	background: #e08018;
}
.newsListIcon05 {
	background: #398066;
}
.newsListIcon06 {
	background: #006fad;
}
.newsListIcon07 {
	background: #b75f89;
}
.newsListIcon08 {
	background: #665aa6;
}
.newsListIcon09 {
	background: #7da851;
}
/* list-tabBtn */
.list-tabBtn{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    line-height: 1.25;
    font-size: 100%;
    font-weight: bold;
    z-index: 2;
    margin-bottom: 20px;
}
.list-tabBtn li{
	box-sizing: border-box;
    min-height: 50px;
    width: calc((100% - 5px) / 2);
    font-size: 93.75%;
}
.list-tabBtn li:first-child{padding-left:0;}
.list-tabBtn li a{
	color:#333;
	text-decoration:none !important;
	background-color:#e6e6e6;
	display:block;
	padding:16px 20px 14px;
	-webkit-transition:all 0.2s ease-out;
	-moz-transition:all 0.2s ease-out;
	-ms-transition:all 0.2s ease-out;
	-o-transition:all 0.2s ease-out;
	transition:all 0.2s ease-out;
}
.list-tabBtn li a:hover,
.list-tabBtn li a.current{
	background-color: #da3633;
    color: #fff;
}
.list-tabBtn.w100{
	width:100%;
	display:table;
}
.list-tabBtn.w100 li{
	float:none;
	min-width:0;
	display:table-cell;
	vertical-align:bottom;
}
.list-tabBtn.w100 li a{
	padding-right:10px;
	padding-left:10px;
}
.list-tabBtn.col4 li{
	box-sizing:border-box;
	width:25%;
	min-width:0;
}
/* list-news */
.list-news{line-height:1.4;}
.ttl-h2+.list-news,
.ttl-h3+.list-news,
.ttl-bg+.list-news{margin-bottom:50px;}
.list-news dt{
    font-weight: 700;
	width:16em;
	padding-top:15px;
	position:relative;
}
.list-news dt .newsIcon{
	position:absolute;
	top:18px;
	right:30px;
	width: 81px;
}
.list-news dd{
	margin-top:-1.4em;
	padding:0 0 15px 15em;
	border-bottom:1px dashed #aaa;
}
.list-news dd:last-child{border-bottom: none;}
.list-news dd a{text-decoration: none !important;}
.list-news dd a:hover{text-decoration: underline !important;}
.noIcon{}
.list-news.noIcon dt{width:8.5em;}
.list-news.noIcon dd{padding-left:8.5em;}

/* news-tabSet */
.news-tabSet{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	line-height: 1.25;
	font-size: 100%;
	font-weight: bold;
	z-index: 2;
}
.news-tabSet li{
	box-sizing: border-box;
	min-height: 50px;
	width: calc((100% - 10px) / 3);
	margin-bottom: 5px;
	background-color: #f0f0f0;
	font-size: 93.75%;
}
.news-tabSet li a{
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	color: #aaaaaa;
	text-align: center;
	padding: 15px 4px;
	text-decoration: none!important;
}
.news-tabSet.clearfix::after{display: none;}
.news-tabSet li a:hover{
	color:#fff;
	background: #da3633;
	border-bottom: none;
}
.news-tabSet li a:hover,
.news-tabSet li a.current{
	background-color: #da3633;
	color: #fff;
}
.news-tabSet li.ir01 a:hover,
.news-tabSet li.ir01 a.current{
	background-color: #398066;
}
.news-tabSet li.ir02 a:hover,
.news-tabSet li.ir02 a.current{
	background-color: #006fab;
}
.news-tabSet li.ir03 a:hover,
.news-tabSet li.ir03 a.current{
	background-color: #665aa4;
}
.news-tabSet li.ir04 a:hover,
.news-tabSet li.ir04 a.current{
	background-color: #b55f87;
}
.news-tabSet li.ir05 a:hover,
.news-tabSet li.ir05 a.current{
	background-color: #da3633;
}
/*=============================================================
  col---left
=============================================================*/
.col-2-left, .col-3-left, .col-4-left {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
/* col-2-left
------------------------------------------------------------ */
.col-2-left:after {
	content: "";
	display: block;
	width: calc((100% - 36px)/2);
	height: 0;
}
.col-2-left > * {
	width: calc((100% - 36px)/2);
	margin: 0 0 20px 0;
}
/* list-menuSet
------------------------------------------------------------ */
.list-menuSet{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
.list-menuSet:after {
	content: "";
	display: block;
	width: calc((100% - 36px)/2);
	height: 0;
}
.list-menuSet > * {
	width: calc((100% - 36px)/2);
	margin: 0 0 50px 0;
}
.list-menuSet dt,
.list-menuSet li{
	display: table;
	height: 80px;
	position: relative;
	background-color: #eee;
	margin-bottom: 10px;
}
.list-menuSet dt{
	width: 100%;
}
.list-menuSet dt a,
.list-menuSet li a{
	display: table-cell;
	font-size: 112.5%;
	/*position: relative;*/
	color: #333;
	line-height: 1.2;
	font-weight: 700;
	text-decoration: none!important;
	padding: 2px 20px 2px 20px;
	vertical-align: middle;
}
.list-menuSet dt a:hover,
.list-menuSet li a:hover{color: #da3633!important;}
.list-menuSet dt a:after,
.list-menuSet li a:after{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #da3633;
	border-right: 2px solid #da3633;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: rotate(-45deg) translateY(-50%);
}
/* col-3-2-left
------------------------------------------------------------ */
.col-3-left:after {
	content: "";
	display: block;
	width: calc((100% - 40px)/3);
	height: 0;
}
.col-3-left > * {
	width: calc((100% - 40px)/3);
	margin: 0 0 20px 0;
}

/* box
-------------------------------------------------------------*/
/* float */
.fLeftBox{
	float:left;
	padding-right:20px;
	margin-bottom:20px;
}
.fRightBox{
	float:right;
	padding-left:20px;
	margin-bottom:20px;
}
/* column */
.box-clm2{display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 40px;}
.box-clm2>.boxL,
.box-clm2>.boxR{
	width: calc((100% - 36px)/2);
    margin: 0 0 20px 0;
}
.box-clm2.clearfix:after{display: none;}
.box-clm2>.boxL2{
	float:left;
	width:98%;
	margin-bottom: 30px;
}
.box-clm2.left2x>.boxL,
.box-clm2.right2x>.boxR{width:460px;}
.box-clm2.left2x>.boxR,
.box-clm2.right2x>.boxL{width:220px;}
.box-clm2.left3x>.boxL,
.box-clm2.right3x>.boxR{width:520px;}
.box-clm2.left3x>.boxR,
.box-clm2.right3x>.boxL{width:160px;}
.box-bg .box-clm2>.boxL,
.box-bg .box-clm2>.boxR,
.box-bdr .box-clm2>.boxL,
.box-bdr .box-clm2>.boxR{width:320px;}
.box-clm3>.boxL{
	float:left;
	width:220px;
	margin-right:20px;
}
.box-clm3>.boxR{
	float:right;
	width:220px;
}
.box-clmS>.boxL{
	float:left;
	width:90px;
}
.box-clmS>.boxSSS{
	float:left;
	width:159px;
}

.box-clmS>.boxR{margin-left:100px;}
.box-clmS>.boxRSSS{margin-left:170px;}
/*=============================================================
 list
=============================================================*/
/* list-circle
------------------------------------------------------------ */
p+.list-circle{
	margin: 40px 0;
}
.list-circle{
	line-height: 1.6;
}
.list-circle li {
	padding: 0 0 0 1.2em;
	position: relative;
	font-size: 93.75%;
	margin-bottom: 0.3em;
}
.list-circle li::before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	background: #da3634;
	border-radius: 100px;
	position: absolute;
	top: 6px;
	left: 0;
}
.list-circle li>ul{
	margin: 2px 0;
}
.list-circle li>ul>li{
	font-size: 100%;
}
/* list-dot */
.list-dot>li{
	padding-left:1em;
	position:relative;
}
.list-dot>li:before{
	content:"";
	background:#333;
	display:block;
	width:3px;
	height:3px;
	position:absolute;
	top:0.8em;
	left:0.3em;
	border-radius:3px;
}
/* list-num */
.list-num{margin-left:2em;}
.list-num>li{list-style-type:decimal;}

/* list-numP */
.list-numP>li{
	text-indent:-1.35em;
	margin-left:1.35em;
}
/*---------------------------------------------------------- */
/* note
------------------------------------------------------------ */
.atn,.list-atn{
  margin-left: 1em;
  text-indent: -1em;
	font-size: 87.5%;
	line-height: 1.6;
}
sup.atn{margin-left:0; text-indent: 0;}
.atn span,
.list-atn .key{
	color: #da3732;
}
.atnNum{
  margin-left: 1.6em;
  text-indent: -1.6em;
	font-size: 87.5%;
	line-height: 1.6;
}
.atnNum span{
	color: #da3732;
}
.list-atnNum li{
	font-size:75%;
	text-indent:-1.84em;
	margin-left:1.84em;
}
#attention {
	font-style: normal;
  	font-size: 12px;
	padding: 5px 5px 10px 5px;
}
/*=============================================================
 link
=============================================================*/
/* noclassLink
#pageBody #contents *:not(.link) a,
#pageBody #contents *:not(.arw) a{
    text-decoration: underline;
}*/
/* linkBtn */
.linkBtn {
	display: block;
	position: relative;
	width: 100%;
	max-width: 280px;
	z-index: 9;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
}
.linkBtn a {
	display: block;
	background: #da3633;
	color: #fff;
	width: 100%;
	min-height: 60px;
	padding: 14px 35px;
	z-index: 2;
	box-sizing: border-box;
	position: relative;
}
.linkBtn a::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -1px;
	transform: rotate(-45deg) translate(0, -50%);
	z-index: 3;
	transition-property: all;
	transition-duration: .3s;
}
.linkBtn a span {
	width: 100%;
	display: table;
	/*vertical-align: middle;*/
	text-align: center;
}
.linkBtn a span::before {
	content: "";
	display: block;
	width: 0;
	height: 60px;
	background: #000;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition-property: width;
	transition-duration: .3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.linkBtn a:hover{text-decoration: none!important;}
.linkBtn a:hover span::before {
	width: 100%;
}
.linkBtnBox .linkBtn + li {
	margin-top: 20px;
}
/*---------------------------------------------------------- */
/* iconLink
------------------------------------------------------------ */
.link a,
.iconArw a,
.iconBlank a,
.iconPdf a,
.iconZip a,
.iconAc a,
.arw a{
	color: #000;
}
.iconArw a:hover,
.iconBlank a:hover,
.iconPdf a:hover,
.iconZip a:hover,
.iconAc a:hover{
	color: #000;
	border-bottom: 1px solid #000;
	text-decoration: none!important;
}
.arw a:after{content:"";display: block; border-bottom: 1px solid transparent;}
.arw a:hover:after{border-bottom: 1px solid #000;}
.link a:hover,
a.link:hover{
	padding-bottom: 2px;
	border-bottom: 1px solid #344f9e;
	text-decoration: none!important;
}
.link a:hover[target]{
	border-bottom: 1px solid #000;
	text-decoration: none!important;
}
/*iconArw*/
.iconArw,
.arw a{
	display: inline-block;
	padding: 4px 0 4px 20px;
	position: relative;
	text-decoration: none!important;
}
.arw{position: relative;
}
.iconArw::before,
.arw a:before,
a.arw:before{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #da3633;
	border-right: 2px solid #da3633;
	position: absolute;
	top: 13px;
	left: 0;
	transform: rotate(-45deg);
}

/* iconBlank */
.iconBlank{
	display:inline-block;
	padding:4px 19px 4px 0;
	position:relative;
}
.iconBlank::after{
	content:"";
	display:block;
	width:19px;
	height:16px;
	position:absolute;
	top:11px;
	right:0;
	background:url("../img/iconBlank.png") no-repeat center center;
	background-size:100% 100%;
}
span.iconBlank::after{
	content:"";
	top: -16px;
}
span.iconBlank{
	padding: 0 19px 0 0;
}
.iconArw.iconBlank{
	padding:4px 19px 4px 16px;
}
/* iconPdf*/
.iconPdf {
	display: inline-block;
	padding: 0 19px 0 0;
	position: relative;
}
.iconPdf::after {
	content: "";
	display: block;
	width: 18px;
	height: 20px;
	position: absolute;
	top: 7px;
	right: 0;
	background: url(../img/iconPdf.png) no-repeat center center;
	background-size: 100% 100%;
}
span.iconPdf::after {
	content: "";
	top: -16px;
}
span.iconPdf {
	padding: 0 19px 0 0;
}
.iconArw.iconPdf {
	padding: 4px 19px 4px 16px;
}
img.icon.pdf {
    background: url(../img/iconPdf.png) no-repeat center center;
    background-size: 100% 100%;
    vertical-align: -1px;
    width: 18px;
    height: 20px;
    margin: 0 0.3em;
}
/* iconZip */
.iconZip{
	display:inline-block;
	padding:4px 19px 4px 0;
	position:relative;
}
.iconZip::after{
	content:"";
	display:block;
	width:18px;
	height:20px;
	position:absolute;
	top:11px;
	right:0;
	background:url("../img/iconZip.png") no-repeat center center;
	background-size:100% 100%;
}
span.iconZip::after{
	content:"";
	top: -16px;
}
span.iconZip{
	padding: 0 19px 0 0;
}
.iconArw.iconZip{
	padding:4px 19px 4px 16px;
}
/*list-ac*/
.list-ac{    margin: 0 0 0 -60px;
    font-size: 0;
    }
.list-ac li{
    display: inline-block;
    margin: 0 0 0 60px;
    font-size: 16px;
}
.list-ac a{
	display: inline-block;
	padding: 4px 0 4px 20px;
	position: relative;
    color:#000;
}
.list-ac a:after{content: "";
	display: block;
    width:100%;
    border-bottom: 1px solid transparent;}
.list-ac a:hover{
	color: #000;
	text-decoration: none!important;
}
.list-ac a:hover:after{    
    border-bottom: 1px solid #000;
}
.list-ac a:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #da3633;
	border-right: 2px solid #da3633;	
	position: absolute;
	top: 13px;
	left: 0;
	transform: rotate(45deg);
}
/* link-flow */
ul.link-flow {
	margin: 0 0 0 -60px;
	font-size: 0;
}
ul.link-flow li {
	display: inline-block;
	margin: 0 0 0 60px;
	font-size: 16px;
}
/*=============================================================
 Tabs
=============================================================*/
.tab-set>.tab-panel>*{display:none;}
.tab-set>.tab-panel>*.act{display:block;}
/* tab-set */
.tab-set{
	margin: 0 0 50px;
}
/* tab-btn */
.tab-btn{
	display:flex;
	justify-content: space-between;
	flex-wrap:nowrap;	
	line-height:1.25;
	font-size: 100%;
	font-weight:bold;
	z-index:2;
}
.tab-btn>li{
	box-sizing:border-box;
	min-height:50px;
	width:calc((100% - 5px) / 2);
	background-color:#f0f0f0;
	font-size: 93.75%;
}
.tab-btn a{
	display:block;
	width:100%;
	height:100%;
	box-sizing:border-box;
	text-decoration:none;
	color: #aaaaaa;
}
.tab-btn a:hover{
	color:#fff;
	background: #da3633;
	border-bottom: none;
	text-decoration: none!important;
}
.tab-btn a.act{
	background-color: #da3633;
	color: #fff;
}
.tab-btn a>span{
	display:block;
	text-align:center;
	padding:15px 4px;
}
/* option Yugo */
/*@media all and (-ms-high-contrast: none){
.tab-btn a>span{
	padding:8px 4px 0px;
}
}*/
.tab-panel>div{
	padding:20px 0 0;
}
/* toggle-set
-------------------------------------------------------------*/
.toggle-set>.toggle-btn{
	cursor:pointer;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	position:relative;
}
.toggle-set>.toggle-btn:after{
	content:"";
	background:url(/shared/img/toggle_close.png) center center no-repeat;
	background-size: 100%;
	display:block;
	width:40px;
	height:40px;
	margin-top:-24px;
	position:absolute;
	top:50%;
	right:12px;
}
.toggle-set.open>.toggle-btn:after{
	content:" ";
	background:url(/shared/img/toggle_open.png) center center no-repeat;
	background-size: 100%;
}
.toggle-set>.toggle-box{display:none;}
/*.toggle-set.open>.toggle-box{display:block;}*/

/* toggle-sp */
.toggle-sp>.toggle-btn{cursor:auto;}
.toggle-sp>.toggle-btn:after{display:none;}
.toggle-sp>.toggle-box{display:block;}

/* delete JS Style */
@media only screen and (min-width:768px){
.toggle-sp>.toggle-box{display:block !important;}
}
.ttl-bg{
	color:#000;
	font-size: 150%;
	border-bottom: 2px solid #aaaaaa;
	line-height:1.3;
	font-weight:bold;
	margin:50px 0 20px;
	padding:12px 15px 12px 0;
	-webkit-transition:margin-top 0.3s ease-out;
	-moz-transition:margin-top 0.3s ease-out;
	-ms-transition:margin-top 0.3s ease-out;
	-o-transition:margin-top 0.3s ease-out;
	transition:margin-top 0.3s ease-out;
}
.toggle-set:not(.open)+.toggle-set:not(.open)>.ttl-bg:first-child{margin-top:20px;}
.toggle-set.toggle-sp+.toggle-set.toggle-sp>.ttl-bg:first-child{margin-top:50px;}
/*=============================================================
 profile Layout
=============================================================*/
/* profile
------------------------------------------------------------ */
.profile{
	
}
.profile>em{
	display: block;
	font-size: 93.75%;
	font-style: normal;
}
.profile>.name{
	font-size: 150%;
	font-weight: 700;
	display: inline-block;
	padding-right: 10px;
}
.profile>.ruby{
	font-size: 112.5%;
}
/* profileHistory
------------------------------------------------------------ */
.profileHistory{
	width: 100%;
	font-size: 93.75%;
	margin-top: 1em;
}
.profileHistory>dt{
	display: inline-block;
	vertical-align: top;
	width: 100px;
}
.profileHistory>dd{
	display: inline-block;
	width: calc(100% - 110px);
}
/* Box margin
------------------------------------------------------------ */
p+.blueBox,
.blueBox+.blueBox,
.blueBox+.box-bdr,
.box-bdr+.box-bdr{
	margin-top: 40px;
}
/* blueBox
------------------------------------------------------------ */
.box-bg{background: #cbeff4;
    margin:40px 0;
	padding: 34px 40px 40px;}
.blueBox{
	background: #cbeff4;
	padding: 34px 40px 40px;
	box-sizing: border-box;
	text-align: center;
}
.blueBox>.blueBoxTtl,
.box-bg>h4{
	font-size: 112.5%;
	margin-bottom: 28px;
	position: relative;
    text-align: center;
}
.blueBox>.blueBoxTtl:after,
.box-bg>h4:after{
	content: '';
	width: 75px;
	height: 5px;
	background: #22bcca;
	position: absolute;
	top:-34px;
	left:50%;
	transform: translateX(-50%);
}
/* box-bdr
------------------------------------------------------------ */
.box-bdr{
	padding: 36px 40px;
	box-sizing: border-box;
	border: 1px solid #aaaaaa;
}
.box-bdr>.box-bdrTtl{
	font-size: 112.5%;
	margin-bottom: 28px
}
.box-bdr .col-2-left > *{
	margin: 0;
}
.box-bdr .col-2-left + .col-2-left{
	margin-top: 40px;
}
/* faqBox
------------------------------------------------------------ */
.faqBox{
	display: table;
	width: 100%;
	background: #ececec;
}
.faqBox + .faqBox{
	margin-top: 10px;
}
.faqBox>dt{
	display: table-cell;
	vertical-align: middle;
	width: 84px;
	font-size: 87.5%;
	background: #000;
}
.faqBox>dd{
	display: table-cell;
	width: calc(100% - 84px);
	padding: 20px 30px;
	vertical-align: middle;
	box-sizing: border-box;
	background: #ececec;
}
.balloon-right{
  position: relative;
  display: inline-block;
  padding: 20px 10px;
	height: 100%;
	line-height: 1.2;
  color: #fff;
  background: #000;
	text-align: center;
}
.balloon-right:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  margin-top: -10px;
  border: 10px solid transparent;
  border-left: 15px solid #000;
}
/* answer*/
.answer{
	background: #cbeff4!important;
}
.answer>dt{background: #22bcca;}
.answer>dd{background: #cbeff4;}
.answer .balloon-right{background: #22bcca;}
.answer .balloon-right:before { border-left: 15px solid #22bcca;}

/*=============================================================
 table
=============================================================*/
/* table.table-default */
.table-default,
.table-dft{
	width:100%;
	font-size: 93.75%;
	border-collapse:collapse;
	border-bottom:1px solid #aaaaaa;
}
.table-default th,
.table-default td,
.table-dft th,
.table-dft td{
	padding:10px;
	border-bottom:1px dotted #aaaaaa;
	background-color:#fff;
}
.table-default th,
.table-dft th{
	border-right:1px solid #aaaaaa;
}
.table-default th,
.table-dft th:last-child{
	border-right:none;
}
.table-default td,
.table-dft td{
	border-right:1px solid #aaaaaa;
}
.table-default td:last-child,
.table-dft td:last-child{
	border-right:none;
}
.table-default.sum tr:last-child th,
.table-default.sum tr:last-child td,
.table-dft.sum tr:last-child th,
.table-dft.sum tr:last-child td{
	background-color:#f0f0f0;;
}
.table-default th,
.table-dft th{
	text-align:center;
	font-weight: normal;
}
.table-default th.ttl,
.table-dft th{
	background-color:#fae1e0!important;
	border-bottom:1px solid #aaaaaa;
	font-weight: 700;
}
/* table-list */
.table-list{
	width:100%;
	font-size: 93.75%;
	border-collapse:collapse;
	border-top:1px solid #aaaaaa;
	border-bottom:1px solid #aaaaaa;
}
.table-list th,
.table-list td{
	padding:10px;
	border-bottom:1px dotted #aaaaaa;
}
.table-list tr th:first-child,
.table-list tr td:first-child{
	border-left:none;
}
.table-list th{
	background-color:#fae1e0;
}

.table-note{
	font-size:14px;
	padding-top:10px;
}
/* table-data */
.table-data{
	font-size:87.5%;
	line-height:1.6;
	width:100%;
	border-collapse:collapse;
	border-top:1px solid #464646;
	border-bottom:1px solid #464646;
}
.table-data th,
.table-data td{
	vertical-align:middle;
	padding:12px;
	border-bottom:1px dashed #999;
}
.table-data.padS th,
.table-data.padS td{padding:10px 2px;}
.table-data th{text-align:left;}
.table-data td:first-child,
.table-data th:first-child{border-left:none;}
.table-data td,
.table-data th,
.table-data td.bdrL,
.table-data th.bdrL{border-left:1px solid #999;}
.table-data thead th,
.table-data .highlight th,
.table-data .highlight td{
	background-color:#eee;
	border-top:1px solid #464646;
	border-bottom:1px solid #464646;
}
.table-data thead th{
	font-weight:500;
	background-color:#fae1e0;
	text-align:center;
}
.table-data thead tr:not(:first-child) th{background-color: #f0f0f0;}

/* news Detael --------------------------------------------- */
.act-lm-news-release .table-data-2 th{
	text-align:left;
	vertical-align:middle;
	padding:12px;
	font-weight:normal;
	width:45%;
}

.act-lm-news-release .table-data-2 td{
	text-align:left;
	vertical-align:middle;
	padding:12px;
	font-weight:normal;
}

.act-lm-news-release .table-data td.price,
.act-lm-news-release .table-data-2 td.price{
	vertical-align:middle;
	padding:12px;
	text-align:right;
	width: 60%;
}
.act-lm-news-release .table-data.padS th,
.act-lm-news-release .table-data.padS td,
.act-lm-news-release .table-data-2.padS th,
.act-lm-news-release .table-data-2.padS td{padding:10px 2px;}
.act-lm-news-release .table-data th,
.act-lm-news-release .table-data-2 th{text-align:left;}
.act-lm-news-release .table-data td:first-child,
.act-lm-news-release .table-data th:first-child,
.act-lm-news-release .table-data-2 td:first-child,
.act-lm-news-release .table-data-2 th:first-child{border-left:none;}
.act-lm-news-release .table-data td.bdrL,
.act-lm-news-release .table-data th.bdrL,
.act-lm-news-release .table-data-2 td.bdrL,
.act-lm-news-release .table-data-2 th.bdrL{border-left:1px solid #999;}
.act-lm-news-release .table-data thead th,
.act-lm-news-release .table-data .highlight th,
.act-lm-news-release .table-data .highlight td,
.act-lm-news-release .table-data-2 thead th,
.act-lm-news-release .table-data-2 .highlight th,
.act-lm-news-release .table-data-2 .highlight td{
	background-color:#eee;
}
.act-lm-news-release .table-data thead th,
.act-lm-news-release .table-data-2 thead th{
	text-align:left;
}
.act-lm-news-release .table-data thead tr:not(:first-child) th,
.act-lm-news-release .table-data-2 thead tr:not(:first-child) th{background-color:#666;}


/*  */
.table-dft .list-dot>li:before,
.table-data .list-dot>li:before{top:0.7em;}
.table-dft .list-circle>li:before,
.table-data .list-circle>li:before{top:0.45em;}

/* c-prf */
.c-prf,
.c-prf2{
	line-height:1.6;
	width:100%;
}
.c-prf{
	margin-bottom: 10px;
}
.c-prf th,
.c-prf2 th{
	text-align:right;
	padding:3px;
	vertical-align:top;
}
.c-prf th{
	width:90px;
}
.c-prf th.w110{
	width:110px;
}
.c-prf td{
	vertical-align:middle;
	padding:3px;
	text-align:left;
}
.c-prf2 td{
	vertical-align:top;
	padding:3px;
	text-align:left;
}

.c-prf.padS th,
.c-prf.padS td{padding:10px 2px;}
.c-prf td:first-child,
.c-prf th:first-child{border-left:none;}
.c-prf thead th,
.c-prf .highlight th,
.c-prf .highlight td{
	background-color:#eee;
	border-top:1px solid #464646;
	border-bottom:1px solid #464646;
}
.c-prf thead th{
	color:#fff;
	font-weight:500;
	background-color:#333;
	text-align:center;
}
.c-prf thead tr:not(:first-child) th{background-color:#666;}

/*  */
.c-prf .list-dot>li:before,
.c-prf .list-dot>li:before{top:0.7em;}
.c-prf .list-circle>li:before{top:0.45em;}

.pic {
    margin: 30px auto 30px auto;
    text-align: center;
}

/*  */
table.award, table.schedule {
    width: 100%;
    margin: 0px auto 30px;
    padding: 0px;
    border-collapse: collapse;
    border: 1px solid #ADADAD;
}

table.schedule td, table.schedule th {
    border: 1px solid #ADADAD;
    padding: 15px;
    border-collapse: collapse;
}
table.schedule th {
		font-weight:bold;
}

/*  */
table.award th {
    border: 1px solid #ADADAD;
    padding: 15px;
    width: 42%;
    border-collapse: collapse;
    background-color: #F2F2F2;
    text-align: left;
    font-weight: normal;
    vertical-align: top;
}
table.award td {
    border: 1px solid #ADADAD;
    padding: 15px;
    border-collapse: collapse;
}
/* table-ex */
.act-lm-news-release .table-ex{
	line-height:1.6;
	width:100%;
	border-collapse:collapse;
	border-top:1px solid #464646;
	border-bottom:1px solid #464646;
}
.act-lm-news-release .table-ex th,
.act-lm-news-release .table-ex td{
	vertical-align:middle;
	padding:12px;
	border-bottom:1px dashed #999;
	text-align:left;
}

.act-lm-news-release .table-ex td.price{
	vertical-align:middle;
	padding:12px;
	text-align:right;
	width: 60%;
}
.act-lm-news-release .table-ex.padS th,
.act-lm-news-release .table-ex.padS td{padding:10px 2px;}
.act-lm-news-release .table-ex th{text-align:left;}
.act-lm-news-release .table-ex td:first-child,
.act-lm-news-release .table-ex th:first-child{border-left:none;}
.act-lm-news-release .table-ex td,
.act-lm-news-release .table-ex th,
.act-lm-news-release .table-ex td.bdrL,
.act-lm-news-release .table-ex th.bdrL{border-left:1px solid #999;}
.act-lm-news-release .table-ex thead th,
.act-lm-news-release .table-ex .highlight th,
.act-lm-news-release .table-ex .highlight td{
	background-color:#eee;
	border-top:1px solid #464646;
	border-bottom:1px solid #464646;
}
.act-lm-news-release .table-ex thead th{
	font-weight:500;
	background-color:#eee;
	text-align:center;
}
.act-lm-news-release .table-ex thead tr:not(:first-child) th{background-color:#666;}

table th .txtnrm{
 font-weight: normal;
}

/* endorsement */
.ed-c {
	width: auto;
	border: 1px solid #ADADAD;
	padding: 20px;
	margin: 30px 20px;
}
.txt-r {
	text-align:right;
}
.mT1L {
    margin-top: 1.8em !important;
}
.f_red{
	color:#FF0000;
}
.pr25 {
    text-align: right;
    width: 25%;
}
.pr50 {
    text-align: right;
    width: 50%;
}
.pr75 {
    text-align: right;
    width: 75%;
}

.act-lm-news-release table.price {
    width: 40%;
    margin: 0 0 20px 25px;
    padding: 0 0 0 0;
    border-collapse: separate;
    border: none;
}
.act-lm-news-release table.price2 {
    width: 40%;
    margin: 0 0 0 25px;
    padding: 0 0 0 0;
    border-collapse: separate;
    border: none;
}
.act-lm-news-release table.price3 {
    width: 50%;
    margin: 0 0 0 25px;
    padding: 0 0 0 0;
    border-collapse: separate;
    border: none;
}
.act-lm-news-release table.price4 {
    width: 80%;
    margin: 0 0 0 25px;
    padding: 0 0 0 0;
    border-collapse: separate;
    border: none;
}
.act-lm-news-release table.price5 {
    width: 95%;
    margin: 0 0 0 25px;
    padding: 0 0 0 0;
    border-collapse: separate;
    border: none;
}
.act-lm-news-release table.price6 {
    width: 60%;
    margin: 0 0 0 25px;
    padding: 0 0 0 0;
    border-collapse: separate;
    border: none;
}
.act-lm-news-release table.price5 tr th{
  width: 70%; 
}

.act-lm-news-release table.price5 tr td{
  width: 30%;
}

/* googleMaps
-------------------------------------------------------------*/
.googleMaps{
	margin-top:20px;
	/* padding-top:61.1%; */
	/* border:1px solid #ccc; */
	position:relative;
}
.googleMaps>div{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}
.googleMaps .gm-style{
	font-family:inherit;
	line-height:1.5;
}
/* popup
-------------------------------------------------------------*/
@keyframes modal-video {
from {
opacity:0;
}
to {
opacity:1;
}
}
@keyframes modal-video-inner {
from {
transform:translate(0, 100px);
}
to {
transform:translate(0, 0);
}
}

.modal-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	z-index: 1000000;
	cursor: pointer;
	opacity: 1;
	animation-timing-function: ease-out;
	animation-duration: .3s;
	animation-name: modal-video;
	-webkit-transition: opacity .3s ease-out;
	-moz-transition: opacity .3s ease-out;
	-ms-transition: opacity .3s ease-out;
	-o-transition: opacity .3s ease-out;
	transition: opacity .3s ease-out;
}

.modal-video-close {
	opacity: 0;
}

.modal-video-close .modal-video-movie-wrap {
	-webkit-transform: translate(0, 100px);
	-moz-transform: translate(0, 100px);
	-ms-transform: translate(0, 100px);
	-o-transform: translate(0, 100px);
	transform: translate(0, 100px);
}

.modal-video-body {
	max-width: 800px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: table;
}

.modal-video-inner {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	padding:5px;
	-moz-box-sizing: border-box !important;
	-webkit-box-sizing: border-box !important;
	box-sizing: border-box !important;
}

.modal-video-movie-wrap {
	width: 100%;
	height: 0;
	position: relative;
	padding-bottom: 56.25%;
	background-color: #333;
	animation-timing-function: ease-out;
	animation-duration: .3s;
	animation-name: modal-video-inner;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	-webkit-transition: -webkit-transform .3s ease-out;
	-moz-transition: -moz-transform .3s ease-out;
	-ms-transition: -ms-transform .3s ease-out;
	-o-transition: -o-transform .3s ease-out;
	transition: transform .3s ease-out;
}

.modal-video-movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modal-video-close-btn {
	position: absolute;
	z-index: 2;
	top: -35px;
	right: -5px;
	display: inline-block;
	width: 35px;
	height: 35px;
	overflow: hidden;
	border: none;
	background: transparent;
	cursor: pointer;
}

.modal-video-close-btn:before {
	transform: rotate(45deg);
}

.modal-video-close-btn:after {
	transform: rotate(-45deg);
}

.modal-video-close-btn:before,
.modal-video-close-btn:after {
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background: #fff;
	border-radius: 5px;
	margin-top: -6px;
}
body.fixed {
 	position: fixed;
	width: 100%;
  left: 0;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:1023px) {
/*=============================================================
 contents Layout
=============================================================*/
/* contents
-------------------------------------------------------------*/
#PageTtlArea+#pageBody>.clearfix>#contents{margin-top:0;}
#contents {
	padding-top: 60px;
}
/* boxContents */
	.boxContentsOuter {
		margin: 0 20px;
	}
/* Contents Box LAYOUT
------------------------------------------------------------ */
#contentBody {}
#contentBodyInner {
		display: block;
		padding: 0;
}
#topicPathArea+#pageBody {
    margin: 0;
}
#PageTtlArea+#pageBody>div,
#topicPathArea+#pageBody>div{
	padding: 0;
}
header+#pageBody{padding-top: 60px;}
#pageBody {
	display: block;
	position: static !important;
}
#pageBody>.clearfix {
    display: block;
}
#pageBody .pageTitle+* {
    margin-top: 190px !important;
}
/* section
------------------------------------------------------------ */
section + section{
	margin-top: 80px;
}
/*=============================================================
 header-type01-2L
=============================================================*/
/*---------------------------------------------------------- */
/* header-type01-2L
------------------------------------------------------------ */
/* common */
#header-type01-2L {
	width: 100%;
	height: 60px;
	position:fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background: #fff;
}
#header-type01-2L #header {
	position:fixed;
}
#header h1{
	margin: 0 20px;
}
#header h1 a{
	width: 120px;
	height: 60px;
	display: flex;
	align-items: center;
}
/* #searchArea
------------------------------------------------------------ */
#searchArea {
}
#btnSearch {
	width: 50px;
	height: 60px;
	right: calc(60px);
}
#btnSearch:hover {
	opacity: 0.7;
}
#btnSearch > span {
	width: 50px;
	height: 60px;
}
#btnSearch > span:before,
#btnSearch > span:after{
	width: 24px;
}
#searchArea dd {
	position: absolute;
	width: 100%;
	top: 60px;
	left: 0;
	padding-left:  calc(0%);
	padding-right:  calc(0%);
	z-index: 9999;
}
.openSearch #searchArea dd {
	height: 100px;
}
#searchArea #srchBox {
	padding: 20px;
}
#searchArea dd input.yh-input {
	height: 60px;
	line-height: 60px;
	box-sizing: border-box;
}
#searchArea dd td.yh-search-button{
	width: 38px;
	height: 60px;
}
#searchArea dd td.yh-search-button input#srchBtn{
	width: 38px;
	height: 60px;
}
/*---------------------------------------------------------- */
/* #globalNavSet
------------------------------------------------------------ */
/* sp-menu */
#globalNavSet>dt{
	display:block;
	width:50px;
	height:60px;
	position:absolute;
	top:0;
	right:10px;
	cursor:pointer;
}
#globalNavSet>dt div{
	display:block;
	width:50px;
	height:60px;
	position:relative;
	overflow:hidden;
}
#globalNavSet>dt span.btn{
	display:block;
	width:24px;
	height:18px;
	box-sizing: border-box;
	text-indent:200px;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -9px 0 0 -12px;
	transition:all 0.4s;
}
#globalNavSet>dt span.btn:before{
	content: "";
}	
#globalNavSet>dt span.btn:before,
#globalNavSet>dt span.btn:after{
	content: "";
	display: block;
	width: 24px;
	height: 2px;
	background: #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transition:all 0.4s;
	transform: translate(-50%,-50%) rotate(0);
}
#globalNavSet.open>dt span.btn{
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
}
#globalNavSet.open>dt span.btn:before{
	transform: translate(-50%,-50%) rotate(45deg);
}
#globalNavSet.open>dt span.btn:after{
	transform: translate(-50%,-50%) rotate(-45deg);
}
#globalNavSet>dd{
	background-color:#000;
	box-sizing:border-box;
	width:100%;
	padding:0;
	visibility:hidden;
	overflow:hidden;
	position:fixed;
	top:60px;
	bottom:100%;
	left:0;
	z-index:1;
	opacity:0;
	transition:all 0.4s;
}
#globalNavSet.open>dd{
	z-index:2;
	visibility:visible;
	bottom:0;
	opacity:1;
}
#globalNavSet>dd>*{visibility:hidden;}
#globalNavSet>dd>div::after{
	content:"";
  display:block;
  height:30px;
}
#globalNavSet.open>dd>*{visibility:inherit;}
html.gNavOpen,
html.gNavOpen body{
	height:100%;
	overflow:hidden;
}
html.gNavOpen #globalNavSet>dd>div{
	box-sizing:border-box;
	width:100%;
	height:100%;
	overflow:auto;
	overflow-x: hidden;
	position:relative;
	-webkit-overflow-scrolling:touch;
}
/* #globalNav検証用 */
/*#globalNavSet>dd{
	z-index:2;
	visibility:visible;
	bottom:0;
	opacity:1;
}
#globalNavSet>dd>*{visibility:inherit;}
html,
html body{
	height:100%;
	overflow:hidden;
}
html #globalNavSet>dd>div{
	box-sizing:border-box;
	width:100%;
	height:100%;
	overflow:auto;
	overflow-x: hidden;
	position:relative;
	-webkit-overflow-scrolling:touch;
}*/
/* #globalNav検証用 */
	
	
/* #globalNav
------------------------------------------------------------ */
#globalNav {
	display: block;
	padding: 30px 0;
}
/* #globalNav Category */
#globalNav > li {
	width: calc(100%);
}
#globalNav > li > a {
	height: 60px;
	box-sizing: border-box;
	padding: 0 30px;
	color: #fff;
	border-left:none;
	font-size: 18px;
}
#globalNav > li > a.spOpen {
	color: #da3633;
}
#globalNav > li > a span{
	display: inline-block;
	width: 100%;
	text-align: left;
	position: relative;
}
#globalNav > li > a span{
	display: inline-block;
	width: 100%;
	text-align: left;
	position: relative;
}	
#globalNav > li > a span.mark{
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
#globalNav > li > a span.mark span{
	display: block;
	width: 20px;
	height: 20px;
	position:relative;
}
#globalNav > li > a span.mark span:before,
#globalNav > li > a span.mark span:after{
	content: "";
	display: block;
	width: 16px;
	height: 2px;
	background: #da3633;
	position: absolute;
	top: 50%;
	left: 50%;
	transition:all 0.4s;
}
#globalNav > li > a span.mark span:before{
	transform: translate(-50%,-50%) rotate(0deg);
}
#globalNav > li > a span.mark span:after{
	transform: translate(-50%,-50%) rotate(90deg);
}
#globalNav > li > a.spOpen span.mark span:before{
	transform: translate(-50%,-50%) rotate(180deg);
}
#globalNav > li > a.spOpen span.mark span:after{
	transform: translate(-50%,-50%) rotate(180deg);
}

#globalNav > li#gbRecruit > a span:after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
/* hdr-gbDrop */
#globalNav .hdr-gbDrop {
	display: none;
	position: static;
	padding: 0 20px;
	box-sizing: border-box;
}
#globalNav .hdr-gbDrop.spOpen {
}
#globalNav .hdr-gbDrop > .box{
	padding: 0;
	padding-left: calc(0%);
	padding-right: calc(0%);
}
/* ttlArea */
#globalNav .hdr-gbDrop > .box .ttlArea{
	display: block;
	margin-bottom:0;
}
#globalNav .hdr-gbDrop > .box .ttlArea p a{
	display:block;
	padding: 0 0 0 30px;
	font-size: 16px;
	font-weight: 400;
}
#globalNav .hdr-gbDrop > .box .ttlArea p a:before{
	display: none;
}
#globalNav .hdr-gbDrop > .box .ttlArea .btnClose{
	display: none;
}
/* level1 */
#globalNav .hdr-gbDrop > .box .level1{
	display:block;

}
#globalNav .hdr-gbDrop > .box .level1 a.arw{
	display:block;
	padding-left: 30px;
	font-size: 16px;
}
#globalNav .hdr-gbDrop > .box .level1 a.arw:before{
	display: none;
}
#globalNav .hdr-gbDrop > .box .level1 span.noLink{
	padding-left: 30px;
}	
#globalNav .hdr-gbDrop > .box .level1 > ul{
	display:block;
}
#globalNav .hdr-gbDrop > .box .level1 > ul > *{
	padding: 20px 0 0 0;
	width: calc(100%);
}
#globalNav .hdr-gbDrop > .box .level1 > ul > *:last-child{
	margin-bottom: 20px;
}	
#globalNav .hdr-gbDrop > .box .level1 > ul:after{
	display: none;
}
#globalNav .hdr-gbDrop > .box .level1 > ul:before{
	display: none;
}
#globalNav .hdr-gbDrop > .box .level1 > ul.half > *{
	width: calc(100%);
}
/* bnr */
#globalNav .hdr-gbDrop > .box .level1 > ul .bnr{
	display: block;
	margin:  20px 30px 0;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm{
	display: block;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm > .boxL,
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm > .boxR{
	width: calc(100%);
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm > .boxL > ul{
	display: block;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm > .boxL > ul > li{
	padding-top: 20px;
	width: calc(100%);
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm > .boxR > ul > li{
	padding-top: 20px;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr{
	display: block;
	max-width: 200px;
	margin:  20px 30px 0;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a{
	display: block;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a > span{
	width: calc(100%);
	font-size: 11px;
	line-height: 1.25;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a > span:first-child{
	display: block;
	padding: 10px 10px 0 10px;
	box-sizing: border-box;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a > span > strong{
	display: block;
	padding: 0 0 10px 0;
	font-size: 130%;
}
#globalNav .hdr-gbDrop > .box .level1 > .boxIrClm  .bnr a > span > strong > span{
	display: inline-block;
}
/* #subMenu
------------------------------------------------------------ */
#subMenu {
	position:static;
}
#subMenu ul{
	justify-content: center;
	height: 24px;
	padding: 30px 0;
}
#subMenu ul li a{
	padding: 0 20px;
	color: #fff;
}
#subMenu ul li:first-child a{
	border-left: 1px solid #fff;
}
/* #btnCustomer
------------------------------------------------------------ */
#btnCustomer {
	width: calc(100%);
	position:static;
	box-sizing: border-box;
	padding: 0 20px;
}
#btnCustomer a{
	display:block;
	height:auto;
	padding: 20px 0;
	background: #000;
	text-align: center;
	border: 1px solid #fff;
	font-size: 16px;
	font-weight: 700;
}
/*=============================================================
 topicPath
=============================================================*/
	#topicPath,
    #topicPathArea{
		display: none;
	}
/*=============================================================
 #localMenu
=============================================================*/
#pageBody>div>#localMenu{margin-top:90px;}
	#localMenu {
		width: auto;
		margin: 90px -5.5% 0;
		padding: 0 20px;
		background: #f0f0f0;
	}
	#localMenu nav > dl > dt {
    padding: 16px 0;
	}
	#localMenu #mainArea > ul li ul {
    padding: 0 0 0 18px;
	}
	#localMenu #mainArea > ul li a.levelFirst {
		padding: 12px 0 12px 18px;
	}
	#localMenu #mainArea > ul li li a {
		padding: 7px 0 7px 18px;
	}
	#subArea,
	#bnrArea{
		/* display: none; */
		padding-bottom: 40px;
	}
/*=============================================================
 footer
=============================================================*/
#footer {
	margin: 0;
}	
/* ftr-pagetop
-------------------------------------------------------------*/
	#ftr-pagetop {
		right: 15px;
		bottom: 15px;
	}
/*---------------------------------------------------------- */
/* footer
------------------------------------------------------------ */
	.footerBox {
		position: static;
	}
	.footerBox .footerLink {}
	.footerBox .footerLink li {
		display: block;
		font-size: 14px;
		padding: 0 15px 0 15px;
		margin-bottom: 20px;
		position: static;
	}
	.footerBox .footerLink li:first-child {
		padding-left: 15px;
	}
	.footerBox .footerLink li:after {
		content: none;
	}
	.footerBox .footerSns {
		margin: 40px 0;
		padding: 0 15px 0 15px;
		position: static;
	}
	.footerBox .footerSns .snsBtn > * {
		margin-right: 10px;
	}
	.copyright {
		font-size: 10px;
		text-align: center;
	}
/*=============================================================
 txt
=============================================================*/
p {
		font-size: 87.5%;
	}
p.lead+p{
		margin-top: 0;
	}	
/*---------------------------------------------------------- */
/* lead
------------------------------------------------------------ */
p.lead,
.lead{
  font-size: 93.75%;
	margin-bottom: 1em;
}	
/* catch */
.catch{
	font-size:162.5%;
	line-height:1.3;
	font-weight:500;
	margin-bottom:40px;
}
.catch2{
	font-size:150%;
	line-height:1.3;
	font-weight:500;
	margin-bottom:40px;
	text-align: center;
}
/*=============================================================
 ttl
=============================================================*/
/*---------------------------------------------------------- */
/* PageTtlArea
------------------------------------------------------------ */
/* pageTitle */
#pageBody .pageTitle{width : 100%;
    margin-left: 0;
        top: 60px;
}
.pageTitle>*,
.contentsWide .pageTitle>*{
	box-sizing:border-box;
	width:100%;
	padding-right:24px;
	padding-left:24px;
}
#topicPathArea+#PageTtlArea{margin-top:60px}
#PageTtlArea{
	background-size:100% auto;
	border-bottom: 1px solid #ccc;
}
#PageTtlArea h1,#pageBody .pageTitle h1{
	height: 128px;
	font-size: 150%;
	line-height: 1.4;
}
#PageTtlArea h1:after{
	width: 70px;
}
/* ttl-underBdr
------------------------------------------------------------ */
.ttl-underBdr{
	font-size: 137.5%;
	margin:0 0 24px 0; 
}
/* ttl-underBdr
------------------------------------------------------------ */
.ttl-leftBdr{
	font-size: 125%;
	margin:0 0 26px; 
}
p+.ttl-leftBdr{
	margin:30px 0 0; 
}
/* ttl-underInlineBdr
------------------------------------------------------------ */
.ttl-underInlineBdr{
	font-size: 93.75%;
	margin:0 0 26px; 		
}
p+.ttl-underInlineBdr{
	margin:30px 0 0;
}	
/* ttl-red
------------------------------------------------------------ */
.ttl-red{
	margin:0 0 16px;
}
/* ttl-related	
------------------------------------------------------------ */
.ttl-related{
	margin: 0 0 20px 0;
}
	
/*=============================================================
 newsList1L
=============================================================*/
/*.newsList1L>dt{
	display: block;
	padding-bottom: 0px;
	font-size: 87.5%;
}
.newsList1L>dt span{
	font-size: 100%;
}
.newsList1L>dd{
	display: block;
	border-top: none;
	width: 100%;
	font-size: 87.5%;
	padding-top: 0;
	padding-left: 0px;
}
/* list-news */

.list-news dd{
	margin-top:0;
	padding:5px 0 15px 0;
}
#corp .history .list-news.toggle-box dt{width: 4em;} 
#corp .history .list-news.toggle-box dd{
  padding-left: 4em!important;
  margin-top: -1.8em;
}  
/* news-tabSet */
.news-tabSet{font-size: 87.5%;}
.news-tabSet li{
	min-height: 40px;
	width: calc((100% - 10px) / 2);
	font-size: 100%;
	margin-bottom: 10px;
}
.news-tabSet li a{padding: 12px 4px;}
.news-tabSet.clearfix::after{display: none;}


/*=============================================================
  col---left
=============================================================*/
	.col-2-left, .col-3-left, .col-4-left {
		display: block;
	}
/* col-2-left
------------------------------------------------------------ */
	.col-2-left:after {
		content: none;
	}
	.col-2-left > * {
		width: 100%;
		margin: 0 0 20px 0;
	}
/* col-3-2-left
------------------------------------------------------------ */
	.col-3-left:after {
		content: none;
	}
	.col-3-left > * {
		width: 100%;
		margin: 0 0 20px 0;
	}
/*=============================================================
 list
=============================================================*/
/* list-circle
------------------------------------------------------------ */
.list-circle{
	margin: 1em 0;
}
.list-circle li {
	font-size: 87.5%;
}
/* list-menuSet
------------------------------------------------------------ */
.list-menuSet{display: block;}
.list-menuSet:after {content: none;}
.list-menuSet > * {
	width: 100%;
	margin: 0 0 20px 0;
}

/*=============================================================
 link
=============================================================*/
/*---------------------------------------------------------- */
/* iconLink
------------------------------------------------------------ */
.link a,
.iconArw a,
.iconBlank a,
.iconPdf a,
.iconZip a,
.iconAc a{
	font-size: 87.5%;
}
.related-flow>li{
	display: block!important;
	}
/*=============================================================
 Tabs
=============================================================*/
.tab-btn>li{
	min-height:40px;
	width: calc((100% - 18px) / 2);
	font-size: 87.5%;
}
.tab-panel>div{
	padding:10px 0 0;
}
/*=============================================================
 profile Layout
=============================================================*/
/* profile
------------------------------------------------------------ */
.profile{}
.profile>.name{font-size: 137.5%;}
.profile>.ruby{font-size: 100%;}
/* profileHistory
------------------------------------------------------------ */
.profileHistory{font-size: 87.5%;}
.profileHistory>dt{
	display: block;
	width: 100%;
}
.profileHistory>dd{
	display: block;
	width: 100%;
	margin-bottom: 5px;
}
/* Box margin
------------------------------------------------------------ */
p+.blueBox,
.blueBox+.blueBox,
.blueBox+.box-bdr,
.box-bdr+.box-bdr{
	margin-top: 20px;
}
/* blueBox
------------------------------------------------------------ */
.blueBox{padding: 32px 22px;}
.blueBox>.blueBoxTtl{margin-bottom: 18px;}
.blueBox>.blueBoxTtl:after{top:-32px;}
.blueBox>p{text-align: left;}
/* box-bdr
------------------------------------------------------------ */
.box-bdr{padding: 32px 22px;}
.box-bdr>.box-bdrTtl{margin-bottom: 18px}
.box-bdr .col-2-left > *{margin: 0 0 20px 0;}
.box-bdr .col-2-left .col-2-left{display: flex;}	
.box-bdr .col-2-left + .col-2-left{margin-top: 20px;}
.box-bdr.bdrKey{border-color:#344f9c;}
.box-bdr.bg{background-color:#eee;}
/* box-bg */

	
/* faqBox
------------------------------------------------------------ */
.faqBox{display: block;}
.faqBox + .faqBox{margin-top: 20px;}
.faqBox>dt{
	display: block;
	width: 100%;
}
.faqBox>dd{
	display: block;
	width: 100%;
	padding: 20px 20px;
}
.balloon-right{
  display: block;
  padding: 10px 10px;
	height: 100%;
}
.balloon-right:before {
  bottom:-30px;
	left:50%;
	transform: none;
	transform: translateX(-50%);
	top:inherit;
  right: inherit;
  margin-top: 0;
  border-left: none;
  border: 15px solid transparent;
  border-top: 20px solid #000;
}
/* answer*/
.answer .balloon-right:before {
	border-left: none;
	border: 15px solid transparent;
	border-top: 20px solid #22bcca;
}	
/*=============================================================
 table
=============================================================*/
/* table.table-default */
.table-default{
	width:100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-bottom: 80px;
}
.table-default th.cellFix {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	/*border-right: 1px solid #ddd;*/
	z-index: 1;
}
/* table-list */
.table-list{
	margin-bottom: 80px;
}	
.table-list th,
.table-list td{
	display: block;
	border-bottom:1px dotted #aaaaaa;
}
.table-list td{border: none;}	
	
	
.table-note{
	font-size:13px;
}

/* sp-table-scroll 
-------------------------------------------------------------*/
.sp-table-scroll {
	overflow: auto;
	white-space: nowrap;
	table-layout: auto;
	-webkit-overflow-scrolling: touch;
	position: relative;
	z-index: 100;
}
.sp-table-scroll>table {
	margin-bottom: 5px;
}
html:not(.win) .sp-table-scroll::-webkit-scrollbar {
height:5px;
}
html:not(.win) .sp-table-scroll::-webkit-scrollbar-track {
 background:#e3e4e5;
 border-radius:10px;
}
html:not(.win) .sp-table-scroll::-webkit-scrollbar-thumb {
 background:#84919d;
 border-radius:10px;
}
.sp-table-scroll .arwSc {
	background: url(../img/table-arw.png) no-repeat 0 0/auto 100px;
	width: 100px;
	height: 100px;
	margin: -50px 0 0 -50px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	transition: opacity 0.2s ease-out;
}
.sp-table-scroll.sc .arwSc {
	opacity: 0.4;
	visibility: visible;
}

.box-related dd li{display: block; margin-left: 0;}
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones (portrait)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:440px) {}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones small (portrait)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:374px) {}