@charset "UTF-8";

body{
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

#wrapper {
	font-size: 62.5%;
	line-height: 1.6;
	letter-spacing: 1px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	color: #000;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	background: #fff;
	position: relative;
}

#wrapper a:link      { text-decoration: none; color: #0d506b;}
#wrapper a:visited   { text-decoration: none; color: #0d506b;}
#wrapper a:hover     { text-decoration: underline; }
#wrapper a:active    { text-decoration: underline; }

a[href^="tel:"] {
	pointer-events: none;
}

a,:focus {
	outline: none;
}

::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.img img {
	width: 100%;
	height: auto;
}

.tb   { display: none!important;}
.tbsp { display: none!important;}
.sp   { display: none!important;}

.opacity a:hover,
.opacity input:hover {
	opacity: 0.50;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
	-moz-opacity: 0.50;
	-khtml-opacity: 0.50;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	text-decoration: none!important;
}

/*======================================================
  header
======================================================*/

.hdrLg {
	max-width: 130px;
	margin: 10px 0 0 10px;
	padding: 10px;
	background: rgba(255,255,255,0.5);
	position: fixed;
	z-index: 999;
}

.gNav {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 1.8em;
	line-height: 1;
	margin: 35px 15px 0 0;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.3), -1px -1px 0 rgba(255,255,255,0.3),
	-1px 1px 0 rgba(255,255,255,0.3), 1px -1px 0 rgba(255,255,255,0.3),
	0 1px 0 rgba(255,255,255,0.3),  0 -1px 0 rgba(255,255,255,0.3),
	-1px 0 0 rgba(255,255,255,0.3), 1px 0 0 rgba(255,255,255,0.3);
	position: fixed;
	top: 0;
	right: 120px;
	z-index: 999;
}

.gNav li {
	margin: 0 35px 0 0;
}

.gNav a:link,
.gNav a:visited {
	color: #000!important;
}

.gNav a:hover {
	text-decoration: none!important;
}

.overlay {
	content: "";
	display: block;
	width: 0;
	height: 0;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity .5s;
	z-index: 1000;
}

.overlay.open {
	width: 100%;
	height: 100%;
	opacity: 1;
}

main {
	height: 100%;
	min-height: 100vh;
	padding: 0 50px;
	background-color: #eee;
	transition: all .5s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1000;
}

main.open {
	transform: translateX(-300px);
}

main h1 {
	text-align: center;
	font-weight: 500;
}

main p {
	text-align: center;
}

.mnuTrg {
	display: inline-block;
	width: 120px;
	height: 85px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	top: 0;
	right: 0;
	background: #000;
	z-index: 1100;
/*
	transform: translateX(0);
	transition: transform .5s;
 */}
/* 
	.mnuTrg.active {
	transform: translateX(-250px);
}

 */.mnuTrg span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 50px;
	height: 5px;
	background: #fff;
	transition: all .5s;
}

.mnuTrg:hover {
	background: #0d506b;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.mnuTrg.active {
	background: #0d506b;
}

.mnuTrg.active span {
	background: #fff;
}

.mnuTrg span:nth-of-type(1) {
	top: 28px;
	left: calc(50% - 25px);
}

.mnuTrg.active span:nth-of-type(1) {
	transform: translateY(12px) rotate(-45deg);
}

.mnuTrg span:nth-of-type(2) {
	width: 40px;
	top: 40px;
	left: calc(50% - 25px);
	margin: 0 0 0 10px;
}

.mnuTrg.active span:nth-of-type(2) {
	opacity: 0;
}

.mnuTrg span:nth-of-type(3) {
	bottom: 28px;
	left: calc(50% - 25px);
}

.mnuTrg.active span:nth-of-type(3) {
	  transform: translateY(-12px) rotate(45deg);
}
 
.mNav {
	width: 270px;
	height: 100%;
	padding: 150px 15px 50px;
	background: #0d506b;
	position: fixed;
	top: 0;
	right: 0;
	transform: translate(300px);
	transition: all .5s;
	z-index: 1050;
}

.mNav.open {
	transform: translateZ(0);
}

.mNav li {
	text-align: center;
	font-weight: 600;
	font-size: 1.8em;
	line-height: 0.65;
	color: #fff;
}

.mNav li:first-child {
	max-width: 190px;
	margin: 0 auto;
}

.mNav li:not(:first-child,:last-child) {
	border-bottom: solid 1px rgba(255,255,255,0.3);
}

.mNav a {
	display: block;
	padding: 30px;
}

.mNav a:link,
.mNav a:visited {
	color: #fff!important;
}

/*======================================================
  manArea
======================================================*/

#manAra {
	position: relative;
	overflow: hidden;
	margin: 180px 0 0;
	padding: 270px 0 0;
	z-index: 10;
}

.manCth {
	position: absolute;
	right: 15px;
	top: 20px;
	font-weight: 900;
	font-size: 5.4em;
	line-height: 1.38;
	z-index: 10;
}

.manBgTxt {
	position: absolute;
	left: center;
	top: 60px;
	text-align: center;
	font-weight: 700;
	font-size: 30em;
	line-height: 0.65;
	letter-spacing: -0.01em;
	color: #fff;
	z-index: 5;
	text-shadow: 1px 1px 0 #dbdbdb, -1px -1px 0 #dbdbdb,
	-1px 1px 0 #dbdbdb, 1px -1px 0 #dbdbdb,
	0 1px 0 #dbdbdb,  0 -1px 0 #dbdbdb,
	-1px 0 0 #dbdbdb, 1px 0 0 #dbdbdb;
}

.manMovWrp {
	padding: 0 50px;
	position: relative;
	z-index: 15;
}

.manMovBox {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	background: url(../images/lg_gr.png) center no-repeat #000;
}

.manMovBox iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/*======================================================
  content
======================================================*/

/* abtAra */
#abtAra {
	padding: 120px 50px 200px;
	position: relative;
	overflow: hidden;
}

.abtWrp {
	max-width: 1100px;
	margin: 0 auto;
}

.abtTtl {
	font-weight: 900;
	font-size: 4.8em;
	line-height: 1.4;
	margin: 0 0 60px;
	position: relative;
	z-index: 10;
}

.abtTxt {
	font-weight: 700;
	font-size: 2.4em;
	line-height: 1.3;
	position: relative;
	z-index: 10;
}

.abtBgTxt {
	position: absolute;
	top: 530px;
	left: -530px;
	font-weight: 700;
	font-size: 28em;
	line-height: 1;
	letter-spacing: -0.01em;
	color: #eee;
	transform:rotate(90deg);
	z-index: 1;
}

/* cmpAra */
#cmpAra {
	padding: 120px 50px;
	background: url(../images/bg_company.png) top 0 right 25% no-repeat,
	url(../images/bg_universe.jpg) top no-repeat;
	background-size: 900px 800px, cover;
	background-attachment: fixed;
	position: relative;
}

.cmpWrp {
	max-width: 1400px;
	margin: 0 auto;
}

.cmpTtlBox {
	position: absolute;
	top: -105px;
	right: 50px;
	display: flex;
	justify-content: flex-end;
	z-index: 10;
}

.cmpTtl {
	order: 1;
	font-weight: 700;
	font-size: 14em;
	line-height: 0.65;
	letter-spacing: -0.025em;
}

.cmpSubTtl {
	order: 2;
	font-weight: 700;
	font-size: 3.4em;
	line-height: 1;
	letter-spacing: 0.025em;
	margin: 0 0 0 50px;
}

.cmpBox {
	display: flex;
	align-items: center;
	/*
	background: url(../images/img_company.jpg) top right no-repeat,
	url(../images/img_company.jpg) top 0 right 310px no-repeat,
	url(../images/img_company.jpg) top 0 right 485px no-repeat;
	background-size: 600px 480px, 350px 280px, 225px 180px;
	*/
}

.cmpInfBox {
	max-width:100%;
	width:100%;
}

.cmpTbl {
	width: 100%;
	font-size: 2.2em;
	line-height: 1.6;
	color: #fff;
	text-shadow: 0 0 5px rgba(0,0,0,0.8)
}
.cmpTbl th {
	min-width: 100px;
	font-weight: 700;
	padding: 15px 15px 15px 0;
}
.cmpTbl td {
	font-weight: 400;
	padding: 15px;
}

.cmpTxtBox {
	margin: 25px 0 0 ;
	padding: 40px 0 0;
	line-height: 1.6;
	color: #fff;
	border-top: solid 1px rgba(255,255,255,0.3);
}

.cmpTxtTtl {
	font-weight: 600;
	font-size: 1.9em;
	margin: 0 0 15px;
}

.cmpTxt {
	font-weight: 400;
	font-size: 1.7em;
}

@media screen and (max-width:1300px) {
	.cmpBox {
		display: block;
		/*
		padding: 550px 0 0;
		background: url(../images/img_company.jpg) top no-repeat,
		url(../images/img_company.jpg) top 0 right calc(50% - -185px) no-repeat,
		url(../images/img_company.jpg) top 0 right calc(50% - -298px) no-repeat;
		background-size: 600px 480px, 350px 280px, 225px 180px;
		*/
	}
	
	.cmpInfBox {
		max-width: 1300px;
	}
}

/* mbrAra */
#mbrAra {
	padding: 200px 0 0;
}

.mbrCeoBox {
	min-height: 600px;
	display: flex;
	align-items: center;
	margin: 0 0 80px;
	padding: 0 50px 0 0;
	background: url(../images/img_ceo.jpg) left top no-repeat,
	url(../images/img_ceo.jpg) left 412px top 0 no-repeat,
	url(../images/img_ceo.jpg) left 572px top 0 no-repeat;
	background-size: 660px 600px, 308px 280px, 198px 180px;
	position: relative;
}

.mbrCooBox {
	min-height: 600px;
	display: flex;
	align-items: center;
	margin: 30px 0 80px;
	padding: 60px 0 0 50px;
	background: url(../images/img_coo.jpg) right top no-repeat,
	url(../images/img_coo.jpg) right 412px top 0 no-repeat,
	url(../images/img_coo.jpg) right 572px top 0 no-repeat;
	background-size: 660px 600px, 308px 280px, 198px 180px;
	position: relative;
}


/* ▼2022.07.20▼ */

.mbrKitBox {
	min-height: 600px;
	display: flex;
	align-items: center;
	margin: 0 0 80px;
	padding: 0 50px 0 0;
	background: url(../images/member_01_kita.jpg) left top no-repeat,
	url(../images/img_bg2.jpg) left 412px top 0 no-repeat,
	url(../images/img_bg3.jpg) left 572px top 0 no-repeat;
	background-size: 660px 600px, 308px 280px, 198px 180px;
	position: relative;
}

.mbrHndBox {
	min-height: 600px;
	display: flex;
	align-items: center;
	margin: 30px 0 80px;
	padding: 60px 0 0 50px;
	background: url(../images/member_02_honda.jpg) right top no-repeat,
	url(../images/img_bg2.jpg) right 412px top 0 no-repeat,
	url(../images/img_bg3.jpg) right 572px top 0 no-repeat;
	background-size: 660px 600px, 308px 280px, 198px 180px;
	position: relative;
}

.mbrKsmBox {
	min-height: 600px;
	display: flex;
	align-items: center;
	margin: 0 0 80px;
	padding: 0 50px 0 0;
	background: url(../images/member_03_kawashima.jpg) left top no-repeat,
	url(../images/img_bg2.jpg) left 412px top 0 no-repeat,
	url(../images/img_bg3.jpg) left 572px top 0 no-repeat;
	background-size: 660px 600px, 308px 280px, 198px 180px;
	position: relative;
}

.mbrOnsBox {
	min-height: 600px;
	display: flex;
	align-items: center;
	margin: 30px 0 80px;
	padding: 60px 0 0 50px;
	background: url(../images/member_07_onishi.jpg) right top no-repeat,
	url(../images/img_bg2.jpg) right 412px top 0 no-repeat,
	url(../images/img_bg3.jpg) right 572px top 0 no-repeat;
	background-size: 660px 600px, 308px 280px, 198px 180px;
	position: relative;
}

.mbrMinBox {
	min-height: 600px;
	display: flex;
	align-items: center;
	margin: 30px 0 80px;
	padding: 60px 50px 0 0;
	background: url(../images/member_04_maino.jpg) left top no-repeat,
	url(../images/img_bg2.jpg) left 412px top 0 no-repeat,
	url(../images/img_bg3.jpg) left 572px top 0 no-repeat;
	background-size: 660px 600px, 308px 280px, 198px 180px;
	position: relative;
}

.mbrAokBox {
	min-height: 600px;
	display: flex;
	align-items: center;
	margin: 30px 0 80px;
	padding: 60px 0 0 50px;
	background: url(../images/member_06_aoki.jpg) right top no-repeat,
	url(../images/img_bg2.jpg) right 412px top 0 no-repeat,
	url(../images/img_bg3.jpg) right 572px top 0 no-repeat;
	background-size: 660px 600px, 308px 280px, 198px 180px;
	position: relative;
}

.mbrNnbBox {
	min-height: 600px;
	display: flex;
	align-items: center;
	margin: 30px 0 80px;
	padding: 60px 0 0 50px;
	background: url(../images/member_11_nanba.jpg) right top no-repeat,
	url(../images/img_bg2.jpg) right 412px top 0 no-repeat,
	url(../images/img_bg3.jpg) right 572px top 0 no-repeat;
	background-size: 660px 600px, 308px 280px, 198px 180px;
	position: relative;
}

.mbrItoBox {
	min-height: 600px;
	display: flex;
	align-items: center;
	margin: 0 0 80px;
	padding: 0 50px 0 0;
	background: url(../images/member_12_ito.jpg) left top no-repeat,
	url(../images/img_bg2.jpg) left 412px top 0 no-repeat,
	url(../images/img_bg3.jpg) left 572px top 0 no-repeat;
	background-size: 660px 600px, 308px 280px, 198px 180px;
	position: relative;
}

.mbrTkdBox {
	min-height: 600px;
	display: flex;
	align-items: center;
	margin: 0 0 80px;
	padding: 0 50px 0 0;
	background: url(../images/member_05_takada.jpg) left top no-repeat,
	url(../images/img_bg2.jpg) left 412px top 0 no-repeat,
	url(../images/img_bg3.jpg) left 572px top 0 no-repeat;
	background-size: 660px 600px, 308px 280px, 198px 180px;
	position: relative;
}

.mbrFkdBox {
	min-height: 600px;
	display: flex;
	align-items: center;
	margin: 30px 0 80px;
	padding: 60px 0 0 50px;
	background: url(../images/member_08_fukuda.jpg) right top no-repeat,
	url(../images/img_bg2.jpg) right 412px top 0 no-repeat,
	url(../images/img_bg3.jpg) right 572px top 0 no-repeat;
	background-size: 660px 600px, 308px 280px, 198px 180px;
	position: relative;
}
	
@media screen and (min-width:1301px) {
	.fmembers {
		padding: 50px 0 0;
		color: #000;
		text-align: center;
		display: table;
		max-width: 1300px;
		margin: 0 auto;
	}

	.fmembers .text {
		width: 55%;
		display: table-cell;
		padding-top: 30px;
	}

	.fmembers .image {
		width: 45%;
		display: table-cell;
		vertical-align: bottom;
	}

	.fmembers .image img {
		width: 100%;
		height: auto;
	}

	.fmembersHdg {
		font-size: 3.4em;
		font-weight: 700;
		margin-bottom: 30px;
		position: relative;
		z-index: 2;	
	}

	.fmembersTxt {
		font-size: 1.6em;
		position: relative;
		z-index: 2;
	}
}

@media screen and (max-width:1300px) {
	.fmembers {
		padding: 50px 0 0;
		color: #000;
		text-align: center;
		display: table;
		max-width: 1300px;
		margin: 0 auto;
	}

	.fmembers .text {
	}

	.fmembers .image {
	}

	.fmembers .image img {
		width: 100%;
		height: auto;
	}

	.fmembersHdg {
		font-size: 3.4em;
		font-weight: 700;
		margin-bottom: 30px;
		position: relative;
		z-index: 2;	
	}

	.fmembersTxt {
		font-size: 1.6em;
		position: relative;
		z-index: 2;
	}
}

/* ▲2022.07.20▲ */

.mbrCooBox .twtBtn {
	text-align: left;
}

.mbrTtlBox {
	position: absolute;
	top: -95px;
	left: 50px;
	display: flex;
	justify-content: flex-end;
}

.mbrTtl {
	order: 1;
	font-weight: 700;
	font-size: 14em;
	line-height: 0.65;
	letter-spacing: -0.025em;
}

.mbrSubTtl {
	order: 2;
	font-weight: 700;
	font-size: 3.4em;
	line-height: 1;
	letter-spacing: 0.025em;
	margin: 0 0 0 50px;
}

.mbrCeoInr {
	max-width: 1100px;
	padding: 120px 0 0 550px;
}

.mbrCooInr {
	max-width: 1100px;
	padding: 120px 550px 0 0;
}

.mbrCeoPst {
	display: inline-block;
	font-weight: 600;
	font-size: 2.6em;
	line-height: 1;
	margin: 0 0 20px;
	padding: 10px 15px;
	border: solid 1px #000;
	background: rgba(255,255,255,0.8);
}

.mbrCooPst {
	display: inline-block;
	font-weight: 600;
	font-size: 2.6em;
	line-height: 1;
	margin: 0 0 20px;
	padding: 10px 15px;
	border: solid 1px #000;
	background: rgba(255,255,255,0.8);
}

.mbrCeoNmeBox {
	display: flex;
	align-items: center;
	margin: 0 0 40px;
}

.mbrCeoNme {
	font-weight: 700;
	font-size: 6.3em;
	line-height: 1;
}

.mbrCeoSubNme {
	font-weight: 700;
	font-size: 3em;
	line-height: 1;
	margin: 0 0 0 40px;
}

.mbrCeoTxt {
	font-weight: 400;
	font-size: 2em;
	line-height: 1.8;
	margin: 0 0 40px;
}

.mbrCooNmeBox {
	display: flex;
	align-items: center;
	margin: 0 0 40px;
}

.mbrCooNme {
	font-weight: 700;
	font-size: 6.3em;
	line-height: 1;
}

.mbrCooSubNme {
	font-weight: 700;
	font-size: 3em;
	line-height: 1;
	margin: 0 0 0 40px;
}

.mbrCooTxt {
	font-weight: 400;
	font-size: 2em;
	line-height: 1.8;
	margin: 0 0 40px;
}

.twtBtnBox {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.twtBtn {
	text-align: right;
}

.twtBtn a {
	text-align: center;
	display: inline-block;
	padding: 12px 20px;
	font-weight: 400;
	font-size: 1.5em;
	background: #0d506b;
}

.twtBtn a:link,
.twtBtn a:visited {
	color: #fff!important;
}

.twtBtn a:hover {
	text-decoration: none!important;
	background: #00acee;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.twtBtn a span {
	padding: 5px 0 5px 40px;
	background: url(../images/icn_twitter.png) left no-repeat;
	background-size: 28px 28px;
}

.bokWrp {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
}

.bokLstTtl {
	font-weight: 700;
	font-size: 3em;
	line-height: 1;
	margin: 0 0 20px 10px;
}

.bokLst {
	display: flex;
	flex-wrap: wrap;
}

.bokLst li {
	width: calc(25% - 20px);
	margin: 0 10px 50px;
}

.bokLst li a {
	display: block;
}

.bokLst li a:link,
.bokLst li a:visited {
	color: #000!important;
}

.bokImgBox {
	overflow: hidden;
	height: 200px;
	margin: 0 0 20px;
	padding: 15px 50px;
	background: #000;
}

.bokImg {
	height: 200px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all 0.5s;
}

.bokLst li a:hover .bokImg {
	transform: scale(1.2, 1.2);
}

.bokTtl {
	font-weight: 600;
	font-size: 1.8em;
	line-height: 1.5;
	margin: 0 0 15px;
}

.bokTxt {
	font-weight: 400;
	font-size: 1.5em;
	line-height: 1.5;
	color: #737373!important;
}

.rdmBtnBox {
	text-align: center;
}

.rdmBtn {
	max-width: 360px;
	width: 100%;
	display: inline-block;
	margin: 0 auto 50px;
}

.rdmBtn a {
	text-align: left;
	display: block;
	font-weight: 700;
	font-size: 2.3em;
	line-height: 1;
	padding: 25px 30px;
	border: solid 1px #000;
	position: relative;
}

.rdmBtn a:before {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	right: 30px;
	width: 13px;
	border-top: solid 3px #000;
}

.rdmBtn a:after {
	content: "";
	position: absolute;
	top: calc(50% - 7px);
	right: 35px;
	height: 13px;
	border-right: solid 3px #000;
}

.rdmBtn a:link,
.rdmBtn a:visited {
	color: #000!important;
}

.rdmBtn a:hover {
	color: #fff!important;
	text-decoration: none!important;
	background: #0d506b;
	border: solid 1px #0d506b;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.rdmBtn a:hover:before {
	border-top: solid 3px #fff;
}

.rdmBtn a:hover:after {
	border-right: solid 3px #fff;
}

.stfWrp {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 25px;
}

.stfBox {
	margin: 50px 0 0;
	padding: 80px 0 0;
	position: relative;
}

.stfBox:before {
	content: "";
	position: absolute;
	top: 0;
	left: 5%;
	width: 90%;
	height: 2px;
	background: #000;
}

.stfLst {
	display: flex;
	flex-wrap: wrap;
}

.stfLst li {
	width: calc(33.33% - 50px);
	margin: 0 25px 120px;
	padding: 0 0 80px;
	position: relative;
}

.stfNmeBox {
	display: flex;
	justify-content: space-between;
	margin: 0 0 40px;
}

.stfNmeInr {
	width: clac(100% - 120px);
}

.stfIcnBox {
	display: none!important;
	text-align: center;
	max-width: 120px;
	width: 100%;
	display: inline-block;
	font-weight: 700;
	font-size: 2em;
	line-height: 1;
	color: #fff;
}

.stfIcn {
	white-space: nowrap;
	padding: 3px 15px;
	background: #000;
}

.advIcn {
	white-space: nowrap;
	padding: 3px 7px;
	background: #7c0c53;
}

.stfPst {
	display: inline-block;
	text-align: center;
	font-weight: 600;
	font-size: 1.6em;
	line-height: 1;
	margin: 0 0 13px;
	padding: 7px 10px;
	border: solid 1px #000;
}

.stfNme {
	font-weight: 700;
	font-size: 4.5em;
	line-height: 1.2;
	margin: 0 0 10px;
}

.stfSubNme {
	font-weight: 600;
	font-size: 1.8em;
	line-height: 1.2;
}

.stfTxt {
	font-weight: 400;
	font-size: 1.6em;
	line-height: 1.8;
}

@media screen and (max-width:1300px) {
	.mbrCeoBox {
		margin: 0 0 80px;
		padding: 540px 50px 0 0;
		background: url(../images/img_ceo.jpg) top no-repeat,
		url(../images/img_ceo.jpg) top 0 left calc(50% - -236px) no-repeat,
		url(../images/img_ceo.jpg) top 0 left calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
	}

	.mbrCeoInr {
		max-width: 1300px;
		padding: 0 0 0 50px;
	}
	
	.mbrCooBox {
		margin: 0 0 80px;
		padding: 540px 0 0 50px;
		background: url(../images/img_coo.jpg) top no-repeat,
		url(../images/img_coo.jpg) top 0 right calc(50% - -236px) no-repeat,
		url(../images/img_coo.jpg) top 0 right calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
	}

	.mbrCooInr {
		max-width: 1300px;
		padding: 0 50px 0 0;
	}
	
	.bokLst li {
		width: calc(50% - 20px);
	}
	
	/* ▼2022.07.20▼ */	
	
	.mbrKitBox {
		margin: 0 0 80px;
		padding: 540px 50px 0 0;
		background: url(../images/member_01_kita.jpg) top no-repeat,
		url(../images/img_bg2.jpg) top 0 left calc(50% - -236px) no-repeat,
		url(../images/img_bg3.jpg) top 0 left calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
		min-height: auto;
	}
	
	.mbrHndBox {
		margin: 0 0 80px;
		padding: 540px 0 0 50px;
		background: url(../images/member_02_honda.jpg) top no-repeat,
		url(../images/img_bg2.jpg) top 0 right calc(50% - -236px) no-repeat,
		url(../images/img_bg3.jpg) top 0 right calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
		min-height: auto;
	}
	
	.mbrKsmBox {
		margin: 0 0 80px;
		padding: 540px 50px 0 0;
		background: url(../images/member_03_kawashima.jpg) top no-repeat,
		url(../images/img_bg2.jpg) top 0 left calc(50% - -236px) no-repeat,
		url(../images/img_bg3.jpg) top 0 left calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
		min-height: auto;
	}
	
	.mbrMinBox  {
		margin: 0 0 80px;
		padding: 540px 0 0 50px;
		background: url(../images/member_04_maino.jpg?data=0527) top no-repeat,
		url(../images/img_bg2.jpg) top 0 right calc(50% - -236px) no-repeat,
		url(../images/img_bg3.jpg) top 0 right calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
		min-height: auto;
	}
	
	.mbrAokBox {
		margin: 0 0 80px;
		padding: 540px 0 0 50px;
		background: url(../images/member_06_aoki.jpg) top no-repeat,
		url(../images/img_bg2.jpg) top 0 right calc(50% - -236px) no-repeat,
		url(../images/img_bg3.jpg) top 0 right calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
		min-height: auto;
	}
	
	.mbrOnsBox {
		margin: 0 0 80px;
		padding: 540px 0 0 50px;
		background: url(../images/member_07_onishi.jpg) top no-repeat,
		url(../images/img_bg2.jpg) top 0 left calc(50% - -236px) no-repeat,
		url(../images/img_bg3.jpg) top 0 left calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
		min-height: auto;
	}
	
	.mbrFkdBox {
		margin: 0 0 80px;
		padding: 540px 50px 0 0;
		background: url(../images/member_08_fukuda.jpg) top no-repeat,
		url(../images/img_bg2.jpg) top 0 left calc(50% - -236px) no-repeat,
		url(../images/img_bg3.jpg) top 0 left calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
		min-height: auto;
	}
	
	.mbrTkdBox {
		margin: 0 0 80px;
		padding: 540px 0 0 50px;
		background: url(../images/member_05_takada.jpg) top no-repeat,
		url(../images/img_bg2.jpg) top 0 left calc(50% - -236px) no-repeat,
		url(../images/img_bg3.jpg) top 0 left calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
		min-height: auto;
	}
	
	.mbrTnkBox {
		margin: 0 0 80px;
		padding: 540px 0 0 50px;
		background: url(../images/member_09_tanaka.jpg) top no-repeat,
		url(../images/img_bg2.jpg) top 0 left calc(50% - -236px) no-repeat,
		url(../images/img_bg3.jpg) top 0 left calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
		min-height: auto;	
	}
	
	.mbrOzuBox {
		margin: 0 0 80px;
		padding: 540px 0 0 50px;
		background: url(../images/member_10_ozu.jpg) top no-repeat,
		url(../images/img_bg2.jpg) top 0 left calc(50% - -236px) no-repeat,
		url(../images/img_bg3.jpg) top 0 left calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
		min-height: auto;	
	}
	
	.mbrNnbBox {
		margin: 0 0 80px;
		padding: 540px 0 0 50px;
		background: url(../images/member_11_nanba.jpg) top no-repeat,
		url(../images/img_bg2.jpg) top 0 left calc(50% - -236px) no-repeat,
		url(../images/img_bg3.jpg) top 0 left calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
		min-height: auto;	
	}
	
	.mbrItoBox {
		margin: 0 0 80px;
		padding: 540px 0 0 50px;
		background: url(../images/member_12_ito.jpg) top no-repeat,
		url(../images/img_bg2.jpg) top 0 left calc(50% - -236px) no-repeat,
		url(../images/img_bg3.jpg) top 0 left calc(50% - -341px) no-repeat;
		background-size: 660px 600px, 308px 280px, 198px 180px;
		position: relative;
		min-height: auto;	
	}
	
	.membersTxt {
		
	}
	
	.membersImg {
		text-align: center;	
		padding: 0 30px;
		width: 100%;
		box-sizing: border-box;
	}
	
	.membersImg img {
		width: 100%;
		max-width: 1000px;
		height: auto;
		margin: 0 auto;
	}
	
	/* ▲2022.07.20▲ */
	
}

@media screen and (max-width:1200px) {
	.stfLst li {
		width: calc(50% - 50px);
	}
}

/* wrkAra */
#wrkAra {
	color: #fff;
	padding: 100px 35px 30px;
	background: url(../images/bg_universe.jpg) top no-repeat #000;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}

.wrkWrp {
	padding: 0 15px;
}

@keyframes border {
	0% {opacity: 0.6;}
	100% {opacity: 1;}
}

.wrkIcn01 {
	width: 220px;
	height: auto;
	position: absolute;
	top: 400px;
	left: 100px;
	animation: border 1s ease infinite alternate;
}

.wrkIcnBox {
	width: 360px;
	height: auto;
	position: absolute;
	top: -100px;
	right: 50px;
	-webkit-animation: paper-plane-scoping 2s alternate infinite;
	-moz-animation: paper-plane-scoping 2s alternate infinite;
	animation: paper-plane-scoping 2s alternate infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-timing-function: linear;
}

@-webkit-keyframes paper-plane-scoping {

  0% {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
  }
  
  100% {
	-webkit-transform: translateY(100px);
	-moz-transform: translateY(100px);
	transform: translateY(100px);
  }
  
}

.wrkIcn02 {
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation: paper-plane-soaring 4s forwards infinite;
	-moz-animation: paper-plane-soaring 4s forwards infinite;
	animation: paper-plane-soaring 4s forwards infinite;
}

@-webkit-keyframes paper-plane-soaring {

  0% {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  
  40% {
	-webkit-transform: rotate(10deg);
	-moz-transform: rotate(10deg);
	transform: rotate(10deg);
  }

  70% {
	-webkit-transform: rotate(-0deg);
	-moz-transform: rotate(-0deg);
	transform: rotate(-0deg);
  }
  
  100% {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  
}

.wrkTtlBox {
	display: flex;
	margin: 0 0 100px;
}

.wrkTtl {
	order: 1;
	font-weight: 700;
	font-size: 14em;
	line-height: 0.65;
	letter-spacing: -0.025em;
}

.wrkSubTtl {
	order: 2;
	font-weight: 700;
	font-size: 3.4em;
	line-height: 1;
	letter-spacing: 0.025em;
	margin: 0 0 0 50px;
}

.wrkTxt {
	max-width: 1300px;
	font-weight: 400;
	font-size: 2em;
	line-height: 2;
	margin: 0 auto 100px;
}

.wrkTxt br {
	display: none;
}

.wrkTxt .bigTxt {
	font-weight: 600;
	font-size: 1.2em;
	margin: 0 35px 0 0;
}

.wrkTxt .frmTxt {
	margin: 0 20px 0 0;
	padding: 10px 25px;
	border: solid 1px rgba(255,255,255,0.3);
}

.wrkMinTtl {
	text-align: center;
	font-weight: 700;
	font-size: 3.4em;
	line-height: 1.2;
	margin: 0 0 40px;
}

.wrkCntLstBox {
	max-width: 1260px;
	margin: 0 auto 120px;
	padding: 20px;
	border: solid 1px rgba(255,255,255,0.3);
}

.wrkCntLst {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	font-weight: 600;
	font-size: 2em;
	line-height: 1;
	white-space: nowrap;
}

.wrkCntLst li {
	width: calc(20% - 21px);
	padding: 10px;
}

.wrkCntLst li:not(:last-child) {
	border-right: solid 1px rgba(255,255,255,0.3);
}

.wrkCntLst li:nth-child(5) {
	border-right: none;
}

.udrBdr {
	margin: 0 0 20px;
	padding: 0 0 20px;
	border-bottom: solid 1px rgba(255,255,255,0.3);
}

.wrkSvsLst {
	display: flex;
	flex-wrap: wrap;
}

.wrkSvsLst li {
	width: calc(33.33% - 30px);
	margin: 0 15px 70px;
	overflow: hidden;
}

.wrkSvsLst li a:link,
.wrkSvsLst li a:visited {
	color: #fff!important;
}

.wrkSvsTtl {
	text-align: center;
	font-weight: 600;
	font-size: 2.6em;
	line-height: 1.3;
	margin: 0 0 30px;
}

.wrkSvsTtl .minTxt {
	font-size: 0.8em;
}

.wrkSvsImg {
	margin: 0 0 30px;
}

.wrkSvsImg a {
	display: block;
	transition: all 0.5s;
}

.wrkSvsImg a:hover {
	transform: scale(1.1, 1.1);
}

.wrkSvsTxt {
	font-weight: 400;
	font-size: 1.5em;
	line-height: 2;
}

.wrkSvsTxt .minTxt {
	font-size: 0.85em;
}

@media screen and (max-width:1300px) {
	.wrkTxt br {
		display: block;
	}
	
	.wrkCntLst {
		font-size: 1.8em;
	}

	.wrkSvsLst li {
		width: calc(50% - 30px);
	}
}

/* nwsAra */
#nwsAra {
	padding: 100px 50px 50px;
}

.nwsWrp {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
}

.nwsAraTtlBox {
	max-width: 250px;
	width: 100%;
	margin: 0 30px 0 0;
}

.nwsAraTtl {
	order: 1;
	font-weight: 700;
	font-size: 7.2em;
	line-height: 1;
	margin: 0 0 20px;
}

.nwsAraSubTtl {
	order: 2;
	font-weight: 700;
	font-size: 2em;
	line-height: 1;
	padding: 0 0 0 5px;
}

.nwsLst li {
	display: flex;
	margin: 0 0 70px;
}

.nwsDta {
	width: 160px;
	font-weight: 600;
	font-size: 2.2em;
	line-height: 1.4;
	color: #a3a3a3;
	margin: 0 40px 0 0;
}

.nwsTtlBox {
	width: calc(100% - 200px);
}

.nwsTtl {
	font-weight: 600;
	font-size: 2.2em;
	line-height: 1.4;
}

.nwsTtl a:link,
.nwsTtl a:visited {
	color: #000!important;
}

.otrSit {
	padding: 0 0 0 35px;
	background: url(../images/icn_other.png) left 0 top 7px no-repeat;
	background-size: 22px 19px;
}

.nwsTxt {
	font-weight: 400;
	font-size: 1.6em;
	line-height: 1.8;
	margin: 20px 0 0;
	padding: 20px 0 0;
	border-top: solid 2px #e8e8e8;
}

/* cttAra */
#cttAra {
	color: #e6e6e4;
	padding: 100px 50px;
	background: #151515;
}

.cttTtlBox {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 100px;
}

.cttTtl {
	order: 1;
	font-weight: 700;
	font-size: 14em;
	line-height: 0.65;
	letter-spacing: -0.025em;
}

.cttSubTtl {
	order: 2;
	font-weight: 700;
	font-size: 3.4em;
	line-height: 1;
	letter-spacing: 0.025em;
	margin: 0 0 0 50px;
}

.cttWrp {
	max-width: 1300px;
	margin: 0 auto;
}

.frmTypLst {
	max-width: 1300px;
	text-align: center;
	display: flex;
	justify-content: center;
	margin: 0 auto 80px;
	font-weight: 700;
	font-size: 2.2em;
	line-height: 1;
}

.frmTypLst li {
	margin: 0 30px;
}

.rdoBtn .optIpt {
	position: relative;
	top: 13.33333px;
	right: 0;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 30px;
	margin-right: 0.5rem;
	cursor: pointer;
	transition: all 0.15s ease-out 0s;
	color: #fff;
	border: none;
	outline: none;
	background: #262628;
	-webkit-appearance: none;
	        appearance: none;
}

.rdoBtn .optIpt:hover {
	background: #0d506b;
}

.rdoBtn .optIpt:checked {
	background: #0d506b;
}

.rdoBtn .optIpt:checked:before {
	font-size: 20px;
	line-height: 30px;
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 30px;
	content: '✔';
	text-align: center;
}

.rdoBtn .optIpt.radio {
	border-radius: 50%;
}

.rdoBtn .optIpt.radio:after {
	border-radius: 50%;
}

.rdoBtn label {
	line-height: 40px;
	display: block;
	cursor: pointer;
}

.frmCntLst {
	margin: 0 0 50px;
}

.frmCntLst li {
	display: flex;
	font-weight: 700;
	font-size: 2.2em;
	line-height: 1.4;
	margin: 0 0 30px;
}

.frmCnt {
	max-width: 300px;
	width: 100%;
	padding: 15px 0;
}

.frmCnt span {
	font-weight: 400;
	font-size: 0.8em;
	color: #ce0000;
}

.frmBox {
	width: calc(100% - 300px);
}

.frmBox input,
.frmBox textarea {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600!important;
	font-size: 1em;
	line-height: 1.6;
	color: #fff;
	padding: 15px;
	background: #262628;
	border: none;
	border-radius: 3px;
}

.frmBox01 {
	width: calc(100% - 30px);
}

.frmBox02 {
	width: calc(100% - 30px);
	height: 250px;
}

.errTxt {
	font-weight: 400;
	font-size: 0.8em;
	color: #ce0000;
	line-height: 2.5;
}

.sndBtn {
	text-align: center;
	max-width: 380px;
	margin: 0 auto;
}

.sndBtn input {
	display: block;
	width: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600!important;
	font-size: 2.4em;
	line-height: 1;
	color: #fff;
	padding: 30px;
	background: #0d506b;
	border: none;
	cursor: pointer;
}

.sndBtn input:hover {
	text-decoration: none!important;
	background: #04374c;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.cttPcyTxt {
	font-weight: 400;
	font-size: 1.6em;
	line-height: 2;
	margin: 70px 0 50px;
	border-top: solid 1px rgba(255,255,255,0.3);
	padding: 40px 0 0;
}

.pcyBtnBox {
	text-align: center;
}

.pcyBtn {
	max-width: 260px;
	width: 100%;
	display: inline-block;
	margin: 0 auto;
}

.pcyBtn a {
	text-align: left;
	display: block;
	font-weight: 700;
	font-size: 1.7em;
	line-height: 1;
	padding: 15px 20px;
	border: solid 1px rgba(255,255,255,0.3);
	position: relative;
}

.pcyBtn a:before {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	right: 15px;
	width: 13px;
	border-top: solid 3px #e6e6e4;
}

.pcyBtn a:after {
	content: "";
	position: absolute;
	top: calc(50% - 7px);
	right: 20px;
	height: 13px;
	border-right: solid 3px #e6e6e4;
}

.pcyBtn a:link,
.pcyBtn a:visited {
	color: #e6e6e4!important;
}

.pcyBtn a:hover {
	text-decoration: none!important;
	background: #0d506b;
	border: solid 1px #0d506b;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

/* checkpage */
.frmCthBox {
	text-align: center;
	margin: 0 0 50px;
}

.frmCth {
	display: inline-block;
	font-weight: 700;
	font-size: 4em;
	line-height: 1.2;
	padding: 20px 30px;
	border: solid 1px rgba(255,255,255,0.3);
}

.dneCth {
	display: inline-block;
	font-weight: 700;
	font-size: 4em;
	line-height: 1.2;
	color: #fff;
	padding: 20px 30px;
	background: #000;
}

.frmBox span {
	display: block;
	padding: 15px;
}

.bakBtn {
	text-align: center;
	max-width: 260px;
	margin: 0 auto;
}

.bakBtn input {
	display: block;
	width: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600!important;
	font-size: 1.7em;
	line-height: 1;
	color: #fff;
	margin: 30px 0 0;
	padding: 15px 20px;
	background: #262628;
	border: none;
	cursor: pointer;
}

.bakBtn input:hover {
	text-decoration: none!important;
	background: #3c3c3d;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.dneTxt {
	text-align: center;
	font-weight: 600;
	font-size: 3.4em;
	line-height: 1.8;
	margin: 0 0 80px;
}

/*======================================================
  footer
======================================================*/

.ftrWrp {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 30px 50px;
	background: #1f1f1f;
}

.ftrLg {
	max-width: 100px;
}

.lwrCtr .ftrLg {
	margin: 0 auto;
}

.fNav {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 1.6em;
	line-height: 1;
	padding: 0 0 15px;
}

.fNav li {
	margin: 0 0 0 40px;
}

.fNav a:link,
.fNav a:visited {
	color: #7a7a7a!important;
}

.fNav a:hover {
	text-decoration: none!important;
}

.cpyWrp {
	height: 220px;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: #fff;
	position: relative;
}

.cpyBgTxt {
	position: absolute;
	top: 0;
	left: 280px;
	font-weight: 700;
	font-size: 31em;
	line-height: 0.6;
	color: #fff;
	text-shadow: 1px 1px 0 #e1e1e1, -1px -1px 0 #e1e1e1,
	-1px 1px 0 #e1e1e1, 1px -1px 0 #e1e1e1,
	0 1px 0 #e1e1e1,  0 -1px 0 #e1e1e1,
	-1px 0 0 #e1e1e1, 1px 0 0 #e1e1e1;
}

.cpyTxt {
	font-weight: 600;
	font-size: 1.8em;
	line-height: 1.8;
	margin: 0 0 0 50px;
}

.ptpBtn {
	position: fixed;
	bottom: 60px;
    right: 20px;
	text-align: center;
	max-width: 100px;
	z-index: 999;
}

.ptpBtn a {
	width: 40px;
	height: 50px;
	display: block;
	padding: 25px 30px;
	background: #0d506b;
	border-radius: 50%;
}

.ptpBtn img {
	max-width: 40px;
	margin: 0 auto;
}

/*======================================================
  lower
======================================================*/

/* lwrTtl */
.lwrTtlBox {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 100px;
}

.lwrTtl {
	order: 1;
	font-weight: 700;
	font-size: 14em;
	line-height: 0.85;
	letter-spacing: -0.025em;
}

.lwrSubTtl {
	order: 2;
	font-weight: 700;
	font-size: 3.4em;
	line-height: 1;
	letter-spacing: 0.025em;
	margin: 10px 0 0 50px;
}

/* lwrAra */
#lwrAra {
	margin: 180px 0 0;
	padding: 50px;
}

.lwrWrp {
	max-width: 1300px;
	margin: 0 auto;
}

/* wp-pagenavi */
.wp-pagenavi {
	text-align: center;
	margin: 0 0 80px;
}

.wp-pagenavi a,
.wp-pagenavi span {
	width: 40px;
	height: 40px;
	color: #000!important;
	font-weight: 700;
	font-size: 2em;
	line-height: 1;
	margin: 0 8px;
	padding: 5px 13px;
	border: solid 1px #000;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all  0.2s ease;
}

.wp-pagenavi .current,
.wp-pagenavi a:hover {
	color: #fff!important;
	background: #000;
	text-decoration: none!important;
}

.wp-pagenavi .prevpostslink {
	color: #000!important;
	font-size: 30px!important;
	line-height: 1!important;
	margin: 0 15px 0 0!important;
	padding: 0!important;
	border: none!important;
	background: none!important;
}

.wp-pagenavi .nextpostslink {
	color: #000!important;
	font-size: 30px!important;
	line-height: 1!important;
	margin: 0 0 0 15px!important;
	padding: 0!important;
	border: none!important;
	background: none!important;
}

.wp-pagenavi .prevpostslink:hover,
.wp-pagenavi .nextpostslink:hover {
	color: #ccc!important;
}

/* newsdetail */
.nwsDtlDta {
	font-weight: 600;
	font-size: 2.2em;
	line-height: 1.4;
	color: #a3a3a3;
	margin: 0 0 15px;
}

.nwsDtlTtl {
	font-weight: 700;
	font-size: 3.4em;
	line-height: 1.5;
	margin: 0 0 30px;
}

.nwsDtlBox {
	margin: 0 0 50px;
	padding: 30px 0 20px;
	border-top: solid 2px #e8e8e8;
	border-bottom: solid 2px #e8e8e8;
}

.nwsDtlBox p {
	font-weight: 400;
	font-size: 1.8em;
	line-height: 1.8;
	margin: 0 0 30px;
}

.nwsDtlBox img {
	max-width: 800px;
	width: 100%;
	height: auto;
	margin: 0 0 30px;
}

/* privacy policy */
.plcLst {
	margin: 0 0 40px;
}

.plcLst dt {
	font-weight: 600;
    font-size: 2.2em;
	line-height: 1.4;
	margin: 0 0 15px;
}

.plcLst dd {
	font-weight: 400;
    font-size: 1.6em;
    line-height: 1.8;
    margin: 0 0 30px;
}

.dotLst {
	list-style: disc;
	margin: 20px 0 0;
	padding: 0 0 0 20px;
}

.fmembersImgWrp {
	position: relative;
	z-index: 10;
}


.mgm {
	padding: 150px 0 50px;
}