@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap');
/* ****************************************************************************

　目次

-------------------------------------------------------------------------------

　01. モジュール

******************************************************************************* */
/* ==

　01. モジュール

=============================================================================== */
body {
	color: #323232;
	font-weight: 400;
}
p {
	position: relative;
	line-height: 2;
	margin: 0 0 30px;
	font-size: 117%;
	font-weight: 400;
	z-index: 1;
}
p:last-child {
	margin-bottom: 0;
}
a {
	color: #1a1a1a;
	text-decoration: underline;
}
em {
	font-weight: 700;
} 
.r3Header .r3Header_sub {
	margin: 0;
	z-index: 0;
}
.r3Breadcrumbs .r3Breadcrumbs_nav {
	color: #888;
}
.r3Breadcrumbs .r3Breadcrumbs_nav li {
	margin: 0 0 0 20px;
}
.r3Breadcrumbs .r3Breadcrumbs_nav a {
	color: #333;
}
.r3Breadcrumbs .r3Breadcrumbs_nav li::before {
	left: -14px;
	width: 8px;
	height: 8px;
	background-size: contain;
}
.r3Main {
	padding: 0 15px;
	box-sizing: border-box;
	overflow: hidden;
}
.d_hover .fnFade:hover {
	opacity: .4;
}
.fnFade2 {
	transition: opacity .3s;
}
.d_hover .fnFade2:hover {
	opacity: .4;
}
/* サブヘッダー
------------------------------------------------------------------------------- */
.lbsubHeader {
	position: relative;
	min-width: 950px;
	height: 62px;
}
.lbsubHeader_wrap {
	height: 62px;
	padding: 0 15px;
	border-bottom: 1px solid #e1e1e1;
	background-color: #fff;
	box-sizing: border-box;
}
.lbsubHeader-fix .lbsubHeader_wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 950px;
	animation: labHeaderFix .4s both;
	
    z-index: 1100;
}
@keyframes labHeaderFix {
	0% {
		top: -70px;
	}
	100% {
		top: 0;
	}
}
.lbsubHeader_in {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	max-width: 1240px;
	margin: 0 auto;
}
.lbsubHeader_head {
	width: 150px;
	line-height: 60px;
	font-size: 142%;
	font-weight: 500;
}
.lbsubHeader_head a {
	text-decoration: none;	
}
.lbsubHeader_body {
	width: -webkit-calc(100% - 150px);
	width: calc(100% - 150px);
}
.lbsubHeader_btn {
	display: none !important;
}
.lbsubHeader_nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
	height: 100%;
	font-size: 16px;
	font-weight: 500;
}
.lbsubHeader_item a,
.lbsubHeader_item span {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	height: 100%;
	padding: 0 24px;
	text-decoration: none;
	cursor: pointer;
}
@media only screen and (max-width: 1100px) { 
	.lbsubHeader_nav {
		font-size: 15px;
		letter-spacing: -0.01em;
	}
	.lbsubHeader_item a,
	.lbsubHeader_item span {
		padding: 0 18px;
	}
}
.lbsubHeader_item-current a::before,
.lbsubHeader_item-current span::before,
.lbsubHeader_item.fnLbDrop-show span::before,
.lbsubHeader_item.fnLbDrop-show span::before,
.d_hover .lbsubHeader_item span:hover::before,
.d_hover .lbsubHeader_item a:hover::before {
	content: '';
	display: block;
	position: absolute;
	right: 24px;
	bottom: -2px;
	left: 24px;
	height: 2px;
	background-color: #f41e46;
	z-index: 1109;
}
.lbsubHeader_item-current:last-child a::before,
.d_hover .lbsubHeader_item:last-child a:hover::before {
	right: 0;
}
.lbsubHeader_item a::after,
.lbsubHeader_item span::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 14px;
	margin: -7px 0 0;
	background-color: #ccc;
}
.lbsubHeader_item:last-child a {
	padding-right: 0;
}
.lbsubHeader_item:last-child a::after {
	content: none;
}
.lbsubHeader_hide {
	display: none !important;
}
/* メガメニュー
------------------------------------------------------------------------------- */
.lbDrop {
	position: absolute;
	top: 62px;
	left: 0;
	width: 100%;
	min-width: 950px;
	height: 0;
	background-color: #f4f4f4;
	transition: height 0.25s ease;
	z-index: 1110;
	overflow: hidden;
}
.lbDrop::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #e1e1e1;
}
.r3Header-active,
.lbsubHeader-active {
	position: relative;
	z-index: 1050;
}
.lbDrop_overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000;
	z-index: 1000;
}
.lbDrop_overlay-show {
	display: block;
	animation: lbOverlay .2s linear both;
}
@keyframes lbOverlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}

.lbDrop_wrap {
	display: none;
	position: relative;
	padding: 0 15px;
	z-index: 10;
}
.lbDrop_in {
	max-width: 1240px;
	margin: 0 auto;
}
.lbDrop_body {
	padding: 0 0 70px;
}
.lbDrop_nav1 li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	padding: 25px 0 27px;
	border-bottom: 1px solid #e8e8e8;
}
.lbDrop_nav1 p {
	width: 210px;
	line-height: 1;
	margin: 0;
	font-size: 134%;
	font-weight: 700;
}
.lbDrop_nav1 p a {
	display: block;
	position: relative;
	line-height: 1.3;
	color: #1a1a1a;
}
.lbDrop_nav1 p a::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 17px;
	height: 8px;
	margin: -3px 0 0;
	background: url(/lab/common/images/svg/arw_ico02.svg) center center no-repeat;
	background-size: contain;
}
.lbDrop_nav1 ul {
	width: -webkit-calc(100% - 210px);
	width: calc(100% - 210px);
	line-height: 1;
	margin: -15px 0 0;
	padding: 1px 0 0 65px;
	font-size: 117%;
	font-weight: 500;
	letter-spacing: -0.5em;
	box-sizing: border-box;
}
.lbDrop_nav1 ul li {
	display: inline-block;
	position: relative;
	margin: 15px 34px 0 0;
	padding: 0 0 0 10px;
	border-bottom: none;
	vertical-align: top;
	letter-spacing: normal;
}
.lbDrop_nav1 ul li::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.4em;
	left: 0;
	width: 3px;
	height: 3px;
	border-radius: 100%;
	background-color: #d2d2d2;
}
.lbDrop_nav2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -20px;
	line-height: 1.5;
	font-size: 134%;
	font-weight: 700;
}
.lbDrop_nav2 li {
	width: -webkit-calc(25% - 40px);
	width: calc(25% - 40px);
	height: 69px;
	margin: 0 20px;
	border-bottom: 1px solid #e8e8e8;
}
.lbDrop_nav2 a {
	display: block;
	position: relative;
	padding: 21px 0 22px;
	text-decoration: none;
}
.lbDrop_nav2 a::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 17px;
	height: 8px;
	margin: -4px 0 0;
	background: url(/lab/common/images/svg/arw_ico02.svg) center center no-repeat;
	background-size: contain;
}
.lbDrop a {
	color: #1a1a1a;
	text-decoration: none;
}
.lbDrop_head {
	position: relative;
	padding: 19px 0 12px;
	border-bottom: 2px solid #e1e1e1;
}
.lbDrop_head::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 45px;
	height: 2px;
	background-color: #f41e46;
}
.lbDrop_tit {
	line-height: 1.5;
	font-size: 167%;
	font-weight: 700;
}
.lbDrop_tit a {
	color: #1a1a1a;
	text-decoration: none;
}
.lbDrop_tit a::after {
	content: '';
	display: inline-block;
	width: 17px;
	height: 8px;
	margin: 0 0 0 20px;
	background: url(/lab/common/images/svg/arw_ico02.svg) center center no-repeat;
	background-size: contain;
	vertical-align: 0.13em;
}
.lbDrop_bnr1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 30px 0 -20px;
}
.lbDrop_bnr1 li {
	width: 22.59%;
	max-width: 280px;
	margin-right:20px;
}
.lbDrop_bnr1 a {
	display: block;
	text-decoration: none;
}
.lbDrop_bnr1 span {
	display: block;
	height: 103px;
	overflow: hidden;
}
.lbDrop_bnr1 span img {
	transition: all .3s;
}
.d_hover .lbDrop_bnr1 a:hover span img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}
.lbDrop_bnr1 p {
	line-height: 1.5;
	margin: 5px 0 0;
	font-size: 117%;
	font-weight: 400;
	transition: opacity .3s;
}
.d_hover .lbDrop_bnr1 a:hover p {
	opacity: .4;
}
/* サブフッター
------------------------------------------------------------------------------- */
.lbSubFooter {
	position: relative;
	min-width: 950px;
	margin: 0;
	padding: 0 15px;
	background: url(/lab/common/images/subfooter_bg01.jpg) center bottom no-repeat;
	background-size: cover;
	z-index: 1;
	overflow: hidden;
	box-sizing: border-box;
}
.lbSubFooter_in {
	max-width: 950px;
	margin: 0 auto;
	padding: 100px 0 277px;
}
.lbSubFooter_nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}
.lbSubFooter_item {
	width: 25%;
}
.lbSubFooter_head {
	position: relative;
	margin: 0 auto 53px;
	padding: 0 0 61px;
}
.lbSubFooter_head_in {
	margin:0 auto;
	width:638px;
	display:flex;
	justify-content: space-between;
}
.lbSubFooter_head a{
	width:296px;
}

.lbSubFooter_head a::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #fff;
	opacity: .2;
}
.lbSubFooter_top {
	display: block;
	max-width: 296px;
	margin: 0;
	text-decoration: none;
}
.lbSubFooter_img {
	display: block;
	width: 296px;
	height: 140px;
	margin: 0 0 16px;
	overflow: hidden;
}
.lbSubFooter_img img {
	transition: all .3s;
}
.d_hover a:hover .lbSubFooter_img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}
.lbSubFooter_caption {
	line-height: 1;
	color: #fff;
	font-size: 142%;
	font-weight: 400;
	transition: opacity .3s;
}
.d_hover a:hover .lbSubFooter_caption {
	opacity: .4;
}
.lbSubFooter_tit {
	position: relative;
	line-height: 1.75;
	margin: 43px 0 0;
	padding: 0 0 15px;
	color: #fff;
	font-size: 142%;
	font-weight: 400;
}
.lbSubFooter_tit:first-child {
	margin-top: 0;
}
.lbSubFooter_tit::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 10px;
	height: 1px;
	background-color: #fff;
}
.lbSubFooter_tit a {
	color: #fff;
	text-decoration: none;
}
.lbSubFooter_tit a:hover {
	text-decoration: underline;	
}
.lbSubFooter_list {
	line-height: 1.75;
	margin: 24px 0 0;
	color: #fff;
	font-size: 125%;
	font-weight: 300;
}
.lbSubFooter_list li {
	margin: 0;
	opacity: 0.6;
}
.lbSubFooter_list li:first-child {
	margin-top: 0;
}
.lbSubFooter_list a {
	color: #fff;
	text-decoration: none;
}
.lbSubFooter_list a:hover {
	text-decoration: underline;	
}
.lbSubFooter_list .lbSubFooter_topsp {
	margin-top: 26px;
}
/* 大枠
------------------------------------------------------------------------------- */
.lbWrapper {
	margin: 0 -500%;
	padding: 100px 500%;
	background-color: #f4f4f4;
}
.lbWrapper-btmsp {
	padding-bottom: 145px;
}
/* コンテンツ
------------------------------------------------------------------------------- */
.lbContent {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
}
/* セクション
------------------------------------------------------------------------------- */
.lbSection01 {
	margin: 120px 0 150px;
}
.lbSection02 {
	margin: 60px 0 65px;
}
.lbSection03 {
	margin: 150px 0;
}
.lbSection04 {
	margin: 100px 0 100px;
}
.lbSection05 {
	margin: 100px 0 145px;
}
.lbSection06 {
	margin: 90px 0 145px;
}
/* パンくず
------------------------------------------------------------------------------- */
.r3Breadcrumbs {
	background: none;
	overflow: hidden;
	padding: 0 15px;
}
.r3Breadcrumbs .ibLine01 span:nth-child(1),
.r3Breadcrumbs .ibLine01 span:nth-child(2) {
	display: none;
}
.r3Breadcrumbs .ibLine01 span:nth-child(1),
.r3Breadcrumbs .ibLine01 span:nth-child(2) {
	display: none;
}
.op_centerline .r3Breadcrumbs .ibLine01 span:nth-child(2) {
	display: block;
}
/* 背景ライン
------------------------------------------------------------------------------- */
.ibLine01 {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
}
.ibLine01 span {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	height: 100000px;
	background-color: #000;
	opacity: .1;
}
.ibLine01 span:nth-child(1) {
	top: 0;
	left: 0;
	z-index: 1;
}
.ibLine01 span:nth-child(2) {
	display: none;
	left: 50%;
	z-index: -1;
}
.ibLine01 span:nth-child(3) {
	right: 0;
	z-index: 1;
}
.op_centerline .ibLine01 span:nth-child(2) {
	display: block;
}
.r3Pagetop  {
	min-width: 950px;
	padding-right: 15px;
	padding-left: 15px;
	overflow: hidden;
	box-sizing: border-box;
}
.r3Pagetop div {
	min-width: 0;
}
.r3Pagetop .ibLine01 {
    min-width: 0;
    max-width: 1240px;
}
.r3Pagetop .ibLine01 span,
.r3Pagetop .ibLine01 span:nth-child(1) {
	top: -30px;
}
.r3Pagetop .ibLine01 span:nth-child(2) {
	z-index: 0;
}
.r3Pagetop .ibLine01 span::after {
	content: none;
}
.r3Footer {
	padding-right: 15px;
	padding-left: 15px;
	overflow: hidden;
	box-sizing: border-box;
}
.r3Footer .r3Footer_top {
	margin-right: -15px;
	margin-left: -15px;
}
.r3Footer_top,
.r3Footer_social,
.r3Footer_btm {
	position: relative;
	z-index: 1;
}
.r3Footer .ibLine01 span,
.r3Footer .ibLine01 span:nth-child(1) {
	top: -40px;
	z-index: 0;
}
.op_centerline .lbSubFooter .ibLine01 span:nth-child(2),
.op_centerline .r3Pagetop .ibLine01 span:nth-child(2),
.op_centerline .r3Footer .ibLine01 span:nth-child(2) {
	display: none;
}
/* ビジュアル
------------------------------------------------------------------------------- */
.lbVisual01 {
	position: relative;
	height: 100%;
	margin: 0 0 100px;
	z-index: 1;
}
.lbVisual01_info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	max-width: 1240px;
	height: 100%;
	margin: 0 auto;
}
.lbVisual01_info-top {
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	padding: 70px 0 0;	
}
.lbVisual01_in {
	width: 100%;
	max-width: 380px;
}
.lbVisual01_head {
	position: relative;	
	padding: 42px 0 0;
}
.lbVisual01_head::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background-color: #f41e46;
}
.lbVisual01_img {
	position: relative;
	top: 0;
	left: 50%;
	width: -webkit-calc(50% + 222px + 15px);
	width: calc(50% + 222px + 15px);
	height: 100%;
	margin: 0 0 0 -222px;
	overflow: hidden;
	z-index: 1;
}
.lbVisual01_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1401px) { 
	.lbVisual01_img {
		height: auto;
		padding: 34.9% 0 0;
	}
}
@media only screen and (max-width: 1400px) { 
	.lbVisual01_img {
		left: 33.571%;
		width: -webkit-calc(100% - 33.571% + 15px);
		width: calc(100% - 33.571% + 15px);
		height: 478px;
		margin: 0;
	}
}
@media only screen and (max-width: 1180px) { 
	.lbVisual01_img {
		left: 395px;
		width: -webkit-calc(100% - 395px + 15px);
		width: calc(100% - 395px + 15px);
	}
}
.lbVisual01_en {
	line-height: 70px;
	margin: 0 0 9px;
	color: #f41e46;
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 70px;
	font-weight: 400;
}
.lbVisual01_tit {
	line-height: 1.9;
	margin: 0;
	color: #646464;
	font-size: 168%;
	font-weight: 400;
}
.lbVisual01_txt {
	line-height: 1.75;
	margin: 11px 0 0;
	font-size: 134%;
	font-weight: 400;
}
.lbVisual02 {
	position: relative;
	height: 100%;
	min-height: 207px;
	margin: 0;
}
.lbVisual02::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: -15px;
	width: 100%;
	height: 88px;
	background-color: #f4f4f4;
}
.lbVisual02-t1::before {
	height: 128px;
}
.lbVisual02-bgnone::before {
	content: none;
}
.lbVisual02_info {
	position: absolute;
	top: 54px;
	right: 0;
	left: 0;
	max-width: 1240px;
	margin: 0 auto;
	z-index: 1;
}
.lbVisual02_info-center {
	top: -webkit-calc(50% - 44px);
	top: calc(50% - 44px);
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.lbVisual02-t1 .lbVisual02_info-center {
	top: -webkit-calc(50% - 64px);
	top: calc(50% - 64px);
}
.lbVisual02_in {
	position: relative;
	width: 50%;
	padding: 0 70px 0 32px;
	box-sizing: border-box;
	z-index: 1;
}
.lbVisual02_in::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: #f41e46;
}
.lbVisual02_img {
	position: relative;
	top: 0;
	left: 50%;
	width: -webkit-calc(50% + 15px);
	width: calc(50% + 15px);
	height: 100%;
	margin: 0;
	overflow: hidden;
	z-index: 1;
}
@media only screen and (min-width: 1401px) { 
	.lbVisual02_img {
		height: auto;
		padding: 31.4% 0 0;
	}
}
@media only screen and (max-width: 1400px) { 
	.lbVisual02_img {
		width: -webkit-calc(100% - 50% + 15px);
		width: calc(100% - 50% + 15px);
		height: 429px;
		margin: 0;
	}
}
.lbVisual02_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.lbVisual02_sub {
	line-height: 1;
	margin: 0;
	color: #000;
	font-size: 150%;
	font-weight: 400;
}
.lbVisual02_tit {
	line-height: 1.266;
	margin: 16px 0 0;
	color: #1a1a1a;
	font-size: 250%;
	font-weight: 700;
}
.lbVisual02_category {
	position: absolute;
	top: -5px;
	right: 70px;
	height: 32px;
	line-height: 31px;
	padding: 0 15px;
	background-color: #000;
	color: #fff;
}
.lbVisual02_tags {
	position: relative;
	width: 50%;
	margin: 20px 0 0 0;
	padding: 0 70px 0 32px;
	line-height: 1;
	color: #b4b4b4;
	font-size: 117%;
	font-weight: 500;
	letter-spacing: -0.5em;
	z-index: 1;
	box-sizing: border-box;
}
.lbVisual02_tag {
	display: inline-block;
	margin: 12px 30px 0 0;
	vertical-align: top;
	letter-spacing: normal;
}
.lbVisual02_tag a {
	transition: opacity .3s;
	color: #b4b4b4;
	text-decoration: none;
}
.d_hover .lbVisual02_tag a:hover {
	opacity: 0.4;
}
.lbVisual03 {
	margin: 46px 0 87px;
}
.lbVisual03_in {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 0 0 32px;
	box-sizing: border-box;
}
.lbVisual03_in::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: #f41e46;
}
.lbVisual03_sub {
	line-height: 1;
	margin: 0;
	font-size: 150%;
	font-weight: 400;
}
.lbVisual03_tit {
	line-height: 1.266;
	margin: 16px 0 0;
	font-size: 250%;
	font-weight: 700;
}
/* ボタン
------------------------------------------------------------------------------- */
.lbBtn01 {
	display: inline-block;
	position: relative;
	width: 100%;
	line-height: 1.5;
	padding: 14px 10px 15px;
	border-radius: 50px;
	background-color: #000;
	color: #fff;
	font-size: 117%;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}
.lbBtn01::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	width: 17px;
	height: 8px;
	margin: -4px 0 0;
	background: url(/lab/common/images/svg/arw_ico02.svg) center center no-repeat;
	background-size: contain;
}
.lbBtn01-back::after {
	right: auto;
	left: 27px;
	width: 16px;
	height: 8px;
	margin: -4px 0 0;
	background: url(/lab/common/images/svg/arw_ico03.png) center center no-repeat;
	background-size: contain;
}
.lbBtn01-t1::after {
	background-image: url(/lab/common/images/svg/arw_ico04.png);
}
.lbBtn01-t1[target='_blank']::after {
	right: 20px;
	width: 10px;
	height: 10px;
	margin: -5px 0 0;
	background: url(/lab/common/images/svg/blank_ico03.svg) center center no-repeat;
	background-size: contain;
}
.lbBtn01-w1 {
	max-width: 240px;
}
.lbBtn01-w2 {
	max-width: 205px;
}
.lbBtn01-w3 {
	max-width: 280px;
}
/* コンバージョン
------------------------------------------------------------------------------- */
.lbCv01 {
	position: relative;
	margin: 0 -15px;
	padding: 120px 15px 112px;
	background: url(/lab/common/images/cv_bg01.jpg) center center no-repeat;
	background-size: cover;
	color: #fff;
	z-index: 1;
}
.lbCv01_in {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	max-width: 1240px;
	margin: 0 auto;
}
.lbCv01_head {
	width: 43.55%;
	box-sizing: border-box;
}
.lbCv01_body {
	width: 56.45%;
}
.lbCv01_tit {
	line-height: 1;
	margin: 10px 0 0;
	font-size: 290%;
}
.lbCv01_tit:first-child {
	margin-top: 0;
}
.lbCv01_tit span {
	display: inline-block;
	line-height: 1.5;
	padding: 6px 20px 8px;
	background-color: #f41e46;
	color: #fff;
	font-weight: 300;
    letter-spacing: 0.18em;
    transform: scale(.9, 1);
    transform-origin: left;
    font-feature-settings: "palt";
}
@media only screen and (max-width: 1300px) { 
	.lbCv01_tit {
		margin: 0.769vw 0 0;
		font-size: 2.692vw;
	}
	.lbCv01_tit span {
		padding: 0.461vw 1.538vw 0.615vw;
	}
	.lbCv01_txt br {
		display: none;
	}
}
@media only screen and (max-width: 980px) { 
	.lbCv01_tit {
		margin: 7.5px 0 0;
		font-size: 26.4px;
	}
	.lbCv01_tit span {
		padding: 4.5px 15px 6px;
	}
}
.lbCv01_txt {
	line-height: 1.75;
	margin: 29px 50px 0 0;
	font-size: 134%;
	font-weight: 400;
}
.lbCv01_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	font-size: 100%;
}
.lbCv01_item {
	width: 46.714%;
	background-color: #fff;
}
.lbCv01_item a {
	display: block;
	position: relative;
	height: 100%;
	padding: 34px 10px 49px;
	background-color: #fff;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}
.lbCv01_item a::before {
	content: "";
	display: block;
	position: absolute;
	right: 15px;
	bottom: 15px;
	width: 35px;
	height: 35px;
	background: url(/lab/common/images/svg/blank_ico01.svg) center center no-repeat;
	background-size: contain;
}
.lbCv01_stit {
	line-height: 1.5;
	color: #000;
	margin: 0;
	font-size: 150%;
	font-weight: 700;
}
.lbCv01_stit::before {
	content: "";
	display: block;
	margin: 0 auto 9px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.lbCv01_stit-t1::before {
	width: 25px;
	height: 21px;
	background-image: url(/lab/common/images/svg/cv_ico01.svg);
}
.lbCv01_stit-t2::before {
	width: 18px;
	height: 21px;
	background-image: url(/lab/common/images/svg/cv_ico02.svg);
}
.lbCv01_en {
	line-height: 1.5;
	margin: 6px 0 0;
	color: #f41e46;
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 117%;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.lbCv01_stxt {
	line-height: 1.5;
	margin: 13px 0 0;
	color: #333;
	font-size: 117%;
	font-weight: 500;
}
/* 記事リスト
------------------------------------------------------------------------------- */
.lbArticle01 {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.lbArticle01_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -50px -25px 0;
}
.lbArticle01_item {
	margin: 50px 25px 0;
}
.lbArticle01_list-c2 .lbArticle01_item {
	width: -webkit-calc(50% - 50px);
	width: calc(50% - 50px);
}
.lbArticle01_list-c3 .lbArticle01_item {
	width: -webkit-calc(33.333% - 50px);
	width: calc(33.333% - 50px);
}
.lbArticle01-extend .lbArticle01_item {
	display: none;
}
.lbArticle01-extend .lbArticle01_item:nth-child(1),
.lbArticle01-extend .lbArticle01_item:nth-child(2),
.lbArticle01-extend .lbArticle01_item:nth-child(3),
.lbArticle01-extend .lbArticle01_item:nth-child(4),
.lbArticle01-extend .lbArticle01_item:nth-child(5),
.lbArticle01-extend .lbArticle01_item:nth-child(6) {
	display: block;
}
.lbArticle01-loaded .lbArticle01_item {
	display: block;
}
.lbArticle01-loaded .lbArticle01_item-hide {
	display: none;
}
.lbArticle01_item a {
	display: block;
	text-decoration: none;
}
.lbArticle01_item > a {
	border-bottom: 1px solid #b4b4b4;
}
.lbArticle01_img {
	display: block;
	position: relative;
	overflow: hidden;
}
.lbArticle01_img img {
	transition: all .3s;
}
.d_hover a:hover .lbArticle01_img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}
.lbArticle01_icos {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row-reverse;
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 117%;
	font-weight: 500;
	color: #fff;
	letter-spacing: -0.5em;
}
.lbArticle01_ico {
	display: inline-block;
	vertical-align: top;
	letter-spacing: normal;
	transition: opacity .3s;
}
.lbArticle01_ico span {
	display: inline-block;
	line-height: 29px;
	padding: 0 15px 1px;	
}
.lbArticle01_ico-category span {
	background-color: #000;
}
.lbArticle01_ico-new span {
	background-color: #f41e46;
}
.lbArticle01_tit {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	position: relative;
	line-height: 1.75;
	margin: 0;
	padding: 22px 40px 24px 0;
	font-size: 150%;
	font-weight: 500;
	box-sizing: border-box;
	transition: opacity .3s; 
}
.d_hover a:hover .lbArticle01_tit {
	opacity: .4;
}
.lbArticle01_tit::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 17px;
	height: 8px;
	margin: -4px 0 0;
	background: url(/lab/common/images/svg/arw_ico02.svg) center center no-repeat;
	background-size: contain;
}
.lbArticle01_tags {
	margin: 0;
	padding: 1px 0 0;
	line-height: 1;
	color: #8c8c8c;
	font-size: 134%;
	font-weight: 500;
	letter-spacing: -0.5em;
}
.lbArticle01_tag {
	display: inline-block;
	margin: 13px 10px 0 0;
	vertical-align: top;
	letter-spacing: normal;
}
.lbArticle01_tag a {
	color: #8c8c8c;
	text-decoration: none;
	transition: opacity .3s;
}
.d_hover .lbArticle01_tag a:hover {
	opacity: 0.4;
}
.lbArticle01_extend {
	margin: 50px 0 0;
	font-family: 'IBM Plex Sans', sans-serif;
	color: #000;
	font-size: 150%;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
}
.lbArticle01_extend::after {
	content: "";
	display: inline-block;
	width: 15px;
	height: 8px;
	margin: 0 0 0 15px;
	background: url(/lab/common/images/svg/arw_ico08.svg) center center no-repeat;
	background-size: contain;
	vertical-align: 0;
}
.lbArticle02 {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.lbArticle02-topsp {
	margin: 60px 0 0;
}
.lbArticle02_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -80px -25px 0;
}
.lbArticle02_item {
	margin: 80px 25px 0;
}
.lbArticle02_list-busy .lbArticle02_item {
	margin-top: 60px;
}
.lbArticle02_list-c2 .lbArticle02_item {
	width: -webkit-calc(50% - 50px);
	width: calc(50% - 50px);
}
.lbArticle02_list-c3 .lbArticle02_item {
	width: -webkit-calc(33.333% - 50px);
	width: calc(33.333% - 50px);
}
.lbArticle02-extend .lbArticle02_item {
	display: none;
}
.lbArticle02-extend .lbArticle02_item:nth-child(1),
.lbArticle02-extend .lbArticle02_item:nth-child(2),
.lbArticle02-extend .lbArticle02_item:nth-child(3),
.lbArticle02-extend .lbArticle02_item:nth-child(4),
.lbArticle02-extend .lbArticle02_item:nth-child(5),
.lbArticle02-extend .lbArticle02_item:nth-child(6) {
	display: block;
}
.lbArticle02-loaded .lbArticle02_item {
	display: block;
}
.lbArticle02-loaded .lbArticle02_item-hide {
	display: none;
}
.lbArticle02_item a {
	display: block;
	text-decoration: none;
}
.lbArticle02_item > a {
	border-bottom: 1px solid #b4b4b4;
}
.lbArticle02_img {
	display: block;
	position: relative;
	overflow: hidden;
}
.lbArticle02_img img {
	transition: all .3s;
	image-rendering: -webkit-optimize-contrast;
}
.d_hover a:hover .lbArticle02_img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}
.lbArticle02_tit {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	position: relative;
	line-height: 1.75;
	margin: 0;
	padding: 22px 40px 24px 0;
	color: #000;
	font-size: 150%;
	font-weight: 500;
	box-sizing: border-box;
	transition: opacity .3s;
}
.d_hover a:hover .lbArticle02_tit {
	opacity: .4;
}
.lbArticle02_tit::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 17px;
	height: 8px;
	margin: -4px 0 0;
	background: url(/lab/common/images/svg/arw_ico02.svg) center center no-repeat;
	background-size: contain;
}
.lbArticle02_extend {
	margin: 50px 0 0;
	font-family: 'IBM Plex Sans', sans-serif;
	color: #000;
	font-size: 150%;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
}
.lbArticle02_extend::after {
	content: "";
	display: inline-block;
	width: 15px;
	height: 8px;
	margin: 0 0 0 15px;
	background: url(/lab/common/images/svg/arw_ico08.svg) center center no-repeat;
	background-size: contain;
	vertical-align: 0;
}
/* 見出し
------------------------------------------------------------------------------- */
.lbHeading01 {
	position: relative;
	padding: 50px 0 90px;
	z-index: 1;
}
.lbHeading01_img {
	content: "";
	display: block;
	position: absolute;
	top: -45px;
	right: 100px;
}
.lbHeading01_in {
	position: relative;
	padding: 0 0 0 32px;
}
.lbHeading01_in::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: #f41e46;
}
.lbHeading01_sub {
	line-height: 1;
	margin: 0;
	font-size: 150%;
	font-weight: 400;
}
.lbHeading01_tit {
	line-height: 1.266;
	margin: 16px 0 0;
	font-size: 250%;
	font-weight: 700;
}
.lbHeading01_btn {
	margin: 60px 0 0;
	font-size: 100%;
}
.lbHeading02 {
	position: relative;
	margin: 0 0 50px;
	z-index: 1;
}
.lbHeading02-topsp {
	margin-top: 120px;
}
.lbHeading02-btmsp {
	margin-bottom: 28px;
}
.lbHeading02_en {
	line-height: 1.3;
	margin: 0;
	color: #f41e46;
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 109%;
	font-weight: 400;
}
.lbHeading02_tit {
	line-height: 1.2;
	margin: 6px 0 0;
	font-size: 200%;
	font-weight: 700;
}
/* 【記事】大枠
------------------------------------------------------------------------------- */
.tpContainer {
	position: relative;
	z-index: 1;
	margin: 0 -15px;
	padding: 0 15px;
}
.tpMain {
	width: 69.355%;
	max-width: 860px;
	padding: 0 50px 0 0;
	box-sizing: border-box;
}
.tpSub {
	position: absolute;
	top: 0;
	right: 15px;
	width: 30%;
	max-width: 380px;
	height: 100%;
}
.tpSub-fixed .tpSub_in {
	position: fixed;
	top: 100px;
	right: 0;
	width: 30%;
	max-width: 380px;
}
.tpSub-layerDown .tpSub_in {
	position: absolute;
	top: auto;
	bottom: 0;
	right: 0;
	left: auto !important;
	width: 100%;
}
/* 【記事】メニュー
------------------------------------------------------------------------------- */
.lbMenu01 {
	margin: 30px 0 0;
	padding: 38px 40px 39px;
	background-color: #fff;
}
.lbMenu01-modal {
	padding: 50px 45px;	
}
.lbMenu01:first-child {
	margin-top: 0;
}
.lbMenu01_tit {
	position: relative;
	line-height: 1;
	margin: 0 0 22px;
	padding: 0 0 12px;
	border-bottom: 2px solid #e1e1e1;
	color: #000;
	font-size: 167%;
	font-weight: 500;
}
.lbMenu01_tit a {
	display: block;
	position: relative;
	color: #000;
	text-decoration: none;
}
.lbMenu01_tit a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 17px;
	height: 8px;
	margin: -4px 0 0;
	background: url(/lab/common/images/svg/arw_ico02.svg) center center no-repeat;
	background-size: contain;
}
.lbMenu01_tit::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 45px;
	height: 2px;
	background-color: #f41e46;
}
.lbMenu01_tit span {
	display: inline-block;
	margin: 0 0 0 20px;
	color: #f41e46;
	font-size: 70%;
	vertical-align: middle;
}
.lbMenu01_stit {
	line-height: 1;
	margin: 30px 0 21px;
	padding: 20px 0 0;
	border-top: 1px solid #e1e1e1;
	font-size: 134%;
	font-weight: 500;
}
.lbMenu01_stit-top {
	padding-top: 0;
	border-top: none;
}
.lbMenu01_list {
	line-height: 1.428;
	margin: -13px 0 0;
	font-size: 117%;
	font-weight: 700;
}
.lbMenu01_list li {
	border-bottom: 1px solid #e1e1e1;
}
.lbMenu01_list a {
	display: block;
	position: relative;
	padding: 14px 35px 15px 0;
	color: #1a1a1a;
	text-decoration: none;
}
.lbMenu01_list a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 17px;
	height: 8px;
	margin: -4px 0 0;
	background: url(/lab/common/images/svg/arw_ico02.svg) center center no-repeat;
	background-size: contain;
}
.lbMenu01_tags {
	margin: -11px -28px 0 0;
	color: #999;
	font-size: 117%;
	font-weight: 500;
	letter-spacing: -0.5em;
	vertical-align: top;
}
.lbMenu01_tags li {
	display: inline-block;
	margin: 11px 28px 0 0;
	letter-spacing: normal;
}
.lbMenu01_tags a {
	color: #999;
	text-decoration: none;
}
.lbMenu01_btn {
	margin: 21px 0 0;
	text-align: center;
}
.lbMenu01_btn span {
	display: inline-block;
	position: relative;
	width: 100%;
	max-width: 300px;
	line-height: 48px;
	border-radius: 50px;
	background-color: #000;
	color: #fff;
	font-size: 117%;
	text-align: center;
	cursor: pointer;
}
.lbMenu01_btn span::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	width: 12px;
	height: 12px;
	margin: -6px 0 0;
	background: url(/lab/common/images/svg/plus_ico01.svg) center center no-repeat;
	background-size: contain;
}
.lbMenu01_img {
	max-width: 160px;
	height: 160px;
	margin: 40px auto 0;
}
.lbMenu01_name {
	line-height: 1.5;
	margin: 33px 0 0;
	color: #000;
	font-size: 167%;
	font-weight: 500;
}
.lbMenu01_name span {
	font-size: 75%;
	font-weight: 400;
}
.lbMenu01_data {
	line-height: 2;
	margin: 7px 0 0;
	color: #8c8c8c;
	font-size: 117%;
	font-weight: 500;
}
.lbMenu01_note {
	line-height: 2;
	margin: 5px 0 0 1em;
	text-indent: -1em;
	color: #8c8c8c;
	font-size: 100%;
	font-weight: 500;
}
.lbMenu02 {
	margin: 30px 0 0;
}
.lbMenu02:first-child {
	margin-top: 0;
}
.lbMenu02 a {
	display: block;
	color: #000;
	text-decoration: none;
}
.lbMenu02_img {
	display: block;
	overflow: hidden;
}
.lbMenu02_img img {
	transition: all .3s;
}
.d_hover a:hover .lbMenu02_img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}
.lbMenu02_txt {
	line-height: 1.5;
	margin: 10px 0 0;
	font-size: 142%;
	font-weight: 500;
	transition: opacity .3s;
}
.d_hover a:hover .lbMenu02_txt {
	opacity: .4;
}
/* 【記事】見出し
------------------------------------------------------------------------------- */
.atHeading01 {
	position: relative;
	line-height: 1.3;
	margin: 100px 0 40px;
	padding: 0 0 0 31px;
	font-size: 250%;
	font-weight: 700;
}
.atHeading01:first-child {
	margin-top: 0;
}
.atHeading01::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.2em;
	left: 0;
	bottom: 0;
	width: 3px;
	min-height: 30px;
	background-color: #f41e46;
}
.atHeading02 {
	position: relative;
	line-height: 1.73;
	margin: 100px 0 25px;
	padding: 0 0 0 31px;
	color: #000;
	font-size: 217%;
	font-weight: 700;
	z-index: 1;
}
.atHeading02:first-child {
	margin-top: 0;
}
.atHeading02::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.36em;
	left: 0;
	bottom: 0.22em;
	width: 3px;
	min-height: 30px;
	background-color: #f41e46;
}
.atHeading02_ico {
	display: inline-block;
	line-height: 25px;
	margin: 0 0 0 10px;
	padding: 0 9px 3px;
	background-color: #fff;
	color: #f41e46;
	vertical-align: 0.2em;
	font-size: 69.1%;
}
.atHeading03 {
	position: relative;
	line-height: 1.5;
	margin: 50px 0 30px;
	padding: 0 0 6px;
	color: #333;
	font-size: 200%;
	font-weight: 700;
	z-index: 1;
}
.atHeading03:first-child {
	margin-top: 0;
}
.atHeading03::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 20px;
	height: 3px;
	background-color: #f41e46;
}
.atHeading04 {
	position: relative;
	line-height: 1.5;
	margin: 43px 0 18px;
	color: #333;
	font-size: 167%;
	font-weight: 700;
	z-index: 1;
}
.atHeading05 {
	position: relative;
	line-height: 1.5;
	margin: 25px 0 20px;
	color: #000;
	font-size: 134%;
	font-weight: 700;
	z-index: 1;
}
.atHeading06 {
	position: relative;
	line-height: 1.5;
	margin: 25px 0 20px;
	padding: 0 0 0 20px;
	color: #000;
	font-size: 134%;
	font-weight: 700;
}
.atHeading06::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.75em;
	left: 0;
	width: 9px;
	height: 2px;
	background-color: #dbdbdb;
}
.atHeading07 {
	position: relative;
	line-height: 1.333;
	margin: 30px 0 20px;
	padding: 0 0 0 40px;
	font-size: 250%;
	font-weight: 700;
	z-index: 1;
}
.atHeading07-fs {
	line-height: 1.5;
	font-size: 200%;
}
.atHeading07::before {
	content: '';
	display: block;
	position: absolute;
	top: 0.45em;
	left: 0;
	width: 24px;
	height: 16px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.atHeading07-n1::before {
	background-image: url(/lab/common/images/svg/num_ico01.svg);
}
.atHeading07-n2::before {
	background-image: url(/lab/common/images/svg/num_ico02.svg);
}
.atHeading07-n3::before {
	background-image: url(/lab/common/images/svg/num_ico03.svg);
}
.atHeading07-n4::before {
	background-image: url(/lab/common/images/svg/num_ico04.svg);
}
.atHeading07-n5::before {
	background-image: url(/lab/common/images/svg/num_ico05.svg);
}
.atHeading08 {
	position: relative;
	margin: 40px 0 20px;
	padding: 0 0 0 32px;
	z-index: 1;
}
.atHeading08::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.2em;
	left: 0;
	bottom: 0.1em;
	width: 3px;
	min-height: 30px;
	background-color: #f41e46;
}
.atHeading08_sub {
	line-height: 1.5;
	margin: 0;
	font-size: 150%;
	font-weight: 400;
}
.atHeading08_tit {
	line-height: 1.333;
	margin: 10px 0 0;
	font-size: 250%;
	font-weight: 700;
}
/* 【記事】リスト
------------------------------------------------------------------------------- */
.atList01 {
	position: relative;
	line-height: 2;
	margin: 18px 0;
	font-size: 117%;
	font-weight: 400;
	z-index: 1;
}
.atList01:first-child {
	margin-top: 0;
}
.atList01:last-child {
	margin-bottom: 0;
}
.atList02 .atList01 li,
.atList01 li {
	position: relative;
	margin: 0 0 12px;
	padding: 0 0 0 16px;
}
.atList01 li:last-child {
	margin-bottom: 0;
}
.atList02 .atList01 li::before,
.atList01 li::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.95em;
	left: 0;
	width: 3px;
	height: 3px;
	border-radius: 100%;
	background-color: #f41e46;
}
.atList01 .atList01,
.atList01 .atList02,
.atList02 .atList01,
.atList02 .atList02 {
	margin: 12px 0 0;
	font-size: 100%;
}
.atList02 {
	position: relative;
	line-height: 2;
	margin: 18px 0;
	font-size: 117%;
	font-weight: 400;
	z-index: 1;
}
.atList02 li {
	position: relative;
	margin: 0 0 12px;
	padding: 0 0 0 23px;
}
.atList02 li:last-child {
	margin-bottom: 0;
}
.atList02 li::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 11px;
	height: 11px;
	border-radius: 0;
	background: none;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.atList02 li:nth-child(1)::before {
	background-image: url(/lab/common/images/svg/list_ico01.svg);
}
.atList02 li:nth-child(2)::before {
	background-image: url(/lab/common/images/svg/list_ico02.svg);
}
.atList02 li:nth-child(3)::before {
	background-image: url(/lab/common/images/svg/list_ico03.svg);
}
.atList02 li:nth-child(4)::before {
	background-image: url(/lab/common/images/svg/list_ico04.svg);
}
.atList02 li:nth-child(5)::before {
	background-image: url(/lab/common/images/svg/list_ico05.svg);
}
.atList03 {
	position: relative;
	margin: 12px 0;
	z-index: 1;
}
.atList03 dt {
	width: 90px;
	line-height: 2;
	font-size: 117%;
	font-weight: 700;
}
.atList03 dd {
	width: -webkit-calc(100% - 90px);
	width: calc(100% - 90px);
	line-height: 2;
	margin: -2em 0 12px;
	padding: 0 0 0 100px;
	font-size: 117%;
	font-weight: 400;
}
.atList04 {
	position: relative;
	margin: 12px 0;
	z-index: 1;
}
.atList04 dt {
	width: 130px;
	line-height: 2;
	font-size: 117%;
	font-weight: 700;
}
.atList04 dd {
	width: -webkit-calc(100% - 130px);
	width: calc(100% - 130px);
	line-height: 2;
	margin: -2em 0 12px;
	padding: 0 0 0 140px;
	font-size: 117%;
	font-weight: 400;
}
.atList05 {
	position: relative;
	margin: 12px 0;
	z-index: 1;
}
.atList05 dt {
	width: 160px;
	line-height: 2;
	font-size: 117%;
	font-weight: 700;
}
.atList05 dd {
	width: -webkit-calc(100% - 160px);
	width: calc(100% - 160px);
	line-height: 2;
	margin: -2em 0 12px;
	padding: 0 0 0 170px;
	font-size: 117%;
	font-weight: 400;
}
/* 【記事】強調
------------------------------------------------------------------------------- */
.atEm01 {
	color: #f41e46;
}
.atEm02 {
	font-weight: 700;
}
/* 【記事】注釈
------------------------------------------------------------------------------- */
.atNotes01 {
	position: relative;
	line-height: 2;
	margin: 30px 0;
	font-size: 100%;
	font-weight: 400;
	z-index: 1;
}
.atNotes01 li {
	margin: 12px 0 0 1em;
	text-indent: -1em;
}
.atNotes01-busy li,
.atNotes01 li:first-child {
	margin-top: 0;
}
.atTable01 .atNotes01 {
	font-size: 85%;
}
.atNotes02 {
	position: relative;
	line-height: 2;
	margin: 30px 0;
	font-size: 100%;
	font-weight: 400;
	z-index: 1;
}
.atNotes02 li {
	margin: 12px 0 0 2em; 
	text-indent: -2em;
}
.atNotes02 li:first-child {
	margin-top: 0;
}
/* 【記事】レイアウト
------------------------------------------------------------------------------- */
.atBlock01 {
	position: relative;
	margin: 45px auto;
	z-index: 1;
}
.atBlock02 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 45px auto;
	z-index: 1;
}
.atBlock02-reverse {
	flex-direction: row-reverse;
}
.atBlock02_item {
	width: 46.914%;
	max-width: 380px;
}
.atBlock03 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 45px auto;
	z-index: 1;
}
.atBlock03_item {
	width: 29.63%;
	max-width: 240px;
}
.atBlock04 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 45px auto;
	z-index: 1;
}
.atBlock04-reverse {
	flex-direction: row-reverse;
}
.atBlock04_n {
	width: 29.63%;
	max-width: 240px;
}
.atBlock04_w {
	width: 64.198%;
	max-width: 520px;
}
.atBlock05 {
	margin: 45px auto;
	z-index: 1;
	overflow: hidden;
}
.atBlock05_in {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	position: relative;
	margin: 0 -25px;
}
.atBlock05-reverse .atBlock05_in {
	flex-direction: row-reverse;
}
.atBlock05_item {
	margin: 0 25px;
}
.atBlock01_img,
.atBlock02_img,
.atBlock03_img,
.atBlock04_img,
.atBlock05_img {
	display: block;
}
.atBlock01_txt,
.atBlock02_txt,
.atBlock03_txt,
.atBlock04_txt,
.atBlock05_txt {
	line-height: 1.666;
	margin: 10px 0 0;
	font-size: 100%;
	font-weight: 400;
}
/* 【記事】ボタン
------------------------------------------------------------------------------- */
.atBtns01 {
	position: relative;
	z-index: 1;
}
.atBtns01_item {
	display: block;
	position: relative;
	width: 240px;
	line-height: 1.5;
	margin: 20px auto 0;
	padding: 14px 10px 15px;
	border-radius: 50px;
	background-color: #000;
	color: #fff;
	font-size: 117%;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}
.atBtns01_item-l {
	margin: 10px auto 0 0;
}
.atBtns01_item-r {
	margin: 10px 0 0 auto;
}
.atBtns01_item:first-child {
	margin-top: 0;
}
.atBtns01_item::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	width: 17px;
	height: 8px;
	margin: -4px 0 0;
	background: url(/lab/common/images/svg/arw_ico04.png) center center no-repeat;
	background-size: contain;
}
.atBtns01_item[target='_blank']::after {
	right: 20px;
	width: 10px;
	height: 10px;
	margin: -5px 0 0;
	background: url(/lab/common/images/svg/blank_ico03.svg) center center no-repeat;
	background-size: contain;
}
.atBtns01_item[href$='.pdf']::after {
	right: 20px;
	width: 8px;
	height: 10px;
	margin: -5px 0 0;
	background: url(/lab/common/images/svg/pdf_ico02.png) center center no-repeat;
	background-size: contain;
}
/* 【記事】ボックス
------------------------------------------------------------------------------- */
.atBox01 {
	position: relative;
	padding: 18px 20px 20px;
	background-color: #fff;
	z-index: 1;
}
.atBox02 {
	position: relative;
	padding: 18px 20px 20px;
	background-color: #F4DEE2;
	z-index: 1;
}
.atBox03 {
	position: relative;
	padding: 18px 20px 20px;
	border: 2px solid #000;
	box-sizing: border-box;
	z-index: 1;
}
.atBox04 {
	position: relative;
	padding: 18px 20px 20px;
	color: #f41e46;
	border: 2px solid #f41e46;
	box-sizing: border-box;
	z-index: 1;
}
/* 【記事】表組
------------------------------------------------------------------------------- */
.atTable01 {
	position: relative;
	margin: 30px 0;
	z-index: 1;
}
.atTable01 table {
	width: 100%;
    border-collapse: separate;
    border-spacing: 1px;
}
.atTable01 th,
.atTable01 td {
	padding: 14px 15px 15px;
}
.atTable01 th {
	line-height: 1.428;
	background-color: #ccc;
	font-size: 117%;
	font-weight: 500;
}
.atTable01 td {
	line-height: 1.428;
	background-color: #fff;
	font-size: 117%;
	font-weight: 400;
}
.atTable01_w1 {
	width: 6.5em;
}
.atTable01 .atTable01_sub {
	line-height: 1.428;
	background-color: #e1e1e1;
	font-size: 117%;
	font-weight: 400;
}
/* 【記事】動画
------------------------------------------------------------------------------- */
.atMovie01 {
	display: block;
	position: relative;
	z-index: 1;
}
.atMovie01::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	margin: -40px 0 0 -40px;
	background: url(/lab/common/images/svg/arw_ico09.svg) center center no-repeat;
	background-size: contain;
}
/* 【記事】リンク
------------------------------------------------------------------------------- */
.atLink01[target='_blank']::after {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	margin: 0 10px 0 3px;
	background: url(/lab/common/images/svg/blank_ico02.svg) center center no-repeat;
	background-size: contain;	
}
.atLink01[href$='.pdf']::after {
	content: "";
	display: inline-block;
	width: 8px;
	height: 10px;
	margin: 0 10px 0 3px;
	background: url(/lab/common/images/svg/pdf_ico01.svg) center center no-repeat;
	background-size: contain;	
}
.atLink02 {
	line-height: 2;
	font-size: 117%;
	font-weight: 400;
}
.atLink02 a[target='_blank']::after {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	margin: 0 0 0 5px;
	background: url(/lab/common/images/svg/blank_ico02.svg) center center no-repeat;
	background-size: contain;
}
.atLink02 a[href$='.pdf']::after {
	right: 20px;
	width: 8px;
	height: 10px;
	margin: -4px 0 0;
	background: url(/lab/common/images/svg/pdf_ico01.svg) center center no-repeat;
	background-size: contain;
}
.atLink03 {
	display: block;
	margin: 50px auto;
}
.atLink03_img {
	display: block;
}
.atLink03_caption {
	line-height: 2;
	margin: 4px 0 0;
	font-size: 100%;
	font-weight: 400;
}
/* 関連リンク
------------------------------------------------------------------------------- */
.lbRelate01 {
	position: relative;
	margin: 50px 0 0;
	overflow: hidden;
	z-index: 1;
}
.lbRelate01_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -50px -25px 0;
}
.lbRelate01_list-center {
	justify-content: center;	
}
.lbRelate01_item {
	width: -webkit-calc(33.333% - 50px);
	width: calc(33.333% - 50px);
	margin: 50px 25px 0;
}
.lbRelate01_item a {
	display: block;
	position: relative;
	height: 100%;
	padding: 26px 30px 45px;
	border: 1px solid #dbdbdb;
	background-color: #fff;
	text-decoration: none;
	box-sizing: border-box;
}
.lbRelate01_item a::after {
	content: "";
	display: block;
	position: absolute;
	right: 20px;
	bottom: 19px;
	width: 17px;
	height: 8px;
	background: url(/lab/common/images/svg/arw_ico02.svg) center center no-repeat;
	background-size: contain;
}
.lbRelate01_tit {
	line-height: 1.666;
	margin: 0 0 16px;
	font-size: 134%;
	font-weight: 700;
}
.lbRelate01_img {
	margin:-24px -28px 20px;
	border-bottom:1px solid #ccc;
}
.lbRelate01_txt {
	line-height: 1.5;
	margin: 0;
	font-size: 117%;
	font-weight: 400;
}
.atRelate01 {
	margin: 80px 0 0;
	background-color: #fff;
}
.atRelate01_head {
	padding: 30px 0 15px;
}
.atRelate01_tit {
	position: relative;
	line-height: 1.73;
	padding: 0 0 0 31px;
	color: #000;
	font-size: 217%;
	font-weight: 700;
	z-index: 1;
}
.atRelate01_tit::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.36em;
	left: 0;
	bottom: 0.22em;
	width: 3px;
	min-height: 30px;
	background-color: #f41e46;
}
.atRelate01_body {
	padding: 0 31px 35px 31px;
}
.atRelate01_body p {
	margin: 0 0 5px;
}
.atRelate01_body p:last-child {
	margin-bottom: 0;
}
/* ピックアップ
------------------------------------------------------------------------------- */
.lbPickup01	{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 0 -15px;
	background-color: #f1f1f1;
	z-index: 1;
}
.lbPickup01-btmsp {
	margin-bottom: 145px;
}
.lbPickup01_img {
	position: relative;
	width: 50%;
	height: 450px;
	overflow: hidden;
}
.lbPickup01_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.lbPickup01_info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 50%;
	padding: 0 100px;
	box-sizing: border-box;
}
.lbPickup01_head {
	padding: 0 0 0 30px;
	border-left: 3px solid #f41e46;
}
.lbPickup01_sub {
	line-height: 1.4;
	margin: 0;
	font-size: 150%;
	font-weight: 400;
}
.lbPickup01_tit {
	line-height: 1.333;
	margin: 10px 0 0;
	color: #000;
	font-size: 250%;
	font-weight: 500;
}
.lbPickup01_btn {
	line-height: 1;
	margin: 92px 0 0;
	font-size: 100%;
}
/* アンカー
------------------------------------------------------------------------------- */
.lbAnchor01 {
	position: relative;
	line-height: 1.555;
	margin: 55px 0 55px;
	padding: 0 0 20px;
	border-bottom: 1px solid #b4b4b4;
	font-size: 150%;
	font-weight: 500;
	letter-spacing: -0.5em;
	z-index: 1;
}
.lbAnchor01 li {
	display: inline-block;
	margin: 0 49px 0 0;
	letter-spacing: normal;
}
.lbAnchor01 a {
	display: block;
	color: #000;
	text-decoration: none;
}
.lbAnchor01 a::after {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: 0 0 0 10px;
	border-radius: 100%;
	background: url(/lab/common/images/svg/arw_ico07.png) center center no-repeat;
	background-size: contain;
	vertical-align: -0.25em;
}
/* 戻る
------------------------------------------------------------------------------- */
.lbBack01 {
	position: relative;
	line-height: 1;
	margin: 50px 0 0;
	font-size: 100%;
	z-index: 1;
}
/* リード
------------------------------------------------------------------------------- */
.lbLead01 {
	position: relative;
	margin: -9px 0 94px;
	z-index: 1;
}
.lbLead01 p {
	margin-bottom: 27px;
}
.lbLead01 p:last-child {
	margin-bottom: 0;
}
/* NEWS
------------------------------------------------------------------------------- */
.ibNew01 {
	position: fixed;
	bottom: 20px;
	right: -350px;
	width: 320px;
	height: 107px;
	background-color: #323232;
	z-index: 5;
	opacity: 0;
	transition: opacity 0.35s, right 0.5s;
}
.ibNew01-show {
	right: 20px;
	opacity: 1;
}
.ibNew01_tit {
	position: absolute;
	top: 11px;
	left: -38px;
	line-height: 1;
	color: #fff;
	font-size: 134%;
	font-weight: 400;
	transform: rotate(90deg);
}
.ibNew01_item::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 14px;
	background-color: #f41e46;
}
.ibNew01_list {
	position: absolute;
	top: 21px;
	left: 51px;
}
.ibNew01_item {
	position: relative;
	display: none;
	padding: 0 65px 0 15px;
}
.ibNew01_item-show {
	display: block;
	animation: lbNew .8s ease both;
}
@keyframes lbNew {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.ibNew01_date {
	line-height: 1;
	margin: 0;
	color: #fff;
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 117%;
	font-weight: 400;
}
.ibNew01_txt {
	line-height: 1.5em;
	margin: 6px 0 0;
	color: #fff;
	font-size: 117%;
	font-weight: 400;
		overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
    max-height: 3em;
}
.ibNew01_txt a {
	color: #fff;
	text-decoration: underline;
	transition: opacity .3s;
}
.d_hover .ibNew01_txt a:hover {
	opacity: .6;
}
.ibNew01_close {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;

	background: url(/lab/common/images/svg/close_ico01.svg) center center no-repeat;
	background-size: contain;
	cursor: pointer;
}
.ibNew01_navs {
	position: absolute;
	right: 15px;
	bottom: 20px;
	letter-spacing: -0.5em;
}
.ibNew01_nav {
	display: inline-block;
	width: 17px;
	height: 20px;
	margin: 0 5px;
	cursor: pointer;
	letter-spacing: normal;
}
.ibNew01_nav-prev {
	background: url(/lab/common/images/svg/arw_ico04.svg) center center no-repeat;
	background-size: 17px 8px;
}
.ibNew01_nav-next {
	background: url(/lab/common/images/svg/arw_ico03.svg) center center no-repeat;;
	background-size: 17px 8px;
}
/* モーダル
------------------------------------------------------------------------------- */
/* Magnific Popup CSS */
.mfp-wrap .mfp-iframe-holder .mfp-content{max-width:99%;width:7in;height:390px;border:1px solid #959593;padding:0}.mfp-wrap .mfp-iframe-scaler iframe{box-shadow:none;background:#fff}.mfp-bg{z-index:1;overflow:hidden;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-bg,.mfp-wrap{top:0;left:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:2;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:4}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:3}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:5;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:9pt;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;filter:alpha(opacity=65);margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1;filter:alpha(opacity=100)}.mfp-arrow .mfp-a,.mfp-arrow .mfp-b,.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow .mfp-a,.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow .mfp-b,.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left .mfp-b,.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right .mfp-b,.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:9pt;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0 0;transform-origin:0 0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}.mfp-bg,.mfp-wrap{z-index:1102!important}.mfp-content{margin:5px 0 0;padding:50px 0 0}button.mfp-close{right:0;background:url(/lab/common/images/svg/close_ico02.png) center center no-repeat;background-size: 12px 12px;opacity:1;filter:alpha(opacity=100);padding:0;font-size:0;text-indent:-9999px;overflow:hidden}.mfp-iframe-holder .mfp-close{top:-54px;right:0;padding-right:0}.mfp-iframe-holder .mfp-close:active{top:-53px}
.mg_caution .mfp-iframe-holder .mfp-content {
	width: 840px;
	height: 490px;
	background-color: #fff;
}
.mg_caution .mfp-iframe-holder .mfp-close {
	top: 0;
	width: 50px;
	height: 50px;
	transition: opacity .3s;
}
.d_hover .mg_caution .mfp-iframe-holder .mfp-close:hover {
	opacity: 0.4;
}
.mfp-bg.mg_caution {
	opacity: 0.5;
}
.mg_movie .mfp-iframe-holder .mfp-content {
	width: 950px;
	height: 534px;
	border: none;
	background-color: none;
}
.mg_movie .mfp-iframe-holder .mfp-close {
	top: -63px;
	width: 50px;
	height: 50px;
	transition: opacity .3s;
	opacity: .7;
	background: url(/lab/common/images/svg/close_ico03.svg) center center no-repeat;
	background-size: contain;
	cursor: pointer;
}
.d_hover .mg_movie .mfp-iframe-holder .mfp-close:hover {
	opacity: 1;
}
.mfp-bg.mg_movie {
	opacity: 0.8;
}