@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  font-weight: 300;
}

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

a:hover {
  text-decoration: none;
}

a.tel {
  pointer-events: none;
  cursor: default;
}

.u-text-line {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.u-text-line:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  width: 100%;
  height: 1px;
  background: #000000;
  clip-path: inset(0 20%);
  transition: right .3s cubic-bezier(.22,1,.36,1);
}

.u-text-line:hover:after,
a:hover .u-text-line:after {
  right: 0;
}

a.u-text-underline,
.u-text-underline a,
a .u-text-underline {
  background: linear-gradient(#000,#000) left bottom no-repeat;
  background-size: 0 1px;
  transition: background-size .5s ease;
}

a.u-text-underline:hover,
.u-text-underline a:hover,
a:hover .u-text-underline {
  background-size: 100% 1px;
}

.u-opacity:hover {
  opacity: .7;
}

.u-image-scale img {
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
  will-change: transform;
  image-rendering: auto;
}

.u-image-scale:hover img {
  transform: scale(1.05);
}


.sp {
  display: none !important;
}


/* main
==================================*/
main {
  display: block; /*IE対策*/
  position: relative;
  z-index: 2;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100dvh;
  left: 0;
  top: 0;
  z-index: 998;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}

.no_move .overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#AllBox {
  width: 100%;
  word-break: break-word;
  padding-top: 84px;
}

.anchor_wrap {
  position: relative;
}

.anchor_wrap .anchor {
  position: absolute;
  z-index: -1;
  top: -84px;
}

/*　Retina対応時のCSS↓　*/
/* header
==================================*/
header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
}

header .header_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 84px;
  position: relative;
}

header .header_inner .logo {
  width: 105px;
  line-height: 1;
  font-size: 1px;
}

header .header_inner .logo img {
  width: 100%;
}

header #menu-toggle {
  display: none;
}

header .header_links {
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

header .header_links ul {
  display: flex;
  align-items: center;
  gap: 18px;
}

header .header_links ul li {
  font-size: 1px;
  line-height: 1;
  width: 20px;
}

header .header_links ul li a {
  display: block;
}

header .header_links ul li img {
  width: 100%;
}

header .g-navi {
  position: absolute;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

header .g-navi ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

header .g-navi ul li,
header .g-navi ul li a {
  font-size: 14px;
  line-height: 1.5;
  display: block;
  font-family: "Open Sans", sans-serif;
}

header .g-navi ul li a.here {
  color: #85804B;
}

header .g-navi ul li a.here:after {
  display: none;
}

@media (max-width: 959px) {
  header .g-navi ul {
    gap: 10px;
  }
}

/* footer
==================================*/
footer {
  background: #000000;
  padding: 60px 0 20px;
}

footer .footer_links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 33px;
}

footer .footer_links li {
  font-size: 1px;
  line-height: 1;
  width: 20px;
}

footer .footer_links li img {
  width: 100%;
}

footer .footer_navi {
  border-top: 1px solid #787878;
  padding: 30px 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 47px;
}

footer .footer_navi li,
footer .footer_navi li a {
  font-size: 14px;
  line-height: 1.5;
  display: block;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}

footer .footer_navi .u-text-line:after {
  background: #fff;
}

footer .copyright {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
  color: #787878;
}


/* MV
==================================*/
.main_visual {
  width: 100%;
  height: 100vh;
  position: relative;
}

.main_visual video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.main_visual .main_visual_catch {
  position: absolute;
  left: 42px;
  bottom: 45px;
  z-index: 2;
}

.main_visual .main_visual_catch .title p {
  font-size: 36px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #fff;
  line-height: 1.33;
  letter-spacing: .085em;
  overflow: hidden;
}

.main_visual .main_visual_catch .title p span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform .3s ease-in-out;
}

.main_visual .main_visual_catch .title p span:nth-child(1) {
  transition-delay: .5s;
}

.main_visual .main_visual_catch .title p span:nth-child(2) {
  transition-delay: .55s;
}

.main_visual .main_visual_catch .title p span:nth-child(3) {
  transition-delay: .6s;
}

.main_visual .main_visual_catch .title p span:nth-child(4) {
  transition-delay: .65s;
}

.main_visual .main_visual_catch .title p span:nth-child(5) {
  transition-delay: .7s;
}

.main_visual .main_visual_catch .title p span:nth-child(6) {
  transition-delay: .75s;
}

.main_visual .main_visual_catch .title p span:nth-child(7) {
  transition-delay: .8s;
}

.main_visual .main_visual_catch .title p span:nth-child(8) {
  transition-delay: .85s;
}

.main_visual .main_visual_catch .title p span:nth-child(9) {
  transition-delay: .9s;
}

.main_visual .main_visual_catch .title p span:nth-child(10) {
  transition-delay: .95s;
}

.main_visual .main_visual_catch .title p span:nth-child(11) {
  transition-delay: 1s;
}

.main_visual .main_visual_catch .title p span:nth-child(12) {
  transition-delay: 1.05s;
}

.main_visual .main_visual_catch .title p span:nth-child(13) {
  transition-delay: 1.1s;
}

.main_visual .main_visual_catch .title p span:nth-child(14) {
  transition-delay: 1.15s;
}

.main_visual .main_visual_catch .title p span:nth-child(15) {
  transition-delay: 1.2s;
}

.main_visual .main_visual_catch .title p span:nth-child(16) {
  transition-delay: 1.25s;
}

.main_visual .main_visual_catch .title p span:nth-child(17) {
  transition-delay: 1.3s;
}

#loading.loaded + #AllBox .main_visual .main_visual_catch .title p span {
  transform: translateY(0);
}

.main_visual .main_visual_catch .text {
  font-size: 16px;
  line-height: 1.375;
  color: #fff;
  margin-top: 19px;
  letter-spacing: .03em;
  overflow: hidden;
}

.main_visual .main_visual_catch .text span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform .3s ease-in-out 1.3s;
}

#loading.loaded + #AllBox .main_visual .main_visual_catch .text span {
  transform: translateY(0);
}

.main_visual .swiper-fade .swiper-slide {
    -webkit-transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, transform !important;
    transition-property: opacity, transform, -webkit-transform !important;
    pointer-events: none;
}


/* teaser
==================================*/
.teaser {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.teaser .page_title {
  font-size: 42px;
  color: #fff;
  line-height: 1.36;
  letter-spacing: .085em;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding: 0 50px;
}

.teaser .teaser_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.teaser .teaser_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teaser .teaser_text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 52px;
  z-index: 2;
}

.teaser .teaser_text .teaser_text_box {
  display: inline-block;
  padding: 13px 20px 16px;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background: #000000;
  font-size: 18px;
  letter-spacing: .06em;
  line-height: 1.333;
  font-weight: bold;
}

/* heading
==================================*/
.heading_large {
  text-align: center;
  margin-bottom: 40px;
  font-size: 25px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.4;
  letter-spacing: .06em;
}

.heading_medium {
  font-size: 25px;
  line-height: 1.4;
  padding-bottom: 5px;
  border-bottom: 1px solid #D2D2D2;
  margin-bottom: 50px;
}

.heading_small {}

/* links
==================================*/
.btn_links {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  letter-spacing: .03em;
  line-height: 1.357;
  transition: .3s;
}

.btn_links:after {
  width: 13px;
  height: 13px;
  content: '';
  background: url(/images/common/arrow.svg) center center no-repeat;
  background-size: 100% 100%;
  transition: .3s;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}

.btn_links:hover {
  opacity: .7;
}

.btn_links:hover:after {
  transform: translateX(50%);
}

.btn_viewmore {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  letter-spacing: .03em;
  line-height: 1.357;
  transition: .3s;
}

.btn_viewmore:before {
  font-size: 14px;
  letter-spacing: .03em;
  line-height: 1.357;
  font-family: "Open Sans", sans-serif;
  content: 'VIEW MORE';
}

.btn_viewmore:after {
  width: 13px;
  height: 13px;
  content: '';
  background: url(/images/common/arrow.svg) center center no-repeat;
  background-size: 100% 100%;
  transition: .3s;
  transform: rotate(90deg);
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}

.btn_viewmore:hover {
  opacity: .7;
}

@media (min-width: 948px) {
  .btn_viewmore:hover:after {
    transform: translateY(50%) rotate(90deg);;
  }
  .btn_viewmore.is-open:hover:after {
    transform: translateY(-50%) rotate(-90deg);;
  }
}

.btn_viewmore.is-open:before {
  content: 'CLOSE';
}

.btn_viewmore.is-open:after {
  transform: rotate(-90deg);
}



/*================================
	pageTop
=================================*/
#pageTop {
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 888;
  transition: 0.3s;
}
#pageTop.active {
  opacity: 1;
}
#pageTop a {
  display: block;
  width: 50px;
}
#pageTop a:hover {
  opacity: 0.7;
}

/*================================
	.test-container
=================================*/
.test-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 200px 0;
}
.test-container .box {
  width: 200px;
  height: 200px;
  background-color: red;
}
.test-container .box .text {
  font-size: 16px;
  color: #fff;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 1s ease;
}

.c-anim-up.move {
  transform: translate(0, 0);
  opacity: 1;
}

.c-anim-img picture {
  clip-path: inset(100% 0 0 0);
  transition: clip-path .5s ease-in-out .2s;
  display: block;
}

.c-anim-img.move picture {
  clip-path: inset(0 0 0 0);
}

.delay1 {
  -moz-transition-delay: 100ms !important;
  -webkit-transition-delay: 100ms !important;
  -o-transition-delay: 100ms !important;
  -ms-transition-delay: 100ms !important;
  transition-delay: 100ms !important;
}

.delay2 {
  -moz-transition-delay: 150ms !important;
  -webkit-transition-delay: 150ms !important;
  -o-transition-delay: 150ms !important;
  -ms-transition-delay: 150ms !important;
}

.delay3 {
  -moz-transition-delay: 200ms !important;
  -webkit-transition-delay: 200ms !important;
  -o-transition-delay: 200ms !important;
  -ms-transition-delay: 200ms !important;
}

.delay4 {
  -moz-transition-delay: 250ms !important;
  -webkit-transition-delay:250ms !important;
  -o-transition-delay: 250ms !important;
  -ms-transition-delay: 250ms !important;
}

.delay5 {
  -moz-transition-delay: 300ms !important;
  -webkit-transition-delay: 300ms !important;
  -o-transition-delay: 300ms !important;
  -ms-transition-delay: 300ms !important;
}

.delay6 {
  -moz-transition-delay: 350ms !important;
  -webkit-transition-delay: 350ms !important;
  -o-transition-delay: 350ms !important;
  -ms-transition-delay: 350ms !important;
}

.delay7 {
  -moz-transition-delay: 400ms !important;
  -webkit-transition-delay: 400ms !important;
  -o-transition-delay: 400ms !important;
  -ms-transition-delay: 400ms !important;
}

.delay8 {
  -moz-transition-delay: 450ms !important;
  -webkit-transition-delay: 450ms !important;
  -o-transition-delay: 450ms !important;
  -ms-transition-delay: 450ms !important;
}

.delay9 {
  -moz-transition-delay: 500ms !important;
  -webkit-transition-delay: 500ms !important;
  -o-transition-delay: 500ms !important;
  -ms-transition-delay: 500ms !important;
}

.delay10 {
  -moz-transition-delay: 550ms !important;
  -webkit-transition-delay: 550ms !important;
  -o-transition-delay: 550ms !important;
  -ms-transition-delay: 550ms !important;
}

.delay11 {
  -moz-transition-delay: 600ms !important;
  -webkit-transition-delay: 600ms !important;
  -o-transition-delay: 600ms !important;
  -ms-transition-delay: 600ms !important;
}

.delay12 {
  -moz-transition-delay: 650ms !important;
  -webkit-transition-delay: 650ms !important;
  -o-transition-delay: 650ms !important;
  -ms-transition-delay: 650ms !important;
}

.delay13 {
  -moz-transition-delay: 700ms !important;
  -webkit-transition-delay: 700ms !important;
  -o-transition-delay: 700ms !important;
  -ms-transition-delay: 700ms !important;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  backface-visibility: hidden;
}

.container {
  max-width: 1301px;
  margin: 0 auto;
  padding: 0 50px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}


/*==================================
  リスト系
==================================*/

.news_ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 95px 20px;
}

.news_ul .news_li {
  font-size: 1px;
  line-height: 1;
}

.news_ul .news_li > a {
  display: block;
}

.news_ul .news_li > a .date {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  letter-spacing: .03em;
  line-height: 1.357;
  color: #A09A58;
  display: block;
  margin-bottom: 11px;
}

.news_ul .news_li > a .title {
  font-size: 14px;
  letter-spacing: .035em;
  line-height: 1.8;
}

.news_ul .news_li > a .img_wrap {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 25px;
}

.news_ul .news_li > a .img_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  aspect-ratio: 1 / 1;
}

/*==================================
  ページナビ
==================================*/
.page_navigation .wp-pagenavi .nav-links{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 74px 0 0;
}
.page_navigation .wp-pagenavi .page-numbers {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.36;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0 5px;
  border: 0;
  width: 22px;
  color: #001318;
  position: relative;
  overflow: hidden;
}

.page_navigation .wp-pagenavi .page-numbers.next ,
.page_navigation .wp-pagenavi .page-numbers.prev {
  font-size: 14px;
}

.page_navigation .wp-pagenavi a.page-numbers:not(.next):not(.prev):after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  width: 100%;
  height: 1px;
  background: #000000;
  clip-path: inset(0 20%);
  transition: right .3s cubic-bezier(.22,1,.36,1);
}

.page_navigation .wp-pagenavi a.page-numbers:not(.next):not(.prev):hover:after {
  right: 0;
}

.page_navigation .wp-pagenavi .page-numbers.current {
  color: #85804B;
  font-size: 25px;
  line-height: 1.1;
  margin: 0 35px;
}


.page_navigation .wp-pagenavi .page-numbers.dots{
  pointer-events: none;
  background: url(/images/common/icon_dots.svg) center center no-repeat;
  background-size: 11px auto;
  overflow: hidden;
  text-indent: -9999px;
  line-height: 1;
  font-size: 1px;
  padding: 0;
}

.page_navigation .wp-pagenavi .page-numbers.prev,
.page_navigation .wp-pagenavi .page-numbers.next {
  width: auto;
  gap: 6px;
  transition: .3s;
  text-transform: uppercase;
  overflow: visible;
}

.page_navigation .wp-pagenavi .page-numbers.prev {
  margin-right: 35px;
}

.page_navigation .wp-pagenavi .page-numbers.next {
  margin-left: 35px;
}

.page_navigation .wp-pagenavi .page-numbers.prev:before,
.page_navigation .wp-pagenavi .page-numbers.next:after {
  width: 13px;
  height: 13px;
  content: '';
  background: url(/images/common/arrow.svg) center center no-repeat;
  background-size: 100% 100%;
  transition: .3s;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}

.page_navigation .wp-pagenavi .page-numbers.prev:before {
  transform: scaleX(-1);
}

.page_navigation .wp-pagenavi .page-numbers.prev:hover,
.page_navigation .wp-pagenavi .page-numbers.next:hover {
  opacity: .7;
}

.page_navigation .wp-pagenavi .page-numbers.prev:hover:before {
  transform: translateX(-50%) scaleX(-1);
}

.page_navigation .wp-pagenavi .page-numbers.next:hover:after {
  transform: translateX(50%);
}

.page_navigation .wp-pagenavi .first,
.page_navigation .wp-pagenavi .last {
  display: none;
}

.pager_wrap {
  width: 300px;
  margin: 80px auto 0;
}
.pager_wrap ul {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.pager_wrap ul li {
  font-size: 1px;
  line-height: 1;
}

.pager_wrap ul li a {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}

.pager_wrap ul .prev, 
.pager_wrap ul .next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: .3s;
  position: absolute;
  top: 0;
  bottom: 0;
}

.pager_wrap ul .prev {
  left: 0;
}

.pager_wrap ul .next{
  right: 0;
}

.pager_wrap ul .prev a,
.pager_wrap ul .next a {
  display: block;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pager_wrap ul .prev a:before,
.pager_wrap ul .next a:after {
  width: 13px;
  height: 13px;
  content: '';
  background: url(/images/common/arrow.svg) center center no-repeat;
  background-size: 100% 100%;
  transition: .3s;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}

.pager_wrap ul .prev a:before {
  transform: scaleX(-1);
}

.pager_wrap ul .prev a:hover,
.pager_wrap ul .next a:hover {
  opacity: .7;
}

.pager_wrap ul .prev a:hover:before {
  transform: translateX(-50%) scaleX(-1);
}

.pager_wrap ul .next a:hover:after {
  transform: translateX(50%);
}


/*==================================
  HOME
==================================*/
#Top #AllBox {
  padding-top: 0;
}

.top_news {
  padding: 100px 0 171px;
}

.top_news .top_news_hd {
  text-align: center;
  margin-bottom: 60px;
}

.top_news .top_news_hd .eng {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 25px;
  letter-spacing: .055em;
  line-height: 1.36;
  margin-bottom: 12px;
}

.top_news .top_news_hd .jap {
  font-size: 16px;
  letter-spacing: .03em;
  line-height: 1.5;
}

.top_news_button {
  text-align: center;
  margin-top: 80px;
}

/*==================================
  News
==================================*/
.news_area {
  padding: 120px 0 200px;
}

.news_detail {
  padding: 108px 0 200px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.news_head {
  margin-bottom: 60px;
}

.news_head .date {
  font-size: 16px;
  letter-spacing: .03em;
  line-height: 1.125;
  color: #85804B;
  margin-bottom: 10px;
}

.news_head .title {
  font-size: 26px;
  line-height: 1.44;
  letter-spacing: .057em;
}

.news_body p,
.news_body li {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .06em;
}

.news_body p {
  margin-bottom: 24px;
}

.news_body figure,
.news_body picture {
  display: block;
  width: 100%;
  margin-bottom: 60px;
}

.news_body figure img,
.news_body picture img {
  width: 100%;
}

/*==================================
  DEALER LIST
==================================*/
#Dealerlist {
  background: #fff;
}

.dealerlist_area {
  padding: 110px 0 200px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.dealerlist_area .dealerlist_item {
  margin-bottom: 100px;
}

.dealerlist_area .dealerlist_box {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.dealerlist_area .dealerlist_box + .dealerlist_box {
  margin-top: 60px;
}


.dealerlist_area .dealerlist_box .area_title {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.dealerlist_ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.dealerlist_ul .dealerlist_li {
  width: 270px;
}

.dealerlist_ul .dealerlist_li,
.dealerlist_ul .dealerlist_li p {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .06em;
}

.dealerlist_ul .dealerlist_li .address {
  margin-top: 14px;
}

.dealerlist_ul .dealerlist_li .tel {
  margin-top: 5px;
  font-family: "Open Sans", sans-serif;
}

.dealerlist_ul .dealerlist_li .url {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.33;
  letter-spacing: .03em;
  font-family: "Open Sans", sans-serif;
  padding:0 0 35px 0;
}

.dealerlist_ul .dealerlist_li .url a {
  position: relative;
  overflow: hidden;
  color: #85804B;
  background: linear-gradient(to right, #85804B, #85804B 33.33%, transparent 33.33%, transparent 66.66%, #85804B 66.66%, #85804B) 100% 100% no-repeat;
  background-size: 300% 1px;
  transition: background-position .5s ease;
  /* word-break: break-all; */
}

.dealerlist_ul .dealerlist_li .url a:hover {
  background-position: 0 100%;
}

.dealerlist_notes {
  text-align: right;
  font-size: 14px;
  line-height: 2;
  letter-spacing: .06em;
}

/*==================================
  PRODUCTS
==================================*/

.products_area {
  padding: 110px 0 200px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.products_area_item {
  margin-bottom: 110px;
}

.grid_block {
  display: grid;
}

.grid_block.col_5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 35px 23px;
}

.grid_block.col_6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 35px 20px;
}

.flex_block {
  display: flex;
  gap: 35px 30px;
}

.flex_center {
  justify-content: center;
  align-items: center;
}

.products_item {
  width: 100%;
  display: block;
  text-align: center;
}

.products_item.is-wheels {
  width: 100%;
  max-width: 176px;
}

.products_item  .img_wrap {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 6 / 5;
  display: block;
}

.products_item.is-wheels .img_wrap {
  aspect-ratio: 1 / 1;
}

.products_item  .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6 / 5;
}

.products_item  .title {
  display: inline-block;
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .06em;
}

.products_viewmore {
  margin-bottom: 60px;
}

.products_viewmore .products_viewmore_body {
  margin-bottom: 38px;
  display: none;
}

.products_viewmore .products_viewmore_item {
  margin-bottom: 24px;
}

.products_viewmore .products_viewmore_body h3 {
  font-size: 16px;
  line-height: 2;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.products_viewmore .products_viewmore_body p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: .06em;
}

.products_viewmore .products_viewmore_title {
  font-size: 16px;
  line-height: 2;
  letter-spacing: .06em;
  margin: 34px 0;
}

.products_viewmore .products_viewmore_right {
  font-size: 16px;
  line-height: 2;
  letter-spacing: .06em;
  text-align: right;
  margin-top: 38px;
}

.products_viewmore .products_viewmore_button {
  text-align: center;
}

.products_catalog {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  margin-top: 120px;
}

.products_catalog .products_catalog_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  height: 213px;
  padding-left: 50%;
  background: linear-gradient(to right, transparent, transparent 50%, #000 50%, #000) center center no-repeat;
  overflow: hidden;
  position: relative;
  color: #fff;
}

.products_catalog .products_catalog_link:before {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  content: '';
  background: url(/images/products/bg_catalog.jpg) center center no-repeat;
  background-size: cover;
}

.products_catalog .products_catalog_link .img_wrap {
  width: 164px;
}

.products_catalog .products_catalog_link .img_wrap img {
  width: 100%;
}

.products_catalog .products_catalog_link .box_wrap .title {
  display: block;
  margin-bottom: 33px;
}

.products_catalog .products_catalog_link .box_wrap .title .eng {
  display: block;
  font-size: 25px;
  letter-spacing: .06em;
  line-height: 1.12;
  font-family: 'Gill Sans';
}

.products_catalog .products_catalog_link .box_wrap .title .jap {
  font-size: 14px;
  letter-spacing: .03em;
  line-height: 1.5;
}

.products_catalog .products_catalog_link .box_wrap .links {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  letter-spacing: .03em;
  line-height: 1.143;
  font-family: 'Gill Sans';
} 

.products_catalog .products_catalog_link .box_wrap .links:after {
  width: 13px;
  height: 13px;
  content: '';
  background: url(/images/common/arrow_w.svg) center center no-repeat;
  background-size: 100% 100%;
  transition: .3s;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
  position:relative;
  top:-1px;
  left:0;
}

.products_catalog .products_catalog_link:hover {
  opacity: .7;
}

.products_catalog .products_catalog_link:hover .box_wrap .links:after {
  transform: translateX(20%);
}

/*==================================
  PRODUCTS ECU
==================================*/
.ecu_detail {
  padding: 80px 0 200px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.products_head {
  text-align: center;
  margin-bottom: 80px;
}

.products_head .main_title {
  font-size: 25px;
  line-height: 1.36;
  letter-spacing: .06em;
  margin-bottom: 7px;
}

.products_head .page_title {
  font-size: 42px;
  line-height: 1.36;
  letter-spacing: .06em;
}


.ecu_mainimg {
  width: 100%;
  margin-bottom: 120px;
}

.ecu_mainimg img {
  width: 100%;
}

.products_body .grid_block.col_5 {
  gap: 53px 20px;
}

.products_body .products_item .img_wrap {
  aspect-ratio: 1 / 1;
}

.products_body .products_item .img_wrap img {
  aspect-ratio: 1 / 1;
}

.products_body .products_item .title {
  margin-top: 16px;
  line-height: 1.7;
}

/*==================================
  PRODUCTS WHEEL
==================================*/

#Products .contents {
  overflow: hidden;
}

.products_detail {
  padding: 80px 0 200px;
}

.scroll_notes {
  font-size: 12.5px;
  line-height: 1.44;
  padding-left: 24px;
  background: url(/images/common/icon_scroll_h.svg) left 5px no-repeat;
  background-size: 19px auto;
}

.wheels_gallery {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  text-align: center;
  margin-bottom: 100px;
}

.wheels_gallery .swiper {
  overflow: visible;
}

.wheels_gallery .swiper .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.wheels_gallery .swiper .swiper-slide img {
  width: 100%;
  max-width: unset;
  /* height: 530px; */
}

.wheels_gallery .thumb-swiper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding:20px 0 0 0;
}

.wheels_gallery .thumb-media {
  padding:0 10px 20px 10px;
}

.wheels_gallery .thumb-swiper img {
  height: 75px;
  width: auto;
  cursor: pointer;
}


.wheels_movie {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 90px;
}

.wheels_movie .wheels_movie_inner {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.wheels_movie .wheels_movie_inner iframe {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wheels_info {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 100px;
}

.wheels_info .img_wrap {
  width: 34%;
}

.wheels_info .img_wrap img {
  width: 100%;
}

.wheels_info .box_wrap {
  width: 62%;
}

.wheels_info h3 {
  font-size: 25px;
  line-height: 1.44;
  letter-spacing: .12em;
  margin-bottom: 36px;
}

.wheels_info p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: .06em;
}

.wheels_info p + p {
  margin-top: 2em;
}

/* .wheels_info .notes {
  padding-left: 2.5em;
  text-indent: -2.5em;
} */


.wheels_image {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.wheels_image img {
  width: 100%;
}

.wheels_parameter {
  width: 100%;
}

.wheels_parameter .scroll_notes {
    margin-bottom: 10px;
    display: none;
}

.wheels_parameter .wheels_parameter_table {
  width: 100%;
  overflow-y: hidden !important;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wheels_parameter table {
  /* width: 100%;
  min-width: 1000px; */
}

.wheels_parameter table th,
.wheels_parameter table td {
  height: 60px;
  vertical-align: middle;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  padding: 9px 10px;
  font-weight: 300;
  word-break: keep-all;
}

.wheels_parameter table th {
  background: #D2D2D2;
}

.wheels_parameter table th + th {
  border-left: 2px solid #F7F4F3;
}

.wheels_parameter table td {
  border-bottom: 2px solid #E6E6E6;
}

.wheels_parameter table td + td {
  border-left: 2px solid #E6E6E6;
}

.wheels_parameter table th:not(.jap),
.wheels_parameter table td:not(.jap) {
  font-family: "Open Sans", sans-serif;
}

.wheels_parameter table td .price {
  font-family: 'Gill Sans';
}

.wheels_parameter .notes {
  margin-top: 25px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: .06em;
}

@media (max-width: 1114px) {
  .wheels_parameter .scroll_notes {
      display: block !important;
  }
}

/* @media (max-width: 999px) {

  .wheels_gallery .swiper .swiper-slide img {
    height: 424px;
  }
} */

/*==================================
  BRAND
==================================*/
#Brand {
  background: #fff;
}

.brand_message {
  padding: 110px 0 120px;
}

.brand_message .brand_message_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.brand_message .brand_message_inner .img_wrap {
  width: 25.2%;
}

.brand_message .brand_message_inner .img_wrap img {
  width: 100%;
}

.brand_message .brand_message_inner .box_wrap {
  width: 68%;
}

.brand_message .brand_message_inner .box_wrap p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .06em;
}

.brand_message .brand_message_inner .box_wrap p + p {
  margin-top: 1.8em;
}

.teaser_history,
.teaser_history .page_title {
  text-align: right;
}

.brand_history {
  padding: 110px 0;
}

.brand_history .brand_history_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.brand_history .brand_history_item {
  display: flex;
  align-items: flex-start;
}

.brand_history .brand_history_inner .brand_history_item:nth-child(even) {
  flex-direction: row-reverse;
}

.brand_history .brand_history_inner .brand_history_item + .brand_history_item {
  margin-top: 50px;
}

.brand_history .brand_history_item .img_wrap {
  width: 50%;
}

.brand_history .brand_history_item .img_wrap img {
  width: 100%;
}

.brand_history .brand_history_item .box_wrap {
  width: 50%;
}

.brand_history .brand_history_inner .brand_history_item:nth-child(odd) .box_wrap {
  padding-right: 25px;
}

.brand_history .brand_history_inner .brand_history_item:nth-child(even) .box_wrap {
  padding-left: 25px;
}

.brand_history .brand_history_item .box_wrap .title {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.brand_history .brand_history_item .box_wrap p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .06em;
}

.brand_history .brand_history_item .box_wrap p + p {
  margin-top: 1.8em;
}


.teaser_philosophy {
  height: 510px;
  align-items: flex-start;
  padding-top: 36px;
}

@media (max-width: 959px) {

  .teaser_philosophy .teaser_image {
    display: flex;
    justify-content: center;
    background: #736e6e;
  }

  .teaser_philosophy .teaser_image img {
    height: 85%;
    margin-top: 5%;
  }
}

.brand_philosophy {
  padding: 110px 0 200px;
}

.brand_philosophy .brand_philosophy_inner {
  width: 100%;
  max-width: 684px;
  margin: 0 auto;
}

.brand_philosophy p,
.brand_philosophy li {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .06em;
}

.brand_philosophy .brand_philosophy_hd {
  text-align: center;
  margin-bottom: 27px;
}

.brand_philosophy .brand_philosophy_hd .eng {
  font-size: 27px;
  font-weight: bold;
  line-height: 1.37;
  display: block;
  margin-bottom: 8px;
}

.brand_philosophy .brand_philosophy_hd .jap {
  font-size: 14px;
  line-height: 1.8;
  color: #85804B;
  letter-spacing: .06em;
}

.brand_philosophy_ol {
  margin-top: 55px;
  padding-left: 30px;
}

.brand_philosophy_ol li {
  list-style: decimal;
}

.brand_philosophy_ol li::marker {
  color: #85804B;
  font-family: 'Gill Sans';
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: .035em;
}

.brand_philosophy_ol li + li {
  margin-top: 50px;
}


