@font-face {
    font-family: 'YuGothic';
    src: url(../font/yugothib.ttf) format('truetype');
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url(../font/Montserrat-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url(../font/Montserrat-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url(../font/Montserrat-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'KozGoPro-Regular';
    src: url(../font/KozGoPro-Regular.otf) format('opentype');
}

@font-face {
    font-family: 'NotoSerifJP-Medium';
    src: url(../font/NotoSerifJP-Medium.otf) format('opentype');
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
    background: transparent;
}


/* 行の高=フォントサイズ */

html,
body {
    line-height: 1;
    overflow-x: hidden;
    background-color: #262626;
}

.container {
    position: relative;
}

.verticla-line {
    width: 30%;
    height: 100%;
}

.verticla-line ul {
    position: absolute;
    top: 0;
    left: 6%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 12em;
    height: 100%;
    /* z-index: 1; */
}

.verticla-line ul li {
    width: 2px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}


/* 新規追加要素をブロック要素化 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}


/* ulのマーカー非表示 */

ol,
ul {
    list-style: none;
}


/* 引用符の非表示 */

blockquote,
q {
    quotes: none;
}


/* blockquote要素、q要素の前後にコンテンツ非表示 */

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}


/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    outline: none;
}


/* ins要素 デフォルトセット 色を変える場合はここで変更 */

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}


/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}


/* テキスト 打ち消し線 */

del {
    text-decoration: line-through;
}


/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}


/*　隣接するセルのボーダーを重ねて表示　*/

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* 水平罫線デフォルトリセット */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}


/* 縦方向の揃え 中央揃え */

input,
select {
    vertical-align: middle;
}


/* 画像を縦に並べた時に余白0 */

img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}


/*box-sizingを全ブラウザに対応*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:after {
    overflow: hidden;
    visibility: hidden;
    height: 0;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
}

br {
    line-height: inherit;
}


/*【共通】パーツ
----------------------------------------------------------------*/


/* リンク */

a,
a * {
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    font-family: inherit;
    -webkit-backface-visibility: hidden;
    /* 追加 */
    backface-visibility: hidden;
    /* 追加 */
}

a:hover,
a:active {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

img {
    max-width: 100%;
    height: auto;
}


/* 表示切り替え */

#wrapper .sp-display {
    display: none;
}

#wrapper .tb-display {
    display: none;
}

@media screen and (max-width: 1279px) {
    #wrapper .tb-display {
        display: block;
    }
}

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


/* 配置 */

#wrapper .f_left {
    float: left;
    text-align: center;
    line-height: 2;
}

#wrapper .f_right {
    float: right;
    text-align: center;
    line-height: 2;
}

#wrapper .leftOn {
    text-align: left;
}

#wrapper .rightOn {
    text-align: right;
}

#wrapper .centerOn {
    text-align: center;
}


/*基本設定
----------------------------------------------------------------*/


/*  配置  */

.flex-nml {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.flex-btw {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-cnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

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

.items-center {
    -webkit-align-items: center;
    align-items: center;
}

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

#nav-container {
    display: none;
}

#nav-container {
    position: fixed;
    height: 100vh;
    width: 100%;
    pointer-events: none;
    z-index: 999;
    top: 3%;
    right: 0;
    ;
}

#nav-container * {
    visibility: visible;
}

.button {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    border-radius: 0;
    height: 60px;
    width: 30px;
    cursor: pointer;
    pointer-events: auto;
    float: right;
    margin-right: 25px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #aaa;
    transition: .3s;
}

.icon-bar+.icon-bar {
    margin-top: 5px;
}

#nav-container:focus-within .button {
    pointer-events: none;
}

#nav-container:focus-within .icon-bar:nth-of-type(1) {
    transform: translate3d(0, 8px, 0) rotate(45deg);
}

#nav-container:focus-within .icon-bar:nth-of-type(2) {
    opacity: 0;
}

#nav-container:focus-within .icon-bar:nth-of-type(3) {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
}

#nav-content {
    margin-top: 81px;
    padding: 20px;
    width: 90%;
    max-width: 450px;
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100% - 70px);
    background: #ececec;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateX(100%);
    transition: transform 1s;
    will-change: transform;
    contain: paint;
    z-index: 999;
    overflow-x: hidden;
}

#nav-container:focus-within #nav-content {
    transform: none;
}

.right {
    float: right;
    vertical-align: middle;
}

.choices .option .submenu {
    height: 0;
    -webkit-transition: height 0.4s;
    -moz-transition: height 0.4s;
    -o-transition: height 0.4s;
    transition: height 0.4s;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 150px;
    overflow: hidden;
    box-sizing: border-box;
}

.choices .option .submenu:hover {
    overflow: auto;
}

.choices .option .submenu li {
    padding: 10px;
    border: none;
    cursor: default;
}

.choices .option .submenu li:last-of-type {
    border-bottom: none;
}

.choices .option .submenu li:hover {
    background: #cce6ff;
}

.choices .option .submenu li img {
    vertical-align: middle;
}

.choices .option a {
    text-decoration: none;
    color: #000;
}

.choices .option i {
    margin-right: 10px;
}

.choices .option .title {
    display: block;
    padding: 10px;
    cursor: default;
}

.choices .submenu a {
    display: block;
    width: 100%;
}

.choices .option .title:hover {
    background: #eeeeef;
}

.choices .option .toggle {
    display: none;
}

.choices .option .toggle:checked+.submenu {
    height: 100px;
    -webkit-transition: height 0.4s;
    -moz-transition: height 0.4s;
    -o-transition: height 0.4s;
    transition: height 0.4s;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.choices .option .toggle:checked+.submenu:last-of-type {
    border-bottom: none;
}

.hidden {
    display: none;
}

.strong {
    font-weight: bold;
}

.bottom-menu .dropdown,
.bottom-menu .dropdown1 {
    position: relative;
}

header .header .right-menu .bottom-menu .dropdown-content a {
    margin-left: 0;
}

.bottom-menu .dropdown-content {
    display: none;
    position: fixed;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 200;
    top: 110px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-tap:hover .dropdown-content,
.dropdown-tap1:hover .dropdown-content {
    display: block;
}

.readmore {
    font-family: 'Montserrat-Regular';
    font-size: 0.92vw;
    color: white;
    display: flex;
    align-items: center;
}


/* Header */

header {
    width: 100%;
    display: block;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: white;
}

header .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header .logo {
    padding: 18px;
}

header .header .right-menu {
    display: block;
}

header .header .right-menu a {
    font-family: 'YuGothic';
    font-weight: bold;
    font-size: 14px;
    margin-left: 1.0vw;
    transition: .3s;
    display: inline-block;
}

header .header .right-menu .under:after {
    display: block;
    content: '';
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(to right, rgb(102, 214, 45), rgb(102, 214, 45));
    border-image-slice: 1;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    transform-origin: 100% 50%;
    padding-top: 5px;
}

header .header .right-menu .under:hover:after {
    transform: scaleX(1);
    transform-origin: 0 50%;
    align-items: center;
}

header .header .right-menu a:hover {
    color: rgb(102, 214, 45)
}

header .header .right-menu .phone {
    font-family: 'Montserrat-Bold';
    font-size: 26px;
    /* display: flex;
    align-items: center; */
    margin-top: 10px;
}

header .header .right-menu .contact {
    color: white;
    background-color: #db2d2e;
    height: 100%;
    padding: 31px 21px;
    font-family: 'Montserrat-Bold';
    font-size: 18px;
}

header .header .right-menu .phone:before {
    content: '\f095 ';
    font-family: fontawesome;
    font-size: 20px;
    margin-right: 5px;
}

.banner-section {
    position: relative;
    z-index: 2;
}

.banner {
    margin-top: 80px;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.banner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
  height: 100% !important;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
}

.banner-text p {
    font-family: 'YuGothic';
    font-size: 2.5vw;
    margin-top: 15px;
    color: white;
}

.aria-garage {
    display: block;
    background: #262626;
}

.aria-garage .aria {
    max-width: 1600px;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    padding: 15% 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10%;
    position: relative;
    z-index: 2;
}

.aria-garage .aria li:first-child img {
    display: block;
    width: 100%;
}

.aria-garage .aria li:last-child .aria-title {
    position: absolute;
    padding-top: 25%;
    max-width: 924px;
    width: 57%;
    left: 70%;
    top: 20%;
    transform: translate(-50%, -50%);
    width: 57%;
    left: 41%;
    top: -3%;
}

.aria-garage .aria li:last-child .aria-title img {
    width: 98%;
}

.aria-garage .aria li:last-child h2 {
    margin-top: 70%;
    color: white;
    font-family: 'NotoSerifJP-Medium';
    font-size: 1.6vw;
}

.aria-garage .aria li:last-child .content {
    font-family: 'YuGothic';
    font-weight: normal;
    font-size: 0.92vw;
    margin-top: 50px;
    color: white;
    line-height: 1.5;
    text-align: justify;
}

.aria-garage .aria li:last-child .readmore {
    font-family: 'Montserrat-Regular';
    font-size: 0.92vw;
    color: white;
    display: flex;
    align-items: center;
    margin-top: 12%;
    justify-content: end;
}

.aria-garage .aria li:last-child .readmore img {
    max-width: 150px;
    width: 21%;
    height: 1px;
    margin-right: 25px;
}


/* Slider  */

.stock-list {
    position: relative;
}

.slider {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    position: absolute;
    padding-bottom: 10%;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.swiper_wrap {
    position: relative;
}

.swiper_wrap img {
    width: 100%;
    object-fit: cover;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    position: absolute;
    top: 120%;
    border-radius: 50px;
    border: 1px solid white;
    left: 0;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    position: absolute;
    top: 120%;
    border-radius: 50px;
    border: 1px solid white;
    left: 7%;
    right: 0;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 1.5vw;
    height: 1.5vw;
    margin: 28%;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    fill: white;
    width: 4vw;
    height: 4vw;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: none
}

.slider .readmore {
    display: flex;
    align-items: center;
    position: absolute;
    top: 120%;
    right: 15%;
}

.slider .readmore p {
    white-space: nowrap;
    margin-left: 20px;
}

.stock-title {
    position: absolute;
    top: -8%;
    left: 15%;
    max-width: 833px;
    width: 45%;
}

.stock-text {
    margin: 5% 0;
}

.stock-text p {
    font-family: 'NotoSerifJP-Medium';
    color: white;
    font-size: 26px;
}


/* Maintenace */

.maintenance-section {
    position: relative;
}

.maintenance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 7%;
    margin: 10% 0;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    width: 96%;
}

.maintenance li h2 {
    color: white;
    font-family: 'NotoSerifJP-Medium';
    font-size: 1.6vw;
    margin-top: 45%;
    margin-left: 37%;
}

.maintenance li .content {
    font-size: 0.92vw;
    margin-top: 50px;
    color: white;
    line-height: 1.5;
    text-align: justify;
    color: white;
    font-family: 'YuGothic';
    font-weight: normal;
    margin-left: 37%;
}

.maintenance li:first-child .maintenance-title img {
    width: 98%;
}

.maintenance li:first-child .maintenance-title {
    position: absolute;
    padding-top: 25%;
    max-width: 924px;
    width: 57%;
    left: 47%;
    top: -10%;
    transform: translate(-50%, -50%);
    width: 57%;
    left: 18%;
    top: -40%;
}

.maintenance .readmore {
    margin-left: 37%;
    margin-top: 5%;
}

.maintenance .readmore p {
    margin-left: 5%;
}


/* gallery */

.gallery-section {
    position: relative;
    width: 100%;
    display: block;
}

.gallery-section .gallery {
    margin: 20% 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 6%;
}

.gallery-section ul .left-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1em;
    position: relative;
    z-index: 2;
}

.gallery-title {
    margin-top: 10%;
    max-width: 856px;
    width: 69%;
}

.gallery-section ul .right .readmore {
    margin-top: 3%;
    justify-content: right;
    margin-right: 31%;
    margin-top: 12%;
}

.gallery-section .gallery-car {
    position: absolute;
    bottom: -30%;
    right: 0;
    z-index: 0;
    max-width: 1400px;
    width: 75%;
}


/* Assessment */

.assessment-section {
    position: relative;
}

.assessment-section .assessment .assess-content {
    position: absolute;
    top: 55%;
    right: 5%;
    max-width: 480px;
    width: 25%;
    transform: translate(-50%, -50%);
}

.assessment-section .assessment .assess-content h2 {
    font-family: 'NotoSerifJP-Medium';
    font-size: 1.6vw;
    color: white;
}

.assessment-section .assessment img {
    width: 100%
}

.assessment-section .assessment .assess-content .content {
    font-family: "YuGothic";
    font-weight: normal;
    font-size: 0.92vw;
    color: white;
    margin-top: 10%;
    line-height: 1.5;
}

.assessment-section .assessment .assess-content .readmore {
    margin-top: 30%;
    justify-content: right;
}

.assessment-section .assess-title {
    position: absolute;
    right: 10%;
    top: -28%;
    max-width: 73px;
    width: 4%;
}


/* Yoububu */

.youtubu {
    margin: 17% 0;
    position: relative;
}

.youtubu-section {
    position: relative;
}

.youtubu ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    width: 96%;
    grid-gap: 5%;
    position: relative;
    z-index: 3;
}

.youtubu ul li {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.youtubu ul li iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtubu-title {
    position: absolute;
    top: -11%;
    left: 23%;
    z-index: 10;
    transform: translate(-50%, -50%);
    max-width: 742px;
    width: 40%;
    z-index: 2;
}

.youtubu-section .readmore {
    justify-content: right;
    margin-right: 7%;
    margin-top: 5%;
}

.youtubu-section .readmore p {
    margin-left: 15px;
}


/* New */

.new-section {
    position: relative;
}

.new-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 4%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    width: 96%;
}

.new-section ul figcaption {
    margin-top: 5%;
}

.new-section ul figcaption .alert {
    font-family: 'YuGothic';
    font-size: 13px;
    color: white;
    background-color: #bb9457;
    display: block;
    width: fit-content;
    padding: 2% 4%;
}

.new-section ul figcaption .alert.category_blog01 {
    background-color: #40765b;
}

.new-section ul figcaption .alert.category_blog02 {
    background-color: #8d99ae;
}

.new-section ul figcaption .time {
    font-family: 'YuGothic';
    color: white;
    margin-top: 4%;
    line-height: 1.3;
}

.new-section .new-title {
    position: absolute;
    top: -18%;
    right: 3%;
    z-index: 0;
    max-width: 505px;
    width: 26%;
}

.new-section .readmore {
    margin-top: 6%;
    justify-content: right;
    margin-right: 8%;
}

.new-section .readmore p {
    margin-left: 20px;
}


/* Online */

.online-section {
    margin: 10% 0;
}

.online-section .online {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 96%;
    position: relative;
    text-align: center;
    line-height: 1.7;
    z-index: 2;
}

.online-section .online-business {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.online-section .online-business .online-text {
    font-size: 11px;
    font-family: 'YuGothic';
    font-weight: normal;
    color: white;
}

.online-section .online-business h2 {
    font-family: 'YuGothic';
    font-size: 38px;
    color: white;
}

.online-section .online-business h4 {
    color: white;
    font-family: 'YuGothic';
    font-size: 24px;
}

.online-section .right-text {
    position: absolute;
    right: -5%;
    top: 56%;
    transform: translate(-50%, -50%);
}

.online-section .right-text p {
    font-family: 'YuGothic';
    color: white;
    border-radius: 200px;
    font-size: 16px;
    border: 1px solid white;
    display: table-cell;
    width: 14vw;
    height: 14vw;
    vertical-align: middle;
}


/*  */

.contact-section {
    background: url(../img/contact_bg.jpg);
    background-size: cover;
    position: relative;
    z-index: 2;
}

.contact-section h2 {
    font-family: 'Montserrat-Bold';
    color: white;
    font-size: 60px;
    padding-top: 6%;
    padding-bottom: 4%;
    text-align: center;
}

.contact-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 96%;
    padding-bottom: 100px;
}

.contact-section ul li:first-child {
    padding-top: 2%;
}

.contact-section ul li .number1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-section ul li .number1 .free p {
    color: white;
    border: 1px solid white;
    padding: 10px;
    white-space: nowrap;
    font-family: 'YuGothic';
    font-weight: normal;
    font-size: 15px;
    width: 180px;
    text-align: center;
}

.contact-section ul li .message p i {
    margin-right: 10px;
}

.contact-section ul li .number1:last-child {
    margin-top: 3%;
}

.contact-section ul li .number1 .free-phone p {
    font-size: 40px;
    font-family: 'Montserrat-Medium';
    color: white;
}

.contact-section ul li .social {
    display: flex;
    justify-content: start;
    margin-left: 10%;
    align-items: center;
}

.contact-section ul li .social a {
    margin: 0 6%;
    ;
}

.contact-section ul li .message {
    margin-top: 4%;
}

.contact-section ul li .message p {
    background-color: #db2d2e;
    white-space: nowrap;
    color: white;
    font-family: 'YuGothic';
    font-weight: normal;
    display: table;
    margin-left: 0;
    margin-right: auto;
    padding: 5% 17%;
}


/* map */

.map-section {
    position: relative;
    background: url(../img/car.png) no-repeat;
    background-position: left;
    margin-top: -100px;
    background-size: contains;
    z-index: 2;
}

.map-section .map-info::before {
    content: "";
    display: block;
    padding-top: 1px;
}

.map-section .map-info {
    display: block;
    padding-top: 225px;
}

.map-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 5%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 96%;
}

.map-section .map {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3%;
    padding-bottom: 5%;
}

.map-section ul h3 {
    font-family: 'YuGothic';
    font-size: 24px;
    color: white;
    margin-bottom: 5%;
}

.map-section ul p {
    font-family: 'YuGothic';
    font-weight: normal;
    color: white;
    line-height: 1.3;
}

.map-section .map iframe {
    width: 100%;
}

.map-section .map-car {
    position: absolute;
    top: -13%;
    right: 0;
    max-width: 328px;
    width: 18%;
}


/* footer */

.footer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    margin-top: 5%;
    margin-bottom: 5%;
}

.footer .footer-menu-ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2%;
}

.footer .footer-menu-ul li a {
    color: white;
    font-family: 'YuGothic';
    font-size: 14px;
    white-space: nowrap;
    line-height: 2;
}

.copyright {
    padding: 2%;
}

.copyright p {
    font-family: 'YuGothic';
    font-size: 11px;
    color: white;
    text-align: center;
}


/*  */

.line-bac {
    position: absolute;
    top: 0;
    left: 15%;
    z-index: 1;
}

.line-bac {
    object-fit: cover;
    height: 1000%;
}

.scroll-top {
    position: fixed;
    bottom: 5%;
    right: 5%;
    width: 50px;
    height: 50px;
    z-index: 999;
}

@media screen and (max-width:1400px) {
    header .header .right-menu {
        display: none;
    }
    #nav-container {
        display: block;
    }
    .header {
        /* padding: 0 0 0 10px; */
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .header {
        display: block;
    }
    header .header .logo img {
        width: 225px;
        height: auto
    }
    header .header .logo h1 {
        font-size: 14px;
    }
    header .header .logo h1 span {
        font-size: 28px;
    }
    #nav-container {
        top: 5px;
    }
}

@media screen and (max-width:1200px) {
    .online-section .right-text p {
        width: 18vw;
        height: 18vw;
        font-size: 1.3vw;
    }
    .online-section .online-business .online-text {
        font-size: 1vw;
    }
    .online-section .online-business h2 {
        font-size: 3.2vw;
    }
    .online-section .online-business h4 {
        font-size: 2vw;
    }
    .contact-section ul {
        grid-template-columns: 1fr;
    }
    .contact-section ul li .number1 {
        justify-content: center;
    }
    .contact-section ul li .social {
        justify-content: center;
        margin-left: 0;
    }
    .contact-section ul li .message p {
        margin-left: auto;
    }
    .contact-section ul li .message p {
        padding: 2% 8%;
    }
    .contact-section ul li .number1 .free {
        margin-right: 2%;
    }
    .map-section .map-info {
        padding-top: 50px;
    }
    .contact-section ul {
        padding-bottom: 200px;
    }
}

@media screen and (max-width:768px) {
    .contact-section ul li .message p {
        padding: 4% 8%;
    }
    .contact-section h2 {
        padding-top: 16%;
    }
    .aria-garage .aria li:last-child .aria-title {
        top: 0;
    }
    .aria-garage .aria li:first-child img {
        width: 59%
    }
    .aria-garage .aria li:last-child h2 {
        margin-top: 0;
        font-size: 5vw;
    }
    .aria-garage .aria li:last-child .content {
        font-size: 2.5vw;
        margin-top: 4%;
    }
    .aria-garage .aria {
        grid-template-columns: 1fr;
    }
    .aria-garage .aria li:last-child .readmore {
        font-size: 3vw;
    }
    .slider {
        left: 50%;
    }
    .stock {}
    .stock img {
        object-fit: cover;
        width: auto;
        max-width: fit-content;
        height: 100vw
    }
    .stock-list {
        margin-top: 10%;
        margin-bottom: 10%;
    }
    .stock-title {
        position: absolute;
        top: -7%;
        left: 15%;
        max-width: 833px;
        width: 74%;
    }
    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next,
    .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        width: 10vw;
        height: 10vw;
        ;
    }
    .swiper-button-prev svg,
    .swiper-button-next svg {
        width: 4.5vw;
        height: 4.5vw;
    }
    .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        left: 17%;
        top: 112%
    }
    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        top: 112%;
    }
    .slider .readmore {
        top: 112%;
        right: 0;
    }
    .readmore {
        font-size: 3vw;
    }
    .maintenance {
        display: flex;
        margin: 10% 0;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
        grid-auto-flow: row dense;
        flex-direction: column;
        flex-direction: column-reverse;
    }
    .maintenance li:first-child .maintenance-title {
        padding-top: 30%;
        max-width: 924px;
        width: 70%;
        left: 18%;
        padding-top: 45%;
    }
    .assessment-section .assess-title {
        position: absolute;
        right: 5%;
        top: 11%;
        max-width: 73px;
        width: 6%;
    }
    .gallery-section ul .right .readmore {
        margin-bottom: 21%;
    }
    .main-image {
        width: 60%;
        margin-top: 13%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .maintenance li h2 {
        font-size: 5vw;
        margin-top: 11%;
        font-size: 5vw;
        margin-top: 11%;
        margin-left: auto;
        margin-right: auto;
        /* display: block; */
        text-align: center;
    }
    .maintenance li .content {
        font-size: 3vw;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: 75%;
    }
    .gallery-title {
        margin-top: 0;
        width: 69%;
        margin-left: auto;
        margin-right: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
    .gallery-section ul .left-gallery {
        margin-top: 21%;
    }
    .gallery-section .gallery {
        grid-template-columns: 1fr;
    }
    .gallery-section ul .right .readmore p {
        margin-left: 20px;
    }
    .assessment .ass-image {
        object-fit: cover;
        width: auto;
        height: 500px;
    }
    .assessment-section .assessment .assess-content {
        position: absolute;
        top: 50%;
        right: auto;
        left: 50%;
        max-width: 479px;
        width: 70%;
        transform: translate(-50%, -50%);
    }
    .assessment-section .assessment .assess-content h2 {
        font-size: 6vw;
    }
    .assessment-section .assessment .assess-content .content {
        font-size: 3vw;
    }
    .assessment-section .assessment .assess-content .readmore p {
        margin-left: 20px;
    }
    .youtubu ul {
        grid-template-columns: 1fr;
    }
    .youtubu-title {
        position: absolute;
        top: -11%;
        left: 51%;
        z-index: 10;
        transform: translate(-50%, -50%);
        max-width: 742px;
        width: 70%;
        z-index: 0;
    }
    .new-section .new-title {
        position: absolute;
        top: 0%;
        right: 0;
        left: 0;
        z-index: 0;
        max-width: 505px;
        width: 26%;
        margin-left: auto;
        margin-right: auto;
    }
    .new-section ul {
        grid-gap: 3em;
        grid-template-columns: 1fr;
    }
    .new-section ul {
        max-width: 365px;
        padding-top: 5em;
    }
    .contact-section ul li .number1 .free-phone p {
        font-size: 30px;
    }
    .online img {
        object-fit: cover;
        width: auto;
        height: 70vw;
    }
    .online-section .online-business {
        max-width: 500px;
        width: 95%;
        top: 46%;
    }
    .online-section .right-text {
        position: absolute;
        right: auto;
        top: 83%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .online-section .online-business .online-text {
        font-size: 4vw;
    }
    .online-section .online-business h2 {
        font-size: 6vw;
    }
    .online-section .online-business h4 {
        font-size: 3vw;
    }
    .online-section .right-text p {
        width: 40vw;
        height: 21vw;
        font-size: 2.3vw;
    }
    .map-section ul {
        grid-template-columns: 1fr 1fr;
    }
    .map-section .map-car {
        width: 13%;
    }
    .footer {
        flex-direction: column;
    }
    .footer-menu {
        margin-top: 30px;
    }
    .map-section .map-info {
        padding-top: 30px;
    }
    .footer .footer-menu-ul {
        display: none
    }
    .footer {
        margin-bottom: 0;
    }
}

@media screen and (max-width:500px) {
    .map-section .map-info {
        padding-top: 130px;
    }
    .contact-section h2 {
        font-size: 50px;
    }
    .contact-section ul li .number1 {
        flex-direction: column;
    }
    .contact-section ul li .number1 .free-phone p {
        margin-top: 20px;
    }
    .contact-section ul {
        padding-bottom: 20%;
    }
    .contact-section ul li .message p {
        padding: 5% 8%;
    }
    .map-section ul {
        grid-template-columns: 1fr;
        grid-gap: 2em;
    }
    .footer .footer-menu-ul {
        grid-template-columns: 1fr 1fr;
        grid-gap: 2em;
        display: none
    }
    .copyright p {
        width: 300px;
        line-height: 2;
        margin-left: auto;
        margin-right: auto;
    }
    #nav-content {
        width: 100%;
    }
}

/* 211215_MV_YOUTUBE
---------------------------------------------------------------------------*/
.container {
    margin-top: -4.5vw;
}

.ytp-title {
    display: none;
}

.ytp-title-text {
    display: none;
}

.ytp-chrome-top-buttons {
    display: none;
}

a.ytp-watermark.yt-uix-sessionlink {
    display: none;
}