/* ==========================================
   Base
========================================== */
body{
    margin:0;
    background:#f5f5f5;
    font-family:"Yu Gothic","Meiryo",sans-serif;
}
html{

    scroll-padding-top:120px;

}
.anchor-offset{

    scroll-margin-top:140px;

}
/* ==========================================
   Header
========================================== */

.site-header{
    background:#fff;
    border-bottom:1px solid #ddd;
}

.header-top{

    max-width:1200px;

    margin:0 auto;

    padding:15px 20px;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;
    
    gap:40px;

}

.header-left{

    width:70%;

    display:flex;

    flex-direction:column;

    gap:18px;
    
    flex:1;

}

.header-copy{

    width:100%;

    font-size:16px;

    line-height:1.8;

    color:#555;

}

.header-info{

    width:360px;

    text-align:left;
    
    margin-left:60px;

    font-size:14px;

    line-height:1.6;

}

.header-info p{

    margin:2px 0;

}

.company-name{

    font-size:20px;

    font-weight:bold;

    color:#1f2d3d;

    margin:12px 0 4px;

}

.store-wrap{

    display:flex;

    gap:30px;

    justify-content:space-between;

}

.store-info{

    flex:1;

}

.header-info{

    width:36%;

    text-align:left;

}

.header-logo{

    padding:10px;

}

.header-logo img{

    height:75px;

}

.store-name{

    color:#1f2d3d;

    font-weight:bold;

    margin-top:8px;

}

/* ==========================================
   Navigation
========================================== */

.main-nav{

    background:#002058;
    
    max-width:1200px;

    margin:0 auto;

}

.main-nav > ul{

    max-width:1200px;
    margin:auto;
    

    display:flex;

    justify-content:space-between;

    list-style:none;
    padding:0 40px;
}

.main-nav>ul>li{

    position:relative;
}

.main-nav>ul>li>a{

    display:block;

    color:#fff;

    padding:18px 18px;

    text-decoration:none;

    font-weight:bold;

    transition:.25s;
}

.main-nav>ul>li>a:hover{

    background:#6b2d84;
}

/* ==========================================
   Dropdown Menu
========================================== */

.dropdown-menu{

    display:none;

    position:absolute;

    top:100%;
    left:0;

    background:#002058;

    width:150px;

    padding:0;
    margin:0;

    list-style:none;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    z-index:999;
}

.dropdown:hover .dropdown-menu{

    display:block;
}

.dropdown-menu li{

    width:100%;
}

.dropdown-menu a{

    display:block;

    color:#fff;

    padding:12px 16px;

    text-decoration:none;

    white-space:nowrap;

    transition:.25s;
}

.dropdown-menu a:hover{

    background:#6b2d84;
}
/* ==========================================
   Buttons
========================================== */


/* ==========================================
   Slideshow
========================================== */

.hero{
    max-width:1200px;
    margin:20px auto 30px;
}

.slideshow-container {
    width: 100%;
    height: 34vh;
    position: relative;
    overflow: hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: slideshow 20s infinite;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 20s linear infinite;
}

@keyframes zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}
.slide:nth-child(1) {
    animation-delay: 0s;
}
.slide:nth-child(2) {
    animation-delay: 5s;
}
.slide:nth-child(3) {
    animation-delay: 10s;
}
.slide:nth-child(4) {
    animation-delay: 15s;
}

@keyframes slideshow {
    0% {
        opacity: 0;
    }

    /* フェードイン（1秒） */
    5% {
        opacity: 1;
    }

    /* 3秒表示 */
    20% {
        opacity: 1;
    }

    /* フェードアウト（1秒） */
    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* ==========================================
   Main Contents
========================================== */


/* ==========================================
   Footer
========================================== */
.site-footer{

    max-width:1200px;

    margin:30px auto 0;

    background:#002058;
}

.footer-inner{

    max-width:1200px;

    margin:0 auto;

    text-align:center;
}

.footer-nav ul{

    display:flex;

    justify-content:center;

    gap:30px;

    list-style:none;

    margin:0;

    padding:0;

}

.footer-nav a{

    color:#fff;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;
}

.footer-nav a:hover{

    color:#4da3ff;
}

.footer-company{

    color:#fff;
}

.footer-copy{

    color:rgba(255,255,255,.7);
}

/* ==========================================
   Main Layout
========================================== */

.container{

    max-width:1200px;

    margin:20px auto 30px;

    display:flex;

    gap:30px;

    align-items:flex-start;
}
/* ==========================================
   Left Menu
========================================== */
.left-menu{

    width:270px;
}

.menu-box{

    background:#fff;

    border:1px solid #ddd;

    border-radius:6px;

    overflow:hidden;

    margin-bottom:25px;
}

.menu-box h2{

    margin:0;

    padding:18px 18px;

    background:#002058;

    color:#fff;

    font-size:18px;

    border-bottom:2px solid #6b2d84;
}

.menu-box ul{

    list-style:none;

    margin:0;

    padding:0;
}

.menu-box li{

    border-bottom:1px solid #eee;
}

.menu-box li a::before{

    content:"›";

    margin-right:10px;

    color:#6b2d84;

    font-weight:bold;
}

.menu-box li:last-child{

    border-bottom:none;
}

.menu-box a{

    display:block;

    padding:14px 18px;

    transition:.25s;
}

.menu-box a:hover{

    padding-left:26px;

    background:#6b2d84;

    color:#fff;
}
.shop-title{

    background:#05398F;

    color:#fff;

    padding:8px 12px;

    font-size:15px;

    font-weight:bold;
}
.phone a{

    font-size:22px;

    font-weight:bold;

    color:#1f2d3d;

    text-decoration:none;
}
.shop-info{
    padding:15px;
}

.phone,
.shop-info p{
    margin-left:12px;
}
.shop-info + .shop-info{
    border-top:1px solid #e5e5e5;
}
.shop-info:last-child{

    border-bottom:none;
}
/* ==========================================
   Main Contents
========================================== */
.main-content{

    flex:1;

    min-height:600px;
}

.stock-title{

    background:#002058;

    color:#fff;

    padding:15px 20px;

    margin:0;

    border-radius:8px 8px 0 0;

}

.stock-title h1{

    margin:0;

    font-size:24px;

    color:#fff;

}

.section-title{
    background:#1f2d3d;
    color:#fff;
    padding:18px 18px;
    font-weight:bold;
}

.section-title h1{
    margin:0;
    font-size:24px;
    font-weight:bold;
    color:#fff;
    line-height:1.2;
}

.content-box{

    background:#fff;

    border:1px solid #ddd;

    margin-bottom:10px;

    padding:0;
}

.content-title{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#05398F;      /* 薄いネイビー */

    padding:10px 15px;

    margin-bottom:10px;
}

.content-title a{

    color:#fff;

    text-decoration:none;

    font-size:15px;

    font-weight:bold;

    transition:.2s;
}

.content-title a:hover{

    color:#dcdcdc;

    text-decoration:underline;
}

.store-title{

    margin:0;

    padding:10px 15px;

    background:#364d69;

    color:#fff;

    font-size:18px;

    font-weight:bold;
}

.content-title h2{

    margin:0;

    padding:10px 15px;

    background:#05398F;

    color:#fff;

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

}

.car-card{
    width:calc((100% - 60px) / 4);
    border:1px solid #ddd;
    border-radius:6px;
    overflow:hidden;
    background:#fff;
    transition:all .25s ease;
    cursor:pointer;
    box-shadow:0 2px 6px rgba(0,0,0,.08);
    box-sizing:border-box;
}
.car-card:hover{

    transform:translateY(-4px);

    box-shadow:0 8px 18px rgba(0,0,0,.18);
    
    border-color:#6b2d84;

}

.car-card h3{

    margin:10px 0 6px;

    font-size:18px;

    font-weight:bold;

    line-height:1.4;
}

.car-card h3 a{

    color:#222;

    text-decoration:none;

    transition:color .2s ease;
}

.car-card h3 a:hover{

    color:#6b2d84;
}

.car-card img{
    width:100%;
    height:140px;
    object-fit:cover;
    display:block;
    transition:.2s;
}

.car-card:hover img{

    transform:scale(1.03);
}

.car-list{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
    
    margin-top:10px;
    
    padding:15px;
}

.car-name{

    font-size:18px;

    font-weight:bold;

    margin:8px 0 4px;
}

.car-price{

    font-size:13px;

    font-weight:bold;

    margin:4px 0;
}

.car-price span{

    font-size:20px;

    color:#d32f2f;
}

.car-tax{
    margin:2px 0;
    font-size:13px;
    color:#666;
}

.car-spec{

    font-size:15px;

    color:#666;
    
    margin:4px 0 0;
}

/* ==========================================
   Youtube
========================================== */
.youtube-wrapper{

    position:relative;

    padding-bottom:56.25%;   /* 16:9 */

    height:0;

    overflow:hidden;

    border-radius:8px;

}

.youtube-wrapper iframe{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    border:none;

}

.section-link{

    text-align:right;

    margin-top:20px;

}

.section-link a{

    display:inline-block;

    font-weight:bold;

    color:#1f2d3d;

    text-decoration:none;

    transition:0.3s;

}

.section-link a:hover{

    color:#05398F;

}
/* ==========================================
   News
========================================== */
.news-box{

    margin-top:40px;
}

.news-date{

    color:#777;

    width:110px;

    flex-shrink:0;

    font-size:14px;

}

.news-box h2{

    margin:0;

    padding:0 18px 12px;

    font-size:22px;

    border-bottom:3px solid #1f2d3d;

}

.news-list{

    list-style:none;

    margin:0;

    padding:0;
}

.news-list li{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 0;

    border-bottom:1px solid #ddd;

}

.news-list a{

    color:#222;

    text-decoration:none;

    transition:.2s;

}

.news-list a:hover{

    color:#6b2d84;

}

.news-category{

    display:inline-block;

    padding:3px 8px;

    border-radius:4px;

    font-size:12px;

    font-weight:bold;

    color:#fff;

}

.business{

    background:#d9534f;
}

.stock{

    background:#0275d8;
}

.service{

    background:#5cb85c;
}

.recruit{

    background:#6b2d84;
}

.news-more{

    text-align:right;

    margin-top:20px;

}

.news-more a{

    text-decoration:none;

    font-weight:bold;

    color:#1f2d3d;

}

.news-more a:hover{

    color:#6b2d84;

}

.page-title h1{

    font-size:42px;

    margin-bottom:8px;

}

.page-title p{

    color:#888;

    font-size:18px;

}

.news-page{

    margin-top:40px;

}

.news-item{

    max-width:850px;

    line-height:2.1;
    
    padding-bottom:35px;

    margin-bottom:35px;

    border-bottom:1px solid #ccc;

}

.news-item h2{

    margin:20px 0 25px;

}
/* ==========================================
   Service
========================================== */

.service-box{

    margin-top:40px;

}

.page-image{

    display:block;

    width:100%;

    max-width:1200px;

    height:300px;

    object-fit:cover;

    border-radius:8px;

    margin:30px auto;

}

.hero-image{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:8px;
}

.card-image{
    display:block;
    width:90%;
    max-width:700px;
    height:auto;
    margin:20px auto 30px;
    border-radius:8px;
}

.service-box h2{

    margin:0;

    padding:0 18px 12px;

    font-size:24px;

    border-bottom:3px solid #1f2d3d;

}

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

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

.service-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:space-between;

    text-align:center;

    background:#fff;

    padding:30px;

    border-radius:8px;

    box-shadow:0 3px 12px rgba(0,0,0,.08);

    text-decoration:none;

    color:#333;
    
    min-height:420px;

}

.service-card img{

    width:160px;

    height:160px;

    object-fit:contain;

    margin:25px auto 15px;

    display:block;

    transition:.25s;

}

.service-card h3{

    margin:0;

    font-size:22px;

    font-weight:bold;

}

.service-card p{

    margin:15px 20px;

    color:#666;

    font-size:15px;

    line-height:1.7;

}

.service-card span{

    display:inline-block;

    margin-bottom:25px;

    padding:10px 22px;

    background:#002058;

    color:#fff;

    border-radius:30px;

    font-weight:bold;

    transition:.25s;

}

.service-card:hover{

    transform:translateY(-5px);
    
    transition:.25s;

    border-color:#6b2d84;

    box-shadow:0 12px 24px rgba(0,0,0,.15);

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-card:hover span{

    background:#6b2d84;

}

.detail-button{

    display:block;

    width:180px;

    margin:20px auto 0;

    padding:14px 0;

    text-align:center;

    color:#fff;

    background:#002058;

    border-radius:30px;

    font-weight:bold;

}

.service-card:hover .detail-button{

    background:#2f6fb6;

}

.service-note{

    margin-top:20px;

    color:#888;

    font-size:14px;

    font-weight:bold;

    letter-spacing:0.05em;

}

.service-content{

    display:flex;

    flex-direction:column;

    flex:1;

}

.price-header,
.price-row{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    align-items:center;

    gap:20px;

}

.price-header,
.price-row-grid{

    display:grid;

    grid-template-columns: 2.5fr 1fr 1fr;

    align-items:center;

    gap:20px;

}

.price-header{

    font-weight:bold;

    background:#f5f5f5;

    padding:14px 20px;

    border-radius:6px;

}

.price-row{

    padding:16px 20px;

    border-bottom:1px solid #eee;

}

.price-row:last-child{

    border-bottom:none;

}

.price-row span:last-child,
.price-row strong{

    text-align:right;

}

.price-row-grid{

    padding:16px 20px;

    border-bottom:1px solid #eee;

}

.price-row-grid span:nth-child(2),
.price-row-grid span:nth-child(3){

    text-align:right;

    white-space:nowrap;

}
/* ==========================================
   Company
========================================== */
.company-profile{

	background:#fff;

	border-radius:8px;

	padding:30px 30px 0 30px;

	box-shadow:0 3px 12px rgba(0,0,0,.08);
	
	margin-bottom:50px;

}

.section-title{
	
	background:#f7f7f7;

    padding:40px 0 35px;

    margin:0;

}
.section-title h1,
.section-title h2{

    font-size:38px;

    color:#1f2d3d;

    margin:0;

}

.section-title p{

    margin-top:8px 0 0;

    font-size:14px;

    letter-spacing:3px;

    color:#999;

    text-transform:uppercase;

}

.section-heading h2{

	font-size:34px;

	font-weight:bold;

	color:#1f2d3d;

	margin:0;

}

.section-heading p{

	margin-top:8px;

	font-size:15px;

	color:#888;

	letter-spacing:2px;

	text-transform:uppercase;

}

.profile-row{

	display:flex;

	padding:18px 0;

	border-bottom:1px solid #e5e5e5;

}

.profile-row:last-child{

	border-bottom:none;

}

.profile-title{

	width:180px;

	font-weight:bold;

	color:#1f2d3d;

}

.profile-text{

	flex:1;

}

.shop-list{

	display:flex;

	flex-direction:column;

	gap:40px;

	margin-top:30px;

}

.shop-section p{

	margin-top:8px;

	font-size:15px;

	color:#888;

	letter-spacing:2px;

	text-transform:uppercase;

}

.shop-card{

	display:flex;

	gap:30px;

	background:#fff;

	padding:25px;

	border-radius:8px;

	box-shadow:0 3px 12px rgba(0,0,0,.08);
	
	align-items:center;

}

.shop-card img{

	width:360px;

	height:240px;

	object-fit:cover;

	border-radius:6px;

}

.shop-content{

	flex:1;
	
	margin-top:30px;

}

.shop-content p{

	margin:8px 0;

}

.shop-content h3{

	margin-top:0;

	font-size:28px;

	color:#1f2d3d;

}

.map-button{

    display:inline-block;

    margin-top:20px;

    padding:12px 22px;

    background:#2F6DA8;

    color:#fff;

    text-decoration:none;

    border-radius:6px;

    font-weight:bold;

    transition:.25s;

}

.map-button:hover{

    background:#245a8d;
    
    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.partner-card{

	margin-top:30px;

	background:#fff;

	padding:35px;

	border-radius:8px;

	box-shadow:0 3px 12px rgba(0,0,0,.08);

}

.partner-card h3{

	margin:0 0 20px;

	padding-bottom:10px;

	border-bottom:2px solid #2F6DA8;

	color:#1f2d3d;

	font-size:22px;

}

.partner-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:0 40px;

    list-style:none;

    padding:0;

}

.partner-list li{

	padding:12px 0;

	border-bottom:1px solid #ececec;

	font-size:16px;

}

/* ==========================================
   Seibi
========================================== */
.price-card{

    background:#fff;

    border-radius:8px;

    padding:30px;

    box-shadow:0 3px 12px rgba(0,0,0,.08);

}

.price-card h3{
    margin-bottom:20px;
}

.tip-title{
    font-weight:bold;
    color:#d98c00;
    margin-bottom:8px;
}

.tip-text{
    line-height:1.8;
    font-size:0.95rem;
}

.price-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid #eee;

}

.price-row:last-child{

    border-bottom:none;

}

.price-row strong{

    font-size:20px;

    color:#1f2d3d;

}

