@charset "utf-8";
/*============================================================
	IMPORT
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('slick.css');

/*============================================================
	FONT
*/
@font-face {
	font-family: 'arial-bi';
	src: url('../fonts/Arial-Bold-Italic.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
@font-face {
	font-family: 'icon';
	src: url('../fonts/icon.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
	font-family: 'icon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
/*.icon-arrow-up:before {
  content: "\e900";
}
.icon-arrow-prev:before {
  content: "\e901";
}
.icon-arrow-next:before {
  content: "\e902";
}
.icon-arrow-down:before {
  content: "\e903";
}*/

/*============================================================
	RESET
*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-image: none;
	background-position: 0 0;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
html, body {
	width: 100%;
	height: 100%;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
}
ul {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}
a,
button {
	cursor: pointer;
}
img {
	vertical-align: top;
	width: 100%;
}
input,
select,
textarea,
button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 0;
	border-radius: 0;
	outline: 0;
	resize: none;
}

/*============================================================
	HTML
*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
	color: #000;
}
a {
	text-decoration: underline;
	transition: opacity 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}
button {
	transition: opacity 0.4s ease, background-color 0.4s ease, color 0.4s ease;
	cursor: pointer;
}
h1, h2, h3, h4 {
	font-weight: 700;
}

/*============================================================
	BODY
*/
.body {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
.content {
	position: relative;
	flex: 1;
}

/*============================================================
	FONT
*/
.ff-en {
	font-family: 'arial-bi', sans-serif;
}

/*============================================================
	VISIBLE
*/
@media screen and (min-width: 768px) {
	.visible-sp {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.visible-pc {
		display: none !important;
	}
}

/*============================================================
	HIDDEN
*/
@media screen and (min-width: 768px) {
	.hidden-pc {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.hidden-sp {
		display: none !important;
	}
}

/*============================================================
	HEADER
*/
/* body::before {
	content: '';
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 80px;
	background-color: rgba(0,0,0,0.8);
	transition: background-color 0.4s ease;
} */
.page-index::before {
	background-color: transparent;
}
.page-index.active-header::before {
	background-color: rgba(0,0,0,0.8);
}
header .header {
	background-color: #000;
}
header .header .logo {
	width: 40%;
	margin: 0 auto;
}
header .header .logo img{
	width: 100%;
}
/*header {
	position: fixed;
	z-index: 110;
	top: 0;
	left: 0;
	width: 100%;
	color: #fff;
}
header a {
	text-decoration: none;
	color: #fff;
}
header .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 50px 0 50px;
	height: 80px;
}
header .header nav {
	font-weight: 700;
}
header .header nav ul {
	display: flex;
	font-size: 16px;
	line-height: 1.5;
}
header .header nav ul li {
	padding-left: 50px;
}
header .header nav ul li.current a {
	color: #e60033;
}
header .header nav ul li.top {
	display: none;
}*/
header .header .megamenu-opener {
	display: none;
	position: relative;
	width: 56px;
	height: 100%;
}
header .header .megamenu-opener i {
	display: block;
	position: absolute;
	left: 50%;
	margin-top: 18px;
	margin-left: -13px;
	width: 26px;
	height: 1px;
	background-color: #fff;
	transition: all 0.4s ease;
}
header .header .megamenu-opener i:nth-child(1) {
	top: 0;
}
header .header .megamenu-opener i:nth-child(2) {
	top: 6px;
}
header .header .megamenu-opener i:nth-child(3) {
	top: 12px;
}
.megamenu-show header .header .megamenu-opener i:nth-child(1) {
	top: 6px;
	transform: rotate(35deg);
}
.megamenu-show header .header .megamenu-opener i:nth-child(2) {
	opacity: 0;
}
.megamenu-show header .header .megamenu-opener i:nth-child(3) {
	top: 6px;
	transform: rotate(-35deg);
}

/* HOVER */
.os-pc header .header nav ul li a:hover {
	color: #e60033;
}

/* SP */
@media screen and (max-width: 767px) {
	body::before {
		height: 50px;
	}
	/*header .header {
		padding: 0 0 0 15px;
		height: 50px;
	}
	header .header .logo {
		flex-basis: 54px;
	}
	header .header nav {
		display: none;
	}
	header .header nav ul li.top {
		display: block;
	}*/	
	header .header .logo{
		width: 70%;
		margin: 0 auto;	
	}
	header .header .megamenu-opener {
		display: block;
	}
}

/*============================================================
	FOOTER
*/
.megamenu {
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: fixed;
	z-index: 101;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	color: #fff;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.megamenu a {
	text-decoration: none;
}
.megamenu .in {
	width: 100%;
	max-height: 100%;
	overflow: auto;
}
.megamenu nav {
	font-size: 24px;
	text-align: center;
}
.megamenu nav ul {
	padding: 30px 0;
}
.megamenu nav ul li {
	padding: 12px 0;
}
.megamenu-opened .megamenu {
	display: flex;
}
.megamenu-show .megamenu {
	opacity: 1;
}
@media screen and (min-width: 768px) {
	.megamenu {
		display: none !important;
	}
}

/*============================================================
	FOOTER
*/
footer {
	padding: 40px 0;
	background-color: #000;
	text-align: center;
	color: #fff;
}
footer small {
	display: block;
	font-size: 14px;
	line-height: 1.5;
}

/* SP */
@media screen and (max-width: 767px) {
	footer {
		padding: 20px 0;
	}
	footer small {
		font-size: 11px;
	}
}

/*============================================================
	BTN PRIMARY
*/
.btn-primary {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 360px;
	height: 80px;
	background-color: #e60033;
	text-decoration: none;
	font-size: 24px;
	line-height: 1.1;
	color: #000;
}
.btn-primary i {
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -13px;
	font-size: 25px;
	line-height: 25px;
	color: #fff;
}

/* HOVER */
.os-pc .btn-primary:hover {
	background-color: #000;
	color: #e60033;
}

/* SP */
@media screen and (max-width: 767px) {
	.btn-primary {
		width: 220px;
		height: 50px;
		font-size: 16px;
	}
	.btn-primary i {
		right: 8px;
		margin-top: -8px;
		font-size: 16px;
		line-height: 16px;
	}
}

/*============================================================
	HEADING
*/
.heading {
	margin: 0 0 40px 0;
	padding: 0 50px;
	text-align: center;
	font-size: 80px;
	line-height: 1.1;
}

/* SP */
@media screen and (max-width: 767px) {
	.heading {
		margin: 0 0 20px 0;
		padding: 0 15px;
		font-size: 38px;
	}
}

/*============================================================
	BREADCRUMBS
*/
.breadcrumbs {
	padding: 20px 50px;
}
.breadcrumbs ul {
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	line-height: 1.5;
}
.breadcrumbs ul li::before {
	content: '>';
	padding: 0 5px;
}
.breadcrumbs ul li:first-child::before {
	content: none;
}
.breadcrumbs ul li a {
	text-decoration: none;
	color: #e60033;
}

/* HOVER */

/* SP */
@media screen and (max-width: 767px) {
	.breadcrumbs {
		padding: 15px 15px;
	}
	.breadcrumbs ul {
		font-size: 12px;
	}
}

/*============================================================
	PAGINATION
*/
.pagination {
	margin: 50px 0 0 0;
	font-size: 16px;
	line-height: 1.2;
}
.pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.pagination li {
	padding: 0 5px;
}
.pagination li a,
.pagination li span {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 2px;
	min-width: 28px;
	height: 28px;
	border-radius: 4px;
	text-decoration: none;
	color: #000;
}
.pagination li.current span {
	background-color: #e60033;
	color: #fff;
}

/* HOVER */
.os-pc .pagination li a:hover {
	color: #e60033;
}

/* SP */
@media screen and (max-width: 767px) {
	.pagination {
		margin: 20px 0 0 0;
		font-size: 14px;
	}
	.pagination li {
		padding: 0 2px;
	}
}

/*============================================================
	LAYOUT MAIN
*/
.layout-main {
	position: relative;
	padding: 80px 0 0 0;
}
.layout-main .kv {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.layout-main .kv span {
	display: block;
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.layout-main .wrapper {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 50px;
	height: 180px;
}
.layout-main h1 {
	display: flex;
	font-size: 40px;
	line-height: 1.1;
	color: #fff;
}
.layout-main h1 span {
	display: block;
	padding: 0.14em 0.5em 0.14em 0.3em;
	background-color: #000;
}
.layout-main .icon {
	flex-basis: 174px;
}

/* SP */
@media screen and (max-width: 767px) {
	.layout-main {
		padding: 50px 0 0 0;
	}
	.layout-main .wrapper {
		padding: 0 15px;
		height: 100px;
	}
	.layout-main h1 {
		font-size: 22px;
	}
	.layout-main .icon {
		flex-basis: 90px;
	}
}

/*============================================================
	LINEUP LIST
*/
.lineup-list ul {
	display: flex;
	flex-wrap: wrap;
}
.lineup-list ul li {
	flex-basis: 25%;
}
.lineup-list ul li a {
	display: block;
	height: 100%;
	background-color: #e60033;
	text-decoration: none;
	color: #000;
}
.lineup-list ul li.bg1 a {
	background-color: #cb002d;
}
.lineup-list ul li .thumb {
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 260px;
	background-color: #000;
}
.lineup-list ul li .thumb span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.lineup-list ul li .thumb i {
	position: relative;
	display: block;
	width: 180px;
}
.lineup-list ul li .detail {
	position: relative;
	padding: 30px 40px 30px 20px;
}
.lineup-list ul li .detail h3 {
	margin: 0 0 10px 0;
	font-size: 30px;
	line-height: 1.1;
}
.lineup-list ul li .detail p {
	font-weight: 700;
	font-size: 14px;
	line-height: 1.3;
}
.lineup-list ul li .detail .arrow {
	display: block;
	position: absolute;
	top: 50%;
	right: 12px;
	margin-top: -13px;
	font-size: 25px;
	line-height: 25px;
	color: #fff;
}
@media screen and (max-width: 1240px) {
	.lineup-list ul li {
		flex-basis: 33.333%;
	}
	.lineup-list ul li.bg1 a {
		background-color: #e60033;
	}
	.lineup-list ul li:nth-child(even) a {
		background-color: #cb002d;
	}
}

/* HOVER */
.os-pc .lineup-list ul li a:hover {
	background-color: #000;
	color: #e60033;
}
.os-pc .lineup-list ul li a .thumb span {
	transition: transform 0.6s ease, opacity 0.4s ease;
}
.os-pc .lineup-list ul li a:hover .thumb span {
	transform: scale(1.15);
	opacity: 0.7;
}

/* TB */
@media screen and (max-width: 980px) {
	.lineup-list ul li {
		flex-basis: 50%;
	}
	.lineup-list ul li:nth-child(even) a {
		background-color: #e60033;
	}
	.lineup-list ul li.bg2 a {
		background-color: #cb002d;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.lineup-list ul li .thumb {
		height: 150px;
	}
	.lineup-list ul li .thumb i {
		width: 120px;
	}
	.lineup-list ul li .detail {
		padding: 15px 15px;
	}
	.lineup-list ul li .detail h3 {
		margin: 0 0 5px 0;
		font-size: 18px;
	}
	.lineup-list ul li .detail p {
		font-size: 11px;
	}
	.lineup-list ul li .detail .arrow {
		right: 8px;
		margin-top: -8px;
		font-size: 16px;
		line-height: 16px;
	}
}

/*============================================================
	NEWS LIST
*/
.news-list {
	padding: 0 50px 60px 50px;
}
.news-list .list {
	margin: 0 auto;
	max-width: 720px;
}
.news-list .list li {
	padding: 25px 0;
	border-bottom: 1px solid #ccc;
}
.news-list .list li a {
	display: block;
	position: relative;
	padding: 10px 30px 10px 0;
	text-decoration: none;
	color: #000;
}
.news-list .list li a i {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -13px;
	font-size: 25px;;
	line-height: 25px;
	color: #e60033;
}
.news-list .list li dt {
	margin: 0 0 10px 0;
	font-size: 24px;
	line-height: 1.2;
}
.news-list .list li dd {
	font-size: 14px;
	line-height: 1.6;
}

/* HOVER */
.os-pc .news-list .list li a:hover {
	color: #e60033;
}

/* SP */
@media screen and (max-width: 767px) {
	.news-list {
		padding: 0 15px 30px 15px;
	}
	.news-list .list li {
		padding: 10px 0;
	}
	.news-list .list li a {
		padding: 10px 20px 10px 0;
	}
	.news-list .list li a i {
		margin-top: -8px;
		font-size: 16px;
		line-height: 16px;
	}
	.news-list .list li dt {
		margin: 0 0 5px 0;
		font-size: 14px;
	}
	.news-list .list li dd {
		font-size: 12px;
	}
}

/*============================================================
	INDEX MAIN
*/
.index-main {
	background-color: transparent;
	background-image: url(../img/kv-index.jpg);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.index-main .wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
.index-main h1 img {
	width: 350px;
}
.index-main h2 {
	padding-left: 60px;
	font-size: 40px;
	line-height: 1.1;
	color: #fff;
}
.index-main h2 > span {
	display: flex;
	padding: 7px 0;
}
.index-main h2 > span > span {
	display: block;
	padding: 6px 0 9px 12px;
	background-color: #000;
}

/* TB */
@media screen and (max-width: 980px) {
	.index-main .wrapper {
		flex-direction: column;
	}
	.index-main h2 {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		margin: 40px 0 0 0;
		padding-left: 0;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.index-main h1 img {
		width: 200px;
	}
	.index-main h2 {
		margin: 20px 0 0 0;
		font-size: 21px;
	}
	.index-main h2 > span {
		padding: 5px 0;
	}
}

/*============================================================
	INDEX LINEUP
*/
.index-lineup {
	padding: 120px 0 0 0;
}

/* SP */
@media screen and (max-width: 767px) {
	.index-lineup {
		padding: 40px 0 0 0;
	}
}

/*============================================================
	INDEX NEWS
*/
.index-news {
	padding-top: 120px;
	padding-bottom: 120px;
}
.index-news .heading {
	margin: 0;
}
.index-news .news-list {
	padding-bottom: 0;
}
.index-news .btn-wrap {
	display: flex;
	justify-content: center;
	margin: 60px 0 0 0;
}

/* SP */
@media screen and (max-width: 767px) {
	.index-news {
		padding: 60px 0 60px 0;
	}
	.index-news .btn-wrap {
		margin: 30px 0 0 0;
	}
}

/*============================================================
	LINEUP INTRO
*/
.lineup-intro {
	padding: 60px 50px 0 50px;
	text-align: center;
}
.lineup-intro .h2 {
	font-weight: 900;
	font-size: 48px;
	line-height: 1.3;
}
.lineup-intro .h2 span {
	display: inline-block;
}
.lineup-intro .lead {
	margin: 40px 0 0 0;
	font-size: 18px;
	line-height: 2;
}
.lineup-intro .lead:first-child {
	margin: 0;
}

/* SP */
@media screen and (max-width: 767px) {
	.lineup-intro {
		padding: 10px 15px 0 15px;
	}
	.lineup-intro .h2 {
		font-size: 20px;
	}
	.lineup-intro .h2.indent {
		text-indent: 0.5em;
	}
	.lineup-intro .lead {
		margin: 20px 0 0 0;
		font-size: 13px;
		line-height: 1.7;
	}
	.lineup-intro .lead p br {
		display: none;
	}
}

/*============================================================
	LINEUP DETAIL
*/
.lineup-detail {
	padding: 80px 0 20px 0;
}
.lineup-detail:last-child {
	padding-bottom: 0;
}
.lineup-detail h2 {
	margin: 0 0 50px 0;
	padding: 0 20px;
	text-align: center;
	font-family: 'arial-bi', sans-serif;
	font-size: 50px;
	line-height: 1.2;
}
.lineup-detail .list ul {
	display: flex;
	flex-wrap: wrap;
}
.lineup-detail .list ul li {
	flex-basis: 25%;
	max-width: 25%;
	padding: 0 0 30px 0;
	background-color: #e60033;
}
.lineup-detail .list ul li.bg1 {
	background-color: #cb002d;
}
.lineup-detail .list ul li .thumb-slider {
	position: relative;
	overflow: hidden;
}
.lineup-detail .list ul li .thumb-slider .list {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.lineup-detail .list ul li .thumb-slider .list * {
	outline: 0;
}
.lineup-detail .list ul li .thumb-slider .list .slick-arrow {
	position: absolute;
	z-index: 5;
	top: 50%;
	margin-top: -20px;
	font-size: 40px;
	color: #e60033;
	text-shadow: 0 0 6px #000;
	line-height: 1;
}
.lineup-detail .list ul li .thumb-slider .list .slick-prev {
	left: 0;
}
.lineup-detail .list ul li .thumb-slider .list .slick-next {
	right: 0;
}
.lineup-detail .list ul li .detail {
	padding: 30px 20px 0 20px;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.4;
	color: #ddd;
	word-break: normal;
}
.lineup-detail .list ul li .detail h3 {
	margin: 0 0 10px 0;
	font-family: 'arial-bi', sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	color: #fff;
	/*word-break: normal;*/
}
.lineup-detail .list ul li .detail h3.jp {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
}
.lineup-detail .list ul li .detail .category {
	margin: 10px 0;
	padding: 8px 0;
	border: 1px solid #fff;
	text-align: center;
	font-family: 'arial-bi', sans-serif;
	font-size: 14px;
	line-height: 1.2;
	color: #fff;
}
.lineup-detail .list ul li .detail dl {
	display: flex;
	line-height: 1.3;
}
.lineup-detail .list ul li .detail dl dt {
	white-space: nowrap;
}
.lineup-detail .list ul li .detail dl dd {
	word-break: break-all;
}
.lineup-detail .list ul li .price {
	margin: 10px 0 0 0;
	padding: 0 20px 0;
	text-align: right;
	font-family: 'arial-bi', sans-serif;
	font-size: 36px;
	line-height: 1.2;
	color: #fff;
}
.lineup-detail .list ul li .price span {
	font-size: 14px;
}
.lineup-detail .list ul li .btn {
	margin: 10px 0;
}
.lineup-detail .list ul li .btn:last-child {
	margin-bottom: 0;
}
.lineup-detail .list ul li .btn a {
	position: relative;
	display: block;
	padding: 8px 0;
	border: 1px solid #fff;
	text-decoration: none;
	text-align: center;
	font-family: 'arial-bi', sans-serif;
	font-size: 16px;
	line-height: 1.2;
	color: #fff;
}
.lineup-detail .list ul li .btn a i {
	display: block;
	position: absolute;
	top: 50%;
	right: 8px;
	margin-top: -10px;
	line-height: 20px;
}
@media screen and (max-width: 1240px) {
	.lineup-detail .list ul li {
		flex-basis: 33.333%;
		max-width: 33.333%;
	}
	.lineup-detail .list ul li.bg1 {
		background-color: #e60033;
	}
	.lineup-detail .list ul li:nth-child(even){
		background-color: #cb002d;
	}
}

/* HOVER */
.os-pc .lineup-detail .list ul li .btn a:hover {
	background-color: #000;
	border-color: #000;
	color: #e60033;
}

/* TB */
@media screen and (max-width: 980px) {
	.lineup-detail .list ul li {
		flex-basis: 50%;
		max-width:50%;
	}
	.lineup-detail .list ul li:nth-child(even){
		background-color: #e60033;
	}
	.lineup-detail .list ul li.bg2 {
		background-color: #cb002d;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.lineup-detail {
		padding: 40px 0 10px 0;
	}
	.lineup-detail h2 {
		margin: 0 0 20px 0;
		font-size: 26px;
	}
	.lineup-detail .list ul li {
		padding: 0 0 15px 0;
	}
	.lineup-detail .list ul li .thumb-slider .list .slick-arrow {
		margin-top: -15px;
		font-size: 30px;
		text-shadow: 0 0 4px #000;
	}
	.lineup-detail .list ul li .detail {
		padding: 15px 15px 0 15px;
		font-size: 10px;
		word-break: normal;
	}
	.lineup-detail .list ul li .detail h3 {
		margin: 0 0 5px 0;
		font-size: 16px;
	}
	.lineup-detail .list ul li .detail h3.jp {
		font-size: 15px;
	}
	.lineup-detail .list ul li .detail .category {
		margin: 5px 0;
		padding: 6px 0;
		font-size: 10px;
	}
	.lineup-detail .list ul li .detail dl {
		display: block;
	}
	.lineup-detail .list ul li .price {
		padding: 0 15px 0;
		font-size: 24px;
	}
	.lineup-detail .list ul li .price span {
		font-size: 10px;
	}
	.lineup-detail .list ul li .btn a {
		font-size: 14px;
	}
}

/*============================================================
	DEALER AREA
*/
.dealer-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 30px 0 0 0;
	padding: 0 50px;
}
.dealer-area .area {
	display: none;
	flex-basis: 600px;
	padding: 0 30px;
}
.dealer-area .area.center {
	display: block;
}
.dealer-area ul {
	flex: 1;
}
.dealer-area ul li {
	padding: 15px 0;
}
.dealer-area ul li a {
	display: block;
	position: relative;
	padding: 20px 0;
	border: 1px solid #e60033;
	text-decoration: none;
	text-align: center;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	color: #000;
}
.dealer-area ul li a i {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -13px;
	font-size: 25px;
	line-height: 25px;
	color: #e60033;
}

/* HOVER */
.os-pc .dealer-area ul li a:hover {
	background-color: #e60033;
}
.os-pc .dealer-area ul li a:hover i {
	color: #fff;
}

@media screen and (max-width: 1240px) {
	.dealer-area .area {
		flex-basis: 460px;
	}
	.dealer-area ul li {
		padding: 10px 0;
	}
	.dealer-area ul li a {
		padding: 15px 0;
		font-size: 20px;
	}
}

/* TB */
@media screen and (max-width: 980px) {
	.dealer-area {
		padding: 0 40px;
	}
	.dealer-area .area {
		display: block;
		flex-basis: 100%;
	}
	.dealer-area .area img {
		display: block;
		margin: 0 auto;
		max-width: 600px;
	}
	.dealer-area .area.center {
		display: none;
	}
	.dealer-area ul {
		margin: 20px 0 0 0;
		padding: 0 10px;
		flex-basis: 50%;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.dealer-area {
		margin: 0;
		padding: 0 10px 20px 10px;
	}
	.dealer-area .area {
		padding: 0 10px;
	}
	.dealer-area ul {
		padding: 0 5px;
	}
	.dealer-area ul li {
		padding: 5px 0;
	}
	.dealer-area ul li a {
		padding: 10px 0;
		font-size: 14px;
	}
	.dealer-area ul li a i {
		right: 8px;
		margin-top: -8px;
		font-size: 16px;
		line-height: 16px;
	}
}

/*============================================================
	DEALER DETAIL
*/
.dealer-detail {
	padding: 100px 50px 0 50px;
}
.dealer-detail:last-child {
	padding-bottom: 120px;
}
.dealer-detail h2 {
	text-align: center;
	font-size: 48px;
	line-height: 1.2;
}
.dealer-detail .block-pref {
	padding: 50px 0 0 0;
}
.dealer-detail .block-pref h3 {
	padding: 0 0 20px 0;
	border-bottom: 2px solid #ccc;
	font-size: 30px;
	line-height: 1.2;
}
.dealer-detail .block-pref ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
}
.dealer-detail .block-pref ul li {
	flex-basis: 50%;
	padding: 0 20px;
}
.dealer-detail .block-pref ul li > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	border-bottom: 1px solid #ccc;
}
.dealer-detail .block-pref ul li .detail {
	flex: 1;
	padding: 20px 15px 20px 0;
	font-size: 14px;
	line-height: 1.6;
}
.dealer-detail .block-pref ul li .detail h4 {
	margin: 0 0 5px 0;
	font-size: 18px;
	line-height: 1.4;
}
.dealer-detail .block-pref ul li .website {
	flex-basis: 160px;
}
.dealer-detail .block-pref ul li .website a {
	display: block;
	position: relative;
	padding: 10px 0;
	border: 1px solid #e60033;
	text-decoration: none;
	text-align: center;
	font-size: 14px;
	line-height: 1.2;
	color: #000;
}
.dealer-detail .block-pref ul li .website a i {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 8px;
	margin-top: -8px;
	font-size: 16px;
	line-height: 16px;
	color: #e60033;
}

/* HOVER */
.os-pc .dealer-detail .block-pref ul li .website a:hover {
	background-color: #e60033;
}
.os-pc .dealer-detail .block-pref ul li .website a:hover i {
	color: #fff;
}

/* TB */
@media screen and (max-width: 980px) {
	.dealer-detail .block-pref ul {
		display: block;
		margin: 0;
	}
	.dealer-detail .block-pref ul li {
		padding: 0;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.dealer-detail {
		padding: 30px 15px 0 15px;
	}
	.dealer-detail:last-child {
		padding-bottom: 20px;
	}
	.dealer-detail h2 {
		font-size: 24px;
	}
	.dealer-detail .block-pref {
		padding: 20px 0;
	}
	.dealer-detail .block-pref h3 {
		padding: 0 0 10px 0;
		font-size: 20px;
	}
	.dealer-detail .block-pref ul li > div {
		display: block;
		padding: 15px 0;
	}
	.dealer-detail .block-pref ul li .detail {
		padding: 0;
		font-size: 12px;
	}
	.dealer-detail .block-pref ul li .detail h4 {
		font-size: 16px;
	}
	.dealer-detail .block-pref ul li .website {
		margin: 15px 0 0 0;
	}
}

/*============================================================
	COMPANY DETAIL
*/
.company-detail {
	margin: 60px 0;
	padding: 0 50px;
}
.company-detail h2 {
	margin: 0 auto;
	padding: 0 0 50px 0;
	max-width: 540px;
}
.company-detail .detail {
	margin: 0 auto;
	max-width: 720px;
	font-size: 16px;
}
.company-detail .detail .ff-en {
	margin: 10px 0 0 0;
	font-size: 14px;
}
.company-detail .detail > div {
	padding: 30px 0;
	border-bottom: 1px solid #ccc;
}
.company-detail .detail dl {
	display: flex;
}
.company-detail .detail dl dt {
	flex-basis: 170px;
}
.company-detail .detail dl dt span {
	display: block;
}
.company-detail .detail dl dd {
	flex: 1;
}

/* SP */
@media screen and (max-width: 767px) {
	.company-detail {
		margin: 10px 0 30px 0;
		padding: 0 15px;
	}
	.company-detail h2 {
		padding: 0 0 20px 0;
		width: 90%;
	}
	.company-detail .detail {
		font-size: 14px;
	}
	.company-detail .detail .ff-en {
		margin: 5px 0 0 0;
		font-size: 11px;
	}
	.company-detail .detail > div {
		padding: 15px 0;
	}
	.company-detail .detail dl dt {
		flex-basis: 120px;
	}
}

/*============================================================
	COMPANY MAP
*/
.company-map {
	height: 400px;
}
.company-map iframe {
	width: 100%;
	height: 100%;
}


/*============================================================*/
.font_color{
	color: red;
}
