@charset "utf-8";

section {
	width: 1240px;
	margin: 0 auto;
}

section .detail_pg_head {
	margin-top: 30px;
	text-align: center;
}

section .detail_pg_head p {
	color: #b5b5b5;
	font-size: 33px;
	font-weight: 500;
}

section .detail_pg_head h4 {
	font-size: 43px;
	font-weight: 600;
	margin-top: -10px;
	margin-bottom: 30px;
}

section .product_tab {
	padding-top: 50px;
	text-align: center;
	width: 1240px;
	font-size: 20px;
}

section .product_tab a {
	margin-left: 25px;
	color: #939393;
	font-weight: 400;
}

section .product_tab .tab1:after {
	content: "|";
	margin-left: 25px;
	color: #939393;
}

section .product_tab a.tab_on span,
section .product_tab a span:hover {
	text-decoration: none;
	border-bottom: 2px solid #cc0000;
	padding-bottom: 5px;
	color: #000;
}

section .product_explain {
	margin-bottom: 100px;
}

section .product_explain h3 {
	font-weight: 500;
	font-size: 24px;
	margin: 60px 0 10px;
}

section .product_explain p {
	font-size: 20px;
	line-height: 35px;
	margin-bottom: 10px;
}

section .product_explain .horizontal_line {
	display: flex;
	position: relative;
	z-index: 0;
	align-items: center;
	line-height: 1.3;
}

section .product_explain .horizontal_line::before {
	background-color: #dbdbdb;
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
}

section .product_explain .horizontal_line::after {
	width: 100px;
	background-color: #cc0000;
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
}

section span.refer {
	color: #484848;
	font-size: 16px;
	line-height: 30px;
}

section .product_spec {
	margin-bottom: 100px;
}

section .product_spec table {
	width: 100%;
	border-top: 2px solid #000;
	border-collapse: collapse;
	margin-top: 40px;
	table-layout: fixed;
}

section .product_spec table th,
section .product_spec table td {
	border-bottom: 1px solid #ccc;
	padding: 10px;
	line-height: 25px;
}

section .product_spec th {
	width: 200px;
	font-weight: 600;
	padding-left: 200px;
	background-color: #f7f7f7;
}

section .product_spec table td {
	width: auto;
}


section .product_spec th span.procut_spec_ttl {
	margin-left: 10px;
}

section .video_area {	
	width: 100%;
	height: 400px;
	background-color: #000;	
}

section .down_catalog {
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
	text-align: center;	
	background-color: #f4f4f4;
	height: 45px;
	line-height: 45px;
}

section .down_catalog a.inner_wrap_down_catalog {	
	font-weight: 600;
	font-size: 16px;
	color: #686868;
	display: inline-block;
	width: 100%;
	vertical-align: middle;
}

section .down_catalog:hover {
	border: 1px solid #e67373;
	transition: .3s;
	background-color: rgba(255, 132, 132, 0.21);
}

section .down_catalog a.inner_wrap_down_catalog img {
	margin-bottom: -6px;
	margin-right: 6px;
}

section .contact_us {
	width: 100%;
	margin-top: 15px;
	margin-bottom: 30px;
}

section .contact_us table {
	border-collapse: collapse;
	width: 100%;
	text-align: center;
}

section .contact_us table th {
	text-align: center;
	border: 1px solid #b9b9b9;
	background-color: gray;
	color: #fff;
	padding: 8px 5px;
	font-size: 16px;
	font-weight: 500;
}

section .contact_us table td {
	padding: 10px;
	border: 1px solid #b9b9b9;	
}

section .contact_us table td img {
	vertical-align: middle;
	margin-right: 6px;
	margin-bottom: 3px;
}

/*-------Accordion Menu-------*/

section .accordion .accordion_item {
	border-bottom: 1px solid #e5e5e5;
}

section .accordion .accordion_item button.accordion_btn[aria-expanded='true'] {
	border-bottom: 1px solid #cc0000;
}

section .accordion button.accordion_btn {
	position: relative;
	display: block;
	text-align: left;
	width: 100%;
	padding: 1em 0;
	color: #939393;
	font-size: 1.15rem;
	font-weight: 400;
	border: none;
	background: none;
	outline: none;
}

section .accordion button.accordion_btn:hover,
section .accordion button.accordion_btn:focus {
	cursor: pointer;
	color: #cc0000;
}

section .accordion button.accordion_btn:hover::after,
section .accordion button.accordion_btn:focus::after {
	cursor: pointer;
	color: #cc0000;
	border: 1px solid #cc0000;
}

section .accordion button.accordion_btn .accordion_title {
	padding: 1em 1.5em 1em 0;
}

section .accordion button.accordion_btn .icon {
	display: inline-block;
	position: absolute;
	top: 18px;
	right: 0;
	width: 22px;
	height: 22px;
	border: 1px solid;
	border-radius: 22px;
}

section .accordion button.accordion_btn .icon::before {
	display: block;
	position: absolute;
	content: '';
	top: 10px;
	left: 6px;
	width: 10px;
	height: 2px;
	background: currentColor;
}

section .accordion button.accordion_btn .icon::after {
	display: block;
	position: absolute;
	content: '';
	top: 6px;
	left: 10px;
	width: 2px;
	height: 10px;
	background: currentColor;
}

section .accordion button.accordion_btn[aria-expanded='true'] {
	color: #cc0000;
}

section .accordion button.accordion_btn[aria-expanded='true'] .icon::after {
	width: 0;
}

section .accordion button.accordion_btn[aria-expanded='true'] + .accordion_content {
	opacity: 1;
	max-height: 50em;
	transition: all 200ms linear;
	will-change: opacity, max-height;
}

section .accordion .accordion_content {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 200ms linear, max-height 200ms linear;
	will-change: opacity, max-height;	
}

section .accordion .accordion_content > video {	
	margin-left: 270px;
	margin-top: 20px;
}

section table.about_the_mode {
	border-collapse: collapse;
}

section table.about_the_mode th {
	background: #F8FAFC;
	border: 1px solid #EBEDEF;
	padding: 10px;
	text-align: center;
	color: #94A3B8;
}

section table.about_the_mode td {
	border: 1px solid #EBEDEF;
	background-color: #fff;
	text-align: center;
	color: #64748B;
	padding: 10px;
	font-size: 16px;	
}

section .key_warning_msgbox {
	margin-top: 40px;
}

section ul.key_warnings {
	list-style: disc inside;
	margin-bottom: 30px
}

section table.about_the_mode td span.highlight_blue {
	color: #003F9B;
	font-weight: 500;
}

section table.about_the_mode td span.highlight_purple {
	color: #A85898;
	font-weight: 500;
}


