@import url("reset.css");


/* --------------------------------------------------
　レイアウト
-------------------------------------------------- */

#container {
	width: auto;
	overflow: hidden;
}

.inner {
	max-width: 1200px;
	padding: 0 40px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 760px) and (max-width: 979.98px) {
	.inner {
		padding: 0 20px;
	}
}

@media screen and (max-width: 759.98px) {
	.inner {
		padding: 0 14px;
	}
	i.arrow-head {
		display: none;
	}
}

/* フロート */
.f_l { float: left;}
.f_r { float: right;}

/* clearfix */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
} 

.clearfix:before {
	content: "";
	display: block;
	clear: both;
}

.clearfix {
	display: block;
}


/* --------------------------------------------------
　カラム
-------------------------------------------------- */


/* --------------------------------------------------
　フォント
-------------------------------------------------- */


/* フォントウェイト */
.fw-normal { font-weight: normal;}
.fw-bold { font-weight: bold;}

/* イタリック */
.fs-italic { font-style: italic;}

/* アンダーライン */
.ta-deco { text-decoration: underline;}

/* テキスト上下左右寄せ */
.ta-left { text-align: left;}
.ta-center { text-align: center;}
.ta-right { text-align: right;}
.va-top { vertical-align: top;}
.va-bottom { vertical-align: bottom;}
.ta-justify { text-align: justify;}

@media screen and (min-width: 760px) {
	.pc-ta-left { text-align: left;}
	.pc-ta-center { text-align: center;}
	.pc-ta-right { text-align: right;}
}

/* Line Height */
.lh-1p4 { line-height: 1.4;}
.lh-1p5 { line-height: 1.5;}
.lh-1p6 { line-height: 1.6;}
.lh-1p7 { line-height: 1.7;}
.lh-1p8 { line-height: 1.8;}
.lh-2 { line-height: 2;}

/* letter-spacing */
.ls-1px { letter-spacing: 1px!important;}
.ls-m0p1 {letter-spacing: -0.1px!important;}
.ls-m0p2 {letter-spacing: -0.2px!important;}
.ls-m0p3 {letter-spacing: -0.3px!important;}
.ls-m0p4 {letter-spacing: -0.4px!important;}
.ls-m0p5 {letter-spacing: -0.5px!important;}
.ls-m0p6 {letter-spacing: -0.6px!important;}
.ls-m0p7 {letter-spacing: -0.7px!important;}
.ls-m0p8 {letter-spacing: -0.8px!important;}

/* --------------------------------------------------
　画像
-------------------------------------------------- */
.img-fluid {
	max-width: 100%;
	height: auto;
}

.img-fluid-type02 {
	width: 100%;
	height: auto;
}

.img-border {
	border: 1px solid #d9d9d9;
}

a:hover img.ov {
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.5;
}

figure figcaption {
	text-align: center;
	margin-top: 10px;
}

@media screen and (min-width: 760px) {
	.img-center {
		display: flex;
		justify-content: center;
	}
	
	.sp-figure-enlarge a {
		pointer-events: none;
	}
}

.figure-type01 {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.figure-type01 .figure__title {
	font-size: 1.25rem;
	font-weight: bold;
	color: #e60012;
	margin-bottom: 12px;
}

.figure-type01 figure img {
	width: 100%;
}

.figure-type02 .figure__title {
	font-size: 1.25rem;
	font-weight: bold;
	color: #e60012;
	margin-bottom: 12px;
	text-align: left;
}

.figure-type02 figure img {
	width: 100%;
}

@media screen and (max-width: 759.98px) {
	.sp-figure-enlarge a, .sp-figure-enlarge a figure {
		position: relative;
	}
	
	.sp-figure-enlarge a figure:after {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		width: 19px;
		height: 19px;
		cursor: pointer;
		background: url("../img/icon_open.svg") no-repeat;
		-webkit-transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
		transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	
	.figure-enlarge .mfp-figure figure {
		overflow-x: scroll;
	}
	
	.figure-enlarge .mfp-figure figure::-webkit-scrollbar {
		height: 8px; /* スクロールバーの高さ */
	}

	.figure-enlarge .mfp-figure figure::-webkit-scrollbar-thumb {
		background: #d9d9d9; /* ツマミの色 */
		border-radius: 4px; /* ツマミ両端の丸み */
	}

	.figure-enlarge .mfp-figure figure::-webkit-scrollbar-track {
		background: #f2f2f2; /* トラックの色 */
		border-radius: 4px; /* トラック両端の丸み */
	}
	
	.figure-enlarge .mfp-img {
		max-width: 800px;
		padding: 10px;
		margin: 10px 0;
		background: #ffffff;
	}
	
	.figure-enlarge.special-page .mfp-img {
		max-height: 640px!important;
	}
	
	.figure-enlarge .mfp-image-holder .mfp-close {
		top: -9px!important;
	}
	
	.figure-type02 {
		display: flex;
		justify-content: center;
		margin-top: 30px;
	}

}


/* --------------------------------------------------
	margin
-------------------------------------------------- */
.mt-0 { margin-top: 0px!important;}
.mt-5 { margin-top: 5px!important;}
.mt-10 { margin-top: 10px!important;}
.mt-15 { margin-top: 15px!important;}
.mt-20 { margin-top: 20px!important;}
.mt-25 { margin-top: 25px!important;}
.mt-30 { margin-top: 30px!important;}
.mt-35 { margin-top: 35px!important;}
.mt-40 { margin-top: 40px!important;}
.mt-45 { margin-top: 45px!important;}
.mt-50 { margin-top: 50px!important;}
.mt-60 { margin-top: 60px!important;}
.mt-70 { margin-top: 70px!important;}
.mt-80 { margin-top: 80px!important;}
.mt-90 { margin-top: 90px!important;}
.mt-100 { margin-top: 100px!important;}
.mt-0p5em { margin-top: 0.5em!important;}
.mt-0p7em { margin-top: 0.7em!important;}
.mt-1em { margin-top: 1em!important;}

.mb-0 { margin-bottom: 0px!important;}
.mb-5 { margin-bottom: 5px!important;}
.mb-10 { margin-bottom: 10px!important;}
.mb-15 { margin-bottom: 15px!important;}
.mb-20 { margin-bottom: 20px!important;}
.mb-25 { margin-bottom: 25px!important;}
.mb-30 { margin-bottom: 30px!important;}
.mb-35 { margin-bottom: 35px!important;}
.mb-40 { margin-bottom: 40px!important;}
.mb-45 { margin-bottom: 45px!important;}
.mb-50 { margin-bottom: 50px!important;}
.mb-100 { margin-bottom: 100px!important;}

.ml-0 { margin-left: 0px!important;}
.ml-5 { margin-left: 5px!important;}
.ml-10 { margin-left: 10px!important;}
.ml-15 { margin-left: 15px!important;}
.ml-20 { margin-left: 20px!important;}
.ml-25 { margin-left: 25px!important;}
.ml-30 { margin-left: 30px!important;}
.ml-35 { margin-left: 35px!important;}
.ml-40 { margin-left: 40px!important;}
.ml-45 { margin-left: 45px!important;}
.ml-50 { margin-left: 50px!important;}

.mr-0 { margin-right: 0px!important;}
.mr-5 { margin-right: 5px!important;}
.mr-10 { margin-right: 10px!important;}
.mr-15 { margin-right: 15px!important;}
.mr-20 { margin-right: 20px!important;}
.mr-25 { margin-right: 25px!important;}
.mr-30 { margin-right: 30px!important;}
.mr-35 { margin-right: 35px!important;}
.mr-40 { margin-right: 40px!important;}
.mr-45 { margin-right: 45px!important;}
.mr-50 { margin-right: 50px!important;}

@media screen and (max-width: 759.98px) {
	.sp-mt-0 { margin-top: 0px!important;}
	.sp-mt-5 { margin-top: 5px!important;}
	.sp-mt-10 { margin-top: 10px!important;}
	.sp-mt-15 { margin-top: 15px!important;}
	.sp-mt-20 { margin-top: 20px!important;}
	.sp-mt-25 { margin-top: 25px!important;}
	.sp-mt-30 { margin-top: 30px!important;}
	.sp-mt-35 { margin-top: 35px!important;}
	.sp-mt-40 { margin-top: 40px!important;}
	.sp-mt-45 { margin-top: 45px!important;}
	.sp-mt-50 { margin-top: 50px!important;}
	.sp-mt-60 { margin-top: 60px!important;}
	.sp-mt-70 { margin-top: 70px!important;}
	.sp-mt-80 { margin-top: 80px!important;}
}

@media screen and (min-width: 760px) {
	.pc-mt-0 { margin-top: 0px!important;}
	.pc-mt-10 { margin-top: 10px!important;}
	.pc-mt-20 { margin-top: 20px!important;}
}


/* --------------------------------------------------
	padding
-------------------------------------------------- */
.pt-0 { padding-top: 0px!important;}
.pt-3 { padding-top: 3px!important;}
.pt-5 { padding-top: 5px!important;}
.pt-10 { padding-top: 10px!important;}
.pt-15 { padding-top: 50px!important;}
.pt-20 { padding-top: 20px!important;}
.pt-25 { padding-top: 50px!important;}
.pt-30 { padding-top: 30px!important;}
.pt-35 { padding-top: 50px!important;}
.pt-40 { padding-top: 40px!important;}
.pt-45 { padding-top: 50px!important;}
.pt-50 { padding-top: 50px!important;}

.pb-0 { padding-bottom: 0px!important;}
.pb-3 { padding-bottom: 3px!important;}
.pb-5 { padding-bottom: 5px!important;}
.pb-10 { padding-bottom: 10px!important;}
.pb-15 { padding-bottom: 50px!important;}
.pb-20 { padding-bottom: 20px!important;}
.pb-25 { padding-bottom: 50px!important;}
.pb-30 { padding-bottom: 30px!important;}
.pb-35 { padding-bottom: 50px!important;}
.pb-40 { padding-bottom: 40px!important;}
.pb-45 { padding-bottom: 50px!important;}
.pb-50 { padding-bottom: 50px!important;}

.pl-0 { padding-left: 0px!important;}
.pl-3 { padding-left: 3px!important;}
.pl-5 { padding-left: 5px!important;}
.pl-10 { padding-left: 10px!important;}
.pl-15 { padding-left: 50px!important;}
.pl-20 { padding-left: 20px!important;}
.pl-25 { padding-left: 50px!important;}
.pl-30 { padding-left: 30px!important;}
.pl-35 { padding-left: 50px!important;}
.pl-40 { padding-left: 40px!important;}
.pl-45 { padding-left: 50px!important;}
.pl-50 { padding-left: 50px!important;}

.pr-0 { padding-right: 0px!important;}
.pr-3 { padding-right: 3px!important;}
.pr-5 { padding-right: 5px!important;}
.pr-10 { padding-right: 10px!important;}
.pr-15 { padding-right: 50px!important;}
.pr-20 { padding-right: 20px!important;}
.pr-25 { padding-right: 50px!important;}
.pr-30 { padding-right: 30px!important;}
.pr-35 { padding-right: 50px!important;}
.pr-40 { padding-right: 40px!important;}
.pr-45 { padding-right: 50px!important;}
.pr-50 { padding-right: 50px!important;}


/* --------------------------------------------------
　注釈、上付き、下付き
-------------------------------------------------- */

sup {
	white-space: nowrap;
	font-size: 10px;
	font-weight: normal;
	line-height: 1.5;
	vertical-align: text-top;
	color: #e60012;
}

sup.unit {
	color: #3c3c3c;
}

sub {
	font-size: smaller;
}

.note {
	margin-top: 1em;
	font-size: 0.875rem;
}

.note .note__title {
	color: #e60012;
	margin-bottom: 3px;
}

.note .note__detail {
	color: #666666;
}

.note .note__title:nth-child(2n+1) {
	margin-top: 1em;
}

.note.note--single-row .note__title {
	float: left;
	width: 2.5em;
	margin-top: 0;
}

.note.note--single-row .note__detail {
	float: left;
	width: calc(100% - 2.5em);
}

.note.note--single-row--type02 .note__title {
	float: left;
	margin-top: 0;
}

.note.note--single-row--type02 .note__detail {
	float: left;
	width: calc(100% - 1.5em);
}

.asterisk-white {
	color: #ffffff!important;
}

.asterisk-grey {
	color: #666666!important;
}

.asterisk-black {
	color: #3c3c3c!important;
}


/* --------------------------------------------------
　表示・非表示
-------------------------------------------------- */

@media screen and (min-width: 760px) {
	.pc-hide,
	.slick-slide .pc-hide {
		display: none;
	}
}

@media screen and (max-width: 1199.98px) {
	.pc-narrow-hide,
	.slick-slide .pc-narrow-hide {
		display: none;
	}
}

@media screen and (max-width: 759.98px) {
	.sp-hide,
	.slick-slide .sp-hide {
		display: none;
	}
}

/* --------------------------------------------------
　幅
-------------------------------------------------- */

.w100per {
	width: 100%!important;
}

.w95per {
	width: 95%!important;
}

.w90per {
	width: 90%!important;
}

.w85per {
	width: 85%!important;
}

.w80per {
	width: 80%!important;
}

.w75per {
	width: 75%!important;
}

.w70per {
	width: 70%!important;
}

.w65per {
	width: 65%!important;
}

.w60per {
	width: 60%!important;
}

.w55per {
	width: 55%!important;
}

.w50per {
	width: 50%!important;
}

.w45per {
	width: 45%!important;
}

.w44per {
	width: 44%!important;
}

.w43per {
	width: 43%!important;
}

.w42per {
	width: 42%!important;
}

.w41per {
	width: 41%!important;
}

.w40per {
	width: 40%!important;
}

.w35per {
	width: 35%!important;
}

.w30per {
	width: 30%!important;
}

.w25per {
	width: 25%!important;
}

.w20per {
	width: 20%!important;
}

.w18per {
	width: 18%!important;
}

.w17per {
	width: 17%!important;
}

.w16per {
	width: 16%!important;
}

.w15per {
	width: 15%!important;
}

.w14per {
	width: 14%!important;
}

.w13per {
	width: 13%!important;
}

.w12per {
	width: 12%!important;
}

.w10per {
	width: 10%!important;
}

.w5per {
	width: 5%!important;
}

.w3per {
	width: 3%!important;
}

.max-w120px {
	max-width: 120px;
}

@media screen and (min-width: 760px) {
	.pc-w100per {
		width: 100%!important;
	}
	
	.pc-w90per {
		width: 90%!important;
	}
	
	.pc-w80per {
		width: 80%!important;
	}
	
	.pc-w75per {
		width: 75%!important;
	}
	
	.pc-w70per {
		width: 70%!important;
	}
	
	.pc-w65per {
		width: 65%!important;
	}
	
	.pc-w60per {
		width: 60%!important;
	}
	
	.pc-w55per {
		width: 55%!important;
	}
	
	.pc-w50per {
		width: 50%!important;
	}
}

@media screen and (max-width: 759.98px) {
	.sp-w100per {
		width: 100%!important;
	}
	
	.sp-w95per {
		width: 95%!important;
	}
	
	.sp-w90per {
		width: 90%!important;
	}
	
	.sp-w85per {
		width: 85%!important;
	}
	
	.sp-w80per {
		width: 80%!important;
	}
	
	.sp-w75per {
		width: 75%!important;
	}
	
	.sp-w70per {
		width: 70%!important;
	}
	
	.sp-w65per {
		width: 65%!important;
	}
	
	.sp-w60per {
		width: 60%!important;
	}
	
	.sp-w55per {
		width: 55%!important;
	}
	
	.sp-w50per {
		width: 50%!important;
	}
	
	.sp-w45per {
		width: 45%!important;
	}
	
	.sp-w40per {
		width: 40%!important;
	}
	
	.sp-w35per {
		width: 35%!important;
	}
	
	.sp-w30per {
		width: 30%!important;
	}
	
	.sp-w25per {
		width: 25%!important;
	}
	
	.sp-w20per {
		width: 20%!important;
	}
	
	.sp-w18per {
		width: 18%!important;
	}
	
	.sp-w16per {
		width: 16%!important;
	}
	
	.sp-w15per {
		width: 15%!important;
	}
	
	.sp-w14per {
		width: 14%!important;
	}
	
	.sp-w12per {
		width: 12%!important;
	}
	
	.sp-w10per {
		width: 10%!important;
	}
	
	.sp-max-w180px {
		max-width: 180px;
	}
	
	.sp-max-w400px {
		max-width: 400px!important;
	}
	
	.sp-max-w450px {
		max-width: 450px!important;
	}
	
	.sp-max-w500px {
		max-width: 500px!important;
	}
	
	.sp-max-w550px {
		max-width: 550px!important;
	}
	
	.sp-max-w600px {
		max-width: 600px!important;
	}
	
	.sp-max-w650px {
		max-width: 650px!important;
	}
	
	.sp-max-w700px {
		max-width: 700px!important;
	}
	
	.sp-max-w750px {
		max-width: 750px!important;
	}
}


/* --------------------------------------------------
　アイコン
-------------------------------------------------- */

.round-arrow {
	display: inline-block;
	padding-right: 8px;
}

.round-arrow svg {
	fill: #e60012;
	width: 14px;
	height: 14px;
}

.headline03 .round-arrow {
	padding-right: 5px;
	position: relative;
}

.headline03 .round-arrow svg {
	position: relative;
	top: -0.05em;
	width: 16px;
	height: 16px;
}


@media screen and (max-width: 979.98px) {
	.round-arrow {
		position: relative;
		top: 0.1em;
		padding-right: 6px;
	}
}


/* --------------------------------------------------
　リスト
-------------------------------------------------- */

/* --------------------------------------------------
	#main共通
-------------------------------------------------- */

#main {
	letter-spacing: 2px;
}

@media screen and (max-width: 979.98px) {
	#top-block,
	.second-level .local-nav,
	.third-level .local-nav {
		display: none!important;
	}
}

.title {
	position: relative;
	background-color: #e60012;
	color: #ffffff;
	padding: 18px 0 18px 56px;
	display: flex;
	align-items: center;
}

@media screen and (min-width: 760px) and (max-width: 979.98px) {
	.title {
		padding-left: 20px;
	}
}

@media screen and (max-width: 759.98px) {
	#main {
		letter-spacing: 1px;
	}
	
	.title {
		padding-left: 14px;
	}
}

.title h1 {
	font-size: 1.5rem;
	padding-right: 30px;
	border-right: 2px solid #ffffff;
	min-width: 4.5em;
}

.title h1 a {
	color: #ffffff;
	text-decoration: none;
}

.title__info {
	padding-left: 30px;
}

.title__english {
	position: absolute;
	top: 0;
	right: 42px;
	background: #ffffff;
	border-radius: 0 0 5px 5px;
	letter-spacing: 0;
	display: flex;
}

@media screen and (max-width: 979.98px) {
	.title h1 {
		padding-right: 20px;
	}

	.title__info {
		padding-left: 20px;
	}
}

@media screen and (max-width: 759.98px) {
	.title h1 {
		padding-right: 12px;
		font-size: 1.2rem;
	}
	
	.title__info {
		padding-left: 14px;
		font-size: 0.9rem;
		letter-spacing: 1px;
	}
}

@media screen and (max-width: 400px) {
	.title h1 {
		font-size: 1rem;
	}
	
	.title__info {
		font-size: 0.85rem;
	}
}

.title__english a:first-child {
	display: block;
	font-size: 0.875rem;
	font-weight: bold;
	color: #3c3c3c;
	padding: 6px 4px 6px 28px;
	text-decoration: none;
	position: relative;
}

.title__english a:last-child {
	display: block;
	font-size: 0.875rem;
	font-weight: bold;
	color: #3c3c3c;
	padding: 6px 12px 6px 28px;
	text-decoration: none;
	position: relative;
}

.title__english a:hover {
	text-decoration: none;
	color: #e60012;
}

.title__english a:before {
	content: " ";
	position: absolute;
	top: 14px;
	left: 12px;
	width: 7px;
	height: 7px;
	border-right: 2px solid #a0a0a1;
	border-bottom: 2px solid #a0a0a1;
	box-sizing: border-box;
	transform: rotate(-45deg);
}

.text-link {
	color: #3c3c3c;
	text-decoration: none;
	-webkit-transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);

}

.text-link:visited, .text-link:active {
	color: #3c3c3c;
	text-decoration: none;
}

.text-link:hover{
	color: #e60012;
	-webkit-transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.text-link-bold {
	color: #3c3c3c;
	text-decoration: none;
	-webkit-transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);

}

.text-link-bold:visited, .text-link-bold:active {
	color: #3c3c3c;
	text-decoration: none;
}

.text-link-bold:hover{
	color: #e60012;
	font-weight: bold;
	-webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pdf-link, .pdf-link02 {
	color: #3c3c3c;
	text-decoration: none;
	position: relative;
	-webkit-transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pdf-link:visited, .pdf-link02:visited, .text-link:active {
	color: #3c3c3c;
	text-decoration: none;
}

.pdf-link:hover, .pdf-link02:hover {
	color: #e60012;
	-webkit-transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pdf-link span {
	position: relative;
	padding-left: 42px;
}

.pdf-link02 span {
	position: relative;
	padding-left: 2px;
	padding-right: 42px;
}

.pdf-link span:before {
	content: "";
	display: block;
	width: 32px;
	height: 16px;
	background: url("../img/icon_pdf.svg") left top no-repeat;
	position: absolute;
	left: 4px;
	top: 0.3em;
}

.pdf-link02 span:after {
	content: "";
	display: block;
	width: 32px;
	height: 16px;
	background: url("../img/icon_pdf.svg") left top no-repeat;
	position: absolute;
	right: 4px;
	top: 0.3em;
}

.pdf-link02 .round-arrow {
	padding-right: 5px;
}

.url-link i {
	float: left;
}

@media screen and (max-width: 979.98px) {
	.pdf-link span:before, .pdf-link02 span:before {
		top: 0.2em;
	}
}


/* ドロップダウン */
.dropdown {
	text-align: center;
	position: relative;
}

.dropdown__opener {
	background: none;
	border: none;
	outline: none;
	margin: 0;
	padding: 0;
	color: inherit;
	-webkit-appearance: none;
					appearance: none;
	cursor: pointer;
	font-family: inherit;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
					align-items: center;
	padding: 5px 7px 5px 17px;
	box-sizing: content-box;
	border: solid 2px #d9d9d9;
	border-radius: 2px;
	position: relative;
	-webkit-transition: border-color 150ms linear, background-color 150ms linear, color 150ms linear;
	transition: border-color 150ms linear, background-color 150ms linear, color 150ms linear;
}

.dropdown__opener:focus {
	outline: 0;
}

.is-opened .dropdown__opener {
	background-color: #f2f2f2;
	border-bottom-style: none;
	z-index: 11;
}

.dropdown__opener span {
	color: #3c3c3c;
	font-size: 0.75rem;
	line-height: 1;
	margin-top: 0em;
	margin-bottom: 0em;
	font-weight: bold;
	display: block;
	min-width: 344px;
	padding: 0 6px;
}

.dropdown__opener .nc3-a-icon {
	width: 16px;
	height: 16px;
	padding: 0 4px;
	display: inline-block;
	box-sizing: border-box;
	fill: #e60012;
	-webkit-transition: fill 0.2s ease, -webkit-transform 0.3s ease;
	transition: fill 0.2s ease, -webkit-transform 0.3s ease;
	transition: fill 0.2s ease, transform 0.3s ease;
	transition: fill 0.2s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.dropdown__opener .nc3-a-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.is-opened .dropdown__opener .nc3-a-icon {
	fill: #8c8c8c;
	-webkit-transform: rotate3d(1, 0, 0, 180deg);
					transform: rotate3d(1, 0, 0, 180deg);
}

@media screen and (max-width: 759.98px) {
	.is-opened .dropdown__opener .nc3-a-icon {
		-webkit-transform: rotate(180deg);
						transform: rotate(180deg);
	}
	
	.dropdown__opener span {
		letter-spacing: 0;
		padding-left: 4px;
	}
}

.is-opened .dropdown__opener:hover {
	border-color: #d9d9d9;
}

@media screen and (min-width: 980px), print {
	.dropdown__opener:hover {
		border-color: #e60012;
		-webkit-transition: border-color 150ms cubic-bezier(0.165, 0.84, 0.44, 1), background-color 150ms cubic-bezier(0.165, 0.84, 0.44, 1), color 150ms cubic-bezier(0.165, 0.84, 0.44, 1);
		transition: border-color 150ms cubic-bezier(0.165, 0.84, 0.44, 1), background-color 150ms cubic-bezier(0.165, 0.84, 0.44, 1), color 150ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.dropdown__opener:hover span {
		color: #e60012;
	}
}

.dropdown select {
	font-size: 1rem;
	line-height: 1;
	margin-top: 0;
	margin-bottom: 0;
	opacity: 0;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.dropdown:hover .dropdown__opener {
	border-color: #e60012;
}
.dropdown:hover .dropdown__opener span {
	color: #e60012;
}

@media screen and (max-width: 759.98px) {
	.dropdown__opener span {
		min-width: inherit;
		line-height: 2;
	}
}


/* ページトップ */
#jobs_footer,
#jobs_footer * {
	box-sizing: border-box;
	text-align: left;
	list-style-type: none;
}

#jobs_footer{
	min-height: 92px;
	background-color: #dcdcdc;
}

.jobs_footer__inner {
	display: flex;
	flex-direction: row;
	max-width: 1200px;
	width: 100%;
	min-height: 92px;
	margin: auto;
	padding-top: 21px;
	padding-bottom: 21px;
	height: 100%;
	box-sizing: border-box;
}

.jobs_footer-topicpath {
	flex-grow: 1;
	display: flex;
	align-items: center;;
}

.jobs_footer-topicpath > ul {
	font-size: 0.75rem;
	margin: 0;
	padding: 0;
	clear: both;
	overflow: hidden;
}

.jobs_footer-topicpath > ul > li:not(:last-child)::after{
	content: ">";
	display: inline-block;
	padding-left: 17px;
	padding-right: 17px;
}

.jobs_footer-topicpath > ul > li {
	float: left;
}

#jobs_page_top {
	width: 67px;
	flex-shrink: 0;
	flex-grow: 0;
	position: relative;
}

#jobs_page_top i {
	width: 12px;
	height: 20px;
	transform: rotate(-90deg);
}

#jobs_page_top i svg {
	width: 12px;
	height: 20px;
	fill: #8c8c8c;
	-webkit-transition: fill 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: fill 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

#jobs_page_top a:hover i svg {
	fill: #e60012;
	-webkit-transition: fill 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: fill 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

#jobs_page_top::after{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/footer_border.png);
	background-repeat: no-repeat;
}

#jobs_page_top > a{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	/*justify-content: center;*/
	padding-top: 16px;
	align-items:center;
}


@media screen and (min-width: 980px) {
	#jobs_footer.corpHdrFtr-h-pc {
		display: block!important;
	}
	
	.jobs_footer__inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media screen and (min-width: 760px) and (max-width: 979.98px) {
	.jobs_footer__inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media screen and (max-width: 759.98px) {
	.jobs_footer__inner {
		padding-left: 14px;
		/*padding-right: 14px;*/
		letter-spacing: 1px;
	}
	
	.jobs_footer-topicpath > ul > li:not(:last-child)::after{
		content: ">";
		display: inline-block;
		padding-left: 8px;
		padding-right: 8px;
	}
}


/* CSR情報トップ */

@media print, screen and (min-width: 980px) {
	.site__top__link {
		margin-top: 100px;
		padding-bottom: 60px;
		text-align: center;
		text-decoration: underline;
	}
	
	.content-nav-footer + .site__top .site__top__link {
		margin-top: 70px;
	}
}

@media print, screen and (max-width: 979.98px) {
	.site__top__link {
		margin-top: 80px;
		padding-bottom: 30px;
		text-align: center;
		text-decoration: underline;
	}
	
	.content-nav-footer + .site__top .site__top__link {
		margin-top: 50px;
	}
}


/* noscript */

noscript {
	padding: 20px;
	text-align: center;
	height: 100px;
}


/* --------------------------------------------------
	扉と第三階層#main共通
-------------------------------------------------- */

.special-page .inner,
.second-level .inner,
.third-level .inner {
	max-width: 1120px;
}

.second-level-pl {
	padding-left: 215px
}

.second-level .local-nav {
	padding-top: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e60012;
	display: flex;
	justify-content: center;
}

.third-level .local-nav {
	padding-top: 16px;
	padding-bottom: 8px;
	display: flex;
	justify-content: center;
}

.second-level .local-nav .local-nav__list__item,
.third-level .local-nav .local-nav__list__item {
	display: inline-block;
	text-align: center;
	padding: 4px 20px 4px 5px;
}

.second-level .local-nav .local-nav__list__item:not(:last-child),
.third-level .local-nav .local-nav__list__item:not(:last-child) {
	border-right: 1px solid #e6e6e6;
}

.second-level .local-nav .local-nav__list__item:not(:first-child),
.third-level .local-nav .local-nav__list__item:not(:first-child) {
	margin: 0 0 8px 10px;
}

.second-level .local-nav .local-nav__list__item:last-child,
.third-level .local-nav .local-nav__list__item:last-child {
	padding-right: 5px;
}

.second-level .local-nav .local-nav__list__item.active a,
.third-level .local-nav .local-nav__list__item.active a {
	color: #e60012;
}

@media screen and (max-width: 979.98px) {
	.second-level .local-nav,
	.third-level .local-nav {
		padding-left: 4px;
		padding-right: 4px;
	}
	
	.second-level .local-nav .local-nav__list__item:first-child,
	.third-level .local-nav .local-nav__list__item:first-child {
		margin-left: 10px;
	}
	
	.second-level .local-nav .local-nav__list__item,
	.third-level .local-nav .local-nav__list__item {
		padding-right: 14px;
		padding-left: 0!important;
	}
	
	.second-level-pl {
		padding-left: 80px
	}
}

@media screen and (max-width: 759.98px) {
	.second-level-pl {
		padding-left: 14px
	}
	
	.second-level .local-nav,
	.third-level .local-nav {
		padding-left: 14px;
		padding-right: 14px;
		border-bottom-width: 2px;
	}
	
	.second-level .local-nav .local-nav__list__item:first-child,
	.third-level .local-nav .local-nav__list__item:first-child {
		margin-left: 0;
	}
}	
	
@media screen and (max-width: 640px) {
	
	.second-level .local-nav ul ,
	.third-level .local-nav ul {
		overflow-x: scroll;
		white-space: nowrap;
		margin-bottom:  5px;
	}
	
	.second-level .local-nav ul::-webkit-scrollbar,
	.third-level .local-nav ul::-webkit-scrollbar {
		height: 8px; /* スクロールバーの高さ */
	}

	.second-level .local-nav ul::-webkit-scrollbar-thumb,
	.third-level .local-nav ul::-webkit-scrollbar-thumb {
		background: #d9d9d9; /* ツマミの色 */
		border-radius: 4px; /* ツマミ両端の丸み */
	}

	.second-level .local-nav ul::-webkit-scrollbar-track,
	.third-level .local-nav ul::-webkit-scrollbar-track {
		background: #f2f2f2; /* トラックの色 */
		border-radius: 4px; /* トラック両端の丸み */
	}
	
	.second-level .local-nav .local-nav__list__item:not(:last-child),
	.third-level .local-nav .local-nav__list__item:not(:last-child) {
		letter-spacing: 1px;
	}
	
	.second-level .local-nav .local-nav__list__item:first-child {
		margin-left: 0;
	}
}


/* --------------------------------------------------
	扉#content共通
-------------------------------------------------- */

/*
.second-level #content {
	padding-bottom: 100px;
}
*/

.second-level.consumers #content {
	background: url("../report/consumers/img/img_bg.jpg") no-repeat right top / cover;
}

.second-level.partners #content {
	background: url("../report/partners/img/img_bg.jpg") no-repeat right top / cover;
}

.second-level.employees #content {
	background: url("../report/employees/img/img_bg.jpg") no-repeat right top / cover;
}

.second-level.environment #content {
	background: url("../report/environment/img/img_bg.jpg") no-repeat right top / cover;
}

.second-level #content h3 {
	font-size: 1.46875rem;
	font-weight: bold;
	margin-bottom: 15px;
}

.second-level #content .content__lead {
	padding-top: 50px;
	padding-right: 50px;
	padding-bottom: 30px;
}

.second-level #content .content-nav__title {
	font-size: 1.03125rem;
	font-weight: bold;
	color: #8c8c8c;
	margin-bottom: 10px;
}

.second-level #content .content-nav__list__item {
	font-size: 1.46875rem;
	margin-bottom: 10px;
}

.second-level #content .content-nav__list__item a {
	color: #3c3c3c;
	text-decoration: none;
	line-height: 1.5;
	min-height: 3.8em;
	border: 1px solid #d9d9d9;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 400px;
	background-color: #ffffff;
	position: relative;
	left: -20px;
	transform: skewX(-8deg);
	-webkit-transition: color 400ms cubic-bezier(0.165, 0.84, 0.44, 1), width 400ms cubic-bezier(0.165, 0.84, 0.44, 1), background-color 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: color 400ms cubic-bezier(0.165, 0.84, 0.44, 1), width 400ms cubic-bezier(0.165, 0.84, 0.44, 1), background-color 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.second-level #content .content-nav__list__item a span {
	transform: skewX(8deg);
	padding-left: 20px;
}

.second-level #content .content-nav__list__item a span:before {
	content: "";
	display: block;
	width: 40px;
	height: 48px;
	background: url("../img/icon_mario.svg") left top no-repeat;
	position: absolute;
	left: -50px;
	top: calc((100% - 48px)/2);
	opacity: 0;
	-webkit-transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.second-level #content .content-nav__list__item a:hover span:before {
	opacity: 1;
	-webkit-transition: opacity 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: opacity 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.second-level #content .content-nav__list__item span i {
	position: absolute;
	top: calc((100% - 17px)/2);
	left: 90%;
	width: 10px;
	height: 17px;
}

.second-level #content .content-nav__list__item span i svg {
	opacity: 0;
	width: 10px;
	height: 15px;
	vertical-align: top;
	-webkit-transition: opacity 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: opacity 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
	fill: #ffffff;
}

.second-level #content .content-nav__list__item a:hover span i svg {
	opacity: 1;
	fill: #ffffff;
}

@media screen and (max-width: 979.98px) {
	.second-level #content .content-nav__list__item a span:before {
		left: -40px;
	}
}

@media screen and (max-width: 759.98px) {
	.second-level #content .content__lead {
		padding: 40px 14px 30px;
	}
	
	.second-level #content .content-nav__list__item a span:before {
		left: -40px
	}
	
	.second-level #content .content-nav__list__item a {
		width: 80%;
		padding: 10px 14px;
		min-height: 2em;
		letter-spacing: 1px;
	}
	
	.second-level #content .content-nav__list__item {
		font-size: 1.28572rem;
	}
	
	.second-level #content {
		background-image: none!important;
	}
	
	/*.second-level #content {
		background-size: contain!important;
		position: relative;
		z-index: 1;
	}
	
	.second-level #content:after {
		content: "";
		position: absolute;
		z-index: 2;
		width: 100%;
		height:100%;
		top: 0;
		left: 0;
		background-color: white;
		opacity: 0.5;
	}*/
	
	.second-level #content .content__lead,
	.second-level #content #content-nav {
		position: relative;
		z-index: 10;
	}
	
	.second-level #content h3, .second-level #content .content__lead {
		text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF,  0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
	}
}


@media screen and (min-width: 760px) {
	.second-level #content .content-nav__list__item a:hover {
		color: #ffffff;
		width: 460px;
		background-color: #e60012;
		border-color: #e60012;
		transition: color 200ms ease-in, width 400ms cubic-bezier(0.165, 0.84, 0.44, 1), background-color 400ms ease-in, border-color 400ms ease-in;
		/*transition: color 400ms ease-out, width 400ms cubic-bezier(0.165, 0.84, 0.44, 1), background-color 500ms ease-in;*/
	}
}

@media screen and (min-width: 980px) {
	.second-level #content .content__inner {
		min-height: 680px;
	}
}


/* --------------------------------------------------
	第三階層、扉がないページ　#content共通
-------------------------------------------------- */

/* article */
.without-titlepage-type01 article:first-child {
	margin-top: 130px;
}

.without-titlepage-type01 article:not(:first-child) {
	margin-top: 120px;
}

.without-titlepage-type01 article:last-child {
	margin-bottom: 100px;
}

.without-titlepage-type02 article {
	margin-top: 0;
	margin-bottom: 0;
}

/* 見出し */
article .headline01 {
	font-size: 2rem;
	color: #e60012;
	text-align: center;
	margin-bottom: 30px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 70px;
	padding-top: 20px;
}

article .headline01 span {
	position: relative;
	display: inline-block;
	padding: 0 0 0 70px;


}

article .headline01 span:before {
	content: "";
	display: block;
	width: 50px;
	height: 72px;
	background: url("../img/icon_mario_jump.svg") left top no-repeat;
	position: absolute;
	left: 0;
	bottom: 7px;
}

article .headline02 {
	font-size: 1.75rem;
	margin-bottom: 20px;
}

article .headline02 span {
	position: relative;
	left: 35px;
	display: inline-block;
	padding-right: 35px;
}

article .headline02 span:before {
	content: "";
	display: block;
	width: 12px;
	height: 1.7em;
	background-color: #e60012;
	position: absolute;
	left: -30px;
	top: -0.06em;
	transform: skewX(-6.5deg);
}

article .headline02--white {
	color: #ffffff;
}

article .headline03 {
	font-size: 1.5rem;
	margin-bottom: 20px;
}

article .headline03 span {
	border-bottom: 1px solid #e60012;
}

article .headline03--keycolor {
	color: #e60012;
}

article .headline04 {
	font-size: 1.25rem;
	margin-bottom: 12px;
}

article .headline05 {
	font-size: 1rem;
	margin-bottom: 10px;
}

article .headline-enclosure span {
	background-color: #f2f2f2;
	padding: 0.2em 0.5em 0.2em 0.6em;
	border-radius: 5px;
}

@media screen and (max-width: 979.98px) {
	
	article .headline01 {
		line-height: 1.5;
		display: block;
	}
	
	article .headline01 span:before {
		width: 45px;
		height: 66px;
		display: block;
		margin-left: auto;
		margin-right: auto;
		position: relative;
	}
	
	article .headline01 span {
		padding: 10px 0 0 0; 
		width: 100%;
	}
	
	article .headline02 {
		line-height: 1.5
	}
	
	article .headline02 span {
		left: 30px;
		padding-right: 30px;
	}
	
	article .headline02 span:before {
		left: -25px;
		top: -0.04em;
		height: 1.65em;
	}
}

@media screen and (max-width: 759.98px) {
	article .headline01 {
		font-size: 24px;
		margin-bottom: 24px;
	}

	article .headline02 {
		font-size: 20px;
		margin-bottom: 16px;
	}

	article .headline02 span {
		left: 26px;
		padding-right: 26px;
	}
	
	article .headline02 span:before {
		left: -22px;
		top: -1px;
		height: 1.65em;
	}

	article .headline03 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	article .headline04 {
		font-size: 16px;
		margin-bottom: 12px;
	}

	article .headline05 {
		font-size: 14px;
		margin-bottom: 10px;
	}
	
	.without-titlepage-type01 article:first-child {
		margin-top: 70px;
	}

	.without-titlepage-type01 article:not(:first-child) {
		margin-top: 60px;
	}

	.without-titlepage-type01 article:last-child {
		margin-bottom: 80px;
	}
}


/* ブロック */
article > section {
	margin-top: 100px;
}

article > section > section {
	margin-top: 40px;
}


article > section > section > section {
	margin-top: 30px;
}

@media screen and (max-width: 759.98px) {
	article > section {
		margin-top: 60px;
	}
}


/* .block-type01：上の文章の補足（注釈）の場合 */
.block-type01 {
	background-color: #f2f2f2;
	padding: 30px 40px;
	margin-top: 40px;
	border-radius: 10px;
}

.block-type01 .block-type01__title {
	font-size: 1.25rem;
	margin-bottom: 15px;
}

.block-type01 .block-type01__title--sub {
	font-size: 1.1rem;
	margin-bottom: 0.7em;
	font-weight: bold;
}

.block-type01 .block-type01__title--keycolor {
	color: #e60012;
}

/* .block-type02：上の文章に追加で説明する場合 */
.block-type02 {
	color: #231815;
	background-color: #fdebec;
	padding: 30px 40px;
	margin-top: 40px;
}

.block-type02 .block-type02__title {
	font-size: 1.25rem;
	text-align: center;
	border-bottom: 1px solid #e60012;
	padding-bottom: 5px;
	margin-bottom: 20px;
}

.block-type02 .block-type02__title--sub {
	font-size: 0.875rem;
	position: relative;
}

.block-type02 .block-type01 {
	/*background-color: #ffffff;*/
	border: solid 1px #d9d9d9;
}

.block-type02 section, .block-type03 section {
	margin-top: 40px;
}

.block-type02 > .col-wrap, .block-type03 > .col-wrap {
	margin-top: 20px;
}


/* .block-type03：社員の声 */
.block-type03 {
	color: #231815;
	background-color: #f2f2f2;
	padding: 25px 35px;
	margin-top: 40px;
	border: 5px solid #f7acb2;
}

.block-type03 .block-type03__title {
	font-size: 1.25rem;
	color: #e60012;
	margin-bottom: 20px;
}

.block-type03 .block-type03__title--tag .title__tag {
	font-size: 0.9rem;
	color: #696969;
	padding: 0.2rem 0.6rem 0.15rem 0.6rem;
	border-radius: 8px;
	background-color: #dbdbdb;
}

@media screen and (min-width: 760px) {
	.block-type03 .block-type03__title--tag {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

@media screen and (max-width: 759.98px) {
	.block-type03 .block-type03__title {
		margin-bottom: 50px;
	}
	
	.block-type03 .block-type03__title--tag .title__tag {
		margin: 10px 0 0;
		padding: 0.4rem 0.8rem;
	}
}

.block-type03 .block-type03__title--tag .title__voice {
	display: block;
	width: 9.5rem;
}
.block-type03 .block-type03__title--tag .title__tag {
	display: block;
}

.range-two-col > * {
	width: 48%;
	float: left;
}

.range-two-col > *:nth-child(2n) {
	margin-left: 4%;
}

.range-four-col > * {
	width: 22%;
	margin-left: 4%;
	float: left;
}

.range-four-col > *:nth-child(4n+1) {
	margin-left: 0;
}

.range-five-col > * {
	width: 17.1666666667%;
	margin-left: 3.5416666666%;
	margin-bottom: 3%;
	float: left;
}

.col-wrap {
	margin-top: 30px;
}

.range-two-col-photo {
	margin: 30px 0 30px;
	display: flex;
	justify-content: center;
}

.range-two-col-photo > * {
	flex-basis: 32%;
}



@media screen and (min-width: 980px) {
	.range-five-col > *:nth-child(5n+1) {
		margin-left: 0;
	}
}

@media screen and (min-width: 760px) and (max-width: 979.98px) {
	.range-five-col > * {
		width: 22%;
		margin-left: 4%;
		margin-bottom: 4%;
		float: left;
	}

	.range-five-col > *:nth-child(4n+1) {
		margin-left: 0;
	}
	
	.block-type01,
	.block-type02 {
		padding: 25px 30px;
	}
	
	.block-type03 {
		padding: 20px 25px;
	}
}

@media screen and (min-width: 760px) {
	.range-two-col-photo figure:first-child {
		margin-right: 2%;
	}

	.range-two-col-photo figure:nth-child(2) {
		margin-left: 2%;
	}
}

@media screen and (max-width: 759.98px) {
	.range-five-col > * {
		width: 32%;
		margin-left: 2%;
		margin-bottom: 5%;
		float: left;
	}

	.range-five-col > *:nth-child(3n+1) {
		margin-left: 0;
	}
	
	.block-type01,
	.block-type02,
	.block-type03 {
		padding: 15px 20px;
	}
	
	.range-two-col-photo {
		display: block;
	}
	
	.range-two-col-photo figure:first-child {
		margin-bottom: 30px;
	}
	
	#main .sp-range-one-col > * {
		float: none;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

@media screen and (max-width: 479.98px) {
	.range-five-col > * {
		width: 48%;
		margin-left: 4%;
		margin-bottom: 5%;
		float: left;
	}
	
	.range-five-col > *:nth-child(3n+1) {
		margin-left: 4%;
	}

	.range-five-col > *:nth-child(2n+1) {
		margin-left: 0;
	}
}

@media print, screen and (min-width: 760px) {
	.col-wrap .col-img-left,
	.col-wrap .col-text-left,
	.col-wrap .col-detail-left {
		float: left;
	}

	.col-wrap .col-img-right,
	.col-wrap .col-text-right,
	.col-wrap .col-detail-right {
		float: right;
	}
	
	.col-wrap .col-one-half {
		width: 48%;
	}
	
	.col-wrap .col-one-third {
		width: 32%;
	}
	
	.col-wrap .col-two-third {
		width: 64%;
	}
	
	.col-wrap .col-one-quarter {
		width: 24%;
	}
	
	.col-wrap .col-three-quarter {
		width: 72%;
	}
}

@media screen and (max-width: 759.98px) {
	.col-wrap .col-img-right {
		float: none;
	}
	
	.col-wrap .col-one-third {
		width: 100%;
		margin-bottom: 20px;
		text-align: center;
	}
	
	.col-wrap .col-one-quarter {
		width: 100%;
		text-align: center;
	}
	
	.col-wrap .col-one-third figure, 
	.col-wrap .col-one-quarter figure {
		text-align: center;
	}
	
	.col-wrap .sp-one-col {
		margin-left: auto;
		margin-right: auto;
	}
}

/* 表 */

table th,
table td {
	padding: 15px;
	border: 1px solid #d9d9d9;
	vertical-align: middle;
	letter-spacing: 0;
	line-height: 1.8;
}

table td {
	background-color: #ffffff;
}

table thead th {
	/*background-color: #fdebec;*/
	background-color: #f2f2f2;
	text-align: center;
}

table tbody th {
	background-color: #f2f2f2;
	text-align: left;
	vertical-align: middle;
}

@media screen and (max-width: 759.98px) {
	
	.table-responsive {
		overflow-x: scroll;
		white-space: nowrap;
		margin-bottom:  5px;
		padding-bottom: 10px;
	}
	
	.table-responsive::-webkit-scrollbar {
		height: 8px; /* スクロールバーの高さ */
	}

	.table-responsive::-webkit-scrollbar-thumb {
		background: #d9d9d9; /* ツマミの色 */
		border-radius: 4px; /* ツマミ両端の丸み */
	}

	.table-responsive::-webkit-scrollbar-track {
		background: #f2f2f2; /* トラックの色 */
		border-radius: 4px; /* トラック両端の丸み */
	}
	
	.table-responsive table {
		width: 800px;
		white-space: normal;
	}
		
	table th {
		padding: 10px 8px;
	}

	table td {
		padding: 10px;
	}
}

/* リスト */

.list-type01__item__title--keycolor,
.list-type01--keycolor > li:before {
	color: #e60012;
}

.list-type01__item:not(:first-child) {
	margin-top: 0.5em;
}

.list-type01__item__title {
	margin-bottom: 5px;
}

.list-type01__item__title--keycolor {
	font-weight: bold;
}

.list-type01 > li {
	position: relative;
	counter-increment: listNum01;
	padding-left: 1.5em;
	letter-spacing: 0;
	line-height: 1.8;
}

.list-type01 > li:before {
	font-size: 0.875rem;
	font-weight: bold;
	position: absolute;
	top: 0.35em;
	left: 0;
	width: 1.4em;
	height: 1.4em;
	line-height: 1.3em;
	text-align: center;
	background-color: #ffffff;
	border-radius: 1em;
	content: counter(listNum01)"";
}

.list-type02__item:not(:first-child) {
	margin-top: 5px;
}

.list-type02 > li {
	position: relative;
	padding-left: 1.4em;
	letter-spacing: 0;
	line-height: 1.8;
}

.list-type02 > li:before {
	content: "";
	position: absolute;
	top: 0.55em;
	left: 0;
	background: #b4b4b4;
	width: 12px;
	height: 12px;
	border-radius: 10px;
}

.note .list-type02 > li {
	line-height: 1.6;
	padding-left: 1.2em;
}

.note .list-type02 > li:before {
	top: 0.55em;
	left: 1px;
	width: 8px;
	height: 8px;
	border-radius: 8px;
}

.note .list-type02__item:not(:first-child) {
	margin-top: 5px;
}

.list-type03 > li {
	padding-left: 1.7em;
	text-indent: -1.7em;
	letter-spacing: 0;
	line-height: 1.8;
}

.list-type03__item__title {
	font-weight: bold;
}

.list-type03__item__title--keycolor {
	color: #e60012;
}

.list-type03__item:not(:first-child) {
	margin-top: 5px;
}

.list-type04 > li {
	list-style: decimal;
	list-style-position: inside;
	letter-spacing: 0;
	line-height: 1.8;
}

.list-type04__item:not(:first-child) {
	margin-top: 5px;
}

.list-type05__item__title--keycolor,
.list-type05--keycolor > li:before {
	color: #e60012;
}

.list-type05__item:not(:first-child) {
	margin-top: 20px;
}

.list-type05__item__title {
	margin-bottom: 5px;
}

.list-type05__item__title--keycolor {
	font-weight: bold;
}

.list-type05__item dl dt,
.list-type05__item dl dd {
	line-height: 2;
}

.list-type05 > li {
	letter-spacing: 0;
	line-height: 1.8;
}

.list-type06 {
	margin-top: 20px;
} 

.list-type06__item:not(:first-child) {
	margin-top: 10px;
}

.list-type07__item:not(:first-child) {
	margin-top: 10px;
}

.list-type07__item__title {
	margin-bottom: 5px;
}

.list-type07__item__title--keycolor {
	font-weight: bold;
}

.list-type07 > li {
	position: relative;
	counter-increment: listNum01;
	padding-left: 1.6em;
	letter-spacing: 0;
	line-height: 1.8;
}

.list-type07 > li:before {
	font-size: 0.875rem;
	font-weight: bold;
	color: #ffffff;
	position: absolute;
	top: 0.35em;
	left: 0;
	width: 1.4em;
	height: 1.4em;
	line-height: 1.3em;
	text-align: center;
	background-color: #b4b4b4;
	border-radius: 1em;
	content: counter(listNum01)"";
}

.list-type-note {
	color: #666666;
	letter-spacing: 0;
	margin-top: 1em;
}

.list-type-note .list-type-note__item {
	text-indent: -1.2em;
	padding-left: 1.2em;
}

.list-type-note.note-two-digit .list-type-note__item {
	text-indent: -1.8em;
	padding-left: 1.8em;
}


.list-type-note.note-two-digit .list-type-note__item-onedigit {
	text-indent: -1.2em;
	padding-left: 1.2em;
}

.list-type-note .list-type-note__item:not(:first-child) {
	margin-top: 0.5em;
}

.list-type-note .note__asterisk,
.asterisk {
	color: #e60012;
}

.list-type-flag__item:not(:first-child) {
	margin-left: 30px;
}

.list-type-flag {
	display: flex;
	justify-content: center;
	font-weight: bold;
	margin-bottom: 15px;
}

.list-type-flag + .col-wrap {
	margin-top: 15px;
}

@media screen and (max-width: 759.98px) {
	.list-type-flag {
		display: block;
	}
	
	.list-type-flag .list-type-flag__item {
		float: left;
		margin: 10px 20px 0 0;
	}
}


/* 本文 */

.special-page .paragraph:not(:first-child),
.third-level .paragraph:not(:first-child) {
	margin-top: 0.7em;
}

article p .text-link,
article p .pdf-link,
article ul .text-link,
article ul .pdf-link,
article dl .text-link,
article dl .pdf-link, 
article .pdf-link02 {
	text-decoration: underline;
}

article p .text-link i,
article ul .text-link i,
article .note__detail .text-link i,
.site__top .text-link i {
	padding-left: 2px; 
	padding-right: 5px;
	position: relative;
	top: 0.05em;
}

article .note__detail .text-link i {
	top: 0.15em;
}

article .text-link[target="_blank"] span:after {
	display: inline-block;
	width: 1em;
	height: 10px;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5IDgiIHdpZHRoPSI5IiBoZWlnaHQ9IjgiPg0KICA8cGF0aCBkPSJNMyAxVjBoNnYxSDN6bTUgMGgxdjVIOFYxem0wIDR2MUgyVjVoNnpNMyA1SDJWMGgxdjV6TTAgMmgxdjZIMFYyem0xIDZWN2g2djFIMXoiIGZpbGw9IiM3MzczNzMiLz4NCjwvc3ZnPg==");
	background-repeat: no-repeat;
	background-position: right top;
	content: '';
	vertical-align: 0.08em;
}

article .text-link[target="_blank"] {
	padding-right: 0.3em;
}

@media screen and (max-width: 979.98px) {
	.list-type02 > li:before {
		top: 0.45em;
	}
	
	article .note__detail .text-link i {
		top: 0.25em;
	}
	
	article p .text-link i,
	article ul .text-link i,
	.site__top .text-link i {
		top: 0.15em;
	}
}


/* 本文、注釈 */

.special-page .paragraph,
.third-level .paragraph,
.third-level .note {
	letter-spacing: 0;
	line-height: 2;
}

.special-page figcaption,
.third-level figcaption{
	letter-spacing: 0;
}

.third-level dt, .third-level dd {
	line-height: 1.8;
}

.third-level dd {
	letter-spacing: 0;
}

/* 上部ビジュアル */
.third-level .lead .lead__catchcopy {
	color: #ffffff;
	flex-basis: 48%;
	padding-left: calc((100% - 1120px)/2);
	position: relative;
	display: flex;
	align-items: center;
}

.third-level .lead--simple03 {
	background-color: #e60012;
}

.third-level .lead--simple03 .lead__catchcopy {
	color: #ffffff;
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.third-level .lead--simple .lead__catchcopy, .third-level .lead--simple02 .lead__catchcopy {
	max-width: 1120px;
	margin: 0 auto;
}

@media screen and (max-width: 1179.98px) {
	.third-level .lead .lead__catchcopy {
		padding-left: 40px;
	}
	
	.third-level .lead--simple .lead__catchcopy, .third-level .lead--simple02 .lead__catchcopy, .third-level .lead--simple03 .lead__catchcopy {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media screen and (min-width: 980px) {
	.without-titlepage-type02 .lead--simple,
	.third-level .lead--simple,
	.third-level .lead--simple02,
	.third-level .lead--simple03 {
		border-top: 1px solid #ffffff;
	}
}

@media screen and (min-width: 760px) and (max-width: 979.98px) {
	.third-level .lead .lead__catchcopy {
		padding-left: 20px;
	}
	
	.third-level .lead--simple .lead__catchcopy, .third-level .lead--simple02 .lead__catchcopy, .third-level .lead--simple03 .lead__catchcopy {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media screen and (min-width: 760px) {
	.third-level .lead .lead__catchcopy {
		min-height: 350px;
	}
	
	.third-level .lead--simple .lead__catchcopy, .third-level .lead--simple02 .lead__catchcopy {
		padding-top: 70px;
	}
	
	.third-level .lead--simple03 .lead__catchcopy {
		min-height: 300px;
	}
}

@media screen and (max-width: 759.98px) {
	.third-level .lead .lead__catchcopy {
		min-height: 240px;
		padding: 30px 14px;
	}
	
	.third-level .lead .lead__catchcopy-priority {
		min-height: inherit;
	}
	
	.third-level .lead--simple .lead__catchcopy, .third-level .lead--simple02 .lead__catchcopy {
		padding: 30px 14px;
	}
	
	.third-level .lead--simple03 .lead__catchcopy {
		padding: 30px 14px;
	}
}

.third-level .lead .lead__catchcopy:after {
	content: "";
	width: 60px;
	height: 100%;
	background-color: #e60012;
	position: absolute;
	right: -30px;
	top: 0;
	transform: skewX(-6.5deg);
	z-index: 1;
}

.third-level .lead__catchcopy__title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	/*padding-right: 30px;*/
	position: relative;
	z-index: 10;
}

.third-level .lead__catchcopy__detail {
	/*padding-right: 30px;*/
	position: relative;
	z-index: 10;
}

.third-level .lead--simple .lead__catchcopy__title {
	font-size: 2.5em;
	text-align: center;
	margin-bottom: 15px;
	position: relative;
}

.third-level .lead--simple .lead__catchcopy__title span {
	padding-bottom: 25px;
	display: inline-block;
	border-bottom: 4px solid #e60012;
	position: relative;
	z-index: 10;
}

.third-level .lead--simple .lead__catchcopy__title:after {
	display: block;
	content: "";
	border-bottom: solid 1px #e6e6e6;
	position: relative;
	top: -4px;
	z-index: 1;
}

.third-level .lead--simple02 .lead__catchcopy__title {
	font-size: 2.5em;
	text-align: center;
	margin-bottom: 15px;
	position: relative;
}

.third-level .lead--simple02 .lead__catchcopy__box {
	padding-bottom: 25px;
	border-bottom: solid 1px #e6e6e6;
}

.third-level .lead--simple02 .lead__catchcopy:after {
	display: block;
	content: "";
	border-bottom: 4px solid #e60012;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: -1px;
}

.third-level .lead--governance .lead__catchcopy:after {
	max-width: 32rem;
}

.third-level .lead--community .lead__catchcopy:after {
	max-width: 23rem;
}

.third-level .lead--simple02 .lead__catchcopy__detail {
	text-align: center;
}

.third-level .lead--simple03 .lead__catchcopy__title {
	font-size: 24px;
	margin-bottom: 15px;
}

.third-level .lead--simple03 .lead__catchcopy__detail {
	font-size: 16px;
}

.third-level .topics-community article {
	margin-top: 60px;
}

.lead__page__title {
	display: none;
}

.third-level .lead__catchcopy {
	position: relative;
}

.lead__catchcopy .update {
	position: absolute;
	top: 0px;
	right: 0;
}

@media screen and (max-width: 759.98px) {
	.lead__page__title {
		display: block;
		font-size: 14px;
		transform: skewX(-9deg);
		padding-top: 20px;
		margin-left: -4px;
		color: #e60012;
	}
	
	.lead__page__title span {
		display: inline-block;
		padding-right: 13px;
		background-color: #ffffff;
	}
	
	.lead__page__title span span {
		transform: skewX(9deg);
		padding: 5px 0 6px 20px;
	}
	
	.lead__page__title + .lead__catchcopy {
		padding-top: 15px!important;
	}
	
	.third-level .lead__catchcopy__title {
		padding-right: 0;
	}

	.third-level .lead__catchcopy__detail {
		padding-right: 0;
	}
}

.third-level .lead--simple .lead__catchcopy__title {
	font-size: 2.5em;
	text-align: center;
	margin-bottom: 15px;
	position: relative;
}

.third-level .lead--simple .lead__catchcopy__detail {
	font-size: 16px;
}

.third-level .lead--simple .lead__catchcopy__detail, .third-level .lead--simple02 .lead__catchcopy__detail {
	font-size: 16px;
}

.third-level .lead__photo {
	flex-basis: 52%;
	padding-right: calc((100% - 1200px)/2);
}

.third-level.consumers .lead__photo {
	background: url("../img/top/img_priority_01.jpg") no-repeat center center / cover;
}

.third-level.partners .lead__photo {
	background: url("../img/top/img_priority_02.jpg") no-repeat center center / cover;
}

.third-level.employees .lead__photo {
	background: url("../img/top/img_priority_03.jpg") no-repeat center center / cover;
}

.third-level.environment .lead__photo {
	background: url("../img/top/img_priority_04.jpg") no-repeat center center / cover;
}

@media screen and (max-width: 759.98px) {
	.third-level .lead__photo {
		position: relative;
	}
	
	.partners .lead__photo:after,
	.employees .lead__photo:after {
		position: absolute;
		bottom: 0;
		content: "";
		display: block;
		height: 30%;
		width: 100%;
		background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
		z-index: 1;
	}
	
	.third-level .lead__photo .note {
		position: absolute;
		bottom: 10px;
		right: 10px;
		z-index: 10;
	}
	
	.third-level .lead__photo .note .note__detail {
		color: #ffffff;
		line-height: 1.5;
		font-size: 9px;
	}
}


/* INDEX関連 */
.third-level #content .content-nav {
	padding-top: 50px;
	padding-bottom: 40px;
	margin: 0 20px;
	border-bottom: 1px solid #e6e6e6;
}

.third-level #content .content-nav .inner {
	display: flex;
}

.third-level #content .content-nav .content-nav__title {
	font-size: 1.03125rem;
	font-weight: bold;
	color: #8c8c8c;
	margin-bottom: 10px;
	margin-left: 6%;
	display: flex;
	flex-basis: 20%;
	justify-content: center;
	align-items: center;
}

.third-level #content .content-nav__list {
	flex-basis: 60%;
}

.third-level #content .content-nav__list__item {
	font-size: 1.03125rem;
	margin-bottom: 10px;
	padding: 5px 40px 8px 15px;
	border-bottom: 1px solid #e6e6e6;
}

.third-level #content .content-nav__list__item span {
	display: block;
	position: relative;
	cursor: pointer;
}

.third-level #content .content-nav__list__item span:hover {
	color: #e60012;
	-webkit-transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.third-level #content .content-nav__list__item.is-active {
	color: #e60012;
	font-weight: bold;
}

.third-level #content .content-nav__list__item i svg {
	width: 20px;
	height: 14px;
	transform: rotate(90deg);
	fill: #b4b4b4;
	-webkit-transition: fill 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: fill 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	position: absolute;
	right: -20px;
	top: calc((100% - 14px)/2);
}

.third-level #content .content-nav__list__item:hover i svg,
.third-level #content .content-nav__list__item.is-active i svg {
	fill: #e60012;
	-webkit-transition: fill 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: fill 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.third-level #content .topics-content {
	padding-top: 60px;
	padding-bottom: 80px;
}

.third-level #content .topics-group .topics-content {
	display: none;
}

.third-level #content .topics-group .topics-content.is-active {
	display: block!important;
}

.third-level #content .content-nav-footer {
	padding-top: 30px;
	padding-bottom: 30px;
	margin: 0 20px;
	border-top: 1px solid #e6e6e6;
}

.third-level #content .content-nav-footer .inner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.third-level .content-nav-footer .pulldown {
	position: relative;
	float: left;
}

.third-level #content .content-nav-footer .content-nav__title {
	font-size: 1.03125rem;
	font-weight: bold;
	color: #8c8c8c;
	margin-right: 15px;
	flex-basis: 3.5em;
}


@media screen and (min-width: 760px) {
	.third-level #content .content-nav-footer .content-nav__title {
		position: relative;
		top: -2px;
	}
}

@media screen and (max-width: 759.98px) {
	
	.third-level #content .content-nav {
		padding-top: 30px;
		padding-bottom: 20px;
		border-bottom-width: 2px;
	}
	
	.third-level #content .content-nav .inner {
		display: inherit;
	}
	
	.third-level #content .content-nav .content-nav__title {
		margin-left: 0;
		display: block;
		margin-right: 3%;
	}
	.third-level #content .content-nav__list {
		flex-basis: 86%;
	}
	
	.third-level #content .content-nav__list__item {
		padding: 0 25px 10px 0;
	}
	
	.third-level #content .content-nav__list__item:first-child {
		border-top: 1px solid #e6e6e6;
		padding-top: 10px;
	}
	
	.third-level #content .topics-content {
		padding-top: 40px;
		padding-bottom: 60px;
	}
	
	.third-level #content .content-nav-footer {
		border-top-width: 2px;
	}
	
	.third-level #content .content-nav-footer .inner {
		display: inherit;
	}
	
	.third-level #content .content-nav-footer .content-nav__title {
		margin-bottom: 10px;
	}
	
	.dropdown__opener {
		padding-left: 8px;
	}
	.dropdown__opener .nc3-a-icon {
		position: absolute;
		right: 8px;
	}
}


/* セレクト風のINDEXリスト

.third-level .content-nav-footer .pulldown ul {
	width: 600px;
	background-color: #ffffff;
	border: 1px solid #8c8c8c;
	position: absolute;
	top: 0px;
	left: 0px;
}

.third-level .content-nav-footer .pulldown li {
	padding: 5px 10px 5px 20px;
	display: none;
}
	
.third-level .content-nav-footer .pulldown li.is-active {
	color: #e60012;
	font-weight: bold;
}*/


/* その他 */
.third-level #main {
	position: relative;
	z-index: 100;
}

.third-level .csrFtr {
	position: relative;
	z-index: 1;
}

.third-level .lead {
	background-color: #e60012;
}

@media screen and (min-width: 760px) {
	.third-level .lead {
		display: flex;
	}
}


/* --------------------------------------------------
	特集ページと下層ページ
-------------------------------------------------- */

.special-page .lead__catchcopy {
	padding: 120px 80px;
	border-bottom: 1px solid #e6e6e6;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.special-page .lead__catchcopy .lead__catchcopy__title {
	font-size: 2em;
	color: #e60012;
}

.special-page .lead__catchcopy .lead__catchcopy__detail {
	font-size: 3.125em;
}

.special-page .headline01 {
	transform: skewX(-6.5deg);
	border: 1px solid #e60012;
	display: block;
	padding: 0.2em 20px 0.22em;
	min-height: inherit;
	max-width: 830px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 35px;
	text-align: center;
}

.special-page article:first-child {
	margin-top: 120px;
}

.special-page article:not(:first-child) {
	margin-top: 160px;
}

.special-page article:last-child {
		margin-bottom: 100px;
}

.special-page .headline01 span {
	transform: skewX(6.5deg);
	padding: 0;
}

.special-page .headline01 span:before {
	display: none;
	transform: skewX(6.5deg);
}

.special-page article .headline02 span {
	left: 36px
}

.special-page article .headline02 span:before {
	width: 26px;
	height: 26px;
	background-color: #e60012;
	position: absolute;
	left: -36px;
	top: 9px;
	transform: none;
	border-radius: 14px;
}

.special-page article .headline02 span:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background-color: #ffffff;
	position: absolute;
	left: -28px;
	top: 17px;
	transform: none;
	border-radius: 14px;
}

.special-page table thead th {
	background-color: #b4b4b4;
	color: #ffffff;
}

@media screen and (max-width: 979.98px) {
	.special-page .headline01 {
		margin-bottom: 5.9vw;
	}
	
	.special-page article .headline02 span {
		left: 32px
	}
	
	.special-page article .headline02 span:before {
		width: 22px;
		height: 22px;
		left: -32px;
		top: 8px;
		border-radius: 12px;
	}

	.special-page article .headline02 span:after {
		width: 8px;
		height: 8px;
		left: -25px;
		top: 15px;
		border-radius: 14px;
	}
}

@media print, screen and (min-width: 760px) and (max-width: 979.98px) {
	.special-page .lead__catchcopy {
		padding: 60px 20px;
	}
}

@media screen and (max-width: 759.98px) {
	.special-page .lead__catchcopy .lead__catchcopy__title {
		font-size: 20px;
	}

	.special-page .lead__catchcopy .lead__catchcopy__detail {
		font-size: 24px;
	}

	.special-page .lead__catchcopy {
		padding: 40px 14px;
	}
	
	.special-page #content article {
		margin-top: 90px;
	}

	.special-page #content article:last-child {
		margin-bottom: 60px;
	}
	
	.special-page .headline01 {
		padding: 0.2em 6px 0.22em 12px;
	}
	

	.special-page article .headline02 span {
		left: 30px
	}

	.special-page article .headline02 span:before {
		width: 20px;
		height: 20px;
		background-color: #e60012;
		position: absolute;
		left: -28px;
		top: 5px;
		transform: none;
		border-radius: 14px;
	}

	.special-page article .headline02 span:after {
		content: "";
		display: block;
		width: 8px;
		height: 8px;
		background-color: #ffffff;
		position: absolute;
		left: -22px;
		top: 11px;
		transform: none;
		border-radius: 14px;
	}
}


/* 任天堂のCSR */

.table-creation th {
	vertical-align: middle;
}

.table-creation .consumers {
	color: #ff8200;
}

.table-creation .partners {
	color: #0096e1;
}

.table-creation .employees {
	color: #ff1973;
}

.table-creation .environment {
	color: #00aa32;
}

.table-creation .community {
	color: #7a3c96;
}

.table-creation .governance {
	color: #002b7d;
}

.table-creation tbody th {
	text-align: center;
}

@media screen and (min-width: 760px) {
	.csr-promotion__img dt {
		position: relative;
		z-index: 10;
	}

	.csr-promotion__img dd {
		position: relative;
		z-index: 1;
		margin-top: -50px;
	}
}


/* お客様 */

#consumers-policy {
	margin-top: 30px;
	display: flex;
}

#consumers-policy .plicy__title {
	font-size: 1.5rem;
	margin-bottom: 12px;
}

#consumers-policy .policy__left,
#consumers-policy .policy__right {
	flex-basis: 48%;
	position: relative;
}

#consumers-policy .policy__left {
	margin-right: 2%;
}

#consumers-policy .policy__right {
	margin-left: 2%;
}

#consumers-policy .policy__inner {
	padding: 20px 12px;
	background-color: #e60012;
	color: #ffffff;
	text-align: center;
	z-index: 10;
	position: relative;
}

#consumers-policy .policy__left:after {
	content: "";
	width: 6%;
	height: 100%;
	background-color: #e60012;
	position: absolute;
	right: -2.8%;
	top: 0;
	transform: skewX(-6.5deg);
	z-index: 1;
}

#consumers-policy .policy__right:after {
	content: "";
	width: 6%;
	height: 100%;
	background-color: #e60012;
	position: absolute;
	left: -2.8%;
	top: 0;
	transform: skewX(-6.5deg);
	z-index: 1;
}

@media screen and (min-width: 760px) {
	#topics-quality .safety-guarantee__img dt {
		position: relative;
		z-index: 10;
	}

	#topics-quality .safety-guarantee__img dd {
		position: relative;
		z-index: 1;
		margin-top: -52px;
	}
}

@media screen and (max-width: 759.98px) {
	#consumers-policy .policy__left {
		margin-right: 4%;
	}

	#consumers-policy .policy__right {
		margin-left: 4%;
	}
	
	#consumers-policy .policy__left,
	#consumers-policy .policy__right {
		flex-basis: 46%;
	}
	
	#consumers-policy .policy__left:after {
		width: 12%;
		right: -6%;
	}

	#consumers-policy .policy__right:after {
		width: 12%;
		left: -6%;
	}
	
	#consumers-policy .policy__left .policy__inner {
		padding-right: 0px;
		padding-left: 14px;
	}
	
	#consumers-policy .policy__right .policy__inner {
		padding-right: 14px;
		padding-left: 0px;
	}
	
	#consumers-policy .policy__inner p {
		letter-spacing: 1px;
	}
}

/* サプライチェーン */

#basic-policy {
	margin-top: 30px;
	display: flex;
	position: relative;
}
#basic-policy .plicy__title {
	font-size: 1.5rem;
	margin-bottom: 12px;
}

#basic-policy .policy__left,
#basic-policy .policy__right {
	flex-basis: 50%;
	position: relative;
	z-index: 1;
}

#basic-policy .policy_separate {
	width: 1%;
	height: 101%;
	transform: skewX(-6.5deg);
	background-color: #ffffff;
	position: absolute;
	z-index: 10;
	left: 49.5%;
}

#basic-policy .policy__inner {
	padding: 20px 8% 25px 4%;
	background-color: #e60012;
	color: #ffffff;
}

#basic-policy .policy__left .policy__inner {
	padding: 20px 8% 25px 3%;
}

#basic-policy .policy__right .policy__inner {
	padding: 20px 3% 25px 8%;
}

#basic-policy .plicy__title {
	text-align: center;
}

#basic-policy .policy__left:after {

}


/* 任天堂のCSRに関するQ＆A */

.list-type-qa {
	margin-top: 30px;
}

.list-type-qa__item:not(:first-child) {
	margin-top: 15px;
}

.list-type-qa__item a {
	color: #3c3c3c;
	text-decoration: none;
	-webkit-transition: color 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: color 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	display: inline-block;
	padding-left: 28px;
}

.list-type-qa__item a:hover {
	color: #e60012;
}

.list-type-qa__item--q a:before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	background: url("../img/icon_q.svg") 0 0 no-repeat;
	left: 0;
	top: 0.15em;
}

#qa__detail .headline03 {
	padding-left: 28px;
	position: relative;
}

#qa__detail .headline03:before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	background: url("../img/icon_q.svg") 0 0 no-repeat;
	left: 0;
	top: 0.4em;
}

.answer {
	padding-left: 28px;
	position: relative;
}

.answer:before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	background: url("../img/icon_a.svg") 0 0 no-repeat;
	left: 0;
	top: 0.4em;
}

article#qa__detail > section > section > div > section {
	margin-top: 30px;
}

article#qa__detail > section > section > div > p + section {
	margin-top: 20px;
}

#qa02 .answer a figure {
	overflow: hidden;
	position: relative;
}

#qa02 .answer a figure img {
	width:100%;
	-webkit-transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#qa02 .answer a:hover figure img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#qa02 .answer a figure:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 19px;
	height: 19px;
	cursor: pointer;
	background: url("../img/icon_open.svg") no-repeat;
	-webkit-transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#qa02 .answer a:hover figure:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 19px;
	height: 19px;
	cursor: pointer;
	background: url("../img/icon_open_hover.svg") no-repeat;
}

@media screen and (min-width: 760px) and (max-width: 979.98px) {
	.list-type-qa__item--q a:before {
		top: 0.1em;
	}
	
	#qa__detail .headline03:before {
		top: 0.3em;
	}
	
	.answer:before {
		top: 0.3em;
	}
}

@media screen and (max-width: 759.98px) {
	.list-type-qa__item a {
		padding-left: 26px;
	}

	.list-type-qa__item--q a:before {
		width: 18px;
		height: 18px;
		left: 0;
		top: 0.2em;
	}

	#qa__detail .headline03 {
		padding-left: 26px;
		position: relative;
	}

	#qa__detail .headline03:before {
		width: 18px;
		height: 18px;
		left: 0;
		top: 0.3em;
	}

	.answer {
		padding-left: 26px;
	}

	.answer:before {
		width: 18px;
		height: 18px;
		left: 0;
		top: 0.35em;
	}
}


/* データ集 */

.esg-data .esg-table tbody td {
	text-align: right;
}

.esg-data .esg-table tbody td.ta-left {
	text-align: left;
}

.esg-data .esg-table tbody .none-border-bottom {
	border-bottom-width: 0;
}

.esg-data .esg-table tbody .none-border-top {
	border-top-width: 0;
}

.esg-data .esg-table .note {
	color: #666666;
}

.esg-data .esg-table.esg-table-employee tbody td {
	padding-left: 4px;
	padding-right: 12px;
}

.esg-data .esg-table .note .note__asterisk {
	color: #e60012;
}

.esg-data .esg-table .circular-type {
	background-color: #edf9f1;
}

.esg-data .esg-table .high-load {
	background-color: #ffeced;
}

@media screen and (max-width: 759.98px) {
	.table-responsive table.esg-table {
		width: 1000px;
	}
	
	.table-responsive table.esg-table.sp-w400px {
		width: 400px;
	}
	
	.table-responsive table.esg-table.sp-w450px {
		width: 450px;
	}
	
	.table-responsive table.esg-table.sp-w500px {
		width: 500px;
	}
	
	.table-responsive table.esg-table.sp-w550px {
		width: 550px;
	}
	
	.table-responsive table.esg-table.sp-w600px {
		width: 600px;
	}
	
	.table-responsive table.esg-table.sp-w650px {
		width: 650px;
	}
	
	.table-responsive table.esg-table.sp-w700px {
		width: 700px;
	}
	
	.table-responsive table.esg-table.sp-w750px {
		width: 750px;
	}
	
	.table-responsive table.esg-table.sp-w800px {
		width: 800px;
	}
	
	.table-responsive table.esg-table.sp-w850px {
		width: 850px;
	}
	
	.table-responsive table.esg-table.sp-w900px {
		width: 900px;
	}
	
	.table-responsive table.esg-table.sp-w950px {
		width: 950px;
	}
}


/* --------------------------------------------------
	Magnific-Popup
-------------------------------------------------- */

/* Magnific Popup CSS */
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	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: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-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-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-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: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}

.mfp-preloader a {
	color: #CCC;
}

.mfp-preloader a:hover {
	color: #FFF;
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

button.mfp-close,
button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	/*touch-action: manipulation;*/
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mfp-close {
	width: 19px;
	height: 19px;
	line-height: 19px;
	font-size: 0;
	background: url("../img/icon_close.svg") no-repeat;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 1;
	padding: 0 0 18px 10px;
	color: #FFF;
}

.mfp-close:hover,
.mfp-close:focus {
		opacity: 1;
}

.mfp-close:active {
	top: 1px;
}

.mfp-close-btn-in .mfp-close {
	color: #333333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #ffffff;
	right: 0;
	bottom: 0;
	text-align: right;
	width: 19px;
}

.mfp-image-holder .mfp-close img,
.mfp-iframe-holder .mfp-close img {
	width: 19px;
	height: 19px;
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #8c8c8c;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
	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:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after {
	border-right: 17px solid #ffffff;
	margin-left: 31px;
}

.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3c3c3c;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after {
	border-left: 17px solid #ffffff;
	margin-left: 39px;
}

.mfp-arrow-right:before {
	border-left: 27px solid #3c3c3c;
}

.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, 0.6);
	background: #000000;
}

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 19px 0 19px;
	margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
	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, 0.6);
	background: #3c3c3c;
}

.mfp-figure small {
	color: #b4b4b4;
	display: block;
	font-size: 12px;
	line-height: 14px;
}

.mfp-figure figure {
	margin: 0;
}

.mfp-figure figcaption {
	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: #f2f2f2;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

.mfp-bg {
	opacity: 0;
	transition: opacity 0.5s;
}

.mfp-bg.mfp-ready {
	opacity: 0.8;
}

.mfp-bg.mfp-removing {
	opacity: 0;
}

.mfp-wrap .mfp-content {
	opacity: 0;
	transition: opacity 0.5s;
}

.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}


@media screen and (max-width: 979.98px) and (orientation: landscape), screen and (max-height: 300px) {
	.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, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		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, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
	
	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0;
	}
	
	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%;
	}
	
	.mfp-container {
		padding-left: 14px;
		padding-right: 14px;
		padding-top: 14px;
	}
}

@media screen and (max-width: 979.98px) {
	.mfp-container {
		padding-top: 65px;
		padding-bottom: 14px;
	}
}


/* SP版フッターのパンくず */

.corpFtr .corpFtr-head {
	display: none!important;
}

.csrFtr {
	color: #3c3c3c;
	font-family: "YakuHanJPs", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "nc3Jp", sans-serif !important;
	font-size: 16px;
	line-height: 2;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: left;
}

html:not(.alps-os-android) .csrFtr {
	font-family: "YakuHanJPs", "Roboto", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Arial, "nc3Jp", sans-serif !important;
}

.csrFtr div,
.csrFtr span,
.csrFtr a,
.csrFtr img,
.csrFtr ol,
.csrFtr ul,
.csrFtr li {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

.csrFtr ol,
.csrFtr ul {
	list-style: none;
}

.csrFtr a {
	color: inherit;
	text-decoration: none;
}

.csrFtr a:hover {
	text-decoration: none;
}

#container .csrFtr a:hover {
	text-decoration: none;
}

.csrFtr {
	background: #f2f2f2;
	letter-spacing: 1px;
}
.csrFtr .csrFtr-head {
	position: relative;
	background: #e60012;
}
@media screen and (min-width: 980px), print {
	.csrFtr .csrFtr-head {
		display: none;
	}
	
	#jobs_footer {
		display: none;
	}
}
@media screen and (max-width: 979.98px) {
	.csrFtr .csrFtr-head {
		padding: 18px 14px;
	}
}
.csrFtr .csrFtr-breadcrumb svg {
	fill: #fff;
}
@media screen and (max-width: 979.98px) {
	.csrFtr .csrFtr-breadcrumb svg {
		display: block;
		width: 92px;
		height: 24px;
		margin: 0 auto;
	}
}
.csrFtr .csrFtr-breadcrumb_link {
	position: relative;
	display: inline-block;
	padding-left: 21px;
	color: #fff !important;
	font-weight: bold;
}
@media screen and (max-width: 979.98px) {
	.csrFtr .csrFtr-breadcrumb_link {
		line-height: 21px;
		font-size: 12px;
	}
}
@media screen and (max-width: 979.98px) {
	.csrFtr .csrFtr-breadcrumb_icon svg {
		fill: #fff;
		display: block;
		position: absolute;
		top: 1px;
		left: 0;
		bottom: 0;
		margin: auto;
		border-radius: 50%;
		width: 13px;
		height: 13px;
	}
}
.csrFtr .csrFtr-breadcrumb_label {
	display: block;
	font-size: 0;
}
.csrFtr .csrFtr-pageTop {
	position: absolute;
	background-image: -webkit-linear-gradient(top, #fff, #fff 1px, transparent 1px, transparent 3px);
	background-image: linear-gradient(to bottom, #fff, #fff 1px, transparent 1px, transparent 3px);
	background-repeat: repeat-y;
	background-position: left top;
	background-size: 1px 4px;
	top: 0;
	bottom: 0;
	margin: auto;
}
@media screen and (min-width: 980px), print {
	.csrFtr .csrFtr-pageTop {
		right: 40px;
	}
}
@media screen and (max-width: 979.98px) {
	.csrFtr .csrFtr-pageTop {
		right: 0;
		width: 57px;
		height: 37px;
	}
}
.csrFtr .csrFtr-pageTop svg {
	display: block;
	margin: auto;
	width: 14px;
	height: 100%;
	fill: #fff;
}
.csrFtr .csrFtr-pageTop_button {
	display: block;
	height: 100%;
}

dl.figcaption_dl dt {
	display: block;
	float: left;
	clear: left;
	width: 50px;
	font-weight: bold;
}
dl.figcaption_dl dd {
	display: block;
	float: left;
	width: calc(100% - 50px);
}


/* --------------------------------------------------
　SP用言語切り替えメニュー
-------------------------------------------------- */
ul.corpHdr-subNav_selectLang {
	position: absolute;
	top: 0;
	right: 68px;
	width: 90px;
	margin: 14px 0 0 0;
	border: solid 2px #e6e6e6;
	font-size: 0.65em;
	font-weight: bold;
	line-height: 1;
	background-color: #fff;
	z-index: 2;
}
ul.corpHdr-subNav_selectLang::after {
	content: "";
	width: 12px;
	height: 24px;
	position: absolute;
	top: 0;
	right: -22px;
	display: inline-block;
	background-image: -webkit-linear-gradient(top, #b4b4b4, #b4b4b4 1px, transparent 1px, transparent 3px);
	background-image: linear-gradient(to bottom, #b4b4b4, #b4b4b4 1px, transparent 1px, transparent 3px);
	background-repeat: repeat-y;
	background-position: right top;
	background-size: 1px 4px;
}

div.corpHdr-subNav_selectLang__head {
	display: block;
	padding: 5px 10px 5px;
	text-align: center;
	position: relative;
}
div.corpHdr-subNav_selectLang__head p {
	position: relative;
	left: -5px;
}
ul.corpHdr-subNav_selectLang div.corpHdr-subNav_selectLang__head span.corpHdr-subNav_selectLang__icon {
	content: "";
	display: inline-block;
	width: 6.5px;
	height: 5px;
	background-image: url("../img_sp/arrow_down.svg");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 8px;
	right: 7px;
}

.corpHdr-subNav_selectLang__body {
	overflow: hidden;
	width: 100%;
	height: 0;
	background: #fff;
	transition: all 0.2s ease;	
}

div.corpHdr-subNav_selectLang__altLang {
	display: block;
	padding: 5px 10px 5px;
	text-align: center;
}

.corpHdr-subNav_selectLang__item.selectLang-active .corpHdr-subNav_selectLang__head {
	background: #f2f2f2;
}
.corpHdr-subNav_selectLang__item.selectLang-active .corpHdr-subNav_selectLang__body {
	height: 41px;
}

.corpHdr-subNav_body {
	z-index: 0;
}


.corpHdr-subNav_box.corpHdr-subNav_box-search,
.corpHdr-mainNav_body {
	z-index: 5;
}