.navbar .dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown-menu {
    border: none;
    background-color: #fff;
    padding: 0;
    border-radius: 0;
    margin: 0;
}

.dropdown-item {
    padding: 8px 20px;
    transition: all 0.2s ease;
}

.dropdown-item:last-child {
    margin-bottom: 0;
    padding-bottom: 8px;
}

.dropdown-item:hover {
    background-color: #000;
    color: #fff;
    padding-left: 25px;
}

.navbar-nav .nav-link {
    font-size: 0.85em;
    font-weight: bold;
}

.dropdown-menu .dropdown-item {
    font-size: 0.85em;
    font-weight: bold;
}

@media (max-width: 1199.98px) {
    .navbar-toggler {
        border: 1px solid #000;
        margin-left: auto;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        background: #fff;
        padding: 15px;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu {
        position: static !important;
        width: 100%;
        margin-top: 0;
    }

    .navbar-nav {
        margin: 0;
    }
}

.navbar {
    position: relative;
    z-index: 1030;
}

.mobile-nav {
    position: fixed;
    right: 15px;
    top: 15px;
    /* 上からの位置を調整 */
    z-index: 1030;
}

.mobile-nav-btn {
    width: 40px;
    height: 40px;
    background: #000;
    border: none;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

.menu-icon {
    width: 25px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 9px;
}

.menu-icon span:nth-child(3) {
    top: 18px;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.menu-link {
    display: block;
    padding: 8px 15px;
    font-size: 0.9em;
    color: #ffffff;
    text-decoration: none;
}

.has-submenu {
    position: relative;
}

.has-submenu .menu-link {
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: all 0.3s ease;
}

.has-submenu .menu-link:after {
    content: '+';
    position: absolute;
    right: 20px;
    transition: all 0.3s ease;
    font-size: 1.2em;
}

.has-submenu.active .menu-link:after {
    content: '−';
    transform: rotate(180deg);
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding-top: 0;
    padding-bottom: 0;
}

.has-submenu.active .submenu {
    max-height: 500px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.submenu-link {
    display: block;
    padding: 8px 15px 8px 30px;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(-10px);
    opacity: 0;
}

.has-submenu.active .submenu-link {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.submenu-link:hover {
    color: #fff;
    background: rgba(255, 140, 0, 0.46);
    padding-left: 35px;
}

.offcanvas {
    background-color: #000;
}

.offcanvas-header {
    justify-content: flex-end;
    padding: 25px;
    /* パディングを増やして下に移動 */
    border-bottom: none;
}

.offcanvas-title {
    color: #fff;
    font-size: 1.2em;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.btn-close {
    background-color: #fff;
    opacity: 0.8;
    margin-top: 10px;
    /* 上部マージンを追加 */
}

.sns-icons {
    border-bottom: none !important;
}

.mobile-sns {
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-sns:hover {
    color: rgba(255, 255, 255, 0.7);
}

.page-title {
    margin: 40px 0 40px;
    text-align: left;
}

.page-title h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.page-title .en-title {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #666;
}

@media (max-width: 576px) {
    .page-title h3 {
        font-size: 1.5rem;
    }

    .page-title .en-title {
        font-size: 0.7rem;
    }
}

.fade-in-bottom {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInBottom 0.8s ease forwards;
}

.delay-02 {
    animation-delay: 0.2s;
}

.delay-03 {
    animation-delay: 0.5s;
}

.animated-line {
    width: 100%;
    height: 1px;
    background-color: transparent;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
}

.animated-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #000;
    animation: flowFullLine 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes flowFullLine {
    0% {
        left: -100%;
        width: 100%;
    }

    100% {
        left: 0;
        width: 100%;
    }
}

.delay-01 {
    animation-delay: 0.1s;
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb {
    margin: 25px 0 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #666;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #000;
}

.breadcrumb-item.active {
    color: #000;
}

/* .table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
    border-color: #cccccc;
}

.table th {
    width: 120px;
    color: #333333;
    font-weight: normal;
    padding: 0.7rem;
}

.table td {
    padding: 0.7rem 0.7rem 0.7rem 2rem;
    border-color: #cccccc;
} */

@media (max-width: 576px) {
    /* .table th {
        width: 90px !important;
    } */
}

.maker-list {
    margin-top: 2rem;
}

.maker-link {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.maker-link:hover {
    background-color: #f8f9fa;
    color: #000;
    transform: translateY(-2px);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-item {
    position: relative;
    padding: 1rem 1rem 1rem 2.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background-color: #333;
}

.feature-item:hover {
    background-color: #eee;
    transform: translateX(5px);
}

.parallax-section {
    position: relative;
    background-image: url('../images/index/para_bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6rem 0;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.parallax-section .container-fluid {
    position: relative;
    z-index: 2;
}

.parallax-section .feature-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.service-image-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.service-image-wrap img {
    border-radius: 12px;
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
}

.service-image-wrap:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-text {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-image-wrap:hover .image-overlay {
    opacity: 1;
}

.service-image-wrap:hover .overlay-text {
    transform: translateY(0);
}

.more-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.more-link:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

.more-link i {
    transition: transform 0.3s ease;
}

.more-link:hover i {
    transform: translateX(5px);
}

.more-link-small {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.more-link-small:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

.more-link-small i {
    transition: transform 0.3s ease;
}

.more-link-small:hover i {
    transform: translateX(5px);
}

.service-card {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Shippori Mincho', serif;
}

.service-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-image-wrap:hover .overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.news-list {
    /* max-width: 900px; */
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #333;
}

.news-date {
    flex: 0 0 120px;
    color: #666;
    font-family: 'Roboto', sans-serif;
}

.news-content {
    flex: 1;
    padding-right: 2rem;
}

.news-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Shippori Mincho', serif;
}

.news-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.news-arrow {
    flex: 0 0 24px;
    display: flex;
    align-items: center;
    color: #999;
    transition: transform 0.3s ease;
}

.news-item:hover .news-arrow {
    transform: translateX(5px);
    color: #333;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: var(--delay);
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

[data-delay] {
    --delay: attr(data-delay);
}

.service-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    transition-delay: var(--delay);
}

.service-fade.show {
    opacity: 1;
    transform: translateY(0);
}

.subtitle-wrapper {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.subtitle-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 見出し装飾 */
.decorated-heading {
    position: relative;
    padding: 1.2rem 2rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-left: 5px solid #333;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.decorated-heading::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent #f8f9fa transparent transparent;
}

.decorated-heading h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .decorated-heading {
        padding: 1rem 1.5rem;
    }

    .decorated-heading::after {
        border-width: 0 15px 15px 0;
    }

    .decorated-heading h5 {
        font-size: 1rem;
    }
}

/* デモカーボタン */
.demo-car-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    /* font-weight: 600; */
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-car-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.demo-car-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.demo-car-btn:hover::before {
    left: 100%;
}

.demo-car-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.demo-car-btn:hover i {
    transform: translateX(5px);
}

.demo-car-btn:active {
    transform: translateY(-1px);
}

.product-midashi {
    padding: 0.4em 0.5em;
    /*文字の上下 左右の余白*/
    color: #494949;
    /*文字色*/
    background: #f4f4f4;
    /*背景色*/
    border-left: solid 5px #ff6600;
    /*左線*/
    border-bottom: solid 1px #d7d7d7;
    /*下線*/
    font-size: 1.25rem;
    line-height: 1.3;
}

/* デバイス別フォントサイズ調整 */
@media (min-width: 1200px) {
    .product-midashi {
        font-size: 1.4rem;
    }
}

@media (max-width: 991.98px) {
    .product-midashi {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .product-midashi {
        font-size: 1rem;
        padding: 0.3em 0.4em;
    }
}

@media (max-width: 575.98px) {
    .product-midashi {
        font-size: 0.9rem;
        padding: 0.3em 0.4em;
        line-height: 1.4;
    }
}

/* 製品スライダー */
.product-slider {
    position: relative;
    margin: 1rem 0 4rem 0;
}

.product-slider .slide-item {
    text-align: center;
    padding: 0.5rem;
}

.product-slider .slide-item img {
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.product-slider .slide-item span {
    display: block;
    color: #666;
    font-size: 0.85rem;
}

/* サムネイルドット */
.product-slider .thumbnail-dots {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0;
    margin: 0.5rem 0 0 0;
    gap: 1.5rem;
    width: fit-content;
}

.product-slider .thumbnail-dots li {
    margin: 0;
}

.product-slider .thumbnail-dots li img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.product-slider .thumbnail-dots li.slick-active img {
    border-color: #333;
    opacity: 1;
    transform: scale(1.1);
}

.product-slider .thumbnail-dots li img:hover {
    border-color: #666;
    opacity: 1;
}

/* スライダーのドット */
.product-slider .slick-dots {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 1rem 0 0 0;
}

.product-slider .slick-dots li {
    margin: 0 5px;
}

.product-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-slider .slick-dots li.slick-active button {
    background: #333;
}

/* レスポンシブ調整 */
@media (max-width: 576px) {
    .product-slider .slick-prev {
        left: -15px;
    }

    .product-slider .slick-next {
        right: -15px;
    }

    .product-slider .slick-prev,
    .product-slider .slick-next {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}

/* 対応車種リスト */
.vehicle-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.vehicle-item {
    position: relative;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    margin-bottom: 0.8rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #333;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.vehicle-item::before {
    content: '🏍️';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

.vehicle-item:hover {
    background: #e9ecef;
    border-left-color: #ff6600;
    transform: translateX(5px);
}

/* 対応車種テーブル */
.vehicle-table {
    border: none;
    margin: 0.5rem 0;
}

.vehicle-table thead th {
    background: #333;
    color: #fff;
    border: none;
    padding: 0.6rem 1rem;
    font-weight: 600;
    text-align: center;
}

.vehicle-table tbody td {
    padding: 0.6rem 1rem;
    border: 1px solid #e0e0e0;
    vertical-align: middle;
}

.vehicle-table tbody tr:hover {
    background: #f8f9fa;
}

.vehicle-table tbody tr:last-child td {
    /* border-bottom: none; */
    border: 1px solid #e0e0e0;
}

/* 価格お問い合わせ通知 */
.price-notice {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #fff3cd, #fef7e0);
    border: 1px solid #ffeaa7;
    border-left: 4px solid #fdcb6e;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(253, 203, 110, 0.2);
}

.price-notice i {
    color: #e17055;
    font-size: 1.2rem;
}

.price-notice span {
    color: #2d3436;
    font-weight: 600;
    font-size: 0.95rem;
}

/* セレクトナビゲーション */
.select-navigation {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.select-navigation .form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.custom-select {
    padding: 0.8rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select:focus {
    border-color: #333;
    box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.25);
    outline: none;
}

.custom-select:hover {
    border-color: #666;
}

/* 車種セクション */
.vehicle-section {
    padding: 2rem 0;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 2rem;
}

.vehicle-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff6600;
    display: inline-block;
}

@media (max-width: 576px) {
    .select-navigation {
        max-width: 100%;
    }

    .custom-select {
        font-size: 0.9rem;
        padding: 0.7rem 0.8rem;
    }

    .vehicle-section {
        padding: 1.5rem 0;
    }
}

/* 商品ラインアップテーブル */
.vehicle-section .table {
    margin: 1.5rem 0;
}

.vehicle-section .table th,
.vehicle-section .table td {
    vertical-align: middle;
    padding: 0.4rem 0.3rem;
    font-size: 0.85rem;
    line-height: 1.3;
    border: 1px solid #ddd;
    white-space: nowrap;
}

/* ヘッダー行の共通スタイル */
.vehicle-section .table th {
    text-align: center;
    font-weight: 600;
    background: #6c757d !important;
    color: #fff !important;
}

/* F1B160カラーのヘッダー（特定テーブル用） */
.vehicle-section .table th[style*="F1B160"] {
    background: #F1B160 !important;
    color: #333 !important;
}

/* スマートフォン対応 */
@media (max-width: 768px) {

    .vehicle-section .table th,
    .vehicle-section .table td {
        padding: 0.3rem 0.2rem;
        font-size: 0.75rem;
    }

    .vehicle-section .table th:nth-child(2),
    .vehicle-section .table td:nth-child(2) {
        padding-left: 0.3rem;
        min-width: 120px;
    }
}

/* WEBサイトリンクスタイル */
.website-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f8f9fa;
}

.website-link:hover {
    color: #ff6600;
    text-decoration: none;
    border-color: #ff6600;
    background: #fff;
    transform: translateY(-1px);
}

.website-link i {
    font-size: 0.85rem;
    color: #666;
    transition: all 0.3s ease;
}

.website-link:hover i {
    color: #ff6600;
    transform: translateX(2px);
}

/* お知らせページ記事スタイル */
.news-article {
    display: flex;
    padding: 2rem;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #333;
}

.news-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.article-date {
    flex: 0 0 180px;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #666;
    font-weight: 600;
    padding-right: 2rem;
}

.article-date i {
    color: #333;
    margin-top: 0.2rem;
}

.article-content {
    flex: 1;
}

.article-title {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.article-body {
    color: #555;
    line-height: 1.6;
}

.article-body p {
    margin-bottom: 1rem;
}

.article-body p:last-child {
    margin-bottom: 0;
}

/* スマートフォン対応 */
@media (max-width: 768px) {
    .news-article {
        flex-direction: column;
        padding: 1.5rem;
    }

    .article-date {
        flex: none;
        padding-right: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eee;
        margin-bottom: 1rem;
    }

    .article-title {
        font-size: 1.1rem;
    }
}

/* スペックセクション */
.spec-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.spec-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.spec-title i {
    color: #666;
    font-size: 1rem;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #555;
}

.spec-item:last-child {
    border-bottom: none;
}

/* スマートフォン対応 */
@media (max-width: 768px) {
    .spec-section {
        padding: 1rem;
    }

    .spec-title {
        font-size: 1rem;
    }

    .spec-item {
        font-size: 0.85rem;
    }
}

.order-flow-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem 1.2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #ff6600;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.05);
}

.order-flow-list {
    margin: 0;
    padding-left: 1.5em;
}

.order-flow-list li {
    margin-bottom: 0.8em;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    position: relative;
    padding-left: 0.2em;
}

.order-flow-list li:last-child {
    margin-bottom: 0;
}

.order-flow-simple {
    background: #fafbfc;
    border-radius: 4px;
    padding: 1.2rem 1rem;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
}

.order-flow-numlist {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.order-flow-numlist li {
    margin-bottom: 0.7em;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
}

.order-flow-numlist li:last-child {
    margin-bottom: 0;
}

.order-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2em;
    height: 2em;
    margin-right: 0.8em;
    background: #333;
    color: #fff;
    font-weight: bold;
    font-size: 1em;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(51, 51, 51, 0.08);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .order-flow-simple {
        padding: 0.8rem 0.5rem;
    }

    .order-flow-numlist li {
        font-size: 0.95rem;
    }

    .order-num {
        min-width: 1.5em;
        height: 1.5em;
        font-size: 0.95em;
        margin-right: 0.6em;
    }
}

.stm-effect-list-wrap {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem 1.2rem;
    margin-bottom: 2rem;
    border-left: none;
    /* オレンジの左線を削除 */
    box-shadow: 0 2px 8px rgba(51, 51, 51, 0.05);
}

.stm-effect-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.stm-effect-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
    padding: 0.7em 0 0.7em 0;
    border-bottom: 1px solid #ececec;
    line-height: 1.7;
    gap: 0.7em;
}

.stm-effect-list li:last-child {
    border-bottom: none;
}

.stm-effect-list i {
    color: #333;
    font-size: 1.1em;
    margin-right: 0.3em;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stm-effect-list-wrap {
        padding: 1rem 0.5rem;
    }

    .stm-effect-list li {
        font-size: 0.95rem;
        padding: 0.5em 0 0.5em 0;
    }
}

.styled-movie-heading {
    background: linear-gradient(90deg, #fff 60%, #f8f9fa 100%);
    border-left: none;
    border-bottom: 2px solid #ff6600;
    border-radius: 0;
    /* padding: 1.7rem 2.2rem 1.3rem 2.2rem; */
    padding: 1rem 2rem 1rem 1rem;
    font-size: 1.15rem;
    color: #222;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 400;
    letter-spacing: 0.04em;
    /* position: relative;
    z-index: 1; */
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.07);
    overflow: hidden;
    transition: background 0.4s cubic-bezier(.4, 0, .2, 1), color 0.2s;
    justify-content: flex-start;
    text-align: left;
}

.styled-movie-heading span.shippori-mincho-med {
    font-size: 1em;
    letter-spacing: 0.08em;
    color: #222;
    font-weight: 400;
    margin-left: 0.7em;
    transition: color 0.2s;
    text-align: left;
}

@media (max-width: 991.98px) {
    .styled-movie-heading {
        font-size: 1.08rem;
        padding: 1.1rem 1rem 1rem 1.2rem;
    }

    .styled-movie-heading span.shippori-mincho-med {
        font-size: 1em;
        margin-left: 0.5em;
    }
}

@media (max-width: 576px) {
    .styled-movie-heading {
        font-size: 0.98rem;
        padding: 0.7rem 0.3rem 0.7rem 0.7rem;
    }

    .styled-movie-heading span.shippori-mincho-med {
        font-size: 0.98em;
        margin-left: 0.3em;
    }
}

.custom-modify-list dl {
    margin: 0 0 1.5em 0;
    padding: 0;
}

.custom-modify-list dt {
    font-weight: bold;
    font-size: 1.08em;
    margin-top: 1em;
    margin-bottom: 0.3em;
    color: #ff6600;
    letter-spacing: 0.03em;
}

.custom-modify-list dd {
    margin-left: 0;
    margin-bottom: 0.7em;
    font-size: 1em;
    color: #444;
    line-height: 1.7;
}

.custom-modify-list .row {
    margin-top: 1.5em;
}

.custom-modify-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ececec;
    transition: box-shadow 0.2s;
}

.custom-modify-card:hover {
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.12);
}

.custom-modify-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #ececec;
}

.custom-modify-card-body {
    padding: 1.2em 1em 1em 1em;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.custom-modify-card dt {
    font-weight: bold;
    font-size: 1.08em;
    margin-top: 0;
    margin-bottom: 0.3em;
    color: #ff6600;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
}

.custom-modify-card dd {
    margin-left: 0;
    margin-bottom: 0.7em;
    font-size: 1em;
    color: #444;
    line-height: 1.7;
}

.custom-modify-icon {
    color: #ff6600;
    margin-right: 0.5em;
    font-size: 1.1em;
    vertical-align: middle;
}

.custom-modify-examples-row {
    margin-top: 1.5em;
}

.custom-modify-example-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ececec;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.custom-modify-example-card:hover {
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.12);
    border-color: #ececec;
    /* オレンジのラインを削除 */
}

.custom-modify-example-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #ececec;
}

.custom-modify-example-body {
    padding: 1.2em 1em 1em 1em;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.custom-modify-example-title {
    font-weight: bold;
    font-size: 1.08em;
    margin-bottom: 0.5em;
    color: #ff6600;
    letter-spacing: 0.03em;
}

.custom-modify-example-desc {
    margin-bottom: 0.7em;
    font-size: 1em;
    color: #444;
    line-height: 1.7;
}

.custom-modify-example-price {
    font-size: 1em;
    color: #222;
    font-weight: 500;
    margin-top: auto;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 0.5em 0.8em;
    display: inline-block;
}

.custom-modify-example-price span {
    color: #ff6600;
    font-weight: bold;
    font-size: 1.08em;
    margin-left: 0.5em;
}

@media (max-width: 991.98px) {
    .custom-modify-example-img {
        height: 140px;
    }

    .custom-modify-example-body {
        padding: 0.8em 0.7em 0.7em 0.7em;
    }
}

@media (max-width: 576px) {
    .custom-modify-example-img {
        height: 110px;
    }

    .custom-modify-example-body {
        padding: 0.6em 0.4em 0.5em 0.4em;
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.slide-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.slide-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.frontfork-menu-links {
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 1.5em;
    padding: 0.7em 0.5em;
}

.frontfork-menu-link {
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-size: 1.08em;
    font-weight: 500;
    color: #222;
    background: #fff;
    border-radius: 6px;
    padding: 0.6em 1.2em;
    text-decoration: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: 1px solid #222;
}

.frontfork-menu-link:hover,
.frontfork-menu-link:focus {
    background: #f8f9fa;
    color: #ff6600;
    box-shadow: 0 2px 12px rgba(255, 102, 0, 0.12);
    border-color: #ff6600;
    text-decoration: none;
}

.frontfork-menu-link i {
    font-size: 1.2em;
    color: #222;
    transition: color 0.2s;
}

.frontfork-menu-link:hover i,
.frontfork-menu-link:focus i {
    color: #ff6600;
}

.maintenance-content-section {
    background: #f0f0f0;
    border-radius: 5px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.maintenance-content-title {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
}

.maintenance-toggle-icon {
    color: #ff6600;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.maintenance-content-title[aria-expanded="true"] .maintenance-toggle-icon {
    transform: rotate(180deg);
}

@media (min-width: 768px) {
    .maintenance-content-title {
        cursor: default;
        padding: 0;
    }

    .maintenance-checklist li {
        list-style-type: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 0.5rem 0;
        margin: 0;

    }

    .maintenance-ollist li {
        border-bottom: 1px solid #e0e0e0;
        padding: 0.5rem 0;
        margin: 0;

    }

    .maintenance-icon {
        color: #ff6600;
    }
}

/* スマホ時 */
@media (max-width: 767.98px) {
    .maintenance-content-section {
        padding: 1rem;
        margin-top: 0.5rem;
    }


    .maintenance-content-title {
        padding: 0.5rem 0;
        margin: 0;
    }

    .maintenance-checklist li {
        list-style-type: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 0.5rem 0;
    }


    .maintenance-icon {
        color: #ff6600;
    }

}

.demo-car-slider-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.demo-car-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.demo-car-slider .slick-list {
    border-radius: 12px;
}

.demo-car-slider .slide-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.demo-car-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-car-slider .slick-arrow:hover {
    background: rgba(255, 102, 0, 0.8);
}

.demo-car-slider .slick-prev {
    left: 20px;
}

.demo-car-slider .slick-next {
    right: 20px;
}

.demo-car-slider .slick-arrow:before {
    display: none;
}

.demo-car-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.demo-car-nav .thumbnail-item {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.demo-car-nav .thumbnail-item:hover,
.demo-car-nav .thumbnail-item.slick-current {
    border-color: #ff6600;
    opacity: 1;
    transform: scale(1.05);
}

.demo-car-nav .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .demo-car-slider .slide-item img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .demo-car-slider .slide-item img {
        height: 300px;
    }

    .demo-car-slider .slick-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .demo-car-slider .slick-prev {
        left: 10px;
    }

    .demo-car-slider .slick-next {
        right: 10px;
    }

    .demo-car-nav .thumbnail-item {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .demo-car-nav {
        gap: 5px;
    }

    .demo-car-nav .thumbnail-item {
        width: 50px;
        height: 38px;
    }
}

/* Workflow number badge */
.workflow-number {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 8px;
    font-size: 14px;
}