@charset "utf-8";

/*共通スタイル*/

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
}

body {
	display: none;
	background: rgba(244, 234, 220, 0.3);
	color: #565656;
	font-family: 'Noto Sans JP', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-size: 14px;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

i {
	margin-left: 4px;
}

@media only screen and (min-width: 768px) {
	.onlySp {
		display: none !important;
	}
}

@media only screen and (max-width: 767px) {
	.onlyPc {
		display: none !important;
	}
}

/* ----------------------------------------------------
modal window
---------------------------------------------------- */

.blocker {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 1;
	padding: 20px;
	box-sizing: border-box;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.75);
	text-align: center
}

.blocker:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.05em
}

.blocker.behind {
	background-color: transparent
}

.modal {
	display: none;
	vertical-align: middle;
	position: relative;
	z-index: 2;
	max-width: 500px;
	box-sizing: border-box;
	width: 90%;
	background: #fff;
	padding: 15px 30px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 10px #000;
	-moz-box-shadow: 0 0 10px #000;
	-o-box-shadow: 0 0 10px #000;
	-ms-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
	text-align: left
}

.modal a.close-modal {
	position: absolute;
	top: -12.5px;
	right: -12.5px;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==')
}

.modal-spinner {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	padding: 12px 16px;
	border-radius: 5px;
	background-color: #111;
	height: 20px
}

.modal-spinner>div {
	border-radius: 100px;
	background-color: #fff;
	height: 20px;
	width: 2px;
	margin: 0 1px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out
}

.modal-spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s
}

.modal-spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s
}

.modal-spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s
}

@-webkit-keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.5)
	}

	20% {
		-webkit-transform: scaleY(1.0)
	}
}

@keyframes sk-stretchdelay {

	0%,
	40%,
	100% {
		transform: scaleY(0.5);
		-webkit-transform: scaleY(0.5)
	}

	20% {
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0)
	}
}


/* ----------------------------------------------------
layout
---------------------------------------------------- */


.fjalla {
	font-family: 'Fjalla One', sans-serif;
}

.regular {
	font-weight: 400;
}

.bold {
	font-weight: 500;
}

.black {
	font-weight: 700;
}

img {
	max-width: 100%;
}

ul {
	list-style: none outside;
}

.clr:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clr {
	min-height: 1px;
	clear: both;
}

* html .clr {
	height: 1px;
	/*\*/
	/*/ height: auto; overflow: hidden; /**/
}

h1,
h2,
h3,
h4 {
	font-weight: bold;
}

a {
	text-decoration: none;
	color: #e72427;
	transition: 0.3s;
}

a:hover img {
	opacity: 0.8;
}

.btn {
	max-width: 240px;
	color: #fff;
	border-radius: 30px;
	display: block;
	text-align: center;
	padding: 10px 0;
	font-size: 17px;
	/*line-height:1.3;*/
	align-items: center;
}

.btn_red {
	background: #e72427;
}

.btn:hover {
	opacity: 0.7;
}

.centerBlock .btn {
	margin: 0 auto;
}


.btn_arrow {
	max-width: 420px;
	color: #d96d54;
	border-radius: 30px;
	display: block;
	text-align: center;
	padding: 10px 0;
	background: #fff url(/assets/img/common/ico_arrow_orange.png) no-repeat 95% center;
	position: relative;
	font-size: 18px;
	font-weight: bold;
	transition: 0.3s;
}

.btn_arrow:after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: -7px;
	left: 7px;
	width: 100%;
	height: 100%;
	background: url(/assets/img/common/bg_btn.png) no-repeat bottom center / 100% auto;
	transition: 0.3s;
}

.btn_arrow_red {
	color: #fff;
	background: #e72427 url(/assets/img/common/ico_arrow_white.png) no-repeat 95% center;
}

.btn_arrow_blue {
	color: #fff;
	background: #1C2C81 url(/assets/img/common/ico_arrow_white.png) no-repeat 95% center;
}

.btn_arrow:hover {
	top: 5px;
	left: 7px;
}

.btn_arrow:hover:after {
	bottom: -3px;
	left: 2px;
}

.btn_icon_white {
	max-width: 420px;
	color: #fff;
	border-radius: 30px;
	display: block;
	text-align: center;
	padding: 10px 0;
	background: #e72427 url(/assets/img/common/ico_arrow_white.png) no-repeat 95% center;
	position: relative;
	z-index: 2;
	font-size: 18px;
	font-weight: bold;
	transition: 0.3s;
}

.btn_icon_white:after {
	content: "";
	position: absolute;
	z-index: 0;
	bottom: -7px;
	left: 7px;
	width: 100%;
	height: 100%;
	background: url(/assets/img/common/bg_btn.png) no-repeat bottom center / 100% auto;
	transition: 0.3s;
}


.block {
	display: block;
}

.normal {
	font-weight: normal;
}

.centerText {
	text-align: center;
}

.leftText {
	text-align: left;
}

.rightText {
	text-align: right;
}

.centerBlock {
	margin: 0 auto !important;
}

.fleft {
	float: left;
}

.fright {
	float: right;
}

.red {
	color: #e72427;
}

.white {
	color: #fff;
}

.orange {
	color: #d03c1a;
}

.bg_beige {
	background: #ede6e0;
}

.bg_beige2 {
	background: #e8ded6;
}

.bg_gray {
	background: #f2f2f2;
}

.bg_gray2 {
	background: #f9f9f9;
}

.bg_white {
	background: #fff;
}

.bt_beige {
	border-top: 1px solid #ede6e0;
}

.bb_beige {
	border-bottom: 1px solid #ede6e0;
}

.small {
	font-size: 12px;
}

.relative {
	position: relative;
	z-index: 1;
}

.form_content {
	padding: 5% 0 0 5% !important;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

@media print,
screen and (max-width: 767px) {
	.sp {
		display: block;
	}

	.pc {
		display: none;
	}

	.header_global .teijin_logo {
		margin-top: -10px;
		margin-right: 10px;
	}

	.header_global--logo {
		height: 30px !important;
	}

	.header_global {
		height: 49px !important;
	}
}

#wrapper {
	max-width: 1560px;
	margin: 0 auto;
	background: #fff;
}

/* #header:before { content:""; display:block; height:105px; margin:-80px 0 0; } */
#header {
	position: absolute;
	z-index: 10;
	width: 100%;
	/*height: 80px;*/
	top: 0;
	text-align: center;
	background: rgba(255, 255, 255, 1);
	border-bottom: 1px solid #efefef;
	transition: 0.3s;
}

.header_global--logo {
	padding: 0;
	height: 45px;
	margin: 0 auto;
	backgound: #efefef;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_global--logo .teijin_logo {
	margin: 0 0 0 auto;
}

.header_global {
	max-width: 1380px;
	padding: 0 20px;
	height: 60px;
	margin: 0 auto;
	backgound: #efefef;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header img {
	display: block;
}

@media all and (-ms-high-contrast: none) {

	*::-ms-backdrop,
	#header .teijin_logo img {
		max-width: 162px;
	}

	/* IE11 */
}

#header h1 a {
	display: flex;
	align-items: center;
}

#header h1 em {
	padding-left: 20px;
	font-size: 12px;
	letter-spacing: 0.1em;
	color: #999;
}

#header h1 img {
	display: inline-block;
	max-width: 270px;
}

.header_global .teijin_logo {
	max-width: 162px;
}

/* modal window */
.active_modal #header {
	z-index: 8;
}

.active_modal #wrapper {
	position: relative;
	z-index: 1;
}

.active_modal .blocker {
	z-index: 100 !important;
}

#overlay {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
	background: rgba(0, 0, 0, .65);
}

#pop,
.modal {
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 99;
	transform: translate(-50%, -50%);
	max-width: 550px !important;
	box-sizing: border-box;
	padding: 20px 20px 30px;
	background: #fff;
	border: 5px solid #d6d6d6;
	border-radius: 10px;
	font-size: 16px;
}

.active_modal {
	display: block !important;
}

.form_wrapper {
	padding: 0 10px;
	font-weight: normal !important;
}

.form_lead {
	border-bottom: 1px dotted #ccc;
	border-top: 1px dotted #ccc;
	padding: 10px;
	margin: 10px 0 20px;
}

.close-modal_outer {
	position: absolute;
	top: -20px !important;
	right: -20px !important;
	background: #e72427 !important;
	color: #fff !important;
	width: 35px !important;
	height: 35px !important;
	cursor: pointer;
	border: none;
	border-radius: 50%;
	line-height: 35px;
	font-size: 35px;
	font-family: arial;
	text-align: center;
}

.close-modal:before {
	content: "×";
	position: absolute;
	top: 0;
	right: 9px;
	color: #fff;
	text-indent: 0 !important;
}

a.close-modal {
	display: none !important;
}

#pop .form_inner {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
}

#pop label {
	width: 20%;
}

#pop input {
	border: 1px solid #ccc;
	padding: 10px;
	width: 75%;
	font-size: 16px;
}

#pop button[type=submit] {
	background: #e92527;
	border: none;
	color: #fff;
	width: 200px;
	text-align: center;
	padding: 10px;
	border-radius: 30px;
	cursor: pointer;
	font-size: 18px;
}

@media print,
screen and (max-width:550px) {

	#pop,
	.modal {
		width: 100% !important;
		height: auto;
		padding: 50px 20px 20px !important;
		font-size: 15px;
	}

	.close-modal_outer {
		top: 12px !important;
		right: 12px !important;
	}

	.close-modal_outer:before {
		top: 1px;
		right: 10px;
	}

	#pop .form_inner {
		flex-wrap: wrap;
		margin: 10px 0 10px;
	}

	.form_lead {
		padding: 10px 5px;
	}

	#pop label {
		width: 100%;
	}

	#pop input {
		width: 100%;
	}
}




#drawerMenu button {
	position: fixed;
	top: 30px;
	z-index: 10;
}

#mainVisual {
	height: 470px;
	position: relative;
}

#home #mainVisual {
	height: 100vh;
}

#home #mainVisual:after {
	content: "";
	position: absolute;
	z-index: 1;
	/*top:calc(50% - 150px + 75px);height:300px;*/
	left: 0;
	width: 0%;
	top: calc(50% - 245px + 75px);
	height: 390px;
	background: rgba(255, 255, 255, 0.7);
	animation-name: fadeIn;
	animation-duration: 2s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-delay: 0.85s;
	opacity: 0;
}

@keyframes fadeIn {
	0% {
		width: 0;
		opacity: 0;
	}

	100% {
		width: 61%;
		opacity: 1;
	}
}

@keyframes fadeIn_wide {
	0% {
		width: 0;
		opacity: 0;
	}

	100% {
		width: 100%;
		opacity: 1;
	}
}

@media print,
screen and (max-width:1100px) {
	#home #mainVisual:after {
		animation-name: fadeIn_wide;
	}
}



#download #mainVisual,
#scene #mainVisual {
	height: 350px;
}


.mainVisual_bg {
	background: url(/assets/img/top/img_main.jpg?ver_20190424) no-repeat top center / cover;
	max-width: 1560px;
	height: calc(100% - 80px);
	position: relative;
	top: 80px;
}

#product .mainVisual_bg {
	background: url(/assets/img/product/img_main.jpg) no-repeat center center / cover;
}

.mainVisual_inner {
	max-width: 1360px;
	position: relative;
	z-index: 2;
	top: 80px;
	left: 0;
	height: calc(100% - 80px);
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 30px;
}

.mainVisual_content {
	position: relative;
	top: -50px;
	width: 90%;
}


@media print,
screen and (min-width:768px) {

	/* FILTER blur */
	.mainVisual_bg {
		filter: blur(5px);
		animation-name: blur;
		animation-duration: 2s;
		animation-fill-mode: forwards;
	}

	@keyframes blur {
		0% {
			filter: blur(10px);
		}

		100% {
			filter: blur(0);
		}
	}

	#home .mainVisual_bg {
		filter: none;
		animation-name: none;
		animation-duration: none;
		animation-fill-mode: none;
	}
}


/* HOME */
@font-face {
	font-family: 'helvetica';
	src: url('/assets/font/helvetica.eot');
	src: local('/assets/font/helvetica Regular'),
		url('/assets/font/helvetica.eot?#iefix') format('embedded-opentype'),
		url('/assets/font/helvetica.woff') format('woff'),
		url('/assets/font/helvetica.ttf') format('truetype'),
}

/* .font-helvetica{font-family:'helvetica',"Helvetica Neue" , Helvetica , Arial , Verdana , Roboto;} */
.mainVisual_inner h2 {
	font-size: 22px;
	line-height: 1;
	/* text-shadow: 0px 0px 5px #000;*/
}

.mainVisual_inner .lead {
	font-size: 70px;
	font-weight: 600;
	line-height: 1;
	margin: 20px 0 30px;
	font-family: 'Fjalla One', sans-serif;
	text-shadow: 0px 1px 1px #fff;
}

.mainVisual_inner li {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
	position: relative;
	height: 35px;
	padding-left: 55px;
	line-height: 35px;
	color: #000;
}

.mainVisual_inner li:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 43px;
	height: 35px;
	background: url(/assets/img/common/ico_checked.png) no-repeat center left;
}

.mainVisual_text_box {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}

.mainVisual_text_box ul {
	width: 70%;
	margin-left: 5px;
}

#mainVisual .btn {
	padding: 10px 35px;
	max-width: 380px;
	position: absolute;
	bottom: 17px;
	right: 0;
}

#mainVisual .btn:hover {
	opacity: 0.85;
}

@media print,
screen and (min-width:1100px) {
	#mainVisual .btn {
		max-width: 300px;
		left: 26em;
	}
}


#sideMenu {
	max-width: 435px;
	background: #fff;
	font-size: 16px;
	position: relative;
	z-index: 2;
	transition: 0.3s;
}

#sideMenu .btnBox {
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	min-height: 80px;
}

#sideMenu .border {
	border-bottom: 1px solid #ede6e0;
}

#sideMenu .btnBox span {
	margin: 0 auto;
}

#sideMenu .btnBox i {
	background: #f2f2f2;
	color: #e72427;
	font-size: 40px;
	min-height: 80px;
	min-width: 80px;
	line-height: 80px;
}

#sideMenu .btnBox.border i {
	transform: rotate(180deg);
}

#sideMenu ul {
	padding: 10px;
	/*margin-left:20px;*/
}

#sideMenu ul li {
	border-bottom: 1px dotted #efefef;
	margin: 0 auto 10px;
	padding-bottom: 5px;
	text-align: left;
	position: relative;
	width: 11em;
}

#sideMenu ul li:last-child {
	border-bottom: none;
}

#sideMenu ul li:hover:before {
	content: "";
	position: absolute;
	top: 7px;
	left: -1.75em;
	width: 1em;
	height: 1em;
	background: url(/assets/img/common/ico_chev_red.png) no-repeat center center;
	transition: 0.3s;
}

#sideMenu ul li a {
	color: #565656;
}

#sideMenu ul li a:hover,
#sideMenu ul li.active a {
	color: #e72427;
}

#sideMenu .titleBox {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	min-height: 80px;
	background: #e72427;
}

#sideMenu .titleBox h2 {
	margin: 0 0 0 22%;
	color: #fff;
	font-size: 22px;
	font-weight: normal;
	letter-spacing: 0.1em;
}

.online_download #sideMenu .titleBox h2 {
	margin: 0 0 0 22%;
	color: #fff;
	font-size: 17px !important;
	font-weight: normal;
	letter-spacing: 0.1em;
}

#product #sideMenu .titleBox h2,
#download #sideMenu .titleBox h2 {
	margin: 0 auto;
}

#sideMenu.flex {
	max-width: 21.8%;
}

#sideMenu.flex .titleBox.doubleLine {
	display: block;
	padding-top: 15px;
	padding-left: 22%;
}

#sideMenu.flex.menu_adj .titleBox.doubleLine {
	padding-left: 15%;
}

#sideMenu.flex .titleBox.doubleLine h2 {
	width: 100%;
	letter-spacing: -0.025em;
	margin: 0;
	text-align: left;
}

#sideMenu.flex .titleBox.doubleLine h2.smaller {
	font-size: 18px;
	line-height: 1.3;
	padding: 5px 10px 10px 0;
}

@media screen and (min-width:768px) {
	#scene #sideMenu.flex .titleBox.doubleLine h2.smaller {
		font-size: 22px;
		line-height: 1.3;
		padding: 5px 10px 10px 0;
	}
}

#sideMenu.flex.adj_sp br {
	display: none;
}

@media all and (-ms-high-contrast: none) {

	/* IE11 */
	*::-ms-backdrop,
	#sideMenu .titleBox {
		line-height: 80px;
	}

	*::-ms-backdrop,
	#sideMenu .titleBox.doubleLine {
		line-height: 2;
	}
}

@media screen and (min-width:1024px) and (max-width:1360px) {
	#sideMenu.flex .titleBox.doubleLine h2.title_adj {
		font-size: 1.5vw;
		margin-top: 5px;
	}

	#recopick_index #sideMenu.flex .titleBox h2.title_adj,
	#recofinder_index #sideMenu.flex .titleBox h2.title_adj {
		font-size: 1.5vw;
		margin-top: 5px;
	}
}

#sideMenu.flex .titleBox span {
	display: block;
	width: 100%;
	margin-left: 0;
	line-height: 1;
	color: #fff;
	text-align: left;
}

#sideMenu.flex .titleBox span.two_col {
	margin-left: 0;
}

#sideMenu.flex ul {
	padding-top: 15px;
}

#sideMenu.flex ul li {
	width: 8em;
	width: 11em;
}

#rfid_index #sideMenu.flex ul li {
	width: 9em;
}

#case #sideMenu.flex.menu_adj ul li {
	width: 11em;
	/**/
}

#recopick_index #sideMenu.flex ul li {
	width: 11em;
}

#recofinder_index #sideMenu.flex ul li {
	width: 9em;
}

#sideMenu.flex ul li:hover:before {
	transform: rotate(-90deg);
	background: url(/assets/img/common/ico_chev_red.png) no-repeat center center;
}

#sideMenu.flex ul li.active:before {
	content: "";
	position: absolute;
	top: 7px;
	left: -1.75em;
	width: 1em;
	height: 1em;
	background: url(/assets/img/common/ico_chev_red.png) no-repeat left center / contain;
	transform: rotate(-90deg);
}


#rfid_index #sideMenu.flex ul li:hover:before,
.product_category #sideMenu.flex ul li:hover:before {
	transform: rotate(0deg);
}

.product_category #sideMenu.flex ul li.outofpage:hover:before {
	transform: rotate(-90deg);
}

#sideMenu .third_level {
	padding: 10px 0;
	margin-left: 15px;
}

#sideMenu .third_level li {
	border: none;
	margin: 0;
	font-size: 14px;
	padding-left: 0px;
}

#sideMenu .third_level li:last-child {
	padding-bottom: 0;
}

#sideMenu.flex .third_level li:hover:before,
#sideMenu.flex .third_level li.active:before {
	top: 5px;
	left: -1.25em;
	background: url(/assets/img/common/ico_chev_red.png) no-repeat left center / 85% auto;
}

@media screen and (min-width:768px) and (max-height:650px) {
	#sideMenu {
		position: relative;
		top: 80px;
	}

	#home #mainVisual {
		min-height: 800px;
	}
}

.content_inner {
	max-width: 1360px;
	margin: 0 auto;
	padding: 70px 0;
}


#gMenu {
	position: absolute;
	top: 106px;
	right: 0;
	z-index: 4;
}

#gMenu ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

#gMenu li {
	text-align: center;
}

#gMenu li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 110px;
	height: 110px;
	color: #fff;
	background: #e72427;
	transition: 0.3s;
	line-height: 1.5;
}

#gMenu li:nth-child(even) a {
	background: #ca2022;
}

#gMenu li a:hover {
	background: #eb4547;
}

#gMenu li:nth-child(even) a:hover {
	background: #d24143;
}

#gMenu ul ul.nest_menu {
	display: none !important;
}


/* hover effect */
@media print,
screen and (min-width:768px) {

	#gMenu li a {
		position: relative;
		overflow: hidden;
	}

	#gMenu li a::after {
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 2;
		display: block;
		content: '';
		width: 0;
		height: 0;
		background-color: rgba(255, 255, 255, .15);
		border-radius: 0%;
		transform: translate(-50%, -50%);
		opacity: 0;
	}

	#gMenu li a:hover::after {
		animation: circle 1s;
	}

	#gMenu li a.active::after {
		animation: circle 2s;
		animation-iteration-count: infinite;
	}

}

@keyframes circle {
	50% {
		opacity: 1;
	}

	100% {
		width: 100%;
		height: 100%;
	}
}


.title_caption {
	font-size: 13px;
	position: relative;
	display: flex;
	justify-content: space-between;
}

.title_caption span {
	display: inline-block;
	font-size: 15px;
}

.title_caption:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 2.5em;
	height: 1px;
	background: #d03c1a;
}

@media all and (-ms-high-contrast: none) {

	/* IE11 */
	*::-ms-backdrop,
	.title_caption {
		justify-content: flex-start;
	}

	*::-ms-backdrop,
	.title_caption:after {
		background: none;
	}

	*::-ms-backdrop,
	.title_caption span {
		padding-right: 1em;
	}
}

.list_row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}

.list_row li {
	width: calc((100% - 30px) /4);
	margin: 0 !important;
}

.list_row li strong {
	position: relative;
	line-height: 1;
}

.list_row li strong:after {
	content: attr(data-en) "";
	font-family: 'Fjalla One', sans-serif;
	font-weight: 400;
	display: block;
	letter-spacing: 0.01em;
	position: relative;
}

.list_row li img {
	display: block;
}

.list_row li img {
	transition: 0.3s;
}

.list_row li a:hover img {
	opacity: 0.8;
}


#links {
	padding-right: 20px;
	padding-left: 20px;
}

.related_links {
	display: flex;
	justify-content: space-between;
}

.related_links li {
	width: 31%;
	background: url(/assets/img/common/bg_dot_orange.png) repeat top left;
}

.related_links a {
	display: block;
	position: relative;
	padding: 80px 0 25px;
	max-width: 967px;
	margin: 15px 15px 17px;
	background: #fff url(/assets/img/common/ico_arrow_orange.png) no-repeat 95% center;
	font-size: 24px;
	font-weight: bold;
	transition: 0.3s;
	position: relative;
}

#links .related_links a {
	padding: 80px 0 55px;
	background: #fff url(/assets/img/common/ico_arrow_orange.png) no-repeat center 80%;
}


.related_links a:before {
	content: "";
	position: absolute;
	top: 18%;
	left: calc(50% - 45px);
	z-index: 2;
	width: 90px;
	height: 47px;
	background-repeat: no-repeat;
	background-position: top center;
	transition: 0.3s;
}

.related_links li.ico_scene a:before {
	background-image: url(/assets/img/common/ico_scene.png);
}

.related_links li.ico_case a:before {
	background-image: url(/assets/img/common/ico_case.png);
}

.related_links li.ico_download a:before {
	background-image: url(/assets/img/common/ico_download.png);
}

.related_links a:hover {
	background: #fcf9f7 url(/assets/img/common/ico_arrow_orange.png) no-repeat 95% center;
}

#links .related_links a:hover {
	background: #fcf9f7;
}

#links .related_links li {
	position: relative;
}

#links .related_links li:after {
	content: "";
	position: absolute;
	bottom: 20%;
	left: calc(50% - 25px);
	width: 50px;
	height: 25px;
	background: url(/assets/img/common/ico_arrow_red.png) no-repeat center center;
}

#links .related_links a {
	position: relative;
	overflow: hidden;
	z-index: 0;
	background: #fff;
}

#links .related_links a::after {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background-color: rgba(255, 255, 255, .6);
	border-radius: 0%;
	transform: translate(-50%, -50%);
	opacity: 0;
}

#links .related_links a:hover::after {
	animation: circle2 1s;
}

@keyframes circle2 {
	50% {
		opacity: 1;
	}

	100% {
		width: 100%;
		height: 100%;
	}
}


.related_links.w100 {
	max-width: 967px;
	margin: 0 auto;
}

.related_links.w100 li {
	width: 100%;
}

.related_links.w100 a {
	font-size: 24px;
}

#case #links.content_inner,
#scene #links.content_inner {
	max-width: 970px;
}

#case #links .related_links li,
#scene #links .related_links li {
	width: 45%;
}

#case #links .related_links li:nth-child(2),
#scene #links .related_links li:nth-child(1) {
	display: none;
}

.footer_inner {
	padding: 70px 0;
}

.footer_contact h3 {
	font-size: 30px;
}

.contactBox {
	display: flex;
	justify-content: space-between;
	max-width: 970px;
	margin: 20px auto 0;
	position: relative;
}

.contactBox+p {
	text-align: center;
	width: 970px;
	margin: 40px auto 0;
}

@media print,
screen and (max-width: 767px) {
	.contactBox+p {
		width: 90%;
		margin: 30px auto 0;
	}
}

.contactBox li {
	text-align: center;
	width: 50%;
	font-size: 21px;
	padding: 20px 0;
}

.contactBox li:first-child {
	background: url(/assets/img/common/bg_dot_orange.png) repeat-y top right;
}

.contactBox li a {
	display: block;
	position: relative;
	/*text-indent:-40px;*/
}

.contactBox li.form a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: url(/assets/img/common/ico_form.png) no-repeat center left;
}

.contactBox li i {
	text-indent: -9999px;
	text-align: left;
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	position: relative;
	top: 3px;
}

.contactBox li.form i {
	background: url(/assets/img/common/ico_form.png) no-repeat center center;
}

.contactBox li.phone i {
	background: url(/assets/img/common/ico_phone.png) no-repeat center center;
}

.contactBox li span {
	font-size: 16px;
	display: block;
	color: #565656;
	text-indent: 30px;
}

.contactBox li p {
	display: inline-block;
}

.contactBox li strong {
	font-weight: bold;
	font-size: 24px;
	color: #565656;
	letter-spacing: 0.05em;
	display: inline-block;
}

.contactBox .btn {
	max-width: 310px;
}


.footer_links {
	max-width: 870px;
	margin: 0 auto;
}

.footer_logo {
	width: 300px;
	margin: 0 auto;
}

@media print,
screen and (max-width: 767px) {
	.footer_savlogo {
		width: 80px;
		margin: 0 auto 5px;
	}
}

/*.footer_logo p:first-child { max-width:100px; }*/
.footer_savlogo {
	max-width: 870px;
	margin: 20px auto;
	text-align: center;
}

.footerMenu {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	/*border-top:2px solid #d03c1a;*/
	padding: 20px 0 50px;
	margin-top: 20px;
	position: relative;
}

.footerMenu:before {
	content: "";
	border-top: 2px solid #d03c1a;
	width: 100%;
	height: 2px;
	position: absolute;
	top: 0px;
	left: 0;
}

.footerMenu li {
	margin: 0 10px;
}

.footerMenu li a {
	font-weight: bold;
	font-size: clamp(12px, 1vw, 15px);
}

.footerMenu li ul {
	margin-top: 10px;
}

.footerMenu li li {
	margin: 0 0 5px;
}

.footerMenu li li a {
	color: #565656;
	font-weight: normal;
}

.footer_inner_w100 {
	max-width: 100%;
	margin: 0 auto;
	position: relative;
	font-size: 0.7rem;
}

.footer_bottom {
	/*max-width:800px;*/
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	background: #ede6e0;
	position: relative;
}

.footer_bottom:before {
	content: "";
	border-bottom: 1px dotted #666;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 10px;
	left: 0;
}


.footer_gMenu {
	display: flex;
	background: #ede6e0;
	position: relative;
}

.footer_gMenu li {
	position: relative;
	padding: 0 10px;
}

.footer_gMenu li:not(:last-child):after {
	content: " / ";
	position: absolute;
	top: 0;
	right: 0;
}

.footer_gMenu a {
	color: #565656;
}

.footer_bottom p {
	background: #ede6e0;
	position: relative;
	padding: 0 10px;
}

.pageTop {
	position: fixed;
	bottom: 50px;
	right: 5%;
	z-index: 2;
}

.pageTop a {
	display: flex;
	text-decoration: none;
	color: #fff;
	background: #d03c1a;
	text-align: center;
	border-radius: 50%;
	outline: none;
}

.pageTop a:hover {
	text-decoration: none;
	opacity: 0.8;
}

.pageTop i {
	font-size: 35px;
	padding: 10px;
}


@media print,
screen and (min-width:1250px) {
	.pageTop {
		right: calc(50% - 600px);
	}
}


@media print,
screen and (max-width:1024px) {

	#home #header,
	#rfid_index #header,
	#recopick_index #header,
	#recofinder_index #header {
		position: absolute;
	}

	#home .mainVisual_content {
		width: 100%;
	}

	#sideMenu {
		top: 10px;
	}

	#home #sideMenu {
		display: none;
	}

	#sideMenu.flex {
		max-width: 100%;
		background: none;
	}

	#sideMenu.flex .titleBox {
		background: rgba(231, 36, 39, 0.75);
		min-height: 70px;
	}

	#sideMenu.flex .titleBox h2,
	#product #sideMenu .titleBox h2,
	#download #sideMenu .titleBox h2 {
		margin: 0 20px;
	}

	#sideMenu.flex ul {
		display: none;
	}

	#sideMenu.flex .titleBox.doubleLine,
	#sideMenu.flex.menu_adj .titleBox.doubleLine {
		padding-top: 15px;
		padding-left: 20px;
		text-align: left;
	}

	#sideMenu.flex .titleBox span,
	#sideMenu.flex .titleBox span.two_col {
		display: inline-block;
		width: auto;
		margin-left: 0;
	}

	#sideMenu.flex .titleBox.doubleLine h2 {
		width: auto;
		letter-spacing: -0;
		display: inline-block;
		margin: 0 0 0 20px;
	}

	/*#case #sideMenu.flex .titleBox.doubleLine h2,
				#scene #sideMenu.flex .titleBox.doubleLine h2 { display:none; }*/

	#sub_head {
		opacity: 0;
		position: relative;
	}

	#sub_head {
		width: 100%;
		background: rgba(255, 255, 255, 0.75);
	}

	#sub_head ul {
		position: relative;
		max-width: 1024px;
		margin: 0 auto;
	}

	#sub_head ul li {
		display: inline-block;
		*display: inline;
		*zoom: 1;
		position: absolute;
		top: 0;
		left: 0;
		overflow: hidden;
	}

	#sub_head ul li a {
		display: block;
		height: 50px;
		padding: 13px 15px 12px;
		color: #ca2022;
	}

	#sub_head ul li a:hover,
	#header nav ul li .active {
		color: #555;
	}

	#sub_head ul li a {
		opacity: 0;
		transition: 0.1s;
		position: relative;
		top: 100px;
	}

	#sub_head ul li .active {
		opacity: 1;
		top: 0px;
	}

	#sub_head.is-fixed {
		opacity: 1;
		display: block;
		position: fixed;
		top: 0px;
		left: 0;
		z-index: 3;
		height: 50px;
	}

	.related_links a {
		font-size: 2vw;
	}

}


@media print,
screen and (max-width:900px) {

	#home #mainVisual:after {
		height: 57%;
		/* width: 80%; */
		top: calc(50% - 280px + 75px);
	}


	.mainVisual_inner .lead {
		font-size: 8vw;
	}

	.mainVisual_text_box ul {
		width: 100%;
	}

	#mainVisual .btn {
		position: relative;
		bottom: 0;
		margin-top: 20px;
		font-size: 17px;
	}

	.content_inner {
		padding: 35px 0;
	}

	.footer_links {
		padding: 0 4.8%;
	}

	.footerMenu li:first-child {
		display: none;
	}

	.pageTop {
		right: 5%;
	}
}


@media print,
screen and (max-width:767px) {
	.btn_arrow:after {
		background: url(/assets/img/common/bg_btn.png) no-repeat bottom center / 100% 100%;
	}

	.btn_icon_white:after {
		background: url(/assets/img/common/bg_btn.png) no-repeat bottom center / 100% 100%;
	}

	#mainVisual,
	#scene #mainVisual,
	#download #mainVisual {
		height: 200px;
	}

	.mainVisual_bg {
		background: url(/assets/img/top/img_main.jpg) no-repeat 64% 0% / cover;
		height: calc(100% - 50px);
		top: 50px;
	}

	#home .mainVisual_inner {
		top: 50px;
		height: calc(100% - 50px);
	}

	#home #mainVisual:after {
		top: calc(50% - 150px + 65px);
		width: 100%;
		height: 59%;
		bottom: 0;
		top: auto;
	}

	.mainVisual_content {
		width: 100%;
		top: 0;
	}

	@keyframes fadeIn {
		0% {
			width: 0;
			opacity: 0;
		}

		100% {
			width: 100%;
			opacity: 1;
		}
	}

	/* HOME */
	.mainVisual_inner h2 {
		font-size: 3.8vw;
		text-shadow: 0px 0px 5px #000;
	}

	.mainVisual_inner .lead {
		font-size: 13vw;
		text-shadow: none;
	}

	.mainVisual_text_box ul {
		width: 100%;
	}

	.mainVisual_text_box {
		flex-wrap: wrap;
	}

	.mainVisual_inner li {
		font-size: 16px;
		margin-bottom: 10px;
		height: auto;
		padding-left: 32px;
		line-height: 1.5;
	}

	.mainVisual_inner li:before {
		top: 0px;
		width: 25px;
		height: 25px;
		background: url(/assets/img/common/ico_checked.png) no-repeat center left / 100% auto;
	}


	#header {
		/*height:50px;*/
		z-index: 3;
	}

	#header h1 a {
		margin-top: -3px;
	}

	#header h1 em {
		display: none;
	}

	#header h1 img {
		max-width: auto;
		width: 70%;
	}

	.header_global {
		padding: 0 15px;
		width: 87%;
		margin: 0;
	}

	.header_global .teijin_logo {
		max-width: 100%;
		width: 70px;
		margin-top: -22px;
	}


	#gMenu {
		/*display:none;*/
	}

	#gMenu ul {
		display: block;
		overflow-y: scroll;
		transform: translateZ(0);
		height: 100px;
		padding: 50px 0 100px;
	}

	#gMenu li,
	#gMenu li a {
		width: 100%;
	}

	#gMenu li {
		margin-bottom: 15px;
		text-align: left;
	}

	#gMenu li a {
		background: none;
		font-size: 22px;
		display: block;
		width: auto;
		height: auto;
		border-bottom: 1px dotted;
		border-color: rgba(255, 255, 255, 0.5);
		margin: 0 15px;
	}

	#gMenu li:nth-child(even) a {
		background: none;
	}

	#gMenu li:last-child a {
		border: none;
	}

	#gMenu li a br {
		display: none;
	}

	#gMenu ul ul.nest_menu {
		display: flex !important;
		overflow: hidden;
		height: auto;
		padding: 10px 0 0;
		margin: 0 15px;
		align-items: stretch;
	}

	#gMenu ul ul.nest_menu li {
		margin-bottom: 0;
		text-align: center;
	}

	#gMenu ul ul.nest_menu a {
		height: 100%;
		background: none;
		font-size: 14px;
		border-bottom: none;
		background: rgba(255, 255, 255, 0.2);
		margin: 0 3px;
		padding: 10px 5px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#sideMenu {
		top: 20px;
	}

	#sideMenu.flex .titleBox {
		min-height: 60px;
	}

	#sideMenu:not(#home) {
		max-width: 100%;
		background: none;
	}

	#sideMenu:not(#home) .titleBox {
		background: rgba(231, 36, 39, 0.75);
	}

	#sideMenu .titleBox h2 {
		margin: 0 20px;
	}

	#sideMenu.flex .titleBox.doubleLine,
	#sideMenu.flex.menu_adj .titleBox.doubleLine {
		padding-top: 10px;
	}


	#sideMenu.flex.adj_sp .titleBox span,
	#sideMenu.flex.adj_sp .titleBox span.two_col {
		display: block;
	}

	#sideMenu.flex.adj_sp .titleBox.doubleLine h2.smaller {
		font-size: 16px;
		margin-left: 0;
	}

	#scene #sideMenu.flex .titleBox.doubleLine h2.smaller {
		font-size: 20px;
		line-height: 1;
		padding: 0;
	}


	.scene_retail #sideMenu:not(#home) .titleBox {
		min-height: 80px;
	}

	.scene_retail #sideMenu {
		top: 10px;
	}

	.scene_retail #sideMenu.flex .titleBox.doubleLine h2 {
		display: block;
		line-height: 1;
		margin-left: 0;
	}

	.related_links {
		flex-wrap: wrap;
	}

	.related_links li {
		width: 100%;
	}

	.related_links li:nth-child(2) {
		margin: 20px 0;
	}

	#links .related_links a {
		font-size: 22px;
		padding: 50px 0 20px;
		margin: 15px 15px 15px;
	}

	#links .related_links li:after {
		bottom: calc(50% - 10px);
		left: auto;
		right: 5%;
	}

	.related_links a:before {
		width: 60px;
		height: 32px;
		background-size: 100% auto;
		left: calc(50% - 30px);
		top: 14%;
		background-size: contain;
	}

	#case #links .related_links li,
	#scene #links .related_links li {
		width: 100%;
	}

	#case #links .related_links li:last-child {
		margin-top: 20px;
	}

	#scene #links .related_links li:last-child {
		/*margin-top:20px;*/
	}

	#scene #links .related_links li:nth-child(2) {
		margin-top: 0px;
	}


	.contactBox {
		flex-wrap: wrap;
		width: 90%;
		margin: 0 auto;
	}

	.contactBox li {
		width: 100%;
	}

	.contactBox li:first-child {
		background: url(/assets/img/common/bg_dot_orange.png) repeat-x bottom left;
		padding-bottom: 50px;
	}

	.contactBox li.phone p {
		margin-bottom: 10px;
	}

	.contactBox li span {
		text-indent: 0px;
	}

	.footer_contact h3 {
		font-size: 26px;
	}

	.footer_inner {
		padding: 30px 0;
	}

	.footer_logo {
		padding: 0 25% 5%;
		width: 100% !important;
	}

	.footerMenu_wrap {
		display: none;
	}

	.pageTop {
		right: 10px;
	}

	.pageTop i {
		font-size: 20px;
	}

}


@media print,
screen and (max-width:600px) {}

@media print,
screen and (max-width:450px) {
	#home .mainVisual_bg {
		background: #111 url(/assets/img/top/img_main.jpg) no-repeat 64% -90px / cover;
	}

	/*#mainVisual:after { height:58%; top: calc(50% - 150px + 25px); }*/
	#home .mainVisual_inner {
		padding: 0 17px;
	}

	.mainVisual_inner .lead {
		margin: 10px 0 15px;
		letter-spacing: -0.05em;
	}

	.mainVisual_content {
		top: 0px;
	}

	#home #mainVisual:after {
		/*top: calc(50% - 150px + 90px);*/
	}

	#mainVisual .btn {
		position: relative;
		top: 15px;
		margin-top: 0px;
		font-size: 17px;
		width: 100%;
	}

	#case #sideMenu.flex.menu_adj .titleBox.doubleLine h2.title_adj {
		font-size: 4.8vw;
	}

	#sideMenu.flex.adj_sp {
		top: 0;
	}

	#sideMenu.flex.adj_sp br {
		display: block;
	}

	#sideMenu.flex.adj_sp .titleBox.doubleLine {
		padding-top: 10px;
	}

}


/* ----------------------------------------------------
margin
---------------------------------------------------- */
.mt00 {
	margin-top: 0px !important;
}

.mt05 {
	margin-top: 5px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mt15 {
	margin-top: 15px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mt25 {
	margin-top: 25px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.mt35 {
	margin-top: 35px !important;
}

.mt40 {
	margin-top: 40px !important;
}

.mt50 {
	margin-top: 50px !important;
}

.mt60 {
	margin-top: 60px !important;
}

.mt70 {
	margin-top: 70px !important;
}

.mt80 {
	margin-top: 80px !important;
}

.mr00 {
	margin-right: 0px !important;
}

.mr05 {
	margin-right: 5px !important;
}

.mr10 {
	margin-right: 10px !important;
}

.mr15 {
	margin-right: 15px !important;
}

.mr20 {
	margin-right: 20px !important;
}

.mr25 {
	margin-right: 25px !important;
}

.mr30 {
	margin-right: 30px !important;
}

.mr35 {
	margin-right: 35px !important;
}

.mr40 {
	margin-right: 40px !important;
}

.mr50 {
	margin-right: 50px !important;
}

.mr60 {
	margin-right: 60px !important;
}

.mr70 {
	margin-right: 70px !important;
}

.mr80 {
	margin-right: 80px !important;
}

.mb00 {
	margin-bottom: 0px !important;
}

.mb05 {
	margin-bottom: 5px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mb15 {
	margin-bottom: 15px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb25 {
	margin-bottom: 25px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb35 {
	margin-bottom: 35px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

.mb50 {
	margin-bottom: 50px !important;
}

.mb60 {
	margin-bottom: 60px !important;
}

.mb70 {
	margin-bottom: 70px !important;
}

.mb80 {
	margin-bottom: 80px !important;
}

.ml00 {
	margin-left: 0px !important;
}

.ml05 {
	margin-left: 5px !important;
}

.ml10 {
	margin-left: 10px !important;
}

.ml15 {
	margin-left: 15px !important;
}

.ml20 {
	margin-left: 20px !important;
}

.ml25 {
	margin-left: 25px !important;
}

.ml30 {
	margin-left: 30px !important;
}

.ml35 {
	margin-left: 35px !important;
}

.ml40 {
	margin-left: 40px !important;
}

.ml50 {
	margin-left: 50px !important;
}

.ml60 {
	margin-left: 60px !important;
}

.ml70 {
	margin-left: 70px !important;
}

.ml80 {
	margin-left: 80px !important;
}

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

.pt05 {
	padding-top: 5px !important;
}

.pt10 {
	padding-top: 10px !important;
}

.pt15 {
	padding-top: 15px !important;
}

.pt20 {
	padding-top: 20px !important;
}

.pt25 {
	padding-top: 25px !important;
}

.pt30 {
	padding-top: 30px !important;
}

.pt35 {
	padding-top: 35px !important;
}

.pt40 {
	padding-top: 40px !important;
}

.pt50 {
	padding-top: 50px !important;
}

.pt60 {
	padding-top: 60px !important;
}

.pt70 {
	padding-top: 70px !important;
}

.pt80 {
	padding-top: 80px !important;
}

.pr00 {
	padding-right: 0px !important;
}

.pr05 {
	padding-right: 5px !important;
}

.pr10 {
	padding-right: 10px !important;
}

.pr15 {
	padding-right: 15px !important;
}

.pr20 {
	padding-right: 20px !important;
}

.pr25 {
	padding-right: 25px !important;
}

.pr30 {
	padding-right: 30px !important;
}

.pr35 {
	padding-right: 35px !important;
}

.pr40 {
	padding-right: 40px !important;
}

.pr50 {
	padding-right: 50px !important;
}

.pr60 {
	padding-right: 60px !important;
}

.pr70 {
	padding-right: 70px !important;
}

.pr80 {
	padding-right: 80px !important;
}

.pb00 {
	padding-bottom: 0px !important;
}

.pb05 {
	padding-bottom: 5px !important;
}

.pb10 {
	padding-bottom: 10px !important;
}

.pb15 {
	padding-bottom: 15px !important;
}

.pb20 {
	padding-bottom: 20px !important;
}

.pb25 {
	padding-bottom: 25px !important;
}

.pb30 {
	padding-bottom: 30px !important;
}

.pb35 {
	padding-bottom: 35px !important;
}

.pb40 {
	padding-bottom: 40px !important;
}

.pb50 {
	padding-bottom: 50px !important;
}

.pb60 {
	padding-bottom: 60px !important;
}

.pb70 {
	padding-bottom: 70px !important;
}

.pb80 {
	padding-bottom: 80px !important;
}

.pl00 {
	padding-left: 0px !important;
}

.pl05 {
	padding-left: 5px !important;
}

.pl10 {
	padding-left: 10px !important;
}

.pl15 {
	padding-left: 15px !important;
}

.pl20 {
	padding-left: 20px !important;
}

.pl25 {
	padding-left: 25px !important;
}

.pl30 {
	padding-left: 30px !important;
}

.pl35 {
	padding-left: 35px !important;
}

.pl40 {
	padding-left: 40px !important;
}

.pl50 {
	padding-left: 50px !important;
}

.pl60 {
	padding-left: 60px !important;
}

.pl70 {
	padding-left: 70px !important;
}

.pl80 {
	padding-left: 80px !important;
}