@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* パンくずリスト */
.bread {
  width: 100%;
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: 5px;
}
.bread ul li a {
  transition: 0.15s;
}
@media (max-width: 599px) {
  .bread ul li a {
    font-size: 14px;
  }
}
.bread ul li a:hover {
  opacity: 0.7;
}
.bread ul li:after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}
.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

.wrap {
  overflow: hidden;
}

.mv_cta {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1500px) {
  .mv_cta {
    max-width: 1000px;
  }
}
@media (max-width: 1300px) {
  .mv_cta {
    bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .mv_cta {
    max-width: 950px;
  }
}
@media (max-width: 768px) {
  .mv_cta {
    width: 90%;
    bottom: 10%;
  }
}
@media (max-width: 599px) {
  .mv_cta {
    bottom: 30px;
  }
}
.mv_cta .mv_cta_text {
  width: 65%;
  margin: 0 auto 20px;
  position: relative;
}
@media (max-width: 768px) {
  .mv_cta .mv_cta_text {
    width: 100%;
    padding-left: 0;
    margin: 0 auto 10px;
  }
}
.mv_cta .mv_cta_text .car_img {
  width: 400px;
  position: absolute;
  top: -110px;
  right: -200px;
}
@media (max-width: 599px) {
  .mv_cta .mv_cta_text .car_img {
    width: 135px;
    top: -75px;
    right: -10%;
  }
}

.cta_row a {
  border: 2px solid #fff;
  text-align: center;
  width: 380px;
  text-align: center;
  position: relative;
  font-size: 24px;
  border-radius: 60px;
  padding: 20px 0;
}
@media (max-width: 1500px) {
  .cta_row a {
    width: 330px;
    font-size: 20px;
  }
}
.cta_row a::after {
  content: url(../images/arrow_green.png);
  position: absolute;
  top: 29%;
  right: 5px;
  transform: scale(0.5) translateY(-50%);
  transition: 0.3s;
}
@media (max-width: 599px) {
  .cta_row a::after {
    top: 17%;
  }
}
@media (max-width: 768px) {
  .cta_row a {
    width: 48%;
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .cta_row a {
    width: 100%;
    font-size: 18px;
    padding: 10px 0;
  }
}
.cta_row .cta_owner {
  margin-right: 20px;
  color: #fff;
  background-color: #000;
}
.cta_row .cta_owner:hover {
  color: #000;
  background-color: #fff;
  opacity: 1;
}
@media (max-width: 599px) {
  .cta_row .cta_owner {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.cta_row .cta_consider {
  color: #000;
  background-color: #fff;
}
.cta_row .cta_consider:hover {
  color: #fff;
  background-color: #000;
  opacity: 1;
}
.cta_row .cta_consider.cta_consider_line {
  border: 1px solid #06c755;
  background-color: #06c755;
  color: #fff;
}
.cta_row .cta_consider.cta_consider_line::after {
  content: url(../images/arrow_line.png);
  transform: scale(0.7) translateY(-50%);
  top: 45%;
  right: 10px;
}
@media (max-width: 599px) {
  .cta_row .cta_consider.cta_consider_line::after {
    top: 41%;
    right: 14px;
  }
}
.cta_row .cta_consider.cta_consider_line:hover {
  background-color: #fff;
  color: #06c755;
}
.cta_row .cta_consider.cta_consider_line:hover::after {
  content: url(../images/arrow_line2.png);
}

.ctaarea_wrap,
.ctaarea_wrap2 {
  padding-top: 50px;
  overflow: hidden;
}

.ctaarea {
  background: url(../images/cta_bg.png) right/cover no-repeat;
  padding: 90px 0;
}
@media (max-width: 599px) {
  .ctaarea {
    padding: 60px 0;
  }
}
.ctaarea .mv_cta_text {
  width: 65%;
  margin: 0 auto 20px;
  position: relative;
}
@media (max-width: 768px) {
  .ctaarea .mv_cta_text {
    padding-left: 0;
    width: 100%;
  }
}
.ctaarea .mv_cta_text .car_img {
  width: 400px;
  position: absolute;
  top: -110px;
  right: -200px;
}
@media (max-width: 599px) {
  .ctaarea .mv_cta_text .car_img {
    width: 135px;
    top: -70px;
    right: -10%;
  }
}

.common_ttl {
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 599px) {
  .common_ttl {
    margin-bottom: 40px;
  }
}
.common_ttl h2 {
  font-size: 20px;
  position: relative;
}
.common_ttl h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 100px;
  background-color: #000;
  border-radius: 40px;
}
@media (max-width: 599px) {
  .common_ttl h2::after {
    width: 80px;
  }
}
@media (max-width: 599px) {
  .common_ttl h2 {
    font-size: 18px;
  }
}
.common_ttl h2 span {
  font-size: 48px;
  display: block;
}
@media (max-width: 599px) {
  .common_ttl h2 span {
    font-size: 32px;
  }
}

.common_btn {
  width: 250px;
  font-size: 18px;
  display: block;
  color: #fff;
  border-radius: 60px;
  text-align: center;
  padding: 15px 0;
  position: relative;
  border: 1px solid #fff;
}
.common_btn::after {
  content: url(../images/arrow_green.png);
  position: absolute;
  top: 17%;
  right: 5px;
  transform: scale(0.4) translateY(-50%);
  transition: 0.3s;
}
.common_btn:hover {
  background-color: #fff;
  color: #000;
  opacity: 1;
}

.slide-arrow {
  width: 40px;
  position: absolute;
  top: 35%;
  cursor: pointer;
}
.slide-arrow.prev-arrow {
  left: -60px;
}
@media (max-width: 599px) {
  .slide-arrow.prev-arrow {
    left: -10%;
  }
}
.slide-arrow.next-arrow {
  right: -60px;
}
@media (max-width: 599px) {
  .slide-arrow.next-arrow {
    right: -10%;
  }
}
@media (max-width: 599px) {
  .slide-arrow {
    width: 30px;
    top: 25%;
  }
}

.cta_fix {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 10000;
}
@media (max-width: 599px) {
  .cta_fix {
    bottom: 0;
    right: 0;
    width: 100%;
    display: flex;
  }
}
.cta_fix a {
  width: 150px;
  height: 150px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background-color: #337c85;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 1.4;
  border: 1px solid #337c85;
  position: relative;
}
.cta_fix a.line_btn {
  background-color: #06c755;
  display: none;
}
.cta_fix a.line_btn::after {
  content: url(../images/arrow_line.png);
}
@media (max-width: 599px) {
  .cta_fix a.line_btn {
    display: block;
  }
}
.cta_fix a::after {
  content: url(../images/arrow_black.png);
  position: absolute;
  bottom: -20px;
  right: 36%;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 599px) {
  .cta_fix a::after {
    right: -5px;
    top: 35%;
  }
}
.cta_fix a:hover {
  opacity: 1;
  background-color: #fff;
  color: #337c85;
}
@media (max-width: 599px) {
  .cta_fix a {
    width: 50%;
    height: auto;
    padding: 5px 0;
    border-radius: 0;
    font-size: 16px;
    padding-right: 10px;
    line-height: 20px;
  }
}

.movie {
  position: relative;
  max-width: 1120px;
  width: 100%;
  z-index: 50;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  font-size: 0;
}
@media (max-width: 599px) {
  .movie {
    margin: 0 calc(52% - 50vw);
    width: 96vw;
  }
}
.movie video {
  width: 100%;
}

.flt_campaign {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 10001;
  width: 645px;
  transform: translateY(0);
}
@media (max-width: 599px) {
  .flt_campaign {
    width: 80%;
    bottom: 60px;
  }
}
.flt_campaign a {
  display: block;
}
.flt_campaign a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.close-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
}
@media (max-width: 599px) {
  .close-btn {
    width: 40px;
    height: 40px;
    bottom: auto;
    top: -27%;
  }
}

/* header */
header {
  padding: 20px 50px;
}
@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }
}
header .header_logo {
  width: 120px;
}
@media (max-width: 768px) {
  header .header_logo {
    margin: 0 auto;
  }
}
header .header_btn {
  width: 550px;
}
@media (max-width: 768px) {
  header .header_btn {
    display: none;
  }
}
header .header_btn a {
  width: 260px;
  text-align: center;
  padding: 10px 0;
  border: 1px solid #000;
  position: relative;
  border-radius: 40px;
  display: block;
  background-color: #fff;
}
header .header_btn a::after {
  content: url(../images/arrow_black.png);
  position: absolute;
  top: 25%;
  right: 5px;
  transform: scale(0.5) translateY(-50%);
  transition: 0.3s;
}
header .header_btn a:hover {
  background-color: #000;
  color: #fff;
  opacity: 1;
}
header .header_btn a:hover::after {
  content: url(../images/arrow_white.png);
}
header .header_btn a.line_btn {
  margin-left: 20px;
  border: 1px solid #06c755;
  background-color: #06c755;
  color: #fff;
}
header .header_btn a.line_btn::after {
  content: url(../images/arrow_line.png);
}
header .header_btn a.line_btn:hover {
  background-color: #fff;
  color: #06c755;
}
header .header_btn a.line_btn:hover::after {
  content: url(../images/arrow_line2.png);
}

/* footer */
footer {
  background-color: #000;
  padding: 120px 0 30px;
}
@media (max-width: 599px) {
  footer {
    padding: 60px 0 80px;
  }
}
footer .footer_ttl {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  footer .footer_ttl {
    margin-bottom: 20px;
  }
}
footer .footer_ttl p {
  width: 100px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
footer .footer_ttl .footer_border {
  width: calc(100% - 100px);
  background-color: #fff;
  height: 1px;
}
footer .footer_row {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  footer .footer_row {
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }
}
footer .store_info,
footer .store_img {
  width: 45%;
}
@media (max-width: 599px) {
  footer .store_info,
  footer .store_img {
    width: 100%;
  }
}
footer .store_info p {
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  footer .store_img {
    margin-bottom: 20px;
  }
}
footer .footer_logo {
  width: 100px;
  margin: 0 auto 20px;
}
footer .copyright {
  text-align: center;
  font-size: 14px;
  color: #fff;
}
footer .copyright a {
  color: #fff;
}

/* top */
.mv {
  overflow: hidden;
}
@media (max-width: 599px) {
  .mv {
    background-image: url("../images/bg_cta.jpg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
  }
}
.mv .mv_inner {
  min-width: 1300px;
  position: relative;
  max-height: 1700px;
}
@media (max-width: 1200px) {
  .mv .mv_inner {
    min-width: 90%;
  }
}
@media (max-width: 599px) {
  .mv .mv_inner {
    min-width: 100%;
  }
}
.mv .mv_new {
  width: 53%;
  position: absolute;
  top: 80px;
  left: 0;
}
@media (max-width: 599px) {
  .mv .mv_new {
    width: 59%;
    top: 10px;
    padding-top: 35px;
  }
}
.mv .mv_new_img {
  padding-left: 90px;
  margin-bottom: 90px;
}
@media (max-width: 599px) {
  .mv .mv_new_img {
    padding-left: 10px;
    width: 100%;
  }
}
.mv .mv_new_text {
  background-color: #000;
  text-align: center;
  width: 60%;
  border-radius: 0 60px 60px 0;
  padding: 10px 0;
}
@media (max-width: 1200px) {
  .mv .mv_new_text {
    width: 100%;
  }
}
.mv .mv_new_text h2 {
  color: #fff;
  font-size: 45px;
}
@media (max-width: 599px) {
  .mv .mv_new_text h2 {
    font-size: 24px;
  }
}
@media (max-width: 599px) {
  .mv .inner {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .mv .mv_cta_top_img {
    width: 90%;
    margin: 0 auto 20px;
    max-width: 345px;
  }
}
.mv .movie {
  margin-bottom: 40px;
  max-width: 760px;
}
@media (max-width: 599px) {
  .mv .movie {
    margin-inline: auto;
    margin-bottom: 0;
    width: 100%;
    border-radius: 0;
    position: relative;
    z-index: 10;
    transform: translateY(-23%);
    height: 220px;
  }
  .mv .movie video {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.mv_cta_top {
  background-image: url("../images/bg_cta.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 599px) {
  .mv_cta_top {
    background-image: url("../images/bg_cta_sp.jpg");
    padding: 40px 0 20px;
    -webkit-clip-path: inset(0 round 0 0 50% 50%);
            clip-path: inset(0 round 0 0 50% 50%);
    position: relative;
    z-index: 100;
    margin-bottom: 30px;
    width: 180%;
    margin-left: -40%;
  }
}
.mv_cta_top p {
  color: #FFFE58;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .mv_cta_top p {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}

@media (max-width: 599px) {
  .mv_cta_top_sp {
    padding: 40px 0 0;
    transform: translateY(-27%);
    text-align: center;
  }
  .mv_cta_top_sp .inner {
    width: 90%;
  }
  .mv_cta_top_sp p {
    color: #FFFE58;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .mv_cta_top_sp p {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}

.erea {
  background-color: #e5e5e5;
  padding: 90px 0;
}
@media (max-width: 599px) {
  .erea {
    padding: 40px 0;
  }
}
.erea .erea_map,
.erea .erea_text {
  width: 49%;
}
@media (max-width: 599px) {
  .erea .erea_map,
  .erea .erea_text {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .erea .erea_map {
    margin-bottom: 20px;
  }
}
.erea .erea_text .erea_text_img {
  margin-bottom: 20px;
}
.erea .erea_text .erea_text_box {
  background-color: #fff;
  padding: 25px;
}
@media (max-width: 768px) {
  .erea .erea_text .erea_text_box {
    padding: 20px;
  }
  .erea .erea_text .erea_text_box .row {
    flex-direction: column-reverse;
  }
}
.erea .erea_text .erea_text_box p,
.erea .erea_text .erea_text_box img {
  width: 48%;
}
@media (max-width: 768px) {
  .erea .erea_text .erea_text_box p,
  .erea .erea_text .erea_text_box img {
    width: 100%;
  }
}
.erea .erea_text .erea_text_box p {
  font-size: 16px;
  line-height: 1.6;
  padding-left: 30px;
}
@media (max-width: 599px) {
  .erea .erea_text .erea_text_box p {
    font-size: 16px;
    text-align: left;
  }
}
@media (max-width: 599px) {
  .erea .erea_text .erea_text_box img {
    margin-bottom: 10px;
  }
}

.showroom {
  padding: 80px 0;
}
@media (max-width: 599px) {
  .showroom {
    padding: 50px 0;
  }
}
.showroom .showroom_thumnail {
  margin-bottom: 30px;
}
.showroom .showroom_thumnail li {
  margin: 0px 5px;
}
.showroom .showroom_slide {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.showroom .showroom_slide li {
  margin: 0px 5px;
}
.showroom .showroom_border {
  border-bottom: 4px solid #337c85;
  width: 1000px;
  margin: 60px auto 0;
}
@media (max-width: 1200px) {
  .showroom .showroom_border {
    width: 90%;
  }
}

.comment {
  overflow: hidden;
}
.comment .comment_cont {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .comment .comment_cont {
    width: 100%;
    padding: 60px;
  }
}
@media (max-width: 599px) {
  .comment .comment_cont {
    width: 90%;
    padding: 0;
    overflow: visible;
  }
}
.comment .comment_item {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .comment .comment_item {
    margin: 0 15px;
  }
}
.comment .comment_item .row {
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .comment .comment_item .row {
    flex-wrap: wrap;
  }
}
.comment .comment_item .comment_item_img {
  width: 550px;
  position: relative;
  z-index: 100;
}
@media (max-width: 1200px) {
  .comment .comment_item .comment_item_img {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .comment .comment_item .comment_item_img {
    width: 100%;
  }
}
.comment .comment_item .comment_item_text {
  width: 600px;
  background-color: #e5e5e5;
  padding: 50px;
  padding-top: 20px;
  position: relative;
  z-index: 0;
}
@media (max-width: 1200px) {
  .comment .comment_item .comment_item_text {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .comment .comment_item .comment_item_text {
    width: 100%;
    padding: 20px;
  }
}
.comment .comment_item .comment_item_text .comment_item_ttl {
  width: 330px;
}
@media (max-width: 1200px) {
  .comment .comment_item .comment_item_text .comment_item_ttl {
    width: 280px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .comment .comment_item01 {
    transform: translateX(0);
    animation: none;
  }
}
.comment .comment_item01 .comment_item_text {
  padding-left: 100px;
  transform: translate(-120px, -80px);
}
@media (max-width: 768px) {
  .comment .comment_item01 .comment_item_text {
    transform: translate(0, -30px);
    padding-left: 20px;
  }
}
.comment .comment_item01 .comment_item_text p {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .comment .comment_item01 .comment_item_text p {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .comment .comment_item02 {
    transform: translateX(0);
    animation: none;
  }
  .comment .comment_item02 .row {
    flex-direction: column-reverse;
  }
}
.comment .comment_item02 .comment_item_text {
  width: 570px;
  padding-top: 100px;
}
@media (max-width: 1200px) {
  .comment .comment_item02 .comment_item_text {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .comment .comment_item02 .comment_item_text {
    width: 100%;
    padding-top: 35px;
    transform: translate(0, -35px);
  }
}
.comment .comment_item02 .comment_item_text .comment_item_ttl {
  position: absolute;
  left: -20px;
  top: 20px;
}
@media (max-width: 768px) {
  .comment .comment_item02 .comment_item_text .comment_item_ttl {
    position: inherit;
    left: auto;
    top: auto;
  }
}
.comment .comment_item02 .comment_item_img {
  transform: translate(-150px, 0px);
}
@media (max-width: 1200px) {
  .comment .comment_item02 .comment_item_img {
    transform: translate(-50px, 0px);
  }
}
@media (max-width: 599px) {
  .comment .comment_item02 .comment_item_img {
    transform: translate(0, 0px);
  }
}
@media (max-width: 768px) {
  .comment .comment_item03 {
    transform: translateX(0);
    animation: none;
  }
}
@media (max-width: 768px) {
  .comment .comment_item03 .comment_item_img {
    width: 90%;
  }
}
@media (max-width: 599px) {
  .comment .comment_item03 .comment_item_img {
    position: inherit;
    z-index: 100;
  }
}
.comment .comment_item03 .comment_item_text {
  transform: translate(-30px, 0px);
  padding-top: 120px;
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .comment .comment_item03 .comment_item_text {
    padding-top: 100px;
    padding-right: 20px;
  }
}
@media (max-width: 599px) {
  .comment .comment_item03 .comment_item_text {
    padding-top: 130px;
    padding-right: 20px;
    transform: translate(0, -50px);
  }
}
.comment .comment_item03 .comment_item_text .comment_item_ttl {
  width: 500px;
  position: absolute;
  top: -30px;
  left: 10px;
}
@media (max-width: 1200px) {
  .comment .comment_item03 .comment_item_text .comment_item_ttl {
    width: 400px;
  }
}
@media (max-width: 599px) {
  .comment .comment_item03 .comment_item_text .comment_item_ttl {
    width: 280px;
    top: 60px;
    z-index: 1000;
  }
}
.comment .comment_item03 .comment_item_jinbutu {
  width: 150px;
  position: absolute;
  bottom: -30px;
  right: -70px;
}
@media (max-width: 599px) {
  .comment .comment_item03 .comment_item_jinbutu {
    width: 80px;
    display: none;
  }
}
.comment .comment_item03 .comment_item_btn {
  width: 280px;
}
.comment .comment_item03 .comment_item_btn a {
  width: 100%;
  display: block;
  text-align: center;
  color: #fff;
  padding: 15px 0;
  background-color: #337c85;
  position: relative;
  border-radius: 40px;
  margin-top: 30px;
  border: 1px solid #337c85;
  font-weight: 500;
}
.comment .comment_item03 .comment_item_btn a::after {
  content: url(../images/arrow_black.png);
  position: absolute;
  top: 29%;
  right: 5px;
  transform: scale(0.5) translateY(-50%);
  transition: 0.3s;
}
@media (max-width: 599px) {
  .comment .comment_item03 .comment_item_btn a::after {
    top: 31%;
  }
}
.comment .comment_item03 .comment_item_btn a:hover {
  background-color: #fff;
  color: #337c85;
}
@media (max-width: 599px) {
  .comment .comment_item03 .comment_item_btn a {
    margin-top: 20px;
  }
}
@media (max-width: 599px) {
  .comment .comment_slide .slide-arrow {
    top: 40%;
    z-index: 100;
  }
  .comment .comment_slide .prev-arrow {
    left: -2%;
  }
  .comment .comment_slide .next-arrow {
    right: -2%;
  }
}

.mini_time {
  padding: 70px 0;
  background-color: #e5e5e5;
}
@media (max-width: 599px) {
  .mini_time {
    padding: 40px 0;
  }
}
.mini_time .mini_time_ttl {
  width: 80%;
  margin: 0 auto 30px;
}
@media (max-width: 599px) {
  .mini_time .mini_time_ttl {
    width: 100%;
  }
}
.mini_time .mini_time_row {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .mini_time .mini_time_row {
    margin-bottom: 20px;
  }
}
.mini_time .mini_time_item {
  width: 32%;
}
@media (max-width: 599px) {
  .mini_time .mini_time_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.mini_time .mini_time_img {
  background-color: #fff;
  padding: 20px;
}
@media (max-width: 599px) {
  .mini_time .mini_time_img img {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
}
.mini_time .mini_time_text {
  text-align: center;
  padding: 10px 0;
  position: relative;
  background-color: #fff;
}
.mini_time .mini_time_text::before {
  background-color: #000;
}
.mini_time .mini_time_text p {
  font-size: 23px;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media (max-width: 599px) {
  .mini_time .mini_time_text p {
    font-size: 20px;
  }
}
.mini_time .mini_time_underline {
  text-align: center;
}
.mini_time .mini_time_underline p {
  font-size: 32px;
  font-weight: bold;
  display: inline;
  padding-bottom: 25px;
  background-position: left 0% center;
  background-size: 200% 0.8em;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #ffff69 50%);
  transition: background-position 0.3s ease 0s;
}
@media (max-width: 599px) {
  .mini_time .mini_time_underline p {
    font-size: 28px;
  }
}

.product {
  background: url(../images/product_bg.png) top center/cover no-repeat;
  padding-top: 80px;
  padding-bottom: 0;
}
@media (max-width: 599px) {
  .product {
    padding-top: 50px;
  }
}
.product .common_ttl {
  position: relative;
}
.product .common_ttl h2::after {
  content: none;
}
.product .scroll {
  position: absolute;
  left: 50%;
  top: 110px;
  transform: translateX(-50%);
}
@media (max-width: 599px) {
  .product .scroll {
    top: 90px;
  }
}
.product .scroll p {
  border-radius: 40px;
  color: #fff;
  width: 100px;
  background-color: #000;
  padding: 3px;
}
.product .scroll .scroll_border {
  width: 1px;
  height: 100px;
  background-color: #000;
  margin: 0 auto;
}
.product .countryman {
  overflow: hidden;
}
@media (max-width: 599px) {
  .product .countryman {
    padding-bottom: 220px;
  }
}
.product .countryman .countryman_ttl {
  text-align: center;
}
.product .countryman .countryman_ttl h3 {
  font-size: 72px;
  margin-bottom: 50px;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
}
.product .countryman .countryman_ttl h3 span {
  position: relative;
  top: -15px;
}
@media (max-width: 599px) {
  .product .countryman .countryman_ttl h3 {
    font-size: 36px;
    padding-top: 20px;
    margin-bottom: 25px;
  }
  .product .countryman .countryman_ttl h3 span {
    position: relative;
    top: -8px;
  }
}
.product .countryman .countryman_ttl p {
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .product .countryman .countryman_ttl p {
    font-size: 19px;
  }
}
.product .countryman_info {
  width: 80%;
  position: relative;
}
@media (max-width: 599px) {
  .product .countryman_info {
    width: 100%;
    margin-bottom: 100px;
  }
}
.product .countryman_info .countryman_info_text {
  position: absolute;
  bottom: 50px;
  left: 80px;
  width: 100%;
}
@media (max-width: 599px) {
  .product .countryman_info .countryman_info_text {
    bottom: -100px;
    left: 0;
  }
}
.product .countryman_info .countryman_info_text .countryman_car {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .product .countryman_info .countryman_info_text .countryman_car {
    width: 100%;
    margin-bottom: 20px;
  }
}
.product .countryman_info .countryman_info_text h4 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .product .countryman_info .countryman_info_text h4 {
    font-size: 20px;
  }
}
.product .countryman_info .countryman_info_text .price {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .product .countryman_info .countryman_info_text .price {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .product .countryman_info .countryman_info_text p {
    font-size: 14px;
  }
}
.product .countryman_imgs {
  margin-bottom: 80px;
  position: relative;
}
@media (max-width: 599px) {
  .product .countryman_imgs {
    margin-bottom: 80px;
  }
}
.product .countryman_imgs .countryman_imgs_item {
  position: absolute;
  top: 10%;
  left: 0;
  width: 80%;
}
@media (max-width: 599px) {
  .product .countryman_imgs .countryman_imgs_item {
    width: 100%;
  }
}
.product .countryman_imgs .countryman_imgs_item .row .countryman_imgs_item01,
.product .countryman_imgs .countryman_imgs_item .row .countryman_imgs_item03 {
  width: 48%;
}
@media (max-width: 599px) {
  .product .countryman_imgs .countryman_imgs_item .row .countryman_imgs_item01,
  .product .countryman_imgs .countryman_imgs_item .row .countryman_imgs_item03 {
    width: 90%;
  }
}
.product .countryman_imgs .countryman_imgs_item .row .countryman_imgs_item01 {
  margin-left: auto;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .product .countryman_imgs .countryman_imgs_item .row .countryman_imgs_item03 {
    width: 80%;
  }
}
.product .countryman_imgs .countryman_imgs_item02 {
  margin-top: 10px;
}
.product .lineup_ttl {
  width: 600px;
  margin: 0 auto 50px;
}
@media (max-width: 599px) {
  .product .lineup_ttl {
    width: 90%;
    margin-bottom: 30px;
  }
}
.product .lineup_slide {
  padding: 0;
  position: relative;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 599px) {
  .product .lineup_slide {
    width: 90%;
  }
}
.product .lineup_slide img {
  margin-bottom: 20px;
}
.product .lineup_slide p {
  font-size: 14px;
}
.product .lineup_slide .slide-arrow {
  z-index: 1000;
  margin-bottom: 0;
}
.product .lineup_slide .slide-arrow.prev-arrow {
  left: -4%;
}
.product .lineup_slide .slide-arrow.next-arrow {
  right: -4%;
}
@media (max-width: 599px) {
  .product .lineup_slide .slide-arrow {
    width: 30px;
    top: 45%;
  }
}

@media (max-width: 599px) {
  .product_sm_pt {
    padding-top: 0;
  }
}

@media (max-width: 599px) {
  .voice {
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.voice .product_border {
  width: 1000px;
  margin: 0 auto 120px;
}
@media (max-width: 1200px) {
  .voice .product_border {
    width: 90%;
    margin-bottom: 60px;
  }
}
.voice .voice_item {
  width: 1000px;
  background-color: #e5e5e5;
  position: relative;
  margin-bottom: 70px;
}
@media (max-width: 1200px) {
  .voice .voice_item {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .voice .voice_item {
    margin: auto;
  }
}
.voice .voice_item .voice_item_after {
  position: absolute;
  bottom: -19px;
  right: -27px;
  width: 120px;
}
@media (max-width: 599px) {
  .voice .voice_item .voice_item_after {
    width: 70px;
    right: -16px;
  }
}
.voice .voice_item .voice_item_left,
.voice .voice_item .voice_item_right {
  width: 48%;
}
@media (max-width: 599px) {
  .voice .voice_item .voice_item_left,
  .voice .voice_item .voice_item_right {
    width: 100%;
    bottom: -19px;
    right: -14px;
  }
}
.voice .voice_item .voice_item_left .voice_img {
  position: relative;
}
.voice .voice_item .voice_item_left .voice_car {
  position: absolute;
  right: -10px;
  bottom: -20px;
  background-color: #000;
  padding: 10px 20px;
}
@media (max-width: 599px) {
  .voice .voice_item .voice_item_left .voice_car {
    right: 10px;
  }
}
.voice .voice_item .voice_item_left .voice_car p {
  color: #fff;
  font-size: 18px;
}
@media (max-width: 599px) {
  .voice .voice_item .voice_item_left .voice_car p {
    font-size: 16px;
  }
}
.voice .voice_item .voice_item_left .voice_car p span {
  font-size: 23px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .voice .voice_item .voice_item_left .voice_car p span {
    font-size: 20px;
  }
}
.voice .voice_item .voice_item_left .voice_name {
  text-align: right;
  padding: 40px 0 60px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .voice .voice_item .voice_item_left .voice_name {
    padding: 30px 0 0px;
    padding-right: 10px;
  }
}
.voice .voice_item .voice_item_right {
  padding: 40px;
}
@media (max-width: 599px) {
  .voice .voice_item .voice_item_right {
    padding: 20px;
  }
}
.voice .voice_item .voice_item_right h3 {
  font-size: 24px;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .voice .voice_item .voice_item_right h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.voice .voice_item02 {
  margin-left: auto;
}
@media (max-width: 599px) {
  .voice .voice_slide .slide-arrow {
    top: 40%;
    z-index: 100;
  }
  .voice .voice_slide .prev-arrow {
    left: -5%;
  }
  .voice .voice_slide .next-arrow {
    right: -2%;
  }
}

.test_drive {
  padding: 80px 0;
}
@media (max-width: 599px) {
  .test_drive {
    padding: 50px 0;
  }
}
.test_drive .test_drive_acc {
  margin-bottom: 30px;
}
.test_drive .test_drive_acc .test_drive_ttl {
  background-color: #337c85;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  border-radius: 5px;
  position: relative;
}
.test_drive .test_drive_acc .test_drive_ttl::after, .test_drive .test_drive_acc .test_drive_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  background-color: #fff;
  width: 20px;
  height: 3px;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.test_drive .test_drive_acc .test_drive_ttl::after {
  transform: rotate(90deg);
  right: 20px;
  top: 48%;
  transition: 0.3s;
}
.test_drive .test_drive_acc .test_drive_ttl.active::after {
  transform: rotate(0);
  top: 49%;
  right: 20px;
}
.test_drive .test_drive_acc .test_drive_ttl h3 {
  font-size: 24px;
  color: #fff;
}
@media (max-width: 599px) {
  .test_drive .test_drive_acc .test_drive_ttl h3 {
    font-size: 20px;
  }
}
.test_drive .test_drive_acc .test_drive_text {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}
@media (max-width: 599px) {
  .test_drive .test_drive_acc .test_drive_text {
    padding: 30px 0;
  }
}
.test_drive .test_drive_acc .test_drive_text p {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.contact {
  padding: 80px 0 120px;
  background-color: #e5e5e5;
}
@media (max-width: 599px) {
  .contact {
    padding: 50px 0 80px;
  }
}
.contact .contact_text {
  background-color: #000;
  text-align: center;
  padding: 20px 0;
  margin-bottom: -15px;
  max-width: 980px;
  margin-inline: auto;
  position: relative;
  z-index: 99;
}
@media (max-width: 599px) {
  .contact .contact_text {
    margin-bottom: -5px;
  }
}
.contact .contact_text p {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .contact .contact_text p {
    font-size: 18px;
  }
}
.contact .contact_form form {
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px 0;
  border-radius: 20px;
  max-width: 980px;
  margin: -55px auto 0;
  z-index: 100;
}
@media (max-width: 599px) {
  .contact .contact_form form {
    padding: 20px;
    margin: -10px auto 0;
  }
}
.contact .contact_form form .cta_bnr {
  max-width: 600px;
  margin: 0 auto 30px;
}
.contact .contact_form form p {
  margin-top: 30px;
  text-align: center;
}
.contact .contact_form form p a {
  text-decoration: underline;
}
.contact .contact_form .form_car_text {
  text-align: center;
  margin-bottom: 30px;
}
.contact .contact_form .form_car_text p {
  font-weight: bold;
}
.contact .contact_form .form_car_text p span {
  color: #d70000;
  margin-left: 10px;
}
.contact .image-radio {
  width: 24%;
  margin-bottom: 50px;
  cursor: pointer;
}
@media (max-width: 599px) {
  .contact .image-radio {
    width: 49%;
    margin-bottom: 30px;
  }
}
.contact .image-radio p {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 599px) {
  .contact .image-radio p {
    font-size: 20px;
  }
}
.contact .image-radio img {
  border: 3px solid transparent;
}
.contact .image-radio input {
  display: none;
}
.contact .image-radio input:checked + img {
  border: 3px solid #d70000;
}
.contact .form_car_click {
  width: 480px;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid #000;
  text-align: center;
  border-radius: 40px;
  padding: 15px 0;
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .contact .form_car_click {
    width: 100%;
    margin-bottom: 50px;
  }
}
.contact .form_car_click p {
  font-size: 18px;
  font-weight: bold;
}
.contact dl {
  display: flex;
  align-items: center;
  width: 600px;
  margin: 0 auto;
  border-bottom: 1px solid #cccccc;
}
.contact dl.form_car_wrap {
  width: 100%;
}
@media (max-width: 599px) {
  .contact dl {
    width: 100%;
    flex-wrap: wrap;
  }
}
.contact dl .error_blank {
  color: #ce1d52;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.contact dl dt {
  font-size: 18px;
  flex-basis: 40%;
  padding: 35px 16px 25px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .contact dl dt {
    font-size: 16px;
    flex-basis: 100%;
    padding: 15px 0 0;
    justify-content: flex-start;
  }
}
.contact dl dt .required_text {
  display: inline-block;
  font-size: 85%;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 3px;
  background: #d9534f;
  border: 1px solid #d43f3a;
}
@media (max-width: 599px) {
  .contact dl dt .required_text {
    margin-left: 10px;
  }
}
.contact dl dd {
  flex-basis: 60%;
  margin-top: 10px;
}
@media (max-width: 599px) {
  .contact dl dd {
    flex-basis: 100%;
    margin-top: 0;
  }
}
.contact dl input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  border: 1px solid #ccc;
}
.contact dl input[type=date] {
  width: 40%;
  margin-bottom: 10px;
  background-color: #fff;
}
@media (max-width: 599px) {
  .contact dl input[type=date] {
    width: 60%;
  }
}
.contact dl input[type=radio] {
  margin: 0 6px 0 0;
}
.contact dl .schedule {
  position: relative;
  margin-bottom: 10px !important;
}
.contact dl .schedule::after {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  /* FontAwesomeのアイコンコード */
  margin-left: 5px;
  /* アイコンと入力フォームの間隔を設定 */
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  color: #000;
}
.contact .date {
  flex-wrap: wrap;
}
.contact .date dt {
  flex-basis: 40%;
}
@media (max-width: 599px) {
  .contact .date dt {
    flex-basis: 100%;
  }
}
.contact .date dd {
  flex-basis: 60%;
}
@media (max-width: 599px) {
  .contact .date dd {
    flex-basis: 100%;
  }
}
.contact .date .date_text {
  padding: 25px 16px 0;
  margin-bottom: -10px;
}
@media (max-width: 599px) {
  .contact .date .date_text {
    padding: 20px 0 0;
  }
}
.contact .tool_wrap input {
  width: auto;
}
.contact .tool_wrap .row li {
  margin-right: 20px;
}
.contact #form_submit {
  position: relative;
  width: 380px;
  margin: 15px auto 30px;
  cursor: pointer;
}
@media (max-width: 599px) {
  .contact #form_submit {
    width: 100%;
  }
}
.contact #form_submit::after {
  content: url(../images/arrow_submit.png);
  position: absolute;
  top: 50%;
  right: 0;
  transform: scale(0.5) translateY(-50%);
  pointer-events: none;
}
.contact #form_submit input {
  width: 100%;
  background-color: #337c85;
  color: #fff;
  font-size: 20px;
  text-align: center;
  border-radius: 40px;
  padding: 10px 0;
  border: none;
  display: block;
  cursor: pointer;
}
@media (max-width: 599px) {
  .contact #form_submit input {
    font-size: 16px;
  }
}
.contact #form_submit_button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  /* カーソルを変更してクリックが無効であることを示す */
}

.thank_text {
  text-align: center;
  padding: 80px 0;
}
@media (max-width: 599px) {
  .thank_text {
    padding: 40px 0;
  }
}
.thank_text h2 {
  font-size: 28px;
  margin-bottom: 30px;
}
.thank_text p {
  font-size: 18px;
  margin-bottom: 30px;
}
.thank_text a {
  width: 250px;
  margin: 0 auto;
  text-align: center;
  padding: 10px 0;
  border: 1px solid #000;
  position: relative;
  border-radius: 40px;
  display: block;
  background-color: #fff;
  cursor: pointer;
}
.thank_text a:hover {
  background-color: #000;
  color: #fff;
}

.map {
  position: relative;
}
.map .top_btn {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 80px;
  cursor: pointer;
}
@media (max-width: 599px) {
  .map .top_btn {
    width: 50px;
    top: -25px;
  }
}
.map .iframe iframe {
  height: 500px;
  vertical-align: bottom;
}
@media (max-width: 599px) {
  .map .iframe iframe {
    height: 350px;
  }
}

.ctaarea_wrap {
  background-color: #e5e5e5;
}

.ctaarea_wrap2 {
  background-color: #fff;
}

.car_choice {
  position: relative;
}

.car_choice::before,
.car_choice::after {
  position: absolute;
  right: 15px;
  width: 9px;
  height: 6px;
  background-color: #535353;
  content: "";
  pointer-events: none;
}

.car_choice::before {
  top: calc(50% - 9px);
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.car_choice::after {
  bottom: calc(50% - 9px);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.car_choice select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 2.5em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}

.fadein {
  opacity: 0;
  transform: translateY(3%);
}
.fadein.active {
  animation: 0.8s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein2.active {
  animation: 0.8s forwards 0.1s fadein;
}

.fadein3 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein3.active {
  animation: 0.8s forwards 0.2s fadein;
}

.leftin {
  transform: translateX(-100%);
}
.leftin.active {
  animation: 0.5s forwards leftin;
}

@media (max-width: 599px) {
  .mv_cta_top_img {
    transform: translateX(-200%);
  }
  .mv_cta_top_img.active {
    animation: 0.3s forwards 0.3s leftin;
  }
}
.rightin {
  transform: translateX(200%);
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

.bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0) translateX(0);
}
.bg.bg1.active::before {
  animation: 2s forwards bg;
}
.bg.bg2.active::before {
  animation: 2s forwards 0.2s bg;
}
.bg.bg3.active::before {
  animation: 2s forwards 0.4s bg;
}

.border_anime.active {
  animation-name: borderAnimation;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bg {
  0% {
    transform: scaleX(0) translateX(0);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
}
@keyframes borderAnimation {
  0% {
    background-position: left 0% center;
  }
  100% {
    background-position: left -100% center;
  }
}/*# sourceMappingURL=style.css.map */