 @charset "UTF-8";
html {
	overflow-y: scroll;
}

body {
	font-family: "Noto Sans Japanese", "Avenir Next", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
	color: #333;
	line-height: 1.6;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

@media only screen and (max-width: 750px) {
	body {
		min-width: 320px;
	}
	a.cupla_logo {
	    margin-left: 10px;
	    bottom: 14px !important;
	    font-size: 16px !important;
	}	
}

img {
	-webkit-backface-visibility: hidden;
}

input, textarea, select {
	font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
}

input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
/*
select::-ms-expand {
	display: none;
}*/

strong {
	font-weight: bold;
}

a:focus {
	outline: none;
}

a {
	color: #0d4199;
	text-decoration: underline;
}

a:hover {
	color: #0d4199;
	text-decoration: none;
}

/*////////////////////////////////////////

padding, margin

////////////////////////////////////////*/
.padT0 {
	padding-top: 0 !important;
}

.padT1 {
	padding-top: 0.5em !important;
}

.padT2 {
	padding-top: 1em !important;
}

.padT3 {
	padding-top: 1.5em !important;
}

.padT4 {
	padding-top: 2em !important;
}

.padT5 {
	padding-top: 2.5em !important;
}

.padL0 {
	padding-left: 0 !important;
}

.padL1 {
	padding-left: 0.5em !important;
}

.padL2 {
	padding-left: 1em !important;
}

.padL3 {
	padding-left: 1.5em !important;
}

.padL4 {
	padding-left: 2em !important;
}

.padL5 {
	padding-left: 2.5em !important;
}

.padR0 {
	padding-right: 0 !important;
}

.padR1 {
	padding-right: 0.5em !important;
}

.padR2 {
	padding-right: 1em !important;
}

.padR3 {
	padding-right: 1.5em !important;
}

.padR4 {
	padding-right: 2em !important;
}

.padR5 {
	padding-right: 2.5em !important;
}

.padB0 {
	padding-bottom: 0 !important;
}

.padB1 {
	padding-bottom: 0.5em !important;
}

.padB2 {
	padding-bottom: 1em !important;
}

.padB3 {
	padding-bottom: 1.5em !important;
}

.padB4 {
	padding-bottom: 2em !important;
}

.padB5 {
	padding-bottom: 2.5em !important;
}

.marT0 {
	margin-top: 0 !important;
}

.marT1 {
	margin-top: 0.5em !important;
}

.marT2 {
	margin-top: 1em !important;
}

.marT3 {
	margin-top: 1.5em !important;
}

.marT4 {
	margin-top: 2em !important;
}

.marT5 {
	margin-top: 2.5em !important;
}

.marL0 {
	margin-left: 0 !important;
}

.marL1 {
	margin-left: 0.5em !important;
}

.marL2 {
	margin-left: 1em !important;
}

.marL3 {
	margin-left: 1.5em !important;
}

.marL4 {
	margin-left: 2em !important;
}

.marL5 {
	margin-left: 2.5em !important;
}

.marR0 {
	margin-right: 0 !important;
}

.marR1 {
	margin-right: 0.5em !important;
}

.marR2 {
	margin-right: 1em !important;
}

.marR3 {
	margin-right: 1.5em !important;
}

.marR4 {
	margin-right: 2em !important;
}

.marR5 {
	margin-right: 2.5em !important;
}

.marB0 {
	margin-bottom: 0 !important;
}

.marB1 {
	margin-bottom: 0.5em !important;
}

.marB2 {
	margin-bottom: 1em !important;
}

.marB3 {
	margin-bottom: 1.5em !important;
}

.marB4 {
	margin-bottom: 2em !important;
}

.marB5 {
	margin-bottom: 2.5em !important;
}

/*////////////////////////////////////////

汎用class

////////////////////////////////////////*/
.only-pc {
	display: block;
}

.only-pci {
	display: inline-block;
}

.only-sp {
	display: none;
}

.only-spi {
	display: none;
}

@media screen and (max-width: 750px) {
	.only-pc {
		display: none;
	}
	.only-pci {
		display: none;
	}
	.only-sp {
		display: block;
	}
	.only-spi {
		display: inline-block;
	}
}

.align-c {
	text-align: center !important;
}

.align-l {
	text-align: left !important;
}

.align-r {
	text-align: right !important;
}

.bold {
	font-weight: bold;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.alpha-over {
	transition: opacity 0.3s;
}

.alpha-over:hover {
	opacity: 0.7;
}

.white-over {
	position: relative;
}

.white-over::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	transition: opacity 0.3s;
	opacity: 0;
}

@media screen and (min-width: 751px) {
	.white-over:hover::after {
		opacity: 0.3;
	}
}

.blank:before {
	content: url(/assets/common/img/blank-icon.png);
	margin-right: 3px;
}

.pdf:before {
	content: url(/assets/common/img/pdf-icon.png);
	margin-right: 3px;
	position: relative;
	top: 3px;
}

.tpl-keycolor {
	color: #013895;
}

.tpl-red {
	color: red;
}

.tpl-basic-img {
	display: block;
	margin: 0 auto 25px;
}

@media only screen and (max-width: 750px) {
	.tpl-basic-img {
		width: 100%;
		margin-bottom: 10px;
	}
}

.tpl-basic-img:last-child {
	margin-bottom: 0;
}

.tpl-figure img {
	margin-bottom: 10px;
}

@media screen and (max-width: 750px) {
	.tpl-figure img {
		width: 100%;
	}
}

.tpl-figure figcaption {
	font-size: 14px;
}

@media screen and (max-width: 750px) {
	.tpl-figure figcaption {
		font-size: 12px;
	}
}

.tpl-pdf-link::after {
	content: "PDF";
	font-size: 8px;
	color: #e10000;
	padding: 0 5px;
	border: 1px solid #e10000;
	margin-left: 10px;
}

@media only screen and (max-width: 750px) {
	.tpl-pdf-link::after {
		font-size: 6px;
		padding: 0 3px;
		margin-left: 5px;
	}
}

.pdf-icon {
	font-size: 8px;
	color: #e10000;
	padding: 2px 5px;
	border: 1px solid #e10000;
	line-height: 1;
	display: inline-block;
}

@media screen and (max-width: 750px) {
	.pdf-icon {
		padding: 2px 3px 0;
	}
}

.news-blank-icon img {
	vertical-align: middle;
}

.tpl-third-heading {
	color: #013895;
	font-size: 34px;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 80px;
}

@media only screen and (max-width: 750px) {
	.tpl-third-heading {
		font-size: 20px;
		margin-bottom: 35px;
	}
}

.tpl-third-heading-02 {
	font-size: 20px;
	font-weight: bold;
	color: #013895;
	padding-bottom: 5px;
	border-bottom: 1px solid #DCDCDC;
	margin-bottom: 25px;
}

@media only screen and (max-width: 750px) {
	.tpl-third-heading-02 {
		font-size: 13px;
		margin-bottom: 15px;
	}
}

.tpl-third-heading-03 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	border-left: 4px solid #013895;
	padding: 0 20px 0 10px;
	line-height: 1.3;
	display: block;
}

@media only screen and (max-width: 750px) {
	.tpl-third-heading-03 {
		font-size: 12px;
		margin-bottom: 10px;
		border-left: 2px solid #013895;
		padding: 0 15px 0 5px;
	}
}

.tpl-third-heading-04 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid #DCDCDC;
	line-height: 1.3;
}

@media only screen and (max-width: 750px) {
	.tpl-third-heading-04 {
		margin-bottom: 15px;
		padding-bottom: 10px;
	}
}

.tpl-third-heading-04 span {
	border-left: 4px solid #013895;
	padding-left: 10px;
}

@media only screen and (max-width: 750px) {
	.tpl-third-heading-04 span {
		font-size: 12px;
		border-left: 2px solid #013895;
		padding-left: 5px;
	}
}

.tpl-third-heading-05 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
	line-height: 1.3;
}

@media only screen and (max-width: 750px) {
	.tpl-third-heading-05 {
		font-size: 12px;
		margin-bottom: 5px;
	}
}

.tpl-heading-01 {
	font-size: 34px;
	color: #013895;
	text-align: center;
	padding: 80px 0 60px;
	letter-spacing: 0.1em;
	line-height: 1.32;
}

@media only screen and (max-width: 750px) {
	.tpl-heading-01 {
		font-size: 17px;
		padding: 45px 0 25px;
	}
}

.tpl-heading-02 {
	font-size: 20px;
	letter-spacing: 0.1em;
	color: #013895;
	font-weight: 700;
	border-bottom: 1px solid #DCDCDC;
	padding-bottom: 5px;
	margin-bottom: 25px;
}

@media only screen and (max-width: 750px) {
	.tpl-heading-02 {
		font-size: 13px;
		margin-bottom: 12px;
	}
}

.tpl-input-text,
.tpl-textarea,
.tpl-select-box,
.tpl-radio-btn {
	font-size: 16px;
	padding: 10px;
	border: 1px solid #D2D2D2;
}

.tpl-input-text {
	height: 50px;
}

@media only screen and (max-width: 750px) {
	.tpl-input-text {
		height: 40px;
	}
}

.tpl-textarea {
	width: 100%;
	height: 250px;
}

@media only screen and (max-width: 750px) {
	.tpl-textarea {
		height: 135px;
	}
}

.tpl-select-box {
	width: 270px;
	height: 50px;
	cursor: pointer;
	background: url(/assets/common/img/select-btn.gif) no-repeat right center;
}

@media only screen and (max-width: 750px) {
	.tpl-select-box {
		width: 100%;
	}
}

.tpl-select-box::-ms-expand {
	display: none;
}

.tpl-radio-btn {
	display: none;
}

.tpl-radio-btn + .tpl-radio-btn-label {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	transform: translateY(5px);
	margin-right: 10px;
	border: 1px solid #D2D2D2;
	display: inline-block;
	position: relative;
}

@media only screen and (max-width: 750px) {
	.tpl-radio-btn + .tpl-radio-btn-label {
		width: 15px;
		height: 15px;
		transform: translateY(3px);
		margin-right: 5px;
	}
}

.tpl-radio-btn:checked + .tpl-radio-btn-label::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: black;
	border-radius: 50%;
}

@media only screen and (max-width: 750px) {
	.tpl-radio-btn:checked + .tpl-radio-btn-label::after {
		width: 6px;
		height: 6px;
	}
}

.tpl-submit {
	min-height: 65px;
	padding: 0 15px;
	border: 1px solid #DCDCDC;
	border-radius: 30px;
	background-color: white;
	line-height: 1.5;
	transition: all .3s;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	width: 300px;
	margin: auto;
	cursor: pointer;
}

@media only screen and (max-width: 750px) {
	.tpl-submit {
		min-height: 44px;
		padding: 0 10px;
		width: 150px;
	}
}

.tpl-submit span {
	position: relative;
	text-align: center;
	display: block;
	width: 100%;
	font-size: 16px;
	letter-spacing: 0.14em;
}

@media only screen and (max-width: 750px) {
	.tpl-submit span {
		font-size: 12px;
	}
}

.tpl-submit span::before, .tpl-submit span::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.tpl-submit span::before {
	width: 8px;
	height: 8px;
	border-top: 2px solid #013895;
	border-right: 2px solid #013895;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .3s;
}

@media only screen and (max-width: 750px) {
	.tpl-submit span::before {
		width: 4px;
		height: 4px;
		border-top: 1px solid #013895;
		border-right: 1px solid #013895;
	}
}

@media screen and (min-width: 751px) {
	.tpl-submit:hover {
		background-color: #013895;
		color: white;
	}
	.tpl-submit:hover span::before {
		border-top-color: white;
		border-right-color: white;
	}
}

@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .tpl-submit {
		height: 65px;
	}
	/* IE11 */
}

.tpl-accordion .tpl-accordion-head {
	cursor: pointer;
}

.tpl-accordion .tpl-accordion-body {
	display: none;
}

.tpl-accordion .tpl-accordion-body.active {
	display: block;
}

.tpl-row-list {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-flex-wrap: wrap;
	/* Safari */
	flex-wrap: wrap;
	border-top: 1px solid #DCDCDC;
}

@media only screen and (max-width: 750px) {
	.tpl-row-list {
		display: block;
	}
}

.tpl-row-list > * {
	padding: 20px 0;
	border-bottom: 1px solid #DCDCDC;
}

@media only screen and (max-width: 750px) {
	.tpl-row-list > * {
		padding: 0;
		border-bottom: none;
		font-size: 12px;
		width: auto !important;
	}
}

.tpl-row-list > *:nth-child(odd) {
	width: 20%;
	font-weight: bold;
}

@media only screen and (max-width: 750px) {
	.tpl-row-list > *:nth-child(odd) {
		padding: 10px 0 0;
	}
}

.tpl-row-list > *:nth-child(even) {
	width: 80%;
}

@media only screen and (max-width: 750px) {
	.tpl-row-list > *:nth-child(even) {
		padding: 0 0 10px;
		border-bottom: 1px solid #DCDCDC;
	}
}

.tpl-form-select {
	border: 1px solid #DCDCDC;
	width: 100%;
	text-align: center;
	font-size: 16px;
	padding: 12px;
	margin-bottom: 50px;
	box-shadow: 0 1px 0 #D0CFCF;
	background-image: url(/assets/ir/news/img/select-icon.png);
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 10px auto;
}

@media only screen and (max-width: 750px) {
	.tpl-form-select {
		margin-bottom: 30px;
		background-position: right 15px center;
	}
}

.tpl-news-list {
	border-top: 1px solid #DCDCDC;
}

.tpl-news-list li {
	width: 100%;
	border-bottom: 1px solid #DCDCDC;
	padding: 20px 0;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
}

.tpl-news-list li .tpl-news-list-main {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-date {
	min-width: 140px;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-cate {
	border: 1px solid black;
	font-size: 8px;
	min-width: 60px;
	text-align: center;
	margin-right: 20px;
	line-height: 1;
	padding: 3px 0;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-cate.jisseki {
	color: #DBB339;
	border-color: #DBB339;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-cate.yuuhou {
	color: #4EAE67;
	border-color: #4EAE67;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-cate.kessan {
	color: #9A63AA;
	border-color: #9A63AA;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-cate.shiryo {
	color: #4BA0D1;
	border-color: #4BA0D1;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-cate.kaiji {
	color: #E36B6B;
	border-color: #E36B6B;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-cate.attack-fair {
	color: #FE1170;
	border-color: #FE1170;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-cate.exhibition-info {
	color: #013895;
	border-color: #013895;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-cate.news-release {
	color: #DBB339;
	border-color: #DBB339;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-cate.new-prd-info {
	color: #4EAE67;
	border-color: #4EAE67;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-cate.topics {
	color: #9A63AA;
	border-color: #9A63AA;
}

.tpl-news-list li .tpl-news-list-main .tpl-news-list-text {
	padding-right: 15px;
}

.tpl-news-list li .tpl-news-list-icon {
	width: 30px;
	min-width: 30px;
	text-align: center;
}

@media screen and (max-width: 750px) {
	.tpl-news-list li {
		padding: 15px 0;
	}
	.tpl-news-list li:last-child {
		border-bottom: 1px solid #DCDCDC;
	}
	.tpl-news-list li .tpl-news-list-main {
		display: block;
	}
	.tpl-news-list li .tpl-news-list-main .tpl-news-list-head {
		margin-bottom: 0;
	}
	.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-date {
		min-width: initial;
		font-size: 12px;
	}
	.tpl-news-list li .tpl-news-list-main .tpl-news-list-head .tpl-news-list-cate {
		min-width: 45px;
		margin-left: 5px;
		margin-right: 0;
		padding: 3px 0 0;
	}
	.tpl-news-list li .tpl-news-list-main .tpl-news-list-text {
		font-size: 12px;
	}
}

.pdf-size {
	color: #999999;
	white-space: nowrap;
}

/* .tpl-inner-wrap
-----------------------------*/
.tpl-inner-wrap {
	width: 1260px;
	margin: 0 auto;
	clear: both;
}

@media only screen and (max-width: 750px) {
	.tpl-inner-wrap {
		width: 100%;
		padding: 0 15px;
	}
}

/* #tpl-header
-----------------------------*/
#tpl-header {
    padding-top: 8px;
	width: 100%;
	min-width: 1260px;
	height: 104px;
	/*position: fixed;*/
	z-index: 1041;
	top: 0;
	background-color: white;
	border-bottom: 1px solid #DCDCDC;
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	-webkit-justify-content: space-between;
	/*--- safari（PC）用 ---*/
	justify-content: space-between;
	-webkit-align-items: center;
	/*--- safari（PC）用 ---*/
	align-items: center;
}

@media only screen and (max-width: 750px) {
	#tpl-header {
		min-width: initial;
		height: 60px;
	}
}

#tpl-header .main-block {
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	-webkit-align-items: center;
	/*--- safari（PC）用 ---*/
	align-items: center;
	height: 100%;
}

#tpl-header .main-block h1 {
	margin-left: 20px;
	margin-right: 30px;
}

@media only screen and (max-width: 750px) {
	#tpl-header .main-block h1 {
		margin-left: 12px;
		margin-right: 0;
	}
}

#tpl-header .main-block h1 svg {
	width: 175px;
	vertical-align: top;
}

@media only screen and (max-width: 750px) {
	#tpl-header .main-block h1 svg {
		width: 132px;
	}
}

#tpl-header .sub-block {
	height: 100%;
}

@media only screen and (max-width: 750px) {
	#tpl-header .sub-block {
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
	}
}

#tpl-header .sub-block .sub-block-sub {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: flex-end;
	/* Safari */
	justify-content: flex-end;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
	height: 40px;
}

@media only screen and (max-width: 750px) {
	#tpl-header .sub-block .sub-block-sub {
		display: none;
	}
}

#tpl-header .sub-block .lang-select {
	position: relative;
	z-index: 1;
	cursor: pointer;
}

#tpl-header .sub-block .lang-select .lang-select-head {
	width: 142px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	padding: 3px 30px 3px 10px;
	position: relative;
	border: 1px solid #E5E5E5;
}

#tpl-header .sub-block .lang-select .lang-select-head::before, #tpl-header .sub-block .lang-select .lang-select-head::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	content: "";
	vertical-align: middle;
}

#tpl-header .sub-block .lang-select .lang-select-head::before {
	width: 4px;
	height: 4px;
	border-top: 2px solid #808080;
	border-right: 2px solid #808080;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

#tpl-header .sub-block .lang-select .lang-select-body {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	background-color: white;
	border: 1px solid #E5E5E5;
	width: 142px;
	transition: all 0.1s;
	margin-top: -1px;
}

#tpl-header .sub-block .lang-select .lang-select-body.show {
	opacity: 1;
	pointer-events: auto;
}

#tpl-header .sub-block .lang-select .lang-select-body .lang-select-body-item {
	padding: 3px 10px;
	border-bottom: 1px solid #E5E5E5;
}

#tpl-header .sub-block .lang-select .lang-select-body .lang-select-body-item:last-child {
	border-bottom: none;
}

#tpl-header .sub-block .lang-select .lang-select-body .lang-select-body-item.current {
	position: relative;
}

#tpl-header .sub-block .lang-select .lang-select-body .lang-select-body-item.current::before, #tpl-header .sub-block .lang-select .lang-select-body .lang-select-body-item.current::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	content: "";
	vertical-align: middle;
}

#tpl-header .sub-block .lang-select .lang-select-body .lang-select-body-item.current::before {
	width: 5px;
	height: 5px;
	border-top: 2px solid #013895;
	border-right: 2px solid #013895;
	-webkit-transform: translateY(3px) rotate(-45deg);
	transform: translateY(3px) rotate(-45deg);
}

#tpl-header .sub-block .lang-select .lang-select-body .lang-select-body-item a {
	color: inherit;
	text-decoration: none;
}

@media only screen and (max-width: 750px) {
	#tpl-header .sub-block .global-btn,
	#tpl-header .sub-block .contact-btn {
		display: none;
	}
}

#tpl-header .sub-block .global-btn {
	padding: 0 20px 0 15px;
}

#tpl-header .sub-block .global-btn a {
	color: inherit;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-decoration: none;
	background: url(/cupla/assets/common/img/global-btn-icon.png) no-repeat left center;
	padding-left: 22px;
	display: block;
	height: 16px;
	line-height: 16px;
}

#tpl-header .sub-block .contact-btn {
	background-color: #003894;
	height: 100%;
}

#tpl-header .sub-block .contact-btn a {
	color: white;
	display: block;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-decoration: none;
	height: 100%;
	padding: 0 18px 0 56px;
	line-height: 40px;
	background: url(/cupla/assets/common/img/contact-btn-icon.png) no-repeat 18px center;
}
li.products_dropdown.prd-division-menu .contact-btn a {
    background: none !important;
    padding: 0 !important;
    min-width: 168px;
    text-align: center;
}
li.products_dropdown.prd-division-menu p.contact-btn {
    padding-right: 0px !important;
}
#tpl-header .sub-block .product-search-btn {
	background-color: #013895;
	width: 107px;
	height: 107px;
	border: 1px solid #fff;
	border-radius: 50%;
	position: fixed;
	bottom: 42px;
	right: 42px;
	transition: bottom 0.3s;
	line-height: 1.28;
}

#tpl-header .sub-block .product-search-btn.up {
	bottom: 150px;
}

@media only screen and (max-width: 750px) {
	#tpl-header .sub-block .product-search-btn {
		width: 60px;
		height: 60px;
		border: none;
		border-radius: 0;
		position: static;
	}
}

#tpl-header .sub-block .product-search-btn p {
	text-align: center;
	color: white;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.14em;
	height: 100%;
}

@media only screen and (max-width: 750px) {
	#tpl-header .sub-block .product-search-btn p {
		font-size: 9px;
	}
}

body.e #tpl-header .sub-block .product-search-btn p {
	font-size: 12px;
}

@media screen and (max-width: 750px) {
	body.e #tpl-header .sub-block .product-search-btn p {
		font-size: 9px;
	}
}

#tpl-header .sub-block .product-search-btn p a {
	display: block;
	color: inherit;
	text-decoration: none;
	padding-top: 20px;
	height: 100%;
	position: relative;
}

@media only screen and (max-width: 750px) {
	#tpl-header .sub-block .product-search-btn p a {
		padding-top: 12px;
	}
}

#tpl-header .sub-block .product-search-btn p a .open {
	display: block;
}

#tpl-header .sub-block .product-search-btn p a .close {
	display: none;
}

@media only screen and (max-width: 750px) {
	#tpl-header .sub-block .product-search-btn p a.active .open {
		display: none;
	}
	#tpl-header .sub-block .product-search-btn p a.active .close {
		display: block;
	}
}

#tpl-header .sub-block .product-search-btn p a img {
	display: block;
	margin: 0 auto 10px;
}

@media only screen and (max-width: 750px) {
	#tpl-header .sub-block .product-search-btn p a img {
		width: 23px;
		margin-bottom: 5px;
	}
}

body.e #tpl-header .sub-block .product-search-btn p a img {
	margin: 0 auto 8px;
}

@media screen and (max-width: 750px) {
	body.e #tpl-header .sub-block .product-search-btn p a img {
		margin-bottom: 5px;
	}
}

@media only screen and (max-width: 750px) {
	#tpl-header .sub-block .product-search-btn p a img.close {
		width: 15px;
		transform: translateY(5px);
	}
}

@media only screen and (max-width: 750px) {
	#tpl-header .sub-block .product-search-btn p a span {
		position: absolute;
		bottom: 6px;
		text-align: center;
		width: 100%;
	}
	#tpl-header .sub-block .product-search-btn p a span {
		bottom: 5px;
	}
}

#tpl-header .sub-block .product-search-btn p a::after {
	border-radius: 50%;
}

#tpl-header .sp-menu-btn {
	display: none;
}

@media only screen and (max-width: 750px) {
	#tpl-header .sp-menu-btn {
		display: block;
		width: 60px;
		height: 60px;
		font-size: 9px;
		position: relative;
	}
	#tpl-header .sp-menu-btn .menu-trigger,
	#tpl-header .sp-menu-btn .menu-trigger span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	#tpl-header .sp-menu-btn .menu-trigger {
		position: relative;
		top: 16px;
		left: 18px;
		width: 25px;
		height: 18px;
	}
	#tpl-header .sp-menu-btn .menu-trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #013895;
		border-radius: 4px;
	}
	#tpl-header .sp-menu-btn .menu-trigger span:nth-of-type(1) {
		top: 0;
	}
	#tpl-header .sp-menu-btn .menu-trigger span:nth-of-type(2) {
		top: 8px;
	}
	#tpl-header .sp-menu-btn .menu-trigger span:nth-of-type(3) {
		bottom: 0;
	}
	#tpl-header .sp-menu-btn .menu-trigger span:nth-of-type(3),
	#tpl-header .sp-menu-btn .menu-trigger.active span:nth-of-type(3) {
		transition: none;
	}
	#tpl-header .sp-menu-btn .menu-trigger.active {
		-webkit-transform: rotateX(180deg);
		transform: rotateX(180deg);
	}
	#tpl-header .sp-menu-btn .menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(8px) rotate(-45deg);
		transform: translateY(8px) rotate(-45deg);
	}
	#tpl-header .sp-menu-btn .menu-trigger.active span:nth-of-type(2) {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	}
	#tpl-header .sp-menu-btn .menu-trigger.active span:nth-of-type(3) {
		opacity: 0;
	}
	#tpl-header .sp-menu-btn > p {
		position: absolute;
		bottom: 6px;
		text-align: center;
		width: 100%;
	}
}

/* #tpl-header.header-blank
-----------------------------*/
#tpl-header.header-blank {
	height: 80px;
}

@media only screen and (max-width: 750px) {
	#tpl-header.header-blank {
		height: 60px;
	}
}

#tpl-header.header-blank .sub-block {
	display: none;
}

body.global #tpl-header.header-blank {
	position: relative;
}

body.global #tpl-header.header-blank .sub-block {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
	position: absolute;
	top: 0;
	right: 10px;
}

@media screen and (max-width: 750px) {
	body.global #tpl-header.header-blank .sub-block .sub-block-sub {
		display: block;
	}
}

body.global #tpl-header.header-blank .sub-block .sub-block-sub .contact-btn {
	display: block;
}

/* #tpl-sp-menu
-----------------------------*/
#tpl-sp-menu {
	background-color: rgba(0, 0, 0, 0.9);
	display: none;
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	z-index: 9999999;
	overflow-y: scroll;
	height: 100vh;
	-webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 751px) {
	#tpl-sp-menu {
		display: none !important;
	}
}

#tpl-sp-menu .tpl-inner-wrap {
	padding: 25px 15px 180px;
}

#tpl-sp-menu .tpl-inner-wrap a {
	text-decoration: none;
}

#tpl-sp-menu .tpl-inner-wrap > dl {
	color: white;
	font-weight: 400;
}

#tpl-sp-menu .tpl-inner-wrap > dl dt {
	line-height: 1;
	padding: 20px 0;
	border-bottom: 1px solid white;
	position: relative;
	font-size: 15px;
	font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
}

#tpl-sp-menu .tpl-inner-wrap > dl dt .icon-toggle {
	width: 11px;
	height: 11px;
	display: block;
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: .3s;
}

#tpl-sp-menu .tpl-inner-wrap > dl dt .icon-toggle::before, #tpl-sp-menu .tpl-inner-wrap > dl dt .icon-toggle::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: white;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

#tpl-sp-menu .tpl-inner-wrap > dl dt .icon-toggle::before {
	width: 1px;
}

#tpl-sp-menu .tpl-inner-wrap > dl dt .icon-toggle::after {
	height: 1px;
}

#tpl-sp-menu .tpl-inner-wrap > dl dt.active {
	border-bottom: none;
}

#tpl-sp-menu .tpl-inner-wrap > dl dt.active .icon-toggle {
	transform: rotate(180deg);
}

#tpl-sp-menu .tpl-inner-wrap > dl dt.active .icon-toggle::before {
	opacity: 0;
}

#tpl-sp-menu .tpl-inner-wrap > dl dt.active + dd {
	border-bottom: 1px solid white;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd .sp-menu-accordion-body-list {
	margin-bottom: 25px;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd .sp-menu-accordion-body-list li {
	border-bottom: 1px solid #646564;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd .sp-menu-accordion-body-list li a {
	color: white;
	position: relative;
	height: 100%;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd .sp-menu-accordion-body-list li a::before {
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-color: white;
	border-right-color: white;
	width: 6px;
	height: 6px;
	right: 14px;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd .sp-menu-accordion-body-list li a .sp-menu-accordion-body-list-blank {
	display: block;
	width: 100%;
	background: url(/assets/common/img/side-menu-blank-icon-sp.png) no-repeat right center;
	background-size: 10px auto;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd .sp-menu-accordion-body-notes {
	font-size: 12px;
	padding-bottom: 25px;
	text-indent: -0.5em;
	padding-left: 0.5em;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd .sp-menu-accordion-body-notes a {
	color: white;
	text-decoration: underline;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.product ul li a {
	padding: 25px 0 25px 90px;
	font-size: 15px;
	text-decoration: none;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.product ul li a .product-icon {
	display: block;
	width: 90px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 55px auto;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.product ul li:nth-child(1) a {
	padding-left: 0;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.product ul li:nth-child(2) .product-icon {
	background-image: url(/assets/common/img/gnav-product-icon-01.png);
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.product ul li:nth-child(3) .product-icon {
	background-image: url(/assets/common/img/gnav-product-icon-02.png);
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.product ul li:nth-child(4) .product-icon {
	background-image: url(/assets/common/img/gnav-product-icon-03.png);
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.product ul li:nth-child(5) .product-icon {
	background-image: url(/assets/common/img/gnav-product-icon-04.png);
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.product ul li:nth-child(6) .product-icon {
	background-image: url(/assets/common/img/gnav-product-icon-05.png);
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.product ul li:nth-child(7) .product-icon {
	background-image: url(/assets/common/img/gnav-product-icon-06.png);
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.product ul li:nth-child(8) .product-icon {
	background-image: url(/assets/common/img/gnav-product-icon-07.png);
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.product ul li:nth-child(9) .product-icon {
	background-image: url(/assets/common/img/gnav-product-icon-08.png);
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.product ul li:last-child {
	border-bottom: none;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.no-product {
	display: none;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.no-product .sp-menu-accordion-body-list {
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	-webkit-flex-wrap: wrap;
	/*--- safari（PC）用 ---*/
	flex-wrap: wrap;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.no-product .sp-menu-accordion-body-list li {
	width: 50%;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.no-product .sp-menu-accordion-body-list li:nth-child(odd) {
	border-right: 1px solid #646564;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.no-product .sp-menu-accordion-body-list li.no-border-bottom {
	border-bottom: none;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.no-product .sp-menu-accordion-body-list li.no-border-right {
	border-right: none;
}

#tpl-sp-menu .tpl-inner-wrap > dl dd.no-product .sp-menu-accordion-body-list li a {
	font-size: 12px;
	padding: 15px;
}

#tpl-sp-menu .tpl-inner-wrap .prd-accordion dt {
	padding-left: 85px;
	padding-right: 35px;
	background-repeat: no-repeat;
	background-position: 12px center;
	background-size: auto 30px;
	line-height: 1.5;
}

#tpl-sp-menu .tpl-inner-wrap .prd-accordion:last-child dt {
	border-bottom: none;
}

#tpl-sp-menu .tpl-inner-wrap .prd-accordion:last-child dt.active + dd {
	border-bottom: none;
}

#tpl-sp-menu .tpl-inner-wrap .prd-accordion .prd-detail-btn {
	border: 1px solid white;
	border-radius: 40px;
	margin-bottom: 25px;
}

#tpl-sp-menu .tpl-inner-wrap .prd-accordion .prd-detail-btn a {
	color: white;
	font-size: 15px;
	display: block;
	text-align: center;
	padding: 10px 0;
}

#tpl-sp-menu .tpl-inner-wrap .download-accordion .sp-menu-accordion-head {
	padding-left: 12px;
}

#tpl-sp-menu .tpl-inner-wrap .download-accordion:last-child dt {
	border-bottom: none;
}

#tpl-sp-menu .tpl-inner-wrap .download-accordion:last-child dt.active + dd {
	border-bottom: none;
}

#tpl-sp-menu .tpl-inner-wrap .prd, #tpl-sp-menu .tpl-inner-wrap .recruit {
	border-bottom: 1px solid white;
}

#tpl-sp-menu .tpl-inner-wrap .prd a, #tpl-sp-menu .tpl-inner-wrap .recruit a {
	display: block;
	line-height: 1;
	padding: 20px 0;
	position: relative;
	font-size: 15px;
	color: white;
}

#tpl-sp-menu .tpl-inner-wrap .prd a::before, #tpl-sp-menu .tpl-inner-wrap .recruit a::before {
	border-top-width: 1px;
	border-right-width: 1px;
	width: 6px;
	height: 6px;
	right: 14px;
}

#tpl-sp-menu .tpl-inner-wrap .prd {
	border-top: 1px solid white;
}

#tpl-sp-menu .prd-accordion .prd-accordion-head-img {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 12px;
	margin: auto;
	width: 55px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

#tpl-sp-menu .prd-accordion .gnav-bigpull-select-box-body-btn {
	background-color: #D2D2D2;
	padding: 8px 0;
	font-size: 14px;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
	margin-bottom: 20px;
}

#tpl-sp-menu .prd-accordion .gnav-bigpull-select-box-body-btn li {
	width: 50%;
	text-align: center;
	background-repeat: no-repeat;
}

#tpl-sp-menu .prd-accordion .gnav-bigpull-select-box-body-btn li:first-child {
	background-image: url(/assets/common/img/gnav-bigpull-product-box-body-btn-icon-02.png);
	background-position: 15px center;
	background-size: 19px auto;
	border-right: 1px solid #000000;
}

#tpl-sp-menu .prd-accordion .gnav-bigpull-select-box-body-btn li:last-child {
	background-image: url(/assets/common/img/gnav-bigpull-product-box-body-btn-icon-01.png);
	background-position: 10px center;
	background-size: 21px auto;
}

#tpl-sp-menu .prd-accordion .gnav-bigpull-select-box-body-btn li a {
	color: black;
}

#tpl-sp-menu .prd-accordion .gnav-bigpull-select-box-body-btn li a span {
	padding-left: 15px;
}

#tpl-sp-menu .download-accordion .gnav-bigpull-select-box-body-btn {
	background-color: #D2D2D2;
	font-size: 14px;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	/* Safari */
	flex-wrap: wrap;
	margin-bottom: 20px;
}

#tpl-sp-menu .download-accordion .gnav-bigpull-select-box-body-btn li {
	width: 50%;
	text-align: center;
	background-repeat: no-repeat;
	background-position: 13px center;
	background-size: auto 22px;
	padding: 10px 0;
	border-bottom: 1px solid #000000;
}

#tpl-sp-menu .download-accordion .gnav-bigpull-select-box-body-btn li a {
	color: black;
	height: 100%;
	min-height: 27px;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
	position: relative;
}

#tpl-sp-menu .download-accordion .gnav-bigpull-select-box-body-btn li a span {
	display: inline-block;
	padding-left: 60px;
	padding-right: 10px;
	text-align: left;
	line-height: 1.48;
}

#tpl-sp-menu .download-accordion .gnav-bigpull-select-box-body-btn li a .download-accordion-img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 13px;
	margin: auto;
	width: 40px;
	height: 27px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

#tpl-sp-menu .download-accordion .gnav-bigpull-select-box-body-btn li:nth-child(odd) a {
	border-right: 1px solid #000000;
}

#tpl-sp-menu .sub-block-sub {
	padding: 15px 0 0;
}

#tpl-sp-menu .sub-block-sub .sub-block-sub-01 {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
	margin-bottom: 15px;
}

#tpl-sp-menu .sub-block-sub .sub-block-sub-01 .lang-select {
	width: 48.5%;
	position: relative;
	position: relative;
}

#tpl-sp-menu .sub-block-sub .sub-block-sub-01 .lang-select .lang-select-head {
	color: white;
	font-size: 12px;
	letter-spacing: 0.14em;
	padding: 0 30px 0 20px;
	width: 100%;
	height: 50px;
	line-height: 48px;
	border: 1px solid white;
	background-color: black;
}

#tpl-sp-menu .sub-block-sub .sub-block-sub-01 .lang-select .lang-select-head::before, #tpl-sp-menu .sub-block-sub .sub-block-sub-01 .lang-select .lang-select-head::after {
	position: absolute;
	top: 20px;
	right: 18px;
	margin: auto;
	content: "";
	vertical-align: middle;
}

#tpl-sp-menu .sub-block-sub .sub-block-sub-01 .lang-select .lang-select-head::before {
	width: 6px;
	height: 6px;
	border-top: 1px solid white;
	border-right: 1px solid white;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

#tpl-sp-menu .sub-block-sub .sub-block-sub-01 .lang-select .lang-select-head.active::before {
	-webkit-transform: translateY(4px) rotate(-45deg);
	transform: translateY(4px) rotate(-45deg);
}

#tpl-sp-menu .sub-block-sub .sub-block-sub-01 .lang-select .lang-select-body {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 50px;
	background-color: black;
	width: 100%;
	transition: all 0.2s;
}

#tpl-sp-menu .sub-block-sub .sub-block-sub-01 .lang-select .lang-select-body.show {
	opacity: 1;
	pointer-events: auto;
}

#tpl-sp-menu .sub-block-sub .sub-block-sub-01 .lang-select .lang-select-body .lang-select-body-item {
	color: white;
	font-size: 12px;
	letter-spacing: 0.14em;
	padding: 0 20px;
	height: 50px;
	line-height: 48px;
	border: 1px solid white;
	border-top: none;
}

#tpl-sp-menu .sub-block-sub .sub-block-sub-01 .lang-select .lang-select-body .lang-select-body-item a {
	color: white;
}

#tpl-sp-menu .sub-block-sub .sub-block-sub-01 .global-btn {
	/*width: 48.5%;*/
	width: 100%;
	height: 50px;
	line-height: 50px;
}

#tpl-sp-menu .sub-block-sub .sub-block-sub-01 .global-btn a {
	color: black;
	display: block;
	height: 100%;
	padding: 0 15px;
	font-size: 15px;
	letter-spacing: 0.14em;
	background: white url(/assets/common/img/global-btn-icon-sp.png) no-repeat right 14px center;
	background-size: 19px auto;
}

#tpl-sp-menu .sub-block-sub .contact-btn {
	height: 50px;
	line-height: 50px;
}

#tpl-sp-menu .sub-block-sub .contact-btn a {
	display: block;
	height: 100%;
	color: white;
	padding-left: 17px;
	font-size: 14px;
	letter-spacing: 0.14em;
	background: #013895 url(/assets/common/img/contact-btn-icon-sp.png) no-repeat right 14px center;
	background-size: 24px auto;
}

/* #tpl-gnav
-----------------------------*/
#tpl-gnav {
	height: 64px;
}

#tpl-gnav > ul {
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	-webkit-justify-content: flex-end;
	/* Safari */
	justify-content: flex-end;
	height: 100%;
}

#tpl-gnav > ul > li {
	padding: 0px;
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	-webkit-align-items: center;
	/*--- safari（PC）用 ---*/
	align-items: center;
}
li.prd p.contact-btn {
    padding-right: 21px !important;
    text-transform: uppercase;
}
li.prd.company {
    padding-right: 26px !important;
}
#tpl-gnav > ul > li.download {
	padding-right: 25px;
}

#tpl-gnav > ul > li.recruit {
	padding-right: 20px;
}

#tpl-gnav > ul > li:hover {
	color: #013895;
}

#tpl-gnav > ul > li .gnav-btn {
	line-height: 1;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.14em;
	white-space: nowrap;
	position: relative;
/*	height: 100%;*/
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	-webkit-align-items: center;
	/*--- safari（PC）用 ---*/
	align-items: center;
}

#tpl-gnav > ul > li .gnav-btn p {
	padding-right: 20px;
}

#tpl-gnav > ul > li .gnav-btn p a {
	text-decoration: none;
	color: inherit;
}

#tpl-gnav > ul > li .gnav-btn:hover:after{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	margin: auto;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 6px 6px 6px;
	border-color: transparent transparent #2f3030 transparent;
	transform: translateX(-11px);
	opacity: 0;
	transition: opacity 0.3s;
}

#tpl-gnav > ul > li .gnav-bigpull {
	position: absolute;
	top: 104px;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	display: none;
	pointer-events: none;
    padding-left: 15px;
}

#tpl-gnav > ul > li .gnav-bigpull .tpl-inner-wrap {
	padding: 60px 0;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl {
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	-webkit-justify-content: space-between;
	/*--- safari（PC）用 ---*/
	justify-content: space-between;
	-webkit-align-items: center;
	/*--- safari（PC）用 ---*/
	align-items: center;
	margin-bottom: 15px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl > p {
	color: white;
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0.1em;
	display: inline-block;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl > p a {
	color: white;
	padding-right: 25px;
	text-decoration: none;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl > p a.tpl-arrow::before {
	width: 7px;
	height: 7px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl .gnav-bigpull-search form {
	margin-bottom: 5px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl .gnav-bigpull-search form > * {
	vertical-align: top;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl .gnav-bigpull-search form [type="text"] {
	background-color: white;
	width: 620px;
	height: 46px;
	padding: 0 30px;
	font-size: 14px;
	border: 1px solid #DCDCDC;
	border-right: none;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl .gnav-bigpull-search form [type="submit"] {
	background-color: #013895;
	width: 150px;
	height: 46px;
	border: 1px solid #DCDCDC;
	border-left: none;
	font-size: 14px;
	color: white;
	letter-spacing: 0.14em;
	font-weight: 400;
	cursor: pointer;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl .gnav-bigpull-search form [type="submit"] img {
	vertical-align: top;
	transform: translateY(1px);
	margin-right: 7px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl .gnav-bigpull-search .freeword-saeach-error-messe {
	display: none;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl .gnav-bigpull-search form.error [type="text"] {
	border-color: red;
	border-right: none;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl .gnav-bigpull-search form.error [type="submit"] {
	border-color: red;
	border-left: none;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-ttl .gnav-bigpull-search form.error + .freeword-saeach-error-messe {
	display: block;
	color: red;
	padding-top: 5px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box-body {
	background-color: white;
	width: 730px;
	min-width: 730px;
	position: relative;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box-body .gnav-bigpull-select-box-body-block {
	width: 100%;
	padding: 30px 40px;
	background-repeat: no-repeat;
	background-position: right 40px bottom 25px;
	background-size: auto 30%;
	height: 100%;
	position: absolute;
	display: none;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box-body .gnav-bigpull-select-box-body-block:first-child {
	display: block;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box-body .gnav-bigpull-select-box-body-ttl-wrap {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
	margin-bottom: 40px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box-body .gnav-bigpull-select-box-body-ttl {
	font-size: 22px;
	letter-spacing: 0.14em;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box-body .gnav-bigpull-select-box-body-ttl a {
	color: #013895;
	padding-left: 20px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box-body .gnav-bigpull-select-box-body-ttl a::before {
	width: 7px;
	height: 7px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box-body .gnav-bigpull-select-box-body-link {
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	-webkit-flex-wrap: wrap;
	/*--- safari（PC）用 ---*/
	flex-wrap: wrap;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box-body .gnav-bigpull-select-box-body-link li {
	width: 45%;
	margin-bottom: 15px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box-body .gnav-bigpull-select-box-body-link li a {
	color: black;
	padding-right: 20px;
	display: inline-block;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box-body .gnav-bigpull-select-box-body-link li a::before {
	width: 6px;
	height: 6px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box-body .gnav-bigpull-select-box-body-link li.small a {
	font-size: 12px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box {
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	-webkit-justify-content: space-between;
	/*--- safari（PC）用 ---*/
	justify-content: space-between;
	margin-bottom: 10px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box .gnav-bigpull-select-box-head {
	width: 530px;
	min-width: 530px;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-flex-wrap: wrap;
	/* Safari */
	flex-wrap: wrap;
	background-color: #8A8A8A;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box .gnav-bigpull-select-box-head li {
	width: 50%;
	color: white;
	position: relative;
	cursor: pointer;
	transition: all 0.3s;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box .gnav-bigpull-select-box-head li:hover, #tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box .gnav-bigpull-select-box-head li.current {
	background-color: #013895;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box .gnav-bigpull-select-box-head li.current {
	pointer-events: none;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box .gnav-bigpull-select-box-head li .gnav-bigpull-select-box-head-img {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	width: 75px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box .gnav-bigpull-select-box-head li small {
	font-size: 11px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box .gnav-bigpull-select-box-body-btn {
	display: -webkit-flex;
	display: flex;
	border: 1px solid #DCDCDC;
	border-radius: 20px;
	background-color: #E5E5E5;
	height: 40px;
	line-height: 38px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box .gnav-bigpull-select-box-body-btn li:first-child {
	width: 163px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box .gnav-bigpull-select-box-body-btn li:last-child {
	width: 143px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box .gnav-bigpull-select-box-body-btn li a {
	display: block;
	color: black;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: 15px center;
	position: relative;
	height: 100%;
	padding-left: 50px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-select-box .gnav-bigpull-select-box-body-btn li a .gnav-bigpull-select-box-body-btn-img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	margin: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 62px;
	height: 50px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom {
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	-webkit-justify-content: space-between;
	/*--- safari（PC）用 ---*/
	justify-content: space-between;
	height: 77px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom .gnav-bigpull-product-bottom-new {
	width: 256px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom .gnav-bigpull-product-bottom-new a {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: center;
	/* Safari */
	justify-content: center;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
	height: 100%;
	background-color: #013895;
	color: white;
	text-align: center;
	letter-spacing: 0.14em;
	text-decoration: none;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom .gnav-bigpull-product-bottom-new a span {
	padding-right: 20px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom .gnav-bigpull-product-bottom-new a span::before {
	width: 6px;
	height: 6px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom .gnav-bigpull-product-bottom-dl {
	width: 990px;
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	padding: 15px 0;
	background-color: white;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom .gnav-bigpull-product-bottom-dl .gnav-bigpull-product-bottom-dl-head {
	color: #013895;
	width: 200px;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: center;
	/* Safari */
	justify-content: center;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
	border-right: 1px solid #A0A0A0;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom .gnav-bigpull-product-bottom-dl .gnav-bigpull-product-bottom-dl-body-wrap {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom .gnav-bigpull-product-bottom-dl .gnav-bigpull-product-bottom-dl-body {
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	padding: 0 50px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom .gnav-bigpull-product-bottom-dl .gnav-bigpull-product-bottom-dl-body li {
	margin-right: 30px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom .gnav-bigpull-product-bottom-dl .gnav-bigpull-product-bottom-dl-body li a {
	color: black;
	padding-right: 15px;
	font-size: 14px;
	text-decoration: underline;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom .gnav-bigpull-product-bottom-dl .gnav-bigpull-product-bottom-dl-body li a:hover {
	text-decoration: none;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-product-bottom .gnav-bigpull-product-bottom-dl .gnav-bigpull-product-bottom-dl-body li a::before {
	top: 1px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-link {
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-link ul {
	width: 290px;
	border-right: 1px solid #656B6D;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-link ul:last-child {
	border-right: none;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-link ul li {
	padding-left: 30px;
	padding-right: 25px;
	margin-bottom: 15px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-link ul li:last-child {
	margin-bottom: 0;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-link ul li a {
	color: white;
	font-weight: 400;
	display: block;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-link ul li a::before {
	width: 6px;
	height: 6px;
}

#tpl-gnav > ul > li .gnav-bigpull .gnav-bigpull-link ul li a.gnav-bigpull-link-blank {
	background: url(/assets/common/img/side-menu-blank-icon-sp.png) no-repeat right center;
}


#tpl-gnav > ul > li .gnav-bigpull.scroll .tpl-inner-wrap {
	padding: 60px 0 190px;
}

#tpl-gnav > ul > li.current {
	color: #013895;
}

#tpl-gnav > ul > li.active .gnav-btn::after {
	opacity: 1;
}

#tpl-gnav > ul > li.active .gnav-bigpull {
	z-index: 9999;
	pointer-events: auto;
}

#tpl-gnav > ul > li.prd .gnav-bigpull .prd-bigpull-close {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
}

#tpl-gnav > ul > li.prd .gnav-bigpull-select-box-head li {
	padding: 20px 30px;
	border-right: 1px solid #28221A;
	border-bottom: 1px solid #28221A;
}

body.e #tpl-gnav > ul > li.prd .gnav-bigpull-select-box-head li {
	padding: 28px 30px;
}

#tpl-gnav > ul > li.prd .gnav-bigpull-select-box-head li:nth-last-child(-n+2) {
	border-bottom: none;
}

#tpl-gnav > ul > li.prd .gnav-bigpull-select-box-body-btn li a {
	background-position: 25px center;
}

#tpl-gnav > ul > li.prd .gnav-bigpull-select-box-body-btn li:first-child a {
	background-image: url(/assets/common/img/gnav-bigpull-product-box-body-btn-icon-02.png);
	background-size: 24px auto;
}

#tpl-gnav > ul > li.prd .gnav-bigpull-select-box-body-btn li:last-child a {
	background-image: url(/assets/common/img/gnav-bigpull-product-box-body-btn-icon-01.png);
	background-size: 24px auto;
}

#tpl-gnav > ul > li.company .gnav-bigpull .tpl-inner-wrap, #tpl-gnav > ul > li.news .gnav-bigpull .tpl-inner-wrap, #tpl-gnav > ul > li.ir .gnav-bigpull .tpl-inner-wrap, #tpl-gnav > ul > li.download .gnav-bigpull .tpl-inner-wrap {
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	-webkit-justify-content: space-between;
	/*--- safari（PC）用 ---*/
	justify-content: space-between;
	padding: 60px 0;
}

body.e #tpl-gnav > ul > li.download .gnav-bigpull .tpl-inner-wrap {
	-webkit-justify-content: flex-start;
	/* Safari */
	justify-content: flex-start;
}

body.e #tpl-gnav > ul > li.download .gnav-bigpull .tpl-inner-wrap .gnav-bigpull-link {
	padding-left: 225px;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
}

#tpl-gnav > ul > li.company .gnav-bigpull .tpl-inner-wrap .gnav-bigpull-ttl, #tpl-gnav > ul > li.news .gnav-bigpull .tpl-inner-wrap .gnav-bigpull-ttl, #tpl-gnav > ul > li.ir .gnav-bigpull .tpl-inner-wrap .gnav-bigpull-ttl, #tpl-gnav > ul > li.download .gnav-bigpull .tpl-inner-wrap .gnav-bigpull-ttl {
	margin-bottom: 0;
}

#tpl-gnav > ul > li.news .gnav-bigpull-link ul {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
}

#tpl-gnav > ul > li.news .gnav-bigpull-link ul li {
	width: 100%;
}

#tpl-gnav > ul > li.download .gnav-bigpull-link {
	display: block;
}

#tpl-gnav > ul > li.download .gnav-bigpull-link .gnav-bigpull-link-list {
	display: -webkit-flex;
	/* Safari */
	display: flex;
}

#tpl-gnav > ul > li.download .gnav-bigpull-link .gnav-bigpull-link-notes {
	width: 870px;
	padding: 30px 0 0 30px;
}

#tpl-gnav > ul > li.download .gnav-bigpull-link .gnav-bigpull-link-notes p {
	color: white;
	font-size: 13px;
	text-indent: -0.5em;
	padding-left: 0.5em;
}

#tpl-gnav > ul > li.download .gnav-bigpull-link .gnav-bigpull-link-notes p a {
	color: white;
	text-decoration: underline;
}

#tpl-gnav > ul > li.download .gnav-bigpull-link .gnav-bigpull-link-notes p a:hover {
	text-decoration: none;
}

#tpl-gnav > ul > li.recruit a {
	color: inherit;
	text-decoration: none;
}

#tpl-gnav > ul > li.recruit:hover a {
	color: #013895;
}

/* #tpl-topicpath
-----------------------------*/
#tpl-topicpath {
	width: 100%;
	background-color: #EEEEEE;
	padding: 10px 0;
	margin-top: 104px;
}

@media screen and (max-width: 750px) {
	#tpl-topicpath {
		display: none;
	}
}

#tpl-topicpath .tpl-inner-wrap {
	width: auto;
	padding: 0 30px;
}

#tpl-topicpath ul li {
	display: inline-block;
	font-size: 14px;
}

#tpl-topicpath ul li a {
	color: #013895;
}

#tpl-topicpath ul li::after {
	content: ">";
	margin: 0 15px;
}

#tpl-topicpath ul li:last-child::after {
	display: none;
}

/* #tpl-contents
-----------------------------*/
@media screen and (max-width: 750px) {
	#tpl-contents {
		padding-top: 60px;
	}
}

/* .tpl-section
-----------------------------*/
.tpl-section {
	margin-bottom: 85px;
}

@media screen and (max-width: 750px) {
	.tpl-section {
		margin-bottom: 45px;
	}
}

.tpl-section:last-child {
	margin-bottom: 0;
}

.tpl-section .tpl-section-column2 {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
}

@media screen and (max-width: 750px) {
	.tpl-section .tpl-section-column2 {
		display: block;
	}
}

.tpl-section .tpl-section-inner {
	margin-bottom: 50px;
}

@media screen and (max-width: 750px) {
	.tpl-section .tpl-section-inner {
		margin-bottom: 30px;
	}
}

.tpl-section .tpl-section-inner:last-child {
	margin-bottom: 0;
}

/* .tpl-text
-----------------------------*/
.tpl-text {
	line-height: 2;
	margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
	.tpl-text {
		font-size: 12px;
		margin-bottom: 15px;
	}
}

.tpl-text:last-child {
	margin-bottom: 0;
}

/* .tpl-text-link
-----------------------------*/
.tpl-text-link {
	position: relative;
	padding-left: 15px;
}

@media screen and (max-width: 750px) {
	.tpl-text-link {
		font-size: 12px;
		padding-left: 10px;
	}
}

.tpl-text-link::before, .tpl-text-link::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.tpl-text-link::before {
	width: 6px;
	height: 6px;
	border-top: 2px solid #013895;
	border-right: 2px solid #013895;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 750px) {
	.tpl-text-link::before {
		width: 4px;
		height: 4px;
		border-top: 1px solid #013895;
		border-right: 1px solid #013895;
	}
}

/* .tpl-anchor-link
-----------------------------*/
.tpl-anchor-link {
	position: relative;
	padding-left: 15px;
}

@media screen and (max-width: 750px) {
	.tpl-anchor-link {
		font-size: 12px;
		padding-left: 10px;
	}
}

.tpl-anchor-link::before, .tpl-anchor-link::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.tpl-anchor-link::before {
	width: 6px;
	height: 6px;
	border-top: 2px solid #013895;
	border-right: 2px solid #013895;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

@media screen and (max-width: 750px) {
	.tpl-anchor-link::before {
		width: 4px;
		height: 4px;
		border-top: 1px solid #013895;
		border-right: 1px solid #013895;
	}
}

/* .tpl-base-btn
-----------------------------*/
.tpl-base-btn {
	text-align: center;
	letter-spacing: 0.14em;
}

.tpl-base-btn a {
	color: inherit;
	text-decoration: none;
	padding: 14px 18px;
	border: 1px solid #DCDCDC;
	border-radius: 30px;
	background-color: white;
	line-height: 1.5;
	transition: all .3s;
	display: -webkit-flex;
	/* Safari */
	display: flex;
}

@media screen and (max-width: 750px) {
	.tpl-base-btn a {
		padding: 12px;
	}
}

.tpl-base-btn a span {
	padding: 0 15px;
	display: block;
	width: 100%;
}

@media screen and (max-width: 750px) {
	.tpl-base-btn a span {
		padding: 0 10px;
		font-size: 12px;
	}
}

.tpl-base-btn.key-color a {
	color: #013895;
}

.tpl-base-btn.border-key-color a {
	border-color: #013895;
}

.tpl-base-btn.arrow a span {
	position: relative;
}

.tpl-base-btn.arrow a span::before, .tpl-base-btn.arrow a span::after {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.tpl-base-btn.arrow a span::before {
	width: 6px;
	height: 6px;
	border-top: 2px solid #013895;
	border-right: 2px solid #013895;
	transition: all .3s;
}

@media screen and (max-width: 750px) {
	.tpl-base-btn.arrow a span::before {
		width: 4px;
		height: 4px;
		border-top-width: 1px;
		border-right-width: 1px;
	}
}

.tpl-base-btn.arrow-pos-left a span::before {
	left: 0;
}

.tpl-base-btn.arrow-pos-right a span::before {
	right: 0;
}

.tpl-base-btn.arrow-ori-left a span::before {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.tpl-base-btn.arrow-ori-right a span::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.tpl-base-btn.arrow-ori-up a span::before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.tpl-base-btn.arrow-ori-down a span::before {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

@media screen and (min-width: 751px) {
	.tpl-base-btn a:hover {
		background-color: #013895;
		color: white;
	}
	.tpl-base-btn a:hover span::before {
		border-top-color: white;
		border-right-color: white;
	}
}

.tpl-base-btn.access a {
	padding: 7px 20px;
	border-radius: 20px;
}

.tpl-base-btn.access a span {
	padding: 0 40px;
}

.tpl-base-btn.tpl-base-btn-pdf a {
	position: relative;
}

.tpl-base-btn.tpl-base-btn-pdf a::after {
	content: "PDF";
	display: inline-block;
	font-size: 8px;
	color: #e10000;
	padding: 2px 5px;
	border: 1px solid #e10000;
	line-height: 1;
	position: absolute;
	right: 20px;
	letter-spacing: 0;
	top: 36%;
	transition: all .3s;
}

@media screen and (max-width: 750px) {
	.tpl-base-btn.tpl-base-btn-pdf a::after {
		padding: 2px;
		right: 12px;
	}
}

@media screen and (min-width: 751px) {
	.tpl-base-btn.tpl-base-btn-pdf a:hover::after {
		color: white;
		border-color: white;
	}
}

/* .tpl-btn
-----------------------------*/
.tpl-btn {
	display: inline-block;
	text-align: center;
	letter-spacing: 0.14em;
}

.tpl-btn a {
	color: #013895;
	display: block;
	text-decoration: none;
	padding: 10px 20px;
	border: 1px solid #013895;
	border-radius: 30px;
	line-height: 1.5;
	transition: all .3s;
}

@media screen and (max-width: 750px) {
	.tpl-btn a {
		padding: 5px 15px;
	}
}

.tpl-btn a span {
	padding: 0 30px;
	display: block;
}

.tpl-btn.arrow a span {
	position: relative;
}

.tpl-btn.arrow a span::before, .tpl-btn.arrow a span::after {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.tpl-btn.arrow a span::before {
	width: 6px;
	height: 6px;
	border-top: 2px solid #013895;
	border-right: 2px solid #013895;
	transition: all .3s;
}

@media screen and (max-width: 750px) {
	.tpl-btn.arrow a span::before {
		width: 4px;
		height: 4px;
		border-top-width: 1px;
		border-right-width: 1px;
	}
}

.tpl-btn.arrow-pos-left a span::before {
	left: 0;
}

.tpl-btn.arrow-ori-left a span::before {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.tpl-btn.arrow-ori-right a span::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.tpl-btn.arrow-ori-down a span::before {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

@media screen and (min-width: 751px) {
	.tpl-btn a:hover {
		background-color: #013895;
		color: white;
	}
	.tpl-btn a:hover span::before {
		border-top-color: white;
		border-right-color: white;
	}
}

.tpl-btn.access a {
	padding: 7px 20px;
	border-radius: 20px;
}

.tpl-btn.access a span {
	padding: 0 40px;
}

/* .tpl-btn-02
-----------------------------*/
.tpl-btn-02 {
	display: block;
	text-align: center;
	letter-spacing: 0.14em;
	width: 305px;
}

@media screen and (max-width: 750px) {
	.tpl-btn-02 {
		width: 168px;
	}
}

.tpl-btn-02 a {
	color: inherit;
	min-height: 65px;
	text-decoration: none;
	padding: 0 18px;
	border: 1px solid #DCDCDC;
	border-radius: 30px;
	background-color: white;
	line-height: 1.5;
	transition: all .3s;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
}

@media screen and (max-width: 750px) {
	.tpl-btn-02 a {
		min-height: 44px;
		padding: 0 12px;
	}
}

.tpl-btn-02 a span {
	padding: 0 25px;
	display: block;
	width: 100%;
}

@media screen and (max-width: 750px) {
	.tpl-btn-02 a span {
		padding: 0 10px;
		font-size: 12px;
	}
}

.tpl-btn-02.arrow a span {
	position: relative;
}

.tpl-btn-02.arrow a span::before, .tpl-btn-02.arrow a span::after {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.tpl-btn-02.arrow a span::before {
	width: 8px;
	height: 8px;
	border-top: 2px solid #013895;
	border-right: 2px solid #013895;
	transition: all .3s;
}

@media screen and (max-width: 750px) {
	.tpl-btn-02.arrow a span::before {
		width: 4px;
		height: 4px;
		border-top-width: 1px;
		border-right-width: 1px;
	}
}

.tpl-btn-02.arrow-pos-left a span::before {
	left: 0;
}

.tpl-btn-02.arrow-ori-left a span::before {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.tpl-btn-02.arrow-ori-right a span::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.tpl-btn-02.arrow-ori-down a span::before {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

@media screen and (min-width: 751px) {
	.tpl-btn-02 a:hover {
		background-color: #013895;
		color: white;
	}
	.tpl-btn-02 a:hover span::before {
		border-top-color: white;
		border-right-color: white;
	}
}

.tpl-btn-02.access a {
	padding: 7px 20px;
	border-radius: 20px;
}

.tpl-btn-02.access a span {
	padding: 0 40px;
}

@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, .tpl-btn-02 a {
		height: 65px;
	}
	/* IE11 */
    

  
    
}

/* .tpl-list
-----------------------------*/
.tpl-list {
	margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
	.tpl-list {
		margin-bottom: 15px;
	}
}

.tpl-list:last-child {
	margin-bottom: 0;
}

.tpl-list li {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 2;
}

@media screen and (max-width: 750px) {
	.tpl-list li {
		font-size: 12px;
		padding-left: 1.3em;
		text-indent: -1.3em;
	}
}

.tpl-list li:before {
	content: "・";
}

/* .tpl-list-number
-----------------------------*/
.tpl-list-number {
	list-style-type: decimal;
	padding-left: 1em;
	line-height: 2;
	margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
	.tpl-list-number {
		margin-bottom: 15px;
		font-size: 12px;
	}
}

.tpl-list-number:last-child {
	margin-bottom: 0;
}

/* .tpl-side-menu
-----------------------------*/
.tpl-side-menu {
	position: relative;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu {
		position: static;
		padding: 0 15px;
		background-color: #001883;
	}
}

.tpl-side-menu a {
	display: block;
	text-decoration: none;
}

.tpl-side-menu a::before {
	width: 6px;
	height: 6px;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu a::before {
		width: 6px;
		height: 6px;
		right: 15px;
		border-top: 1px solid white;
		border-right: 1px solid white;
	}
}

.tpl-side-menu dt {
	background-color: #013895;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dt {
		background-color: inherit;
		border-bottom: 1px solid #808CC1;
	}
}

.tpl-side-menu dt a {
	color: white;
	text-align: center;
	padding: 40px 20px;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dt a {
		text-align: left;
		display: block;
		padding: 15px 0;
		height: auto;
	}
}

.tpl-side-menu dt a > span {
	height: 100%;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: center;
	/* Safari */
	justify-content: center;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
	padding: 0 10px;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dt a > span {
		display: block;
	}
}

.tpl-side-menu dt a > span::before {
	width: 7px;
	height: 7px;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dt a > span::before {
		display: none;
	}
}

.tpl-side-menu dt a .inner .en {
	font-size: 20px;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dt a .inner .en {
		display: inline;
		vertical-align: middle;
		font-size: 18px;
		padding-right: 5px;
	}
}

.tpl-side-menu dt a .inner .jp {
	font-size: 15px;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dt a .inner .jp {
		display: inline;
		vertical-align: middle;
		font-size: 10px;
	}
}

.tpl-side-menu dd {
	background-color: #EEEEEE;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd {
		background-color: inherit;
		border-bottom: 1px solid #808CC1;
	}
}

.tpl-side-menu dd:last-child {
	border-bottom: none;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd:last-child {
		border-bottom: 1px solid #808CC1;
	}
}

.tpl-side-menu dd a, .tpl-side-menu dd > p {
	color: inherit;
	padding: 0 20px 0 25px;
	font-size: 14px;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd a, .tpl-side-menu dd > p {
		color: white;
		font-size: 13px;
		padding: 15px;
	}
}

@media screen and (min-width: 751px) {
	.tpl-side-menu dd a:hover, .tpl-side-menu dd > p:hover {
		color: #013895;
	}
}

.tpl-side-menu dd a > span, .tpl-side-menu dd > p > span {
	display: block;
	padding: 15px 0;
	border-bottom: 1px solid #DCDCDC;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd a > span, .tpl-side-menu dd > p > span {
		border-bottom: none;
		padding: 0;
	}
}

.tpl-side-menu dd a > span::before, .tpl-side-menu dd > p > span::before {
	width: 4px;
	height: 4px;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd a > span::before, .tpl-side-menu dd > p > span::before {
		width: 6px;
		height: 6px;
		border-top: 1px solid white;
		border-right: 1px solid white;
	}
}

.tpl-side-menu dd a > span.side-menu-blank-icon, .tpl-side-menu dd > p > span.side-menu-blank-icon {
	background: url(/assets/common/img/side-menu-blank-icon.png) no-repeat right center;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd a > span.side-menu-blank-icon, .tpl-side-menu dd > p > span.side-menu-blank-icon {
		background-image: url(/assets/common/img/side-menu-blank-icon-sp.png);
		background-size: 10px auto;
	}
}

.tpl-side-menu dd .accordion-head {
	cursor: pointer;
	padding-right: 18px;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd .accordion-head {
		padding-right: 12px;
	}
}

.tpl-side-menu dd .accordion-head span {
	position: relative;
}

.tpl-side-menu dd .accordion-head span::before, .tpl-side-menu dd .accordion-head span::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	background-color: #013895;
	width: 10px;
	height: 2px;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd .accordion-head span::before, .tpl-side-menu dd .accordion-head span::after {
		background-color: white;
		border-top: none;
		border-right: none;
		width: 10px;
		height: 1px;
	}
}

.tpl-side-menu dd .accordion-head span::after {
	transform: rotate(90deg);
}

.tpl-side-menu dd .accordion-head.active span::after {
	display: none;
}

.tpl-side-menu dd .accordion-body {
	display: none;
	font-size: 14px;
	padding-bottom: 13px;
}

.tpl-side-menu dd .accordion-body a {
	padding-top: 7px;
	padding-bottom: 7px;
}

.tpl-side-menu dd .accordion-body a span {
	padding: 0 0 0 15px;
	border-bottom: none;
	display: inline-block;
}

.tpl-side-menu dd .accordion-body a span::before {
	right: auto;
	left: 0;
	border-top: 1px solid black;
	border-right: 1px solid black;
	width: 3px;
	height: 3px;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd .accordion-body a span::before {
		border-top: 1px solid white;
		border-right: 1px solid white;
	}
}

.tpl-side-menu dd .accordion-body a span.side-menu-blank-icon {
	padding-right: 20px;
	background: url(/assets/common/img/side-menu-blank-icon.png) no-repeat right center;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd .accordion-body a span.side-menu-blank-icon {
		background: url(/assets/common/img/side-menu-blank-icon-sp.png) no-repeat right center;
		background-size: 10px auto;
	}
}

.tpl-side-menu dd.current > a, .tpl-side-menu dd.current .accordion-head {
	color: #013895;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd.current > a, .tpl-side-menu dd.current .accordion-head {
		color: white;
	}
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd.current > a {
		background-color: #013895;
	}
}

.tpl-side-menu dd.current .accordion-body li.current a {
	color: #013895;
}

@media screen and (max-width: 750px) {
	.tpl-side-menu dd.current .accordion-body li.current a {
		background-color: #013895;
		color: white;
	}
}

/* #tpl-pagetop
-----------------------------*/
#tpl-pagetop {
	background-color: #013895;
	height: 50px;
	text-indent: -9999px;
	position: absolute;
	right: 0;
	top: -50px;
	width: 100%;
}

@media screen and (max-width: 750px) {
	#tpl-pagetop {
		position: fixed;
		z-index: 98;
		width: 63px;
		height: 63px;
		top: auto;
		bottom: 10px;
		right: 10px;
		border-radius: 50%;
		opacity: 0;
		pointer-events: none;
		transition: all 0.3s;
	}
}

@media screen and (max-width: 750px) {
	#tpl-pagetop.show {
		opacity: 1;
		pointer-events: auto;
	}
}

@media screen and (max-width: 750px) {
	#tpl-pagetop.absolute {
		position: absolute;
		top: -32px;
		bottom: auto;
	}
}

#tpl-pagetop p {
	height: 100%;
}

#tpl-pagetop a {
	display: block;
	height: 100%;
}

#tpl-pagetop a::before {
	top: 10px;
	left: 0;
	right: 0;
	width: 12px;
	height: 12px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-color: #E2E8F3;
	border-right-color: #E2E8F3;
}

@media screen and (max-width: 750px) {
	#tpl-pagetop a::before {
		top: 7px;
		width: 10px;
		height: 10px;
	}
}

/* #tpl-footer
-----------------------------*/
#tpl-footer {
	color: #fff;
	clear: both;
	background-color: #001883;
	padding: 45px 0 15px;
	position: relative;
	min-width: 1260px;
	text-align: center;
}

@media screen and (max-width: 750px) {
	#tpl-footer {
		padding: 30px 15px;
		min-width: initial;
	}
}

#tpl-footer .tpl-inner-wrap {
	background: none;
}

@media screen and (max-width: 750px) {
	#tpl-footer .tpl-inner-wrap {
		padding: 0;
	}
}

#tpl-footer .tpl-inner-wrap a {
	color: #e5e5e5;
}

#tpl-footer .tpl-inner-wrap h2 {
	text-align: center;
	padding-bottom: 55px;
	border-bottom: 1px solid #808CC1;
}

@media screen and (max-width: 750px) {
	#tpl-footer .tpl-inner-wrap h2 {
		padding-bottom: 25px;
		border-bottom: none;
	}
}

#tpl-footer .tpl-inner-wrap h2 svg {
	width: 286px;
}

@media screen and (max-width: 750px) {
	#tpl-footer .tpl-inner-wrap h2 svg {
		width: 175px;
	}
}

@media screen and (max-width: 750px) {
	#tpl-footer .tpl-inner-wrap h2 img {
		width: 220px;
	}
}

#tpl-footer .tpl-inner-wrap .tpl-footer-link {
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	padding: 55px 0;
	border-bottom: 1px solid #808CC1;
	position: relative;
}

@media screen and (max-width: 750px) {
	#tpl-footer .tpl-inner-wrap .tpl-footer-link {
		display: none;
	}
}

#tpl-footer .tpl-inner-wrap .tpl-footer-link dl {
	font-size: 13px;
	min-width: 180px;
}

body.e #tpl-footer .tpl-inner-wrap .tpl-footer-link dl {
	min-width: 300px;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-link dl a.footer-link-blank {
	background: url(/assets/common/img/side-menu-blank-icon-sp.png) no-repeat right 7px;
	background-size: 15px auto;
	padding-right: 22px;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-link dl dt {
	margin-bottom: 30px;
	font-weight: 400;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-link dl dt a {
	background: url(/assets/common/img/arrow-white-right.png) no-repeat left center;
	padding-left: 15px;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-link dl dd {
	margin-bottom: 7px;
	font-weight: 400;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-link dl dd.mb {
	margin-bottom: 30px;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-link dl dd.last-child {
	margin-bottom: 0;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-link .youtube-link {
	position: absolute;
	right: 0;
	bottom: 60px;
	width: 350px;
	height: 70px;
	border: 1px solid #808CC1;
}

body.e #tpl-footer .tpl-inner-wrap .tpl-footer-link .youtube-link {
	width: 420px;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-link .youtube-link a {
	height: 100%;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: center;
	/* Safari */
	justify-content: center;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
	text-decoration: none;
	font-size: 14px;
	background-image: url(/assets/common/img/youtube-icon.png);
	background-repeat: no-repeat;
	background-position: 25px center;
	background-size: 44px auto;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-link .youtube-link a span {
	padding-left: 50px;
}

body.e #tpl-footer .tpl-inner-wrap .tpl-footer-link .youtube-link a span {
	padding-left: 30px;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-bottom {
	display: -webkit-flex;
	/*--- safari（PC）用 ---*/
	display: flex;
	-webkit-justify-content: space-between;
	/*--- safari（PC）用 ---*/
	justify-content: space-between;
	-webkit-flex-direction: row-reverse;
	/* Safari */
	flex-direction: row-reverse;
	padding-top: 75px;
}

@media screen and (max-width: 750px) {
	#tpl-footer .tpl-inner-wrap .tpl-footer-bottom {
		display: block;
		padding-top: 35px;
		text-align: center;
		border-top: 1px solid #808CC1;
	}
}

#tpl-footer .tpl-inner-wrap .tpl-footer-bottom .youtube-link {
	margin-bottom: 30px;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-bottom .youtube-link a {
	display: -webkit-inline-flex;
	/* Safari */
	display: inline-flex;
	-webkit-justify-content: center;
	/* Safari */
	justify-content: center;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
	height: 37px;
	font-size: 12px;
	background-image: url(/assets/common/img/youtube-icon.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 37px auto;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-bottom .youtube-link a span {
	padding-left: 55px;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-bottom .tpl-footer-bottom-other {
	display: -webkit-inline-flex;
	/*--- safari（PC）用 ---*/
	display: inline-flex;
	-webkit-justify-content: space-between;
	/*--- safari（PC）用 ---*/
	justify-content: space-between;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.14em;
	line-height: 1;
}

@media screen and (max-width: 750px) {
	#tpl-footer .tpl-inner-wrap .tpl-footer-bottom .tpl-footer-bottom-other {
		-webkit-justify-content: flex-start;
		/*--- safari（PC）用 ---*/
		justify-content: flex-start;
		font-size: 9px;
		margin-bottom: 20px;
	}
}

body.e #tpl-footer .tpl-inner-wrap .tpl-footer-bottom .tpl-footer-bottom-other {
	display: none;
}

#tpl-footer .tpl-inner-wrap .tpl-footer-bottom .tpl-footer-bottom-other li:first-child {
	padding-right: 15px;
	border-right: 1px solid #808CC1;
	margin-right: 15px;
}

@media screen and (max-width: 750px) {
	#tpl-footer .tpl-inner-wrap .tpl-footer-bottom .tpl-footer-bottom-other li:first-child {
		padding-right: 10px;
		margin-right: 10px;
	}
}

#tpl-footer .tpl-inner-wrap .tpl-footer-bottom .copyright {
	color: #e5e5e5;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.14em;
}

@media screen and (max-width: 750px) {
	#tpl-footer .tpl-inner-wrap .tpl-footer-bottom .copyright {
		font-size: 7px;
	}
}

#tpl-footer.footer-blank {
	padding: 75px 0;
	text-align: center;
}

@media screen and (max-width: 750px) {
	#tpl-footer.footer-blank {
		padding: 30px 0;
	}
}

#tpl-footer.footer-blank .copyright {
	color: #e5e5e5;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.14em;
}

@media screen and (max-width: 750px) {
	#tpl-footer.footer-blank .copyright {
		font-size: 7px;
	}
}

/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before, .slick-track:after {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

/* .sp-menu-close
-----------------------------*/
.sp-menu-close {
	width: 150px;
	font-size: 13px;
	color: white;
	padding: 12px 0;
	text-align: center;
	margin: 25px auto 0;
	background-color: #013895;
}

.sp-menu-close span {
	background: url(/assets/common/img/sp-modal-close-icon.png) no-repeat left center;
	background-size: 12px;
	/*padding-left: 22px;*/
}

/*************************************************************
/ modal-menu
/************************************************************/
.modal-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: solid 12px #eee;
	overflow-y: scroll;
}

@media only screen and (max-width: 750px) {
	.modal-menu {
		top: 60px;
		border: none;
		z-index: 9998;
		height: 100vh;
		-webkit-overflow-scrolling: touch;
	}
}

.modal-menu .modal-menu-close {
	position: absolute;
	top: 25px;
	right: 25px;
	cursor: pointer;
}

@media only screen and (max-width: 750px) {
	.modal-menu .modal-menu-close {
		display: none;
	}
}

.modal-menu .tpl-inner-wrap {
	padding: 80px 0;
}

@media only screen and (max-width: 750px) {
	.modal-menu .tpl-inner-wrap {
		padding: 25px 15px 85px;
		width: 100%;
	}
}

.modal-menu .menu-block {
	margin-top: 60px;
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block {
		margin-top: 0;
	}
}

.modal-menu .menu-block .menu-ttl {
	font-size: 24px;
	color: #013895;
	padding-bottom: 5px;
	border-bottom: solid 4px #013895;
	margin-bottom: 20px;
	font-weight: 500;
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block .menu-ttl {
		border-bottom: none;
		border-top: solid 2px #013895;
		font-size: 17px;
		margin-bottom: 0;
		padding: 20px 0;
		position: relative;
	}
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block .menu-ttl .icon-toggle {
		width: 11px;
		height: 11px;
		display: block;
		position: absolute;
		right: 10px;
		top: 0;
		bottom: 0;
		margin: auto;
		transition: .3s;
	}
	.modal-menu .menu-block .menu-ttl .icon-toggle::before, .modal-menu .menu-block .menu-ttl .icon-toggle::after {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-color: #013895;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
	}
	.modal-menu .menu-block .menu-ttl .icon-toggle::before {
		width: 1px;
	}
	.modal-menu .menu-block .menu-ttl .icon-toggle::after {
		height: 1px;
	}
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block .menu-ttl.active .icon-toggle {
		transform: rotate(180deg);
	}
	.modal-menu .menu-block .menu-ttl.active .icon-toggle::before {
		opacity: 0;
	}
}

.modal-menu .menu-block .menu-list {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block .menu-list {
		display: none;
		margin-bottom: 25px;
	}
}

.modal-menu .menu-block .menu-list > li {
	width: 406px;
	min-height: 100px;
	background-color: #eee;
	margin-right: 20px;
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block .menu-list > li {
		width: 100%;
		min-height: initial;
		margin-top: 5px;
		margin-right: 0;
	}
}

.modal-menu .menu-block .menu-list > li:nth-child(3n) {
	margin-right: 0;
}

.modal-menu .menu-block .menu-list > li:nth-child(n+4) {
	margin-top: 20px;
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block .menu-list > li:nth-child(n+4) {
		margin-top: 5px;
	}
}

.modal-menu .menu-block.group-menu-block .menu-list > li {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	padding: 10px 20px 10px 0;
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li {
		padding-right: 10px;
	}
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li > img {
		width: 110px;
		margin-left: -10px;
	}
}

.modal-menu .menu-block.group-menu-block .menu-list > li .text-block {
	width: 235px;
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block {
		width: calc(100% - 100px);
	}
}

.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .name {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}

body.e .modal-menu .menu-block.group-menu-block .menu-list > li .text-block .name {
	font-size: 15px;
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .name {
		font-size: 15px;
	}
}

.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

body.e .modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block {
	display: block;
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block {
		background-color: transparent;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		padding: 0;
	}
}

.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block .btn-block-item {
	background-color: #013895;
}

@media screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block .btn-block-item {
		width: 49%;
	}
	body.e .modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block .btn-block-item {
		width: 100%;
	}
}

.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block .btn-block-item:first-child {
	border-radius: 13px 0 0 13px;
}

body.e .modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block .btn-block-item:first-child {
	border-radius: 13px;
	margin-bottom: 5px;
}

@media screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block .btn-block-item:first-child {
		border-radius: 13px;
	}
}

.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block .btn-block-item:last-child {
	border-radius: 0 13px 13px 0;
}

body.e .modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block .btn-block-item:last-child {
	border-radius: 13px;
}

@media screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block .btn-block-item:last-child {
		border-radius: 13px;
	}
}

.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block a {
	font-size: 12px;
	color: #fff;
	font-weight: 400;
	display: block;
	padding: 3px 14px;
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block a {
		padding: 6px 14px;
		font-size: 10px;
		background-size: 13px 13px;
		background-repeat: no-repeat;
		background-position: 10px center;
		text-indent: 1.5em;
		text-align: center;
	}
}

@media only screen and (max-width: 374px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block a {
		font-size: 8px;
		background-size: 10px 10px;
		background-position: 6px center;
	}
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block a + a {
		margin-left: 2%;
	}
}

.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block a::before {
	content: '';
	display: inline-block;
	vertical-align: -2px;
	margin-right: 5px;
	width: 12px;
	height: 12px;
	background-repeat: no-repeat;
	background-size: contain;
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block a.series {
		background-image: url("/assets/common/img/icon_tool_1_sp.png");
	}
}

.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block a.series::before {
	background-image: url("/assets/common/img/icon_tool_1.png");
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block a.series::before {
		display: none;
	}
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block a.spec {
		background-image: url("/assets/common/img/icon_tool_2_sp.png");
	}
}

.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block a.spec::before {
	background-image: url("/assets/common/img/icon_tool_2.png");
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.group-menu-block .menu-list > li .text-block .btn-block a.spec::before {
		display: none;
	}
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.industry-menu-block {
		border-bottom: solid 2px #013895;
	}
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.industry-menu-block .menu-list > li {
		height: 80px;
	}
}

.modal-menu .menu-block.industry-menu-block .menu-list > li a {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	color: #000;
	padding-right: 20px;
}

.modal-menu .menu-block.industry-menu-block .menu-list > li a:hover {
	text-decoration: none;
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.industry-menu-block .menu-list > li a > img {
		width: 160px;
	}
}

.modal-menu .menu-block.industry-menu-block .menu-list > li a .name {
	margin-left: 20px;
	font-weight: 500;
	font-size: 18px;
}

body.e .modal-menu .menu-block.industry-menu-block .menu-list > li a .name {
	font-size: 16px;
}

@media screen and (max-width: 750px) {
	body.e .modal-menu .menu-block.industry-menu-block .menu-list > li a .name {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.modal-menu .menu-block.industry-menu-block .menu-list > li a .name {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.modal-menu .sp-menu-close {
		border-top: 2px solid #013895;
	}
}

/* .third-contents
----------------------------*/
.third-contents {
	position: relative;
}

@media only screen and (max-width: 750px) {
	.third-contents {
		min-height: initial !important;
	}
}

.third-contents .menu-column {
	width: 250px;
	height: 100%;
	background-color: #EEEEEE;
	position: absolute;
	top: 0;
	left: 0;
}

@media only screen and (max-width: 750px) {
	.third-contents .menu-column {
		width: auto;
		position: static;
	}
}

.third-contents .contents-column .tpl-inner-wrap {
	padding: 80px 0 235px 300px;
}

@media only screen and (max-width: 750px) {
	.third-contents .contents-column .tpl-inner-wrap {
		padding: 50px 15px;
	}
}

.third-contents.no-menu .contents-column .tpl-inner-wrap {
	padding: 80px 0 235px 0;
}

@media only screen and (max-width: 750px) {
	.third-contents.no-menu .contents-column .tpl-inner-wrap {
		padding: 50px 15px;
	}
}

/* .tpl-arrow
-----------------------------*/
.tpl-arrow {
	position: relative;
}

.tpl-arrow::before,
.tpl-arrow::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	vertical-align: middle;
}

.tpl-arrow::before {
	right: 0;
	width: 5px;
	height: 5px;
	border-top: 2px solid #013895;
	border-right: 2px solid #013895;
}

.tpl-arrow.white::before {
	border-top-color: white;
	border-right-color: white;
}

.tpl-arrow.up::before {
	top: 7px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.tpl-arrow.down::before {
	top: -2px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.tpl-arrow.left::before,
.tpl-arrow.left::after {
	left: 0;
	right: auto;
}

.tpl-arrow.left::before {
	left: 0;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}

.tpl-arrow.right::before {
	top: 2px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* .tpl-arrow-link
-----------------------------*/
.tpl-arrow-link {
	position: relative;
	padding-left: 15px;
	text-decoration: none;
}

.tpl-arrow-link:hover {
	text-decoration: underline;
}

.tpl-arrow-link::before, .tpl-arrow-link::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.tpl-arrow-link::before {
	width: 5px;
	height: 5px;
	border-top: 2px solid #013895;
	border-right: 2px solid #013895;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.tpl-arrow-link.up::before {
	-webkit-transform: translateY(3px) rotate(-45deg);
	transform: translateY(3px) rotate(-45deg);
}

@media only screen and (max-width: 750px) {
	.tpl-arrow-link {
		padding-left: 13px;
	}
	.tpl-arrow-link:hover {
		text-decoration: none;
	}
	.tpl-arrow-link::before {
		width: 4px;
		height: 4px;
		border-top: 1px solid #013895;
		border-right: 1px solid #013895;
	}
}

/* .tpl-text-field
-----------------------------*/
.tpl-text-field {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #E9E5E5;
	font-size: 14px;
	font-weight: 400;
	background-color: white;
	padding: 5px;
	box-shadow: 1px 1px #D0CFCF;
}

/* .tpl-select
-----------------------------*/
.tpl-select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #E9E5E5;
	font-size: 14px;
	font-weight: 400;
	background-color: white;
	background-image: url(/assets/common/img/arrow-select.png);
	background-repeat: no-repeat;
	background-position: right center;
	padding: 5px 30px 5px 10px;
	box-shadow: 1px 1px #D0CFCF;
}

@media only screen and (max-width: 750px) {
	.tpl-select {
		font-size: 16px;
		padding: 10px 30px 10px 15px;
	}
}

.tpl-select::-ms-expand {
	display: none;
}

/* .tpl-checkbox
-----------------------------*/
.tpl-checkbox {
	display: none;
}

.tpl-checkbox + i {
	display: inline-block;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #E9E5E5;
	font-size: 14px;
	font-weight: 400;
	background-color: white;
	box-shadow: 1px 1px #D0CFCF;
	width: 17px;
	height: 17px;
	margin-right: 10px;
	transform: translateY(3px);
}

.tpl-checkbox:checked + i:before, .tpl-checkbox:checked + i:after {
	border-bottom: 2px solid #013895;
	content: "";
	position: absolute;
	width: 5px;
	top: 10px;
	left: 4px;
	z-index: 1;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.tpl-checkbox:checked + i:after {
	width: 7px;
	top: 8px;
	left: 7px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* .tpl-table
-----------------------------*/
.tpl-table {
	width: 100%;
	margin-bottom: 50px;
}

@media screen and (max-width: 750px) {
	.tpl-table {
		margin-bottom: 25px;
	}
}

.tpl-table:last-child {
	margin-bottom: 0;
}

.tpl-table th, .tpl-table td {
	border: 1px solid #DCDCDC;
	vertical-align: middle;
	padding: 15px 30px;
	line-height: 2.18;
	word-wrap: break-word;
}

@media only screen and (max-width: 750px) {
	.tpl-table th, .tpl-table td {
		font-size: 12px;
		padding: 10px 15px;
		line-height: 1.5;
	}
}

.tpl-table th {
	background-color: #EEEEEE;
	font-weight: bold;
}

/* .second-main-visual
-----------------------------*/
.second-main-visual {
	height: 430px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: center;
	/* Safari */
	justify-content: center;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
}

@media only screen and (max-width: 750px) {
	.second-main-visual {
		height: 137px;
	}
}

.second-main-visual .box {
	background-color: rgba(1, 56, 149, 0.9);
	color: white;
	width: 400px;
	height: 250px;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: center;
	/* Safari */
	justify-content: center;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
}

@media only screen and (max-width: 750px) {
	.second-main-visual .box {
		width: 165px;
		height: 103px;
	}
}

.second-main-visual .box .inner {
	text-align: center;
}

.second-main-visual .box .inner .en {
	font-size: 40px;
	letter-spacing: 0.1em;
}

@media only screen and (max-width: 750px) {
	.second-main-visual .box .inner .en {
		font-size: 17px;
	}
}

.second-main-visual .box .inner hr {
	width: 54px;
	height: 2px;
	border-top-color: #587CB4;
	margin: 10px auto 30px;
}

@media only screen and (max-width: 750px) {
	.second-main-visual .box .inner hr {
		width: 24px;
		height: 1px;
		margin: 5px auto 13px;
	}
}

.second-main-visual .box .inner h2 {
	font-size: 26px;
	letter-spacing: 0.1em;
}

@media only screen and (max-width: 750px) {
	.second-main-visual .box .inner h2 {
		font-size: 11px;
	}
}

/* .second-contents
-----------------------------*/
.second-contents {
	padding: 95px 0;
}

@media screen and (max-width: 750px) {
	.second-contents {
		padding: 15px 0 65px;
	}
}

/* .second-link-list
-----------------------------*/
.second-link-list {
	overflow: hidden;
}

.second-link-list ul {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-flex-wrap: wrap;
	/* Safari */
	flex-wrap: wrap;
	margin-right: -30px;
	margin-bottom: -30px;
}

@media only screen and (max-width: 750px) {
	.second-link-list ul {
		-webkit-justify-content: space-between;
		/* Safari */
		justify-content: space-between;
		margin-right: 0;
	}
}

.second-link-list ul li {
	text-align: center;
	margin-right: 30px;
	margin-bottom: 50px;
}

@media only screen and (max-width: 750px) {
	.second-link-list ul li {
		width: 48%;
		margin-right: 0;
		margin-bottom: 30px;
	}
}

.second-link-list ul li a figure img {
	display: block;
	margin-bottom: 25px;
	width: 100%;
}

@media only screen and (max-width: 750px) {
	.second-link-list ul li a figure img {
		margin-bottom: 5px;
	}
}

.second-link-list ul li a figure figcaption {
	display: inline-block;
	color: #013895;
	font-size: 18px;
	font-weight: 500;
	padding-bottom: 10px;
	border-bottom: 1px solid #013895;
	text-decoration: none;
}

@media only screen and (max-width: 750px) {
	.second-link-list ul li a figure figcaption {
		font-size: 12px;
		padding-bottom: 5px;
	}
}

@media only screen and (min-width: 751px) {
	.second-link-list ul li a:hover figure img {
		transition: all 0.3s;
		opacity: 0.7;
	}
	.second-link-list ul li a:hover figure figcaption {
		border-bottom-color: white;
	}
}

/* .third-main-visual
-----------------------------*/
.third-main-visual {
	height: 155px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(/assets/company/common/img/third-main-visual-bg-company.jpg);
}

@media only screen and (max-width: 750px) {
	.third-main-visual {
		height: 110px;
		display: -webkit-flex;
		/* Safari */
		display: flex;
		-webkit-justify-content: center;
		/* Safari */
		justify-content: center;
		-webkit-align-items: center;
		/* Safari */
		align-items: center;
	}
}

.third-main-visual .box {
	display: none;
}

@media only screen and (max-width: 750px) {
	.third-main-visual .box {
		background-color: rgba(1, 56, 149, 0.9);
		color: white;
		width: 159px;
		height: 73px;
		display: -webkit-flex;
		/* Safari */
		display: flex;
		-webkit-justify-content: center;
		/* Safari */
		justify-content: center;
		-webkit-align-items: center;
		/* Safari */
		align-items: center;
	}
	.third-main-visual .box .inner {
		text-align: center;
	}
	.third-main-visual .box .inner .en {
		font-size: 18px;
		letter-spacing: 0.1em;
	}
	.third-main-visual .box .inner hr {
		width: 15px;
		height: 1px;
		border-top-color: #587CB4;
		margin: 5px auto;
	}
	.third-main-visual .box .inner .jp {
		font-size: 10px;
		font-weight: 400;
		letter-spacing: 0.1em;
	}
}

/* 見出し
-----------------------------*/
.h2 {
	font-size: 34px;
	letter-spacing: 0.05em;
	line-height: 1;
	padding-left: 20px;
	border-left: 4px solid #013895;
	margin-bottom: 65px;
}

@media only screen and (max-width: 750px) {
	.h2 {
		font-size: 20px;
		padding-left: 10px;
		border-left: 2px solid #013895;
		margin-bottom: 30px;
	}
}

.h3 {
	font-size: 20px;
	font-weight: bold;
	color: #013895;
	padding-bottom: 5px;
	border-bottom: 1px solid #DCDCDC;
	margin-bottom: 50px;
}

@media only screen and (max-width: 750px) {
	.h3 {
		font-size: 13px;
		margin-bottom: 15px;
	}
}

.h4 {
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	padding-left: 8px;
	border-left: 4px solid #013895;
	margin-bottom: 20px;
}

@media only screen and (max-width: 750px) {
	.h4 {
		font-size: 12px;
		margin-bottom: 10px;
	}
}

.h5 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}

@media only screen and (max-width: 750px) {
	.h5 {
		font-size: 12px;
		margin-bottom: 5px;
	}
}

.search-block {
	padding: 20px;
	background-color: #eee;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	justify-content: flex-end;
}

@media only screen and (max-width: 750px) {
	.search-block {
		display: block;
		padding: 25px 15px 15px;
		margin-bottom: 25px;
	}
}

.search-block .input-block {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	justify-content: flex-end;
	border: solid 1px #dcdcdc;
	margin-left: 30px;
}

@media only screen and (max-width: 750px) {
	.search-block .input-block {
		display: block;
		border: none;
		margin-left: 0;
	}
}

.search-block label {
	display: block;
	color: #013895;
	font-size: 20px;
	font-weight: 500;
}

@media only screen and (max-width: 750px) {
	.search-block label {
		text-align: center;
		font-size: 15px;
	}
}

.search-block input {
	display: block;
	box-sizing: border-box;
	font-size: 16px;
	-webkit-appearance: none;
	border-radius: 0;
}

.search-block input[type="text"] {
	width: 832px;
	height: 56px;
	padding: 0 30px;
	border: none;
	background-color: white;
}

@media only screen and (max-width: 750px) {
	.search-block input[type="text"] {
		height: 45px;
		width: 100%;
		border: solid 1px #dcdcdc;
		font-size: 16px;
		padding: 0 15px;
		margin-top: 15px;
		margin-bottom: 5px;
	}
}

.search-block input[type="submit"] {
	width: 180px;
	height: 56px;
	border: none;
	background-color: #013895;
	color: #fff;
	cursor: pointer;
	font-weight: 400;
	letter-spacing: 0.14em;
	background-image: url("/assets/common/img/icon_search.png");
	background-repeat: no-repeat;
	background-position: 20px center;
	text-indent: 1em;
}

@media only screen and (max-width: 750px) {
	.search-block input[type="submit"] {
		width: 150px;
		height: 40px;
		margin: 15px auto 0;
		font-size: 13px;
		background-image: url("/assets/common/img/icon_search_sp.png");
		background-size: 15px 15px;
	}
}

/* ニュース
-----------------------------*/
.tpl-news-list {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-flex-wrap: wrap;
	/* Safari */
	flex-wrap: wrap;
}

.tpl-news-list dt {
	width: 160px;
}

.tpl-news-list dd {
	width: calc(100% - 160px);
	margin-bottom: 10px;
}

/* ニュース詳細
-----------------------------*/
.entry-head {
	margin-bottom: 60px;
}

.entry-head .entry-head__title {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 20px;
}

.entry-head .entry-head__title + p {
	line-height: 2;
}

@media screen and (max-width: 750px) {
	.entry-head .entry-head__title + p {
		font-size: 12px;
	}
}

.entry-detail .entry-author {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
	margin-bottom: 25px;
}

@media only screen and (max-width: 750px) {
	.entry-detail .entry-author {
		font-size: 12px;
		margin-bottom: 20px;
	}
}

.entry-detail .entry-author .entry-author__address {
	text-align: right;
}

.entry-detail .entry-body h1 {
	font-size: 20px;
	font-weight: bold;
	color: #013895;
	padding-bottom: 5px;
	border-bottom: 1px solid #DCDCDC;
	margin-bottom: 50px;
}

.entry-detail .entry-body h2 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	border-left: 4px solid #013895;
	padding: 0 20px 0 10px;
	line-height: 1.3;
	display: block;
}

.entry-detail .entry-body p {
	line-height: 2;
	margin-bottom: 20px;
}

.entry-detail .entry-body p.small {
	font-size: 13px;
}

.entry-detail .entry-body table {
	width: 100%;
	margin-bottom: 70px;
}

.entry-detail .entry-body table th, .entry-detail .entry-body table td {
	border: 1px solid #DCDCDC;
	vertical-align: middle;
	padding: 10px 20px;
	line-height: 2;
}

.entry-detail .entry-body table th {
	background-color: #EEEEEE;
	text-align: center;
}

.entry-detail .entry-body table thead th {
	text-align: left;
}

.entry-detail .entry-body figure {
	margin: 0 auto 70px;
	display: table;
	width: 200px;
}

.entry-detail .entry-body figure img {
	margin-bottom: 10px;
	max-width: 960px;
}

.entry-detail .entry-body figure figcaption {
	line-height: 2;
}

.entry-detail .entry-body > div {
	margin-bottom: 70px;
}

.entry-detail .entry-body .movie-wrap {
	width: 700px;
	margin: 0 auto 90px;
}

@media screen and (max-width: 750px) {
	.entry-detail .entry-body .movie-wrap {
		width: 100%;
		margin-bottom: 50px;
	}
}

.entry-detail .entry-body .movie-wrap:last-child {
	margin-bottom: 0;
}

.entry-detail .entry-body .movie-wrap .movie {
	width: 100%;
	padding-top: 56.285714285%;
	position: relative;
	margin-bottom: 5px;
}

.entry-detail .entry-body .movie-wrap .movie iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.entry-detail .entry-body .movie-wrap .movie-ttl {
	font-weight: bold;
	border-left: 4px solid #013895;
	padding-left: 8px;
	line-height: 1.3;
	margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
	.entry-detail .entry-body .movie-wrap .movie-ttl {
		margin-bottom: 10px;
	}
}

.entry-detail .entry-body .media-block.type-img-right {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
	-webkit-flex-direction: row-reverse;
	/* Safari */
	flex-direction: row-reverse;
}

.entry-detail .entry-body .media-block.type-img-right .media-block__media {
	margin: 0 0 0 30px;
	display: block;
	width: auto;
}

.entry-detail .entry-body .img-right {
	margin: 0 0 30px 30px;
	display: block;
	width: auto;
	float: right;
}

.entry-detail .entry-body .media-block.type-img-left {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
	-webkit-flex-direction: row;
	/* Safari */
	flex-direction: row;
}

.entry-detail .entry-body .media-block.type-img-left .media-block__media {
	margin: 0 30px 0 0;
	display: block;
	width: auto;
}

.entry-detail .entry-body .img-left {
	margin: 0 30px 30px 0;
	display: block;
	width: auto;
	float: left;
}

.entry-detail .entry-body .column-block.column1 .column-block__item img {
	width: 100%;
	margin-bottom: 10px;
}

.entry-detail .entry-body .column-block.column2 {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
}

.entry-detail .entry-body .column-block.column2 .column-block__item {
	width: 470px;
	text-align: center;
}

.entry-detail .entry-body .column-block.column2 .column-block__item img {
	max-width: 100%;
	margin-bottom: 10px;
}

.entry-detail .entry-body .column-block.column3 {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
}

.entry-detail .entry-body .column-block.column3 .column-block__item {
	width: 307px;
	text-align: center;
}

.entry-detail .entry-body .column-block.column3 .column-block__item img {
	max-width: 100%;
	margin-bottom: 10px;
}

.entry-detail .entry-body .button-group01 {
	text-align: center;
	letter-spacing: 0.14em;
	width: 365px;
	margin: 0 auto 30px;
	position: relative;
}

.entry-detail .entry-body .button-group01::before, .entry-detail .entry-body .button-group01::after {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.entry-detail .entry-body .button-group01::before {
	left: 24px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #013895;
	border-right: 2px solid #013895;
	transition: all .3s;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 1;
}

.entry-detail .entry-body .button-group01 .button-type01 {
	color: inherit;
	text-decoration: none;
	padding: 14px 55px;
	border: 1px solid #DCDCDC;
	border-radius: 30px;
	line-height: 1.5;
	transition: all .3s;
	display: block;
	position: relative;
}

.entry-detail .entry-body .button-group01 .button-type01[href$="pdf"]::after {
	content: "PDF";
	display: inline-block;
	font-size: 8px;
	color: #e10000;
	padding: 2px 5px;
	border: 1px solid #e10000;
	line-height: 1;
	position: absolute;
	right: 20px;
	letter-spacing: 0;
	top: 36%;
	transition: all .3s;
}

@media screen and (min-width: 751px) {
	.entry-detail .button-group01:hover::before {
		border-top-color: white;
		border-right-color: white;
	}
	.entry-detail .button-group01:hover .button-type01 {
		background-color: #013895;
		color: white;
	}
	.entry-detail .button-group01:hover .button-type01[href$="pdf"]::after {
		color: white;
		border-color: white;
	}
}

@media screen and (max-width: 750px) {
	.entry-head {
		margin-bottom: 20px;
	}
	.entry-head .entry-head__date {
		font-size: 12px;
	}
	.entry-head .entry-head__title {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.entry-detail .entry-body h1 {
		font-size: 13px;
		margin-bottom: 30px;
	}
	.entry-detail .entry-body h2 {
		font-size: 12px;
		margin-bottom: 10px;
		border-left: 2px solid #013895;
		padding: 0 0 0 5px;
		line-height: 1.5;
	}
	.entry-detail .entry-body p {
		font-size: 12px;
		margin-bottom: 15px;
	}
	.entry-detail .entry-body p.small {
		font-size: 10px;
		margin-bottom: 25px;
	}
	.entry-detail .entry-body table {
		margin-bottom: 25px;
	}
	.entry-detail .entry-body table th, .entry-detail .entry-body table td {
		padding: 5px;
		font-size: 10px;
		line-height: 1.5;
	}
	.entry-detail .entry-body figure {
		margin: 0 auto 35px;
		display: block;
		width: auto;
	}
	.entry-detail .entry-body figure img {
		width: 100%;
	}
	.entry-detail .entry-body figure figcaption {
		font-size: 12px;
	}
	.entry-detail .entry-body > div {
		margin-bottom: 35px;
	}
	.entry-detail .entry-body .media-block.type-img-right {
		display: block;
	}
	.entry-detail .entry-body .media-block.type-img-right .media-block__media {
		float: right;
		margin: 0 0 15px 15px;
		width: 40%;
	}
	.entry-detail .entry-body .media-block.type-img-right .media-block__media img {
		margin-bottom: 0;
	}
	.entry-detail .entry-body .img-right {
		margin: 0 0 15px 15px;
		width: 40%;
	}
	.entry-detail .entry-body .media-block.type-img-left {
		display: block;
	}
	.entry-detail .entry-body .media-block.type-img-left .media-block__media {
		float: left;
		margin: 0 15px 15px 0;
		width: 40%;
	}
	.entry-detail .entry-body .media-block.type-img-left .media-block__media img {
		margin-bottom: 0;
	}
	.entry-detail .entry-body .img-left {
		margin: 0 15px 15px 0;
		width: 40%;
	}
	.entry-detail .entry-body .column-block.column2 .column-block__item {
		width: 48%;
	}
	.entry-detail .entry-body .column-block.column2 .column-block__item img {
		width: 100%;
	}
	.entry-detail .entry-body .column-block.column3 {
		-webkit-flex-wrap: wrap;
		/* Safari */
		flex-wrap: wrap;
		margin-bottom: 15px;
	}
	.entry-detail .entry-body .column-block.column3 .column-block__item {
		width: 48%;
		margin-bottom: 20px;
	}
	.entry-detail .entry-body .column-block.column3 .column-block__item img {
		width: 100%;
	}
	.entry-detail .entry-body .button-group01 {
		width: 74%;
		margin: 0 auto 15px;
	}
	.entry-detail .entry-body .button-group01::before {
		left: 15px;
		width: 4px;
		height: 4px;
		border-top: 1px solid #013895;
		border-right: 1px solid #013895;
	}
	.entry-detail .entry-body .button-group01 .button-type01 {
		padding: 12px 50px;
		font-size: 12px;
	}
	.entry-detail .entry-body .button-group01 .button-type01[href$="pdf"] {
		font-size: 10px;
	}
	.entry-detail .entry-body .button-group01 .button-type01[href$="pdf"]::after {
		padding: 2px;
		border: 1px solid #e10000;
		right: 12px;
	}
}

.back-news-top {
	padding-top: 50px;
	border-top: 1px solid #DCDCDC;
	margin-top: 50px;
}

.back-news-top .tpl-base-btn {
	width: 365px;
	margin: auto;
}

@media screen and (max-width: 750px) {
	.back-news-top {
		padding-top: 25px;
		margin-top: 25px;
	}
	.back-news-top .tpl-base-btn {
		width: 74%;
	}
}

.blank-contents {
	padding: 160px 0 110px;
}

@media screen and (max-width: 750px) {
	.blank-contents {
		padding: 50px 0 60px;
	}
}

.freeword-saeach .search-block {
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.freeword-saeach .search-block label {
	padding-top: 11px;
}

@media only screen and (max-width: 750px) {
	.freeword-saeach .search-block label {
		padding-top: 0;
	}
}

@media only screen and (max-width: 750px) {
	.freeword-saeach .search-block .input-block-wrap {
		position: relative;
	}
}

@media only screen and (max-width: 750px) {
	.freeword-saeach .search-block .input-block-wrap input[type="submit"] {
		margin: 25px auto 0;
	}
}

.freeword-saeach .search-block .input-block-wrap .freeword-saeach-error-messe {
	margin: 1px 0 0 30px;
	font-size: 15px;
	color: #ff0000;
	display: none;
}

@media only screen and (max-width: 750px) {
	.freeword-saeach .search-block .input-block-wrap .freeword-saeach-error-messe {
		margin: 0;
		font-size: 10px;
		position: absolute;
		top: 46px;
		left: 0;
	}
}

.freeword-saeach.error .search-block .input-block {
	border-color: #FF0000;
}

@media only screen and (max-width: 750px) {
	.freeword-saeach.error .search-block .input-block input[type="text"] {
		border-color: #FF0000;
	}
}

.freeword-saeach.error .search-block .freeword-saeach-error-messe {
	display: block;
}

.contact-box {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-flex-wrap: wrap;
	/* Safari */
	flex-wrap: wrap;
	margin-bottom: -30px;
}

@media only screen and (max-width: 750px) {
	.contact-box {
		display: block;
		margin-bottom: -20px;
	}
}

.contact-box > li {
	padding: 40px 40px 30px;
	border: 1px solid #DCDCDC;
	width: 400px;
	margin-right: 30px;
	margin-bottom: 30px;
}

@media only screen and (max-width: 750px) {
	.contact-box > li {
		padding: 30px 40px 20px;
		width: auto;
		margin-right: 0;
		margin-bottom: 25px;
	}
}

.contact-box > li:nth-child(3n) {
	margin-right: 0;
}

.contact-box > li .sec-02--box--img {
	padding-top: 45%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-bottom: 35px;
}

@media only screen and (max-width: 750px) {
	.contact-box > li .sec-02--box--img {
		margin-bottom: 30px;
	}
}

.contact-box > li .sec-02--box--ttl {
	text-align: center;
	color: #013895;
	font-weight: 500;
	margin-bottom: 20px;
}

.contact-box > li .sec-02--box--link li {
	padding-bottom: 10px;
	border-bottom: 1px solid #CCCCCC;
	margin-bottom: 10px;
}

.contact-box > li .sec-02--box--link li:last-child {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.contact-box > li .sec-02--box--link li a {
	font-size: 14px;
	color: inherit;
	text-decoration: none;
	display: block;
	padding-right: 15px;
}

@media only screen and (max-width: 750px) {
	.contact-box > li .sec-02--box--link li a {
		font-size: 12px;
	}
}

@media only screen and (min-width: 751px) {
	.contact-box > li .sec-02--box--link li a:hover {
		color: #013895;
	}
}

.mfp-close-btn-in .mfp-close {
	cursor: pointer;
	color: white;
	width: auto;
	height: auto;
	line-height: 1;
	opacity: 1;
	text-align: left;
	padding: 0;
	top: -42px;
	font-size: 16px;
	letter-spacing: 0.1em;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
}

@media screen and (max-width: 750px) {
	.mfp-close-btn-in .mfp-close {
		top: -28px;
		font-size: 12px;
	}
}

.mfp-close-btn-in .mfp-close img {
	vertical-align: middle;
	margin-left: 10px;
}

@media screen and (max-width: 750px) {
	.mfp-close-btn-in .mfp-close img {
		width: 16px;
		margin-left: 5px;
	}
}

.contact-gray-box {
	background-color: #EEEEEE;
	padding: 30px 50px;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
	-webkit-align-items: center;
	/* Safari */
	align-items: center;
}

@media only screen and (max-width: 750px) {
	.contact-gray-box {
		padding: 20px 25px;
		display: block;
	}
}

.contact-gray-box .tpl-text {
	margin-bottom: 0;
}

@media only screen and (max-width: 750px) {
	.contact-gray-box .tpl-text {
		margin-bottom: 15px;
	}
}

.contact-gray-box .tpl-base-btn {
	width: 365px;
}

@media screen and (max-width: 750px) {
	.contact-gray-box .tpl-base-btn {
		width: 100%;
	}
}

.read-more-accordion {
	position: relative;
	height: 250px;
	overflow: hidden;
}

@media screen and (max-width: 750px) {
	.read-more-accordion {
		height: auto !important;
	}
}

.read-more-accordion.show {
	height: auto !important;
}

.read-more-accordion-btn {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	height: 130px;
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: center;
	/* Safari */
	justify-content: center;
	-webkit-align-items: flex-end;
	/* Safari */
	align-items: flex-end;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

@media screen and (max-width: 750px) {
	.read-more-accordion-btn {
		display: none;
	}
}

.read-more-accordion-btn p {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	line-height: 1;
	cursor: pointer;
}

.read-more-accordion-btn p::before, .read-more-accordion-btn p::after {
	content: "";
	display: block;
	width: 10px;
	height: 2px;
	background-color: #013895;
	position: absolute;
	left: 0;
	top: 8px;
	margin: auto;
}

.read-more-accordion-btn p::after {
	transform: rotate(90deg);
}

/* .tpl-box
-----------------------------*/
.tpl-box {
	border: 1px solid #DCDCDC;
	padding: 20px 30px;
	margin-bottom: 30px;
}

.tpl-box:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 750px) {
	.tpl-box {
		padding: 10px 15px;
		margin-bottom: 15px;
	}
	.tpl-box:last-child {
		margin-bottom: 0;
	}
}

/* .tpl-btn-column2
-----------------------------*/
.tpl-btn-column2 {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-justify-content: space-between;
	/* Safari */
	justify-content: space-between;
	width: 620px;
	margin: auto;
}

.tpl-btn-column2 .tpl-base-btn {
	width: 300px;
}

@media screen and (max-width: 750px) {
	.tpl-btn-column2 {
		display: -webkit-flex;
		/* Safari */
		display: flex;
		-webkit-justify-content: space-between;
		/* Safari */
		justify-content: space-between;
		width: 100%;
		margin: auto;
	}
	.tpl-btn-column2 .tpl-base-btn {
		width: 48%;
	}
}

/***********  12-09-2018 **********/
.container{
    max-width:1200px;
    margin: auto;
    padding: 0 15px;
}
.clearfix{
    clear: both;
}
h1.nitto_logo span {
    font-size: 20px;
/*     vertical-align: middle;
    position: relative;
    top: -9px;
    left: 15px; */
}
.breadcrumb{
    padding: .75rem 3rem !important;
    margin-bottom: 0px !important;
}
li.breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
}
li.breadcrumb-item a{
    color: #003894;
}
.breadcrumb-item.active {
    color: #333 !important;
}
.menu{
    background:#e6e6e6;
}
.menu .nav-link {
    display: block;
    padding: 0rem 2rem !important;
    color: #1a1a1a;
    font-size: 14px;
    border-right: 1px solid #fff;
    font-weight: 500;
}
.menu li.nav-item:hover>a {
    background: #003894;
    color: #fff;
    border-radius: 4px;
}
.menu .dropdown-item{
    font-weight: 500;
    color: #fff !important;
    font-size:13px;
    border-bottom:1px solid #686768 !important;
    padding:7px 15px !important;
}
.menu .dropdown-item:focus, .dropdown-item:hover{
    background: #00A79D !important;
}
.menu .active-bg{
    background:#003894;
}
.menu .navbar-nav .nav-item .dropdown-menu{
    position: absolute;
    border: 0;
    box-shadow: 0 10px 30px rgba(136,130,143,0.30);
    border-radius: 0;
    padding:0;
    top:20px;
    min-width: 190px;
    border:1px solid #686768;
    left: auto;
    transition: all 0.5s ease;
    background:#808080;
    z-index: 999999999999;
	margin:0px;
}
 
.menu .navbar-nav .nav-item:hover .dropdown-menu{
    display: block !important;
    transition: all 0.5s ease;
     opacity: 0;
    -webkit-animation: fadein 1s;
    -moz-animation: fadein 1s;
    -ms-animation: fadein 1s;
    -o-animation: fadein 1s;
    animation: fadein 1s;
    opacity: 1;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Firefox */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari and Chrome */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


 
.main-visual.home_banner_slide{
    width:50%;
    float: left;
}

#home_banner_slide{
    position: relative;
}
#home_banner_slide  h1{
    color: #fff;
    font-size: 50px;
    font-weight: 900;
    text-align: center;
    text-shadow: 0 2px 13px #000;
    position: absolute;
    top: 15%;
    z-index:999;
    left: 0;
    right: 0;
    max-width: 1000px;
    margin: auto;
}
.slide_block img{
    max-width: 100%;
}
.slide_block{
    width:50%;
    float: left;
}
.home_banner_slider, .home_banner_slider2{
    overflow: hidden;
}
.home_banner_slider .owl-item, .home_banner_slider2 .owl-item{
    float: left;
}
.slide_item{
    height:600px;
    width: 100%;
    background-size: cover !important;
    background-position: center center !important;
}
.slide_block .owl-dots {
    text-align: center;
    top: -37px;
    z-index: 99999;
    position: relative;
}
.slide_block button.owl-dot {
    display: inline-block;
    outline:none;
}
.slide_block button.owl-dot span {
    background: #2e3192;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin: 2px;
    border-radius: 100%;
    cursor: pointer;
}
.slide_block button.active span{
	    background: #f15a29 !important;
}
.slide_block .owl-nav {
    display: none;
}

.product_series{
    padding:40px 0;
}
.prd_series_block {
    padding: 5px 15px;
    transition: all 0.5s ease;
    min-height:198px;
}

.prd_series_block:hover{
    background: #cceffc;
}

.prd_head_row{
    padding-bottom:10px;
}
.prd_head_row h3{
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    /*border-left: 2px solid #5087C7;*/
    padding-left: 6px;
    line-height: 16px;
    margin: 6px 0;
}
.prd_head_row p{
    font-size:13px;
    color: #1a1a1a;
    font-style: italic;
}
.prd_image{
    width: 130px;
    float: left;
    margin-right: 15px;
}
.prd_image img{
    max-width:100%;
}
.prd_list {
    padding-left: 145px;
}
.prd_list ul{
    margin: 0;
    padding: 0;
}
.prd_list ul li{
    list-style: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 12px;
    position: relative;
    padding-left: 13px;
}
.prd_list ul li:before {
    content: '\f111';
    font: normal normal normal 8px/1 FontAwesome;
    position: absolute;
    top: 6px;
    left: 0;
    color: #5087c7;
}
.home_product_slider{
    position: relative;
}
.home_product_slider .owl-stage-outer{
    overflow: hidden;
    position: relative;
    border-right: 2px solid #003894;
}
.home_product_slider .owl-item{
    float: left;
	display:flex;
	border: 2px solid #003894;
    border-right:0px; 
 }
.owl-stage {
    display: flex;
	/*border: 2px solid #003894;
	border-right: 0px;*/
}

.product_series button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
}
.product_series button.owl-next {
    position: absolute;
	top: 50%;
    transform: translateY(-50%);
    right: -20px;
}

.product_series button.owl-next span{
    width: 32px;
    height: 33px;
    display: inline-block;
    background: url(../img/next_img.png) no-repeat;
    cursor: pointer;
    text-indent: -999999px;
}
.product_series button.owl-prev span{
    width: 32px;
    height: 33px;
    display: inline-block;
    background: url(../img/prev_img.png) no-repeat;
    cursor: pointer;
    text-indent: -999999px;
}


.product_categorie{
    padding-bottom:20px;
}
.section_heading:after {
    content: '';
    border-bottom: 3px solid #e6e6e6;
    display: block;
    margin-bottom:20px;
}
.section_heading h2{
    color: #4c4c4c;
    font-size: 22px;
    font-weight: 500;
    /*border-bottom: 2px solid #e6e6e6;*/
    padding-bottom:3px;
    margin-bottom: 15px;
    border-left:8px solid #00a79d;
    padding-left: 10px;
}
.prd_categorie_block{
    border-left:4px solid #22408e;
    padding-left:10px; 
    margin-bottom: 30px;
}
.prd_categorie_block h4{
    color:#4c4c4c;
    font-size:16px; 
    border-bottom:4px solid #9db4dd;
    padding-bottom: 10px;
    margin-bottom: 10px;   
    min-height: 50px; 
}
.prd_categorie_block p{
    color:#1a1a1a;
    font-size:14px;
    font-weight:500;
    margin-top:5px;
}
.cat_prd_img{
    text-align: center;
}
.cat_prd_img:hover{
    text-decoration: none;
}
.cat_prd_img img{
    max-height:180px;
    width: auto;
    margin: auto;
    display: block;
    max-width: 100%;
}
.cat-img-block{
    min-height: 80px;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 0 5px;
}
.desc_block{
    background:#e6e6e6;
    padding: 10px;
}
.desc_block p{
    color:#333;
    font-size:13px;
    font-style: italic;
    margin-bottom: 0;
    margin-top: 0;
}

.application_prd_img{
    display: flex;
    align-items: center;
}
.app_prd_item img{
    max-width: 100%;
    height: auto;
}
.download_img{
    width: 104px;
    float: left;
}
.download_img img{
   width: 104px;
   height: 144px;
}
.prd_categorie_block.d_block{
   padding-left:0; 
 }
.prd_categorie_block.d_block h4{
    border-bottom: 0px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    font-size: 14px;
    min-height: 69px;
    color: #000;
}
.d_content{
    padding-left:104px;
}
.d_content .desc_block{
    min-height:75px;
}
.more_btn{
    background:#22408e;
    padding: 5px 10px;
    color: #fff;
    font-size: 13px;
    border-radius:4px; 
    display: inline-block;
    text-decoration:none !important;
    vertical-align: middle;
}
.more_btn:hover{
    color:#fff;
}

.video_row .desc_block a{
    color:#000;
    text-decoration: none;
}
.video_row .prd_categorie_block:hover .desc_block{
     background:rgba(0,174,239,0.20);
}
.app_prd_item {
    position: relative;
	width:100%
}
.video_row .prd_categorie_block:hover .app_prd_item:after {
    /*content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0,174,239,0.20);*/
}
.tradeshow_table table{
    border-left: 4px solid #22408e !important;
}
.tradeshow_table thead tr th{
    background:#1b75bc;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
.tradeshow_table tbody tr:nth-child(odd) td{
    background:#fff;
}
.tradeshow_table tbody tr:nth-child(even) td{
    background:#e6e6e6;
}
.paddingLeft20{
    padding-left: 20px;
}

.cupla_selection_btn{
    border-radius: 10px;
    padding: 10px 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    background: #47569b;
    text-align: center;
    text-decoration: none !important;
}
.cupla_selection_btn:hover{
    color:#fff;
}
.product_cat_list ul{
    padding: 0;
    margin: 0;
}
.product_cat_list ul li{
    list-style:none;
    width:95%;
    display: block;
	float: left;
	position: relative;
}
.product_cat_list ul li span {
    position: absolute;
    left: -15px;
    top: 5px;
}
.product_cat_list ul li a{
    color: #636363;
    font-size:18px;
    font-weight: 800;
    padding-bottom:5px;
    margin-bottom:5px;
    display: inline-block;
    text-decoration: none !important;
    border-left: 6px solid transparent;
    padding-left:18px;
    border-bottom: 4px solid transparent;
    display: block;
}
section.applicatin_section_main .container {
    border-bottom: 2px solid #e6e6e6;
    padding-bottom: 20px;
}


.product_cat_list  ul li a.active{
    border-bottom: 4px solid #9db4dd;
    /* border-left: 6px solid #00a79d; */
}
.product_cat_list  ul li a:hover{
    border-bottom: 4px solid #9db4dd;
    /* border-left: 6px solid #00a79d; */
}





/**************Product Page Css**************/

.product{
	width: 100%;
    padding: 15px;
}
.text-box{  
	padding-left: 132px;
}
.product .heading-text{
	color:#636363;
	padding: 18px 0px 18px 0px;
}
.product ul{
	padding: 0px;
 /*    border-bottom: 2px solid #5b57a6; */
     border-bottom: 2px solid #eceded;
    margin-bottom: 14px;
    border-bottom-style: dashed;
}
.product ul li{
	float: none;
    display: inline-block;
    text-decoration: none;
	vertical-align: top;
    border-left: 7px solid #22408e;
    padding: 10px 7px 3px 15px;
    margin-bottom: 14px;
	width: 33%;
	text-align:center;
}
.product ul li img{
	/* float: left; */
    margin-right: 0px;
	width:auto;
	height:103px;
}
.product ul li h5{
    border-bottom: 2px solid #9db4dd;
    padding-bottom: 6px;
}
.product ul li h5 a{
    color: #222;
    text-decoration: none;
	font-weight:600;
}
.product ul li p{
	display: block;
}
.cat-image-bg{
/*     background:#f7f8f8;
    border:1px solid #eee; 
    float: left;*/
}



.heading-text {
    color: #636363;
/*     padding: 3px 4px 9px 19px;
    border-left: 8px solid #00a79d;
    margin-top: 10px; */
    display: inline-block;
	border-bottom: 4px solid #9db4dd;
	padding-bottom:5px;
}


.footer-social-links a {
    background: #fff;
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 100%;
    padding-top:3px;
    margin: 0px 5px 10px;
    text-align: center;
}



/*=========responsive==========*/

@media screen and (max-width:1170px){
.product ul li {
    width: 49%;
}
        
#tpl-header{
   min-width: 100%;
}
    
#tpl-footer{
   min-width: 100%;
}
    
.tpl-inner-wrap{
    width: 100%;
}
    
.product_series button.owl-prev{
    top: 95px;
    left: -20px; 
        
    }
.product_series button.owl-next{
    top: 95px;
    right: -20px; 
        
    }
    
body.e #tpl-footer .tpl-inner-wrap .tpl-footer-link dl{
    min-width: 187px;
    padding-left: 50px;

}
    
}
@media (min-width:641px) and (max-width:1170px){
	.product ul {
		display: inline !important;
	}
}

@media screen and (max-width:1024px){
.product ul li {
    width: 49%;
}
        
#tpl-header{
   min-width: 100%;
}
    
#tpl-footer{
   min-width: 100%;
}
    
.tpl-inner-wrap{
    width: 100%;
}
    
.product_series button.owl-prev{
    top: 95px;
    left: -20px; 
        
    }
.product_series button.owl-next{
    top: 95px;
    right: -20px; 
        
    }
    
body.e #tpl-footer .tpl-inner-wrap .tpl-footer-link dl{
    min-width: 187px;
    padding-left: 50px;

}
    
}


@media screen and (max-width: 768px){
.product ul li {
    width: 49%;
}
    
.menu .navbar {
    padding: 35px 0px 20px;
}
    
#tpl-header{
   min-width: 100%;
}
#tpl-footer{
   min-width: 100%;
}
.menu .nav-link {
    display: block;
    padding: 15px 15px!important;
    color: #1a1a1a;
    font-size: 14px;
    border-right: none;
    border-bottom: 1px solid #cccbcb!important;
}
.menu .navbar-nav .nav-item .dropdown-menu {
    left: 0px;
    right: 0px;
    top: 50px;
}
    .prd_categorie_block h4{
        font-size: 12px;
}
    
.tpl-inner-wrap{
    width: 100%;
}  
    body.e #tpl-footer .tpl-inner-wrap .tpl-footer-link dl{
        min-width: 187px;
        padding-left: 50px;

}
    #home_banner_slide h1{  
        font-size: 40px;
        left: 45px;
    }
    h1.nitto_logo span{     
    font-size: 14px;
    vertical-align: middle;
    position: relative;
    top: -7px;
    left: 3px;
    }
    
    .menu button.navbar-toggler {
    float: right;
    position: absolute;
    right: 0;
    margin-right: 12px;
    padding: 10px 1px;
    overflow: hidden;
    /* margin-top: -20px; */
    top: 0;
    outline: none;
}
}


@media screen and (max-width: 767px){
.product ul li {
    width: 49%;
}
 
#tpl-header .sp-menu-btn .menu-trigger, #tpl-header .sp-menu-btn .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
    #tpl-header .sp-menu-btn .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #013895;
    border-radius: 4px;
}
h1.nitto_logo span {
    font-size: 18px;
    vertical-align: middle;
    position: relative;
    top: -7px;
    left: 3px;
}
#tpl-header .sp-menu-btn > p{
        display: none;
    }
    
.tradeshow_table thead tr th {
        font-size: 13px;
        font-weight: 300;
        padding: 10px 0 11px 0;
}
    
#home_banner_slide h1{
    font-size: 30px;
    top: 15%;
    left: 41px;
    }
.home_banner_product_slider .owl-item .slide_item {
    height: 140px !important;
}
.home_banner_product_slider{
	    top: 50% !important;
}
.product_series button.owl-next {
    position: absolute;
    top: 164px;
    right: -19px;
}
.product_series button.owl-prev {
    position: absolute;
    top: 164px;
    left: -19px;
}
.paddingLeft20 {
    padding-left: 12px;
}
    
.tradeshow_table thead tr th {
    font-size: 14px;
    font-weight: 300;
    padding: 10px 0 11px 0;
}
    
.slide_item {
    height: 344px;
}
.product_series {
    padding: 15px 0 0;
    margin-bottom: 20px;
}
    
.menu .nav-link {
    display: block;
    padding: 15px 15px!important;
    color: #1a1a1a;
    font-size: 14px;
    border-right:none;
    border-bottom: 1px solid #cccbcb!important;
}
    .menu .navbar-nav .nav-item .dropdown-menu { 
        left: 0px;right: 0px;
        top: 50px;
            
    }
    
.menu button.navbar-toggler {
    float: right;
    position: absolute;
    right: 0;
    margin-right: 12px;
    padding: 10px 1px;
    overflow: hidden;
    /* margin-top: -20px; */
    top: 0;
    outline: none;
}
    
.menu .navbar{
    padding: 35px 0px 20px;
}
    
.heading-text{
    font-size: 19px;
}
    
.product ul li h5{
    font-size: 14px;
}
    
.text-box {
    padding-left: 116px;
}
.product_cat_list ul li a{
    font-size: 14px;
    padding-left: 15px !important;
    
}
   
.product_cat_list ul li {
    list-style: none;
    width: 100%;
    display: block;
}
.product_cat_list ul li a {
    font-size: 15px;
    padding: 0px 6px 0px;
    margin: 6px -12px;
}
	
}



@media screen and (max-width: 640px){
.product ul li {
    width: 100%;
}
.home_banner_product_slider {
    top: 45% !important;
    left: 10% !important;
}
.product ul li img {
    width: 100px;
    height: auto;
}
}

@media screen and (max-width: 480px){
	.product ul li {
    width: 100%;
}
    
    .product ul li h5 {

    font-size: 17px;
}

/*.product ul li img {
	
    width: 100px;
    height: 90px;
}*/
    
h1.nitto_logo span {
        font-size: 15px;
        vertical-align: middle;
        position: relative;
        top: -14px;
        left: 3px;
}
#tpl-header .sp-menu-btn > p{
        display: none;
    }
    
.tradeshow_table thead tr th {
        font-size: 13px;
        font-weight: 300;
        padding: 10px 0 11px 0;
}
    
#home_banner_slide h1{
    font-size: 27px;
    top: 12%;
    left: 9px;
    }
    
    
    .product_series button.owl-next {
    position: absolute;
    top: 82px;
    right: -15px;
}
.product_series button.owl-prev {
    position: absolute;
    top: 82px;
    left: -15px;
}
.paddingLeft20 {
    padding-left: 12px;
}
    
.tradeshow_table thead tr th {
    font-size: 14px;
    font-weight: 300;
    padding: 10px 0 11px 0;
}
    
    .slide_item {
    height: 344px;
}
    .product_series {
    padding: 15px 0 0;
    margin-bottom: 20px;
}
    
.menu .nav-link {
    display: block;
    padding: 15px 15px!important;
    color: #1a1a1a;
    font-size: 14px;
    border-right:none;
    border-bottom: 1px solid #cccbcb!important;
}
    .menu .navbar-nav .nav-item .dropdown-menu { 
        left: 0px;right: 0px;
        top: 50px;
            
    }
    
.menu button.navbar-toggler {
    float: right;
    position: absolute;
    right: 0;
    margin-right: 12px;
    padding: 10px 1px;
    overflow: hidden;
    /* margin-top: -20px; */
    top: 0;
    outline: none;
}
    
.menu .navbar{
    padding: 35px 0px 20px;
}
    
.heading-text{
    font-size: 19px;
}
    
.product ul li h5{
    font-size: 14px;
}
    
.text-box {
    padding-left: 116px;
}
.product_cat_list ul li a{
    font-size: 14px;
    
}
   
.product_cat_list ul li {
    list-style: none;
    width: 100%;
    display: block;
}
.product_cat_list ul li a {
    font-size: 15px;
    padding: 0px 6px 0px;
    margin: 6px -12px;
}
 
    
}
@media screen and (max-width: 400px){
	
.product ul li p {
	
	font-size: 13px;
}
	
.product ul li h5 {

    font-size: 17px;
}

/*.product ul li img {
	
    width: 100px;
    height: 90px;
}*/
    
h1.nitto_logo span {
        font-size: 15px;
        vertical-align: middle;
        position: relative;
        top: -14px;
        left: 3px;
}
#tpl-header .sp-menu-btn > p{
        display: none;
    }
    
.tradeshow_table thead tr th {
        font-size: 13px;
        font-weight: 300;
        padding: 10px 0 11px 0;
}
    
#home_banner_slide h1{
    font-size: 37px;
    top: 31%;
    left: 9px;
    }
    
    
    .product_series button.owl-next {
    position: absolute;
    top: 97px;
    right: -15px;
}
.product_series button.owl-prev {
    position: absolute;
    top: 97px;
    left: -15px;
}
.paddingLeft20 {
    padding-left: 12px;
}
    
.tradeshow_table thead tr th {
    font-size: 14px;
    font-weight: 300;
    padding: 10px 0 11px 0;
}
    
    .slide_item {
    height: 344px;
}
    .product_series {
    padding: 15px 0 0;
    margin-bottom: 20px;
}
    
.menu .nav-link {
    display: block;
    padding: 15px 15px!important;
    color: #1a1a1a;
    font-size: 14px;
    border-right:none;
    border-bottom: 1px solid #cccbcb!important;
}
    .menu .navbar-nav .nav-item .dropdown-menu { 
        left: 0px;right: 0px;
        top: 50px;
            
    }
    
.menu button.navbar-toggler {
    float: right;
    position: absolute;
    right: 0;
    margin-right: 12px;
    padding: 10px 1px;
    overflow: hidden;
    /* margin-top: -20px; */
    top: 0;
    outline: none;
}
    
.menu .navbar{
    padding: 35px 0px 20px;
}
    
.heading-text{
    font-size: 19px;
}
    
.product ul li h5{
    font-size: 14px;
}
    
.text-box {
    padding-left: 116px;
}
.product_cat_list ul li a{
    font-size: 14px;
    
}
   
.product_cat_list ul li {
    list-style: none;
    width: 100%;
    display: block;
}
.product_cat_list ul li a {
    font-size: 15px;
    padding: 0px 6px 0px;
    margin: 6px -12px;
}
 
	
}
@media screen and (max-width: 360px){
	.product_cat_list ul li a {
    font-size: 12px !important;
}
.product ul li {
    width: 100%;
}
    
    h1.nitto_logo span {
        font-size: 15px;
        vertical-align: middle;
        position: relative;
        top: -14px;
        left: 3px;
}
    #tpl-header .sp-menu-btn > p{
        display: none;
    }
    
    .tradeshow_table thead tr th {
        font-size: 13px;
        font-weight: 300;
        padding: 10px 0 11px 0;
}
    
#home_banner_slide h1{
        font-size:32px;
        top: 33%;
        left: 19px;
    }
    
.product_series button.owl-next {
    position: absolute;
    top: 97px;
    right: -15px;
}
.product_series button.owl-prev {
    position: absolute;
    top: 97px;
    left: -15px;
}
.paddingLeft20 {
    padding-left: 12px;
}
    
.tradeshow_table thead tr th {
    font-size: 14px;
    font-weight: 300;
    padding: 10px 0 11px 0;
}
    
    .slide_item {
    height: 344px;
}
    .product_series {
    padding: 15px 0 0;
}
    
.menu .nav-link {
    display: block;
    padding: 15px 15px!important;
    color: #1a1a1a;
    font-size: 14px;
    border-right:none;
    border-bottom: 1px solid #cccbcb!important;
}
    .menu .navbar-nav .nav-item .dropdown-menu { 
        left: 0px;right: 0px;
        top: 50px;
            
    }
    
.menu button.navbar-toggler {
    float: right;
    position: absolute;
    right: 0;
    margin-right: 12px;
    padding: 10px 1px;
    overflow: hidden;
    /* margin-top: -20px; */
    top: 0;
    outline: none;
}
    
.menu .navbar{
    padding: 35px 0px 20px;
}
    
.heading-text{
    font-size: 19px;
}
    
.product ul li h5{
    font-size: 14px;
}
    
.text-box {
    padding-left: 116px;
}
.product_cat_list ul li a{
    font-size: 14px;
    
}
   
.product_cat_list ul li {
    list-style: none;
    width: 100%;
    display: block;
}
.product_cat_list ul li a {
    font-size: 15px;
    padding: 0px 6px 0px;
    margin: 6px -12px;
}
    
.cupla_selection_btn {
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}
    
.product_catg_img img{ 
    width: 150px;
} 
.product_cat_list {
    padding-left: 15px!important;
}
	
}
@media screen and (max-width: 460px){
	#home_banner_slide h1{
        font-size:25px;
        top: 12%;
        left: 19px;
    }
}

@media screen and (max-width: 320px){
.product ul li {
    width: 100%;
}
    
    h1.nitto_logo span {
    font-size: 15px;
    vertical-align: middle;
    position: relative;
    top: -14px;
    left: 3px;
}
#tpl-header .sp-menu-btn > p{
        display: none;
    }
.product_series {
    padding: 29px 0px 0px;
} 
.product_series button.owl-next {
    position: absolute;
    top: 97px;
    right: -15px;
}
 .product_series button.owl-prev {
    position: absolute;
    top: 97px;
    left: -15px;
}
.paddingLeft20 {
    padding-left: 14px;
}
    
 .tradeshow_table thead tr th {
    font-size: 13px;
    font-weight: 300;
    padding: 10px 0 11px 0;
}
    
.slide_item {
    height: 344px;
}
    
.heading-text{
    font-size: 19px;
}
.product ul li h5{
    font-size: 14px;
}
.text-box {
    padding-left: 116px;
}
.product_cat_list ul li a{
    font-size: 14px;
    
}
.cupla_selection_btn{
    font-size: 14px;
    }
.product_catg_img img {
    max-height: 200px;
}
	
    	
}


.product_catg_img{
    float: left;
}

.product_cat_list {
    padding-left: 20px;
}
.product_catg_img img {
    max-height: 300px;
	max-width:100%;
}
.product ul li:hover {
    background: #cceffc;
}
#tpl-header .main-block h1 a.alpha-over:hover {
    color: transparent;
}
.prd_head_row h3:before {
    content: '';
    background-image: url('/assets/common/img/blue-icon.png.jpg');
}

.prd_head_row h3 span img {
    width: auto;
    height: 15px;
    margin-right: 5px;
    vertical-align: top;
}
.product .text-box{
	padding-left: 0px;
    text-align: left;
    padding-top: 10px;
}
.ap_main .col-md-7 .product_catg_img img {
    max-height: 180px;
    max-width:240px;
	    float: left;
}
.ap_product_image img {
    max-width: 100%;
    height: 250px;
	    float: left;
}
.ap_product_image {
    padding: 20px 0;
}
.ap_example ul {
    list-style: disc;
    margin: 0px 0px 0px 30px;
}
.ap_content {
    margin-bottom: 30px;
}
.ap_product ul li {
    float: none;
    display: inline-block;
    text-decoration: none;
    vertical-align: top;
    border-left: 7px solid #22408e;
    padding: 10px 7px 3px 15px;
    margin-bottom: 14px;
    width: 33%;
    text-align: center;
}
.ap_product {
    width: 100%;
    padding: 15px;
	margin-bottom: 5px;
}
.ap_product .text-box {
    padding-left: 0px;
    text-align: left;
    padding-top: 10px;
}
.ap_product ul li h5 {
    border-bottom: 2px solid #9db4dd;
    padding-bottom: 6px;
}
.ap_product ul li h5 a {
    color: #222;
    text-decoration: none;
}

@media screen and (max-width: 1170px){
.ap_product ul li {
    width: 49%;
}
}
@media screen and (max-width: 600px){
.ap_product ul li {
    width: 100%;
}
}
#home_banner_slide .slide_block{
	position:relative;
}
.home_banner_product_slider {
    position: absolute;
    overflow: hidden;
    z-index: 9;
	width:80%;
	top: 60%;
    left: 20%;
}
.home_banner_product_slider .owl-item .slide_item {
    height: 200px;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}
.prd_categorie_block ul {
    list-style: disc;
    padding-left: 20px;
    word-break: break-word;
}

.prd_categorie_block h4 a {
    color: #000;
}
.prd_categorie_block .cat-img-block:hover {
    background: #cceffc;
}
.app_prd_item:hover .application_overlay{
	display:block;
}
.application_overlay {
    position: absolute;
    background: rgba(204, 239, 252, 0.50);
    top: 0;
    bottom: 0;
    width: 100%;
    display: none;
}
section.product_categorie .row.paddingLeft20 {
    /* border-bottom: 2px solid #888; */
	border-bottom:none !important;
    border-bottom-style: dashed;
    margin-bottom: 10px;
}

a#dropdown::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.home_product_slider .owl-item a {
    display: flex;
}
.homepage_application .col-md-3 {
   /*  display: flex; */
}
.homepage_application .col-md-3 .desc_block {
    min-height: 270px;
}
.cupla_selection_btn .btn_click_cupla {
    margin-bottom: 0px;
    font-size: 15px;
}
.product_download {
    margin: 15px 0;
}
.product_download  .download_img {
    width: 120px;
}
.product_download .download_img img {
    width: 120px;
    height: 160px;
}
.product_download .d_content {
    padding-left: 120px;
}
.product_download .prd_categorie_block.d_block h4 {
    min-height: 75px;
}
.product_download .d_content .desc_block {
    min-height: 85px;
}
section.video_section_main {
    padding: 15px 0 100px 0;
}

.ap_product img.img-fluid {
    height: 200px;
}
.home_banner_slider2 .owl-dots {
    display: none;
}
.slide_block .home_banner_slider .owl-dots {
    position: absolute;
    width: 100%;
    left: 50%;
	bottom: 20px;
    top: auto;
    display: none;
}
.slide_block .home_banner_slider .owl-dots button.owl-dot span {
    width: 20px;
    height: 20px;
}
section.video_section_main .video_heading h3 {
    font-size: 20px;
	font-weight:600;
}
section.video_section_main .video_heading h3 span img {
    width: auto;
    height: 15px;
    margin-right: 5px;
    vertical-align: inherit;
}


section.video_section_main .row .col-md-6 {
    margin: 0 0 20px 0;
}
section.video_section_main .video_heading h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
}
section.video_section_main .row .col-md-6 .video_iframe iframe {
    width: 100%;
}

div#tpl-footer {
    text-align: -webkit-center;
}
div#tpl-footer p.footer_address {
    margin: 0px 0 5px 0;
    font-size: 16px;
}
div#tpl-footer h2 {
    font-size: 30px;
    margin: 0 0 15px 0;
}
p.footer_contact {
    margin: 0 0 15px 0;
}
p.footer_contact a{
    color: #fff;
}
p.footer_copyright {
    font-size: 14px;
    margin-bottom: 20px;
}
section.terms_of_use {
    padding: 0 0 80px 0;
}
section.terms_of_use .section_heading {
    margin: 50px 0 10px 0;
}
p.footer_copyright a {
    color: #fff;
}
@media(max-width:991px){
.ap_product_image img {
    height: auto;
    float: left;
    width: 51%;
}
.ap_main .col-md-7 .product_catg_img img {
    max-height: inherit;
    max-width: 60%;
    float: left;
}
}
.video_row .prd_categorie_block {
    border-left: 4px solid #22408e;
    padding-left: 10px;
    margin-bottom: 0px;
}
.video_row .desc_block {
    min-height: 70px;
}
section.applicatin_section_main {
    padding: 15px 0;
}
.product_cat_list ul li a {
    display: inline-block;
    padding-left: 5px;
    border-left: 0px;
}
.product_cat_list ul li span img {
    width: auto;
    height: 15px;
    margin-right: 15px;
    vertical-align: initial;
}
.heading-text span img {
    width: auto;
    height: 20px;
    margin-right: 5px;
    vertical-align: inherit;
	position: relative;
    top: 2px;
}
section.applicatin_section_secondary {
    margin: 0 0 30px 0;
}
.product_section_secondary .container {
    border-bottom: 2px solid #e6e6e6;
    padding-bottom: 40px;
}
section.product_section_main {
    padding-top: 15px;
}
.product_section_secondary .container {
    border-bottom: 2px solid #e6e6e6;
    padding-bottom: 20px;
    margin-bottom: 25px;
}
a.cupla_logo {
    position: relative;
    bottom: 8px;
    font-size: 20px;
    color: #000;
    font-weight: 600;
}
ol.breadcrumb {
    display: none;
}
@media(max-width:1200px){
	.product_cat_list ul li a {
    font-size: 14px;
	}
}
@media(max-width:991px) and (min-width:768px){
section.applicatin_section_main .col-md-12.ap_main .col-md-5 {
    max-width: 70% !important;
    flex: 7 0 60%;
}
section.applicatin_section_main .col-md-12.ap_main .col-md-7 {
    max-width: 40% !important;
    flex: 0 0 40%;
}
}


/* 09-09-2019 */

.row.video_row.paddingLeft20.contactus h5 {
    margin-bottom: 15px;
    font-size: 22px;
}

.row.video_row.paddingLeft20.contactus p {
    font-size: 16px;
    margin-bottom: 2px;
}

li.prd.company ul {
    border: none !important;
}


img.img-responsive.col-xs-12.aboutus-img {
    width: 100%;
    height: 100%;
}

dt.sp-menu-company a {
    color: #fff;
}
.product_main_container{
	margin-bottom: 80px;
}



/***********************/

li.company.products_dropdown.active{
    position: relative;
}

li.company.products_dropdown.active .gnav-bigpull.product_dd {
    min-width: 210px !important;
    width: auto !important;
    float: right !important;
    background: none !important;
     
    right: 0 !important;
    left: auto !important;
    top: 44px !important;
    
    height: auto !important;
    overflow: inherit !important;
}

li.company.products_dropdown.active .tpl-inner-wrap {
   /* width: 200px !important;*/
    padding-top: 2px !important;
}

li.company.products_dropdown.active .gnav-bigpull-link ul {
    width: auto !important;
    margin-right: -25px;
}

li.company.products_dropdown.active .gnav-bigpull-link ul li {
   /* width: 200px !important;
	margin:0 !important;*/
    margin-bottom: 0px !important;
    padding-left: 0px; !important;
    padding-right: 0px; !important;
}

li.company.products_dropdown.active .gnav-bigpull-link ul li a {
   /* width: 169px !important;*/
    border: 2px solid #000;
    padding: 10px 14px;
    background: #fff;
    color: #000 !important;
}

li.company.products_dropdown.prd-division-menu .tpl-inner-wrap {
    min-width:300px !important;
}

li.company p.contact-btn a{
    background: none !important;
    padding: 0 36px 0 44px !important;
}

li.prd.company.align-companyBtn p.contact-btn.tpl-arrow.down a{
    padding: 0 54px !important;
}

li.prd.company.align-companyBtn {
    max-width: 167px;
}

.mr-20{
    margin-right: 20px;
}
/*#tpl-gnav > ul > li .gnav-bigpull .tpl-inner-wrap {
    padding: 60px 0 190px;
    display: flex;
    float: right;
}*/
.prd-division-menu .tpl-inner-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 60px 0;
    width: 1260px;
    margin: 0 auto;
    clear: both;
}

.page_nitto_kokhi .prd-division-menu .tpl-inner-wrap {
	width: 100% !important;
}
.page_nitto_kokhi #tpl-header{
	min-width: 100%;
}
@media(min-width:320px) and (max-width:750px){
	h1.nitto_logo {
		padding-top: 11px;
	}
	a.cupla_logo {
		font-size: 15px !important;
		padding-top: 16px;
	}
}






/*-----------Mobile submenu header--------------------*/

/*------------------------------------------------*/

.menu span.right-arrow-icon:after{
        content: ">";
    }
    .menu span.right-arrow-icon{
            position: absolute;
            right: 1px;
            color: white;
            font-size: 16px;
            top: 5px;
    }
    #navbarsExample a.dropdown-item:after,
    #navbarsExample a#dropdown::after{
        opacity: 0;
    }
    li.nav-item.dropdown:hover span.dropdown_icon {
        color: #fff;
    }
    span.dropdown_icon{
        position: absolute;
        top: -2px;
        right: 18px;
    }
    
    @media(max-width:991px){
        span.dropdown_icon {
            top: 14px;
        }
        
        #navbarsExample ul.dropdown-menu li:hover ul.dd-submenu{
            display: block;
            position: static;
            width: 100%;
            margin-left: 15px;
        }
        .menu ul#demenu li a.dropdown-item {
            padding-right: 40px !important;
            width:80%;
        }
        .menu span.right-arrow-icon{
            z-index: 99;
            right: 0;
            padding: 0 10px;
        }
        #navbarsExample li a{
            display: inline-block; 
        }
        ul#demenu li {
            border-bottom: 1px solid #686768 !important;
        }
        ul#demenu li a, #navbarsExample .dd-submenu a, #navbarsExample ul.dropdown-menu li ul.dd-submenu li a{
             border-bottom: 0px !important;
        }
        .menu li.nav-item:hover {
            background: #003894;
        }
        .menu .nav-link {
            border-bottom: 0 !important;
        }
        .menu ul.navbar-nav.mr-auto li{
            border-bottom: 1px solid #cccbcb!important;
        }
        .menu .dropdown-item:focus, .dropdown-item:hover {
            background: #808080 !important;
        }
       
       
        .menu #demenu {
            display: none !important;
        }
        .menu  #demenu.toggled-on {
            display: block !important;
        }
        
        .menu ul.dd-submenu{
            display: none !important;
        }
        .menu ul.dd-submenu.submenu-toggle {
            display: block !important;
        }
        
    }