﻿@charset "utf-8";
/* CSS Document */

/*--------------------------------------
    common
--------------------------------------*/

main.top {
    overflow: hidden;
}

main.top h2.style001 {
    font-family: century-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
}

main.top h2.style001 span {
    font-family: century-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    display: block;
}

/*--------------------------------------
    visual
--------------------------------------*/

.visualArea {
    width: 100%;
    height: 800px;
    position: relative;
    overflow: hidden;
}

.visualArea::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.visualArea .video{
    width:100%;
    height:auto;
    position: absolute;
    top:50%;
    left:0;
    right:0;
    bottom:auto;
    transform: translate(0,-50%);
}

.visualArea .inner {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translate(0, -50%);
    z-index: 100;
}

.visualArea .inner h2 {
    font-family: century-gothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 100px;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 10px;
}

.visualArea .inner .text {
    font-size: 36px;
    font-weight: bold;
    color: #FFFFFF;
}

@media (max-width: 760px) {
    .visualArea {
        height: auto;
    }
    .visualArea .video{
        position: static;
        transform: none;
    }


    .visualArea .inner {
        left: 2%;
        width: 96%;
    }

    .visualArea .inner h2 {
        font-size: 32px;
    }

    .visualArea .inner .text {
        font-size: 14px;
    }
}

/*--------------------------------------
    intro
--------------------------------------*/

.introArea {
    width: 100%;
    height: 500px;
    background: url("../images/top/bg_intro_001.jpg") no-repeat center center;
    background-size: cover;
    padding-top: 80px;
    box-sizing: border-box;
    text-align: center;
}

.introArea h2 {
    font-size: 36px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 30px;
}

.introArea .text {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.7;
}

.introArea .btn {
    width: 280px;
    height: 60px;
    margin: 40px auto 0;
}

.introArea .btn a {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    line-height: 58px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;
    transition: 0.3s;
}

.introArea .btn a:hover {
    background: #FFFFFF;
    color: #000000;
}

@media (max-width: 760px) {
    .introArea {
        width: 100%;
        height: auto;
        padding: 40px 2%;
        box-sizing: border-box;
    }

    .introArea h2 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .introArea .text {
        font-size: 14px;
    }

    .introArea .btn {
        width: 90%;
        max-width: 280px;
        height: 50px;
        margin: 30px auto 0;
    }

    .introArea .btn a {
        line-height: 48px;
        font-size: 14px;
    }
}

/*--------------------------------------
    vehicle
--------------------------------------*/

.vehicleArea {
    margin: 80px auto;
    text-align: center;
}

.vehicleArea h2.style001 {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 1.2;
}

.vehicleArea h2.style001 span {
    font-size: 80px;
    line-height: 1.2;
}

@media (max-width: 760px) {
    .vehicleArea {
        margin: 40px auto;
    }

    .vehicleArea h2.style001 {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .vehicleArea h2.style001 span {
        font-size: 28px;
    }
}

.top-vehicles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
    row-gap: 10px;
}

.top-vehicles>a {
    display: block;
    width: 100%;
}

.top-vehicles>a>img {
    display: block;
    width: 100%;
}

@media (max-width: 760px) {
    .top-vehicles {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*--------------------------------------
    other
--------------------------------------*/

.otherArea {
    padding: 80px 0;
    background: #F3F3F3;
}

.otherArea .box {
    width: 100%;
    height: 418px;
    margin-top: 70px;
    position: relative;
}

.otherArea .box:first-child {
    margin-top: 0px;
}

.otherArea .box .textArea {
    width: 50%;
    height: 420px;
    padding: 40px;
    box-sizing: border-box;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    z-index: 40;
}

.otherArea .box:nth-child(odd) .textArea {
    right: 0;
}

.otherArea .box:nth-child(even) .textArea {
    left: 0;
}

.otherArea .box .textArea::before {
    content: "";
    width: 226px;
    height: 418px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    display: block;
}

.otherArea .box:nth-child(odd) .textArea::before {
    right: 100%;
}

.otherArea .box:nth-child(even) .textArea::before {
    left: 100%;
}

.otherArea .box .textArea h2.style001 {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.2;
}

.otherArea .box .textArea h2.style001 span {
    font-size: 64px;
    line-height: 1.2;
    padding-bottom: 10px;
}

.otherArea .box .textArea .text {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: bold;
}

.otherArea .box .textArea .btn {
    width: 280px;
    height: 60px;
}

.otherArea .box .textArea .btn a {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #000000;
    box-sizing: border-box;
    line-height: 58px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #000000;
    transition: 0.3s;
    text-align: center;
}

.otherArea .box .textArea .btn a:hover {
    background: #000000;
    color: #FFFFFF;
}

.otherArea .box .picArea {
    width: 50%;
    height: 340px;
    position: absolute;
    top: 40px;
    z-index: 60;
}

.otherArea .box:nth-child(odd) .picArea {
    left: 0;
}

.otherArea .box:nth-child(even) .picArea {
    right: 0;
}

.otherArea .box .picArea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 760px) {
    .otherArea {
        padding: 40px 0;
    }

    .otherArea .box {
        height: auto;
        margin-top: 40px;
        position: static;
    }

    .otherArea .box .textArea {
        width: 100%;
        height: auto;
        padding: 20px 5%;
        position: static;
    }

    .otherArea .box .textArea::before {
        display: none;
    }

    .otherArea .box .textArea h2.style001 {
        font-size: 14px;
    }

    .otherArea .box .textArea h2.style001 span {
        font-size: 28px;
    }

    .otherArea .box .textArea .text {
        font-size: 14px;
    }

    .otherArea .box .textArea .btn {
        width: 90%;
        max-width: 280px;
        height: 50px;
        margin: 0 auto;
    }

    .otherArea .box .textArea .btn a {
        line-height: 48px;
        font-size: 14px;
    }

    .otherArea .box .picArea {
        width: 100%;
        height: auto;
        padding-top: 50%;
        position: relative;
        top: auto;
    }

    .otherArea .box .picArea img {
        position: absolute;
        top: 0;
        left: 0;
    }
}

/*--------------------------------------
    news
--------------------------------------*/

.newsArea {
    margin: 80px auto;
    text-align: center;
}

.newsArea h2.style001 {
    font-size: 28px;
    line-height: 1.2;
}

.newsArea h2.style001 span {
    font-size: 80px;
    line-height: 1.2;
}

.newsArea article {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.newsArea article .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 470px;
    margin: 50px 0 0 40px;
    color: black;
    text-decoration: none;
}

.newsArea article .item:nth-child(odd) {
    margin: 50px 0 0 0;
}

.newsArea article .item .thumb {
    width: 160px;
    height: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 25px;
}

.newsArea article .item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsArea article .item .textArea {
    width: 285px;
    text-align: left;
}

.newsArea article .item .textArea h3 {
    font-size: 20px;
    line-height: 1.3;
    padding-bottom: 10px;
    margin-bottom: 10px;
    background: repeating-linear-gradient(to right, #707070, #707070 5px, transparent 1px, transparent 10px), #fff;
    background-size: 100% 1px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
}

.newsArea article .item .textArea .text {
    min-height: 72px;
}

.newsArea article .item .textArea .date {
    color: #7B7B7B;
    margin-top: 10px;
}

.newsArea .btn {
    width: 280px;
    height: 60px;
    margin: 50px auto 0;
}

.newsArea .btn a {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #000000;
    box-sizing: border-box;
    line-height: 58px;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
}

.newsArea .btn a:hover {
    background: #000000;
    color: #FFFFFF;
}

@media (max-width: 760px) {
    .newsArea {
        margin: 40px auto;
    }

    .newsArea h2.style001 {
        font-size: 14px;
    }

    .newsArea h2.style001 span {
        font-size: 28px;
    }

    .newsArea article {
        grid-template-columns: 1fr;
    }

    .newsArea article .item {
        display: block;
        width: 100%;
        margin: 30px 0 0 0;
        float: none;
    }

    .newsArea article .item:nth-child(odd) {
        margin: 30px 0 0 0;
    }

    .newsArea article .item .thumb {
        display: none;
    }

    .newsArea article .item .textArea {
        width: 100%;
    }

    .newsArea article .item .textArea h3 {
        font-size: 18px;
    }

    .newsArea article .item .textArea .text {
        min-height: 0px;
    }

    .newsArea .btn {
        width: 90%;
        max-width: 280px;
        height: 50px;
        margin: 30px auto 0;
    }

    .newsArea .btn a {
        line-height: 48px;
        font-size: 14px;
    }
}

/*--------------------------------------
    sns
--------------------------------------*/

.sns{
    width:92%;
    max-width: 980px;
    margin: 0 auto 80px auto;
    display: flex;
    gap:20px;
}
.sns .twitter{
    width:100%;
    max-width: 640px;
}
@media (max-width: 760px) {
.sns{
    max-width: 320px;
    margin: 0 auto 40px auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
}