

@charset "UTF-8";

/* ------------------
共通
------------------ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Yu Gothic", sans-serif;
    color: #fff;
    background: #f5f5f5;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* ------------------
header
------------------ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 5%;

    z-index: 1000;

    background: rgba(15, 61, 46, 0.9);
    backdrop-filter: blur(10px);
}

.logo img {
    height: 70px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav li {
    list-style: none;
}

nav a {
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    transition: .3s;
}

nav a:hover {
    color: #D4AF37;
}

/* ------------------
FV
------------------ */

.fv {
    height: 100vh;

    background-image:
        linear-gradient(rgba(15, 61, 46, .75),
            rgba(15, 61, 46, .75)),
        url("images/n-fv.png");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}

.fv-content {
    margin-left: 10%;
    max-width: 700px;
}

.sub-title {
    color: #D4AF37;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 20px;
}

.fv-content h1 {
    font-size: 72px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: bold;
}

.text {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;

    background: #009B63;
    color: #000000;

    padding: 18px 50px;

    border-radius: 50px;

    font-size: 25px;
    font-weight: bold;

    transition: all .3s ease;
}

.btn:hover {
    transform: translateY(-5px);
    background: #D4AF37;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

/* ------------------
service
------------------ */

.service {
    padding: 120px 5%;
    background: #fff;
    color: #333;
}


.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;

    color: #123524;
    letter-spacing: 4px;

    position: relative;
}

.section-title::after {
    content: "";

    display: block;

    width: 60px;
    height: 3px;

    background: #D4AF37;

    margin: 20px auto 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    text-align: center;
}

.card h3 {
    margin-bottom: 15px;
}

/* ------------------
SP
------------------ */

@media(max-width:768px) {

    header {
        padding: 15px 20px;
    }

    nav {
        display: none;
    }

    .logo img {
        height: 55px;
    }

    .fv-content {
        margin: 0 30px;
    }

    .fv-content h1 {
        font-size: 42px;
    }

    .text {
        font-size: 16px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }


}

/* ------------------
REASON
------------------ */

.reason {
    padding: 120px 5%;
    background: #f7f7f7;
    color: #333;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* ------------------
VEHICLE
------------------ */

.vehicle {
    padding: 120px 5%;
    background: #fff;
    color: #333;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.vehicle-card {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.vehicle-card h3 {
    padding: 20px;
    text-align: center;
}

/* ------------------
ABOUT
------------------ */

.about {
    padding: 120px 10%;
    background: #123524;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: auto;
    line-height: 2;
}

/* ------------------
CONTACT
------------------ */

.contact {
    padding: 120px 10%;
    background: #009B63;
    text-align: center;
}

.contact p {
    margin-bottom: 30px;
}

/* ------------------
FOOTER
------------------ */

footer {
    background: #0f0f0f;
    text-align: center;
    padding: 30px;
}

/* ------------------
SP
------------------ */

@media(max-width:768px) {

    .reason-grid,
    .vehicle-grid {
        grid-template-columns: 1fr;

    }

    .company-table th,
    .company-table td {
        padding: 12px 10px;
    }

    .company-table th {
        width: 90px;
    }

    .btn {
        padding: 16px 30px;
        font-size: 20px;
        white-space: nowrap;
    }
    .fv{
    background-position: 45% center;
}
}

.about .section-title {
    color: #ffffff;
}

.contact .section-title {
    color: #ffffff;
}

.company-table {
    width: 100%;
    max-width: 700px;
    margin: 50px auto 0;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    text-align: left;
}

.company-table th {
    width: 180px;
    color: #D4AF37;
    font-weight: bold;
}

.company-table td {
    color: #fff;
}

.about {
    padding: 120px 10%;
    text-align: center;

    background-image:
        linear-gradient(rgba(18, 53, 36, .85),
            rgba(18, 53, 36, .85)),
        url("images/fv.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reason-card p {
    text-align: center;
    line-height: 1.8;
}

.nowrap {
    white-space: nowrap;
}

.tel-link{
    display: inline-block;
    margin-top: 10px;

    font-size: 26px;
    font-weight: bold;

    color: #009B63;
    text-decoration: none;

    transition: all .3s ease;
}

.tel-link:hover{
    color: #D4AF37;
    transform: scale(1.05);
}



/* パンくずリストを非表示 */
.breadcrumb,
.breadcrumbs,
.pankuzu,
#breadcrumb,
.c-breadcrumb,
.l-breadcrumb {
    display: none !important;
}