/*
英
font-family: "Alfa Slab One", serif;

日
font-family: "IBM Plex Sans JP", sans-serif;
*/

body{
    font-family: "IBM Plex Sans JP", sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

figure,dl,dd{
    margin-bottom: 0;
}

img{
    width: 100%;
}

a{
    text-decoration: none;
}

ul{
    list-style-type: none;
    padding-left: 0;
}

.pc{
    display: block;
}

.sp{
    display: none;
}

/* ボタンのリセットCSS */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    outline: none;
    cursor: pointer;
}

.br{
    display: block;
}

.wm-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.wm-navbar-inner {
    max-width: 1200px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 64px;
}

.wm-navbar-brand h2 {
    font-family: 'Alfa Slab One', 'IBM Plex Sans JP', sans-serif;
    font-size: 20px;
    color: #00913a;
    text-decoration: none;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.wm-navbar-brand p{
    font-size: 12px;
    color: #333;
    margin-bottom: 0;
}

.wm-navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.wm-navbar-nav li {
    display: flex;
    align-items: center;
}
.wm-navbar-nav li:not(:last-child)::after {
    content: "/";
    color: #bbb;
    margin: 0 16px;
    font-size: 1.1em;
}
.wm-navbar-nav a {
    color: #222;
    text-decoration: none;
    font-size: 1.05rem;
    padding: 8px 0;
    transition: color 0.2s;
}
.wm-navbar-nav a:hover {
    color: #00913a
}

/* ハンバーガー */
.wm-navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 16px;
}
.wm-navbar-toggler-icon {
    display: block;
    width: 28px;
    height: 3px;
    background: #222;
    position: relative;
    border-radius: 2px;
}
.wm-navbar-toggler-icon::before,
.wm-navbar-toggler-icon::after {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    background: #222;
    position: absolute;
    left: 0;
    border-radius: 2px;
    transition: 0.2s;
}
.wm-navbar-toggler-icon::before {
    top: -9px;
}
.wm-navbar-toggler-icon::after {
    top: 9px;
}

/* ハンバーガーアイコンのアニメーション */
.wm-navbar-toggler.open .wm-navbar-toggler-icon {
    background: transparent;
}
.wm-navbar-toggler.open .wm-navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.wm-navbar-toggler.open .wm-navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.tp-main {
    background-color: #00913a;
    display: flex;
    padding-top: 150px;
    position: relative;
}

.tp-title,.tp-mainimg{
    width: 50%;
}

.tp-title{
    padding-left: 50px;
}

.tp-title h1{
    font-family: "Alfa Slab One", serif;
    color: white;
    font-size: 80px;
    letter-spacing: 2px;
    line-height: 1em;
}

.tp-title p{
    color: #c8aa35;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
}

.tp-title img{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 50%;
}

.tp-mainimg img{
    border-radius: 40px 0px 0px 0px;
}

/* tp-aboutの背景画像はそのまま不透明度100% */
.tp-about {
    position: relative;
    background: url("../img/index/about.jpg") center/cover no-repeat;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    overflow: hidden;
    margin-top: -40px; /* tp-mainの下端と重なるようにマイナス指定 */
    margin-bottom: 40px;
    height: 40vh;
    z-index: 5;
    border-bottom: 50px solid #00913a;
}
.tp-about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.6);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    z-index: 1;
    pointer-events: none;
}
.tp-about > .container,
.tp-about > .row,
.tp-about-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    z-index: 2;
}

.tp-about-content h2{
    font-weight: bold;
}

.tp-about-content h2 span{
    color: #c8aa35;
}

.tp-ser-title {
    text-align: center;
    margin: 50px auto;
}
.tp-ser-title h3 {
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 30px;
}
.tp-ser-title p {
    color: #00913a;
    font-size: 14px;
    margin: 8px 0;
    letter-spacing: 2px;
}

.tp-ser-title p i{
    padding-right: 5px;
}

.tp-ser-content,.tp-ser-content2{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 100px 0;
}

.tp-ser-l{
    width: 60%;
}

.tp-ser-r{
    width: 35%;
}

.tp-ser-r h4{
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 5px;
}

.tp-ser-sub{
    font-family: "Alfa Slab One", serif;
    letter-spacing: 2px;
    color: #00913a;
}

.tp-ser-r a{
    display: block;
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #333;
    border-radius: 20px;
    color: #333;
    transition: .3s;
}

.tp-ser-r a:hover{
    background-color: #00913a;
    color: #fff;
}

.tp-bg{
    margin-top: 50px;
}

.tp-comp{
    background-color: #00913a;
    padding: 100px 0;
}

.tp-comp-title{
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.tp-comp-title h3,.tp-news-title h3{
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 30px;
}

.tp-comp-title p {
    font-size: 14px;
    margin: 8px 0;
    letter-spacing: 2px;
}

.tp-comp-content{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tp-comp-icon{
    width: 25%;
    transition: .3s;
}

.tp-comp-icon .tp-l-arr i{
    transition: .3s;
}

.tp-comp-icon:hover .tp-l-arr i{
    transform: rotate(90deg);
}

.tp-comp-icon:hover .tp-comp-link{
    background-color: #c8aa35;
}

.tp-comp-link{
    display: block;
    width: 100%;
    height: 200px;
    line-height: 200px;
    border: 5px solid white;
    font-size: 100px;
    text-align: center;
    color: white;
    transition: .3s;
}

.tp-comp-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    margin-top: 10px;
}

.tp-comp-text dt{
    font-size: 20px;
}

.tp-comp-text dd{
    font-size: 12px;
    letter-spacing: 1px;
}

.tp-news{
    background-color: #c8aa35;
    padding: 100px 0;
}

.tp-news .col-md-10{
    display: flex;
    justify-content: space-between;
}

.tp-news-title{
    width: 20%;
    color: white;
}

.tp-news-title p i{
    padding-right: 5px;
}

.tp-news-content{
    width: 75%;
    background-color: white;
    padding: 30px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.tp-news-table{
    width: 100%;
}

.tp-news-table td{
    border-bottom: 1px solid #333;
    padding: 10px 0;
}

.news-day{
    width: 25%;
    font-weight: bold;
}

.news-tag{
    width: 15%;
}

.news-tag span{
    font-size: 14px;
    border: 1px solid #333;
    text-align: center;
    padding: 2px 5px;
}

.news-text{
    width: 60%;
}

.tp-contact{
    position: relative;
    background: url("../img/index/contact.jpg") center/cover no-repeat;
    overflow: hidden;
    padding: 100px 0;
    z-index: 1;
}

.tp-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 145, 58, 0.8);
    z-index: 2;
    pointer-events: none;
}

.tp-contact-content{
    position: relative;
    z-index: 5;
    text-align: center;
}

.tp-contact-content h4{
    width: 50%;
    color: white;
    border: 2px solid white;
    border-radius: 40px;
    padding: 10px;
    margin: 10px auto;
    letter-spacing: 2px;
    font-weight: bold;
}

.tp-contact-content p{
    font-size: 30px;
    color: white;
    font-weight: bold;
    margin-top: 30px;
}

.tp-contact-content a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 300px;
    height: 45px;
    text-align: center;
    background-color: white;
    color: black;
    margin: 0 auto;
    border-radius: 40px;
    box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.5);
    transition: .3s;
}

.tp-contact-content a:hover{
    background-color: #c8aa35;
    color: white;
}

.tp-contact-content i{
    color: #00913a;
    transition: .3s;
}

.tp-contact-content a:hover i{
    color: white;
}

footer{
    padding-top: 100px;
}

.foot-title h3{
    text-align: center;
}

.foot-title img{
    width: 40%;
}

.foot-sitemap ul{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.foot-sitemap li a{
    color: #333;
    transition: .3s;
}

.foot-sitemap li a:hover{
    color: #00913a;
}

.foot-sns ul{
    display: flex;
    justify-content: center;
}

.foot-sns li a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 30px;
    color: white;
    background-color: #333;
}

.copy{
    background-color: #333;
    color: white;
    margin-top: 50px;
    padding: 20px 0;
}

.copy p{
    text-align: center;
    margin-bottom: 0;
}

/* common */
.common-head{
    background-color: #00913a;
    padding: 120px 0 50px 0;
    position: relative;
    /* 背景画像を下に固定で追加 */
    background-image: url('../img/common/head.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.head-title h2{
    font-family: "Alfa Slab One", serif;
    font-size: 50px;
    color: white;
}

.head-title p{
    color: #c8aa35;
    letter-spacing: 2px;
}

.breadcrumb-item{
    font-size: 12px;
}

.breadcrumb-item a,.breadcrumb-item span{
    color: #003314;
}

/* company */
#greeting,#profile,#history,#store,#vi,#ma,#ucs{
    margin-top: -100px;
    padding-top: 100px;
}

.comp-category ul{
    display: flex;
    justify-content: center;
    gap: 50px;
    background-color: #00913a;
    padding: 20px 0;
    margin: 50px auto;
}

.comp-category a {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}

.comp-category a::after{
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background:white;
    bottom:-1px;
    transform: scale(0,1);
    transform-origin: right top;
    transition: transform .3s;
}

.comp-category a:hover::after{
    transform: scale(1,1);
    transform-origin: left top;
}

.comp-category a span{
    padding-right: 5px;
    color: #c8aa35;
}

.comp-flex{
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.comp-title{
    width: 20%;
}

.comp-title h3{
    font-size: 30px;
    color: #00913a;
    font-weight: bold;
}

.comp-title p{
    color: #c8aa35;
    font-family: "Alfa Slab One", serif;
    letter-spacing: 2px;
}

.greet-content,.comp-content,.comp-store-content,.comp-dealers,.comp-serviceshop,.his-content,.ser-content{
    width: 75%;
}

.greet-content h4{
    margin: 30px 0;
}

.greet-content p{
    line-height: 2em;
    letter-spacing: 1px;
}

.greet-content figure{
    text-align: right;
}

.greet-content img{
    width: 40%;
}

.comp-content,.comp-dealers,.comp-serviceshop,.his-content,.ser-content{
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    padding: 50px;
}

.comp-dealers,.comp-serviceshop,.comp-content table,.his-content table{
    width: 100%;
}

.comp-content th,.comp-content td{
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.comp-content tr:last-child th,
.comp-content tr:last-child td {
    border-bottom: none;
}

.comp-content th,.his-content th{
    width: 20%;
    vertical-align: top;
}

.his-content th,
.his-content td {
    padding: 20px 0;
    border: none;
    border-top: 1px solid #eee;
}

.his-content tr:first-child th,
.his-content tr:first-child td {
    border-top: none;
}

.his-content th p{
    background-color: #00913a;
    color: white;
    margin-right: 20px;
    padding: 3px 0;
    text-align: center;
}

.his-month{
    width: 10%;
    font-weight: bold;
}

.comp-dealers{
    margin-bottom: 50px;
}

.comp-store-content h4{
    font-weight: bold;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.comp-store-content p i{
    padding-right: 10px;
}

.comp-store-img{
    display: flex;
    gap: 30px;
}

.store-map{
    margin-top: 30px;
}

/* service */
.ser-content h4{
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #00913a;
}

.ser-content h4::after{
    content: '';
    flex-grow: 1;
    border-bottom: 2px solid #00913a;
    margin-left: 10px;
}

.ser-safety{
    background-color: #00913a;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.ser-safety h5{
    text-align: center;
    color: white;
}

.ser-safety ul{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
}

.ser-safety li{
    border: 3px solid white;
    text-align: center;
    padding: 10px;
}

.ser-safety img{
    width: 40%;
}

.ser-safety p{
    margin-top: 10px;
    margin-bottom: 0;
    color: white;
    line-height: 1.5em;
}

.ser-price{
    overflow-y: scroll;
    scrollbar-width: none;
}

.ser-price table{
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}

.ser-price-cate{
    background-color: #333;
    color: white;
}

.ser-price th,.ser-price td{
    border: 1px solid #333;
    padding: 10px;
    text-align: center;
}

.ser-price th{
    background-color: #00913a;
    color: white;
}

.ser-price-cation{
    font-size: 12px;
}

.ser-content a{
    display: block;
    width: 250px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #00913a;
    border: 2px solid #00913a;
    border-radius: 30px;
    font-weight: bold;
    transition: .3s;
}

.ser-content a:hover{
    background-color: #00913a;
    color: white;
}

.ser-content a span{
    padding-left: 10px;
}

/* お問い合わせ */
.contact-text{
    margin-top: 50px;
}

.contact-form{
    margin-top: 50px;
}

.field{
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact-form label{
    width: 30%;
    margin-bottom: 20px;
    color: #333;
}

.contact-form label i{
    padding-right: 10px;
    color: #00913a;
}

.contact-form label span{
    font-size: 12px;
    color: #c80000;
    padding-left: 5px;
}

.contact-form .control{
    width: 50%;
}

.input,.textarea{
    display: block;
    width: 100%;
}

.contact-btn{
    width: 100%;
}

.sousin{
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #00913a;
    border-radius: 30px;
    margin: 50px auto 0 auto;
    font-weight: bold;
    color: #00913a;
    transition: .3s;
}

.sousin:hover{
    background-color: #00913a;
    color: white;
}

/* 個人情報保護方針 */
.pripoli{
    margin: 50px 0;
}

.pripoli h3{
    font-size: 20px;
    color: #00913a;
    border-left: 3px solid #00913a;
    padding-left: 10px;
}

/* 在庫車紹介 */
.zaiko-content{
    display: flex;
    justify-content: center;
    gap: 30px;
    background-color: white;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    border-radius: 30px;
    padding: 30px;
    transition: .3s;
}

.zaiko-img{
    width: 35%;
}

.zaiko-item{
    color: #00913a;
    border: 2px solid #00913a;
    margin-top: 20px;
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
    transition: .3s;
}

.zaiko-link:hover .zaiko-item{
    background-color: #00913a;
    color: white;
}

.zaiko-item i{
    padding-right: 10px;
}

.zaiko-text{
    width: 60%;
    color: #333;
}

.zaiko-model dl{
    color: #00913a;
}

.zaiko-model dd{
    font-size: 12px;
}

.zaiko-model dt{
    font-weight: bold;
    font-size: 20px;
}

.zaiko-spec h4{
    background-color: #00913a;
    color: white;
    font-size: 14px;
    width: 30%;
    padding: 5px;
    text-align: center;
    border-radius: 10px;
}

.zaiko-spec-data{
    display: flex;
    align-items:flex-start;
    justify-content: space-between;
}

.zaiko-spec-data table{
    width: 33%;
    font-size: 14px;
}

.zaiko-spec-data table:last-child{
    border-right: none;
}

.zaiko-price{
    display: flex;
    justify-content: center;
    gap: 30px;
}

.zaiko-price div{
    margin-top: 10px;
    width: 30%;
}

.zaiko-price1 p,.zaiko-price2 p,.zaiko-price3 p{
    margin-bottom: 0;
    font-size: 14px;
}

.zaiko-price div span{
    font-size: 12px;
    color: #333;
}

.zaiko-price1 h5{
    color: #c80000;
    font-weight: bold;
}

.zaiko-hosho{
    display: flex;
    align-items: center;
    border: 1px solid #333;
    border-radius: 10px;
    gap: 10px;
    padding: 10px;
}

.zaiko-hosho h5,.zaiko-hosho p{
    margin-bottom: 0;
    font-size: 14px;
}

.zaiko-hosho h5{
    font-weight: bold;
    border-right: 1px solid #333;
    padding-right: 10px;
}

/* 在庫車紹介　詳細 */
.cis-model{
    margin: 50px 0;
    color: #00913a;
}

.cis-model p{
    margin-bottom: 5px;
    border-bottom: 1px solid #00913a;
    padding-bottom: 5px;
}

.cis-model h3{
    font-size: 30px;
    font-weight: bold;
}

.cis-content1{
    display: flex;
    gap: 30px;
}

.cis-img{
    width: 45%;
}

.cis-data{
    width: 50%;
}

.cis-data-price{
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.cis-data-price dd span{
    font-size: 12px;
}

.cis-data-price dt{
    font-size: 16px;
}

.cis-data-price dt span{
    font-size: 26px;
}

.cis-data-price-item1 dt span{
    color: #c80000;
}

.cis-hosho{
    margin-top: 20px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
}

.cis-hosho h4{
    width: 25%;
    font-size: 18px;
    margin-bottom: 0;
}

.cis-hosho p{
    width: 70%;
    font-size: 14px;
    margin-bottom: 0 ;
}

.cis-text p{
    margin-top: 10px;
    font-size: 14px;
}

.cis-spec h4,.cis-sales h4{
    background-color: #00913a;
    color: white;
    font-size: 16px;
    padding: 5px;
    text-align: center;
    width: 40%;
    border-radius: 10px;
}

.cis-spec-item{
    display: flex;
    align-items: flex-start;
}

.cis-spec-item th,.cis-spec-item td{
    font-size: 14px;
    padding: 5px;
}

.cis-sales{
    margin-top: 20px;
}

.cis-sales p{
    font-size: 14px;
}

.cis-content2{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 100px;
}

.cis-l,.cis-r{
    width: 100%;
    background-color: white;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    padding: 30px;
    font-size: 14px;
    margin: 30px 0;
}

.cis-l table,.cis-r table{
    width: 100%;
}

.cis-l h4,.cis-r h4{
    font-size: 20px;
    color: #00913a;
    font-weight: bold;
}

.cis-l th,.cis-l td,.cis-r th,.cis-r td{
    border-top: 1px solid #eee;
    padding: 10px 0;
}

.main-swiper {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.main-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.thumb-list img {
    width: 23%;
    height: 80px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.thumb-list img.active {
    opacity: 1;
    border: 2px solid #007bff;
}

.wm-linkbg{
    background-color: #00913a;
}

.wm-link{
    position: relative;
    height: 100vh;
}

.wm-link-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: white;
    border-radius: 30px;
    width: 40%;
    padding: 50px 30px 30px 30px;
    text-align: center;
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45);
}

.wm-linkbtn{
    display: flex;
}

.wm-linkbtn a{
    width: 45%;
    padding: 40px 0;
    margin: 20px auto;
    border: 2px solid #00913a;
    border-radius: 30px;
    background-color: #00913a;
    color: white;
    transition: .3s;
}

.wm-linkbtn a i{
    display: block;
    font-size: 40px;
    margin-bottom: 20px;
}

.wm-linkbtn a:hover{
    background-color: white;
    color: #00913a;
}