
body {
    font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
    font-weight: 900;
    font-style: normal;
    letter-spacing: -0.04em;
    padding: 0;
    margin: 0;
}

/* ページ内リンクのスムーススクロール */
html {
    scroll-behavior: smooth;
}

/* ページ内リンクのズレ補正（固定ヘッダー分の余白） */
#mechanic-section {
    scroll-margin-top: 0px;
}

#features {
    scroll-margin-top: 0px;
}

/* ===== Main Header ===== */
.main-header {
    background-color: #f5f5f5;
    padding: 15px 20px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-logo {
    flex: 0 0 auto;
}

.header-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header-text {
    flex: 1;
    text-align: right;
}

.header-text p {
    font-family: "Noto Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: normal;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* ===== Responsive Header ===== */
@media (max-width: 768px) {
    .main-header {
        padding: 12px 15px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-logo img {
        height: 40px;
    }
    
    .header-text {
        display: none;
    }
    
    .header-text p {
        font-size: 0.9rem;
    }
}

.section900 {
    max-width: 900px;
}

.section1200 {
    max-width: 1200px;
}

section h2 {
    margin-bottom: 0;
}

.padding-base {
    padding: 20px 20px !important;
}

@media (max-width: 768px) {
    .padding-base {
        padding: 20px 20px !important;
    }
}

/* ===== Hero Section ===== */
.hero {
    /* background: linear-gradient(90deg, #18183A 0%, #006D88 100%); */
    /* color: #fff; */
    color: #111;
    padding: 20px 20px;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    gap: 40px;
}

.hero-text {
    /* flex: 1 1 500px; */
    flex: 0 0 40%; /* 明示的に70%幅 */
    min-width: 450px; /* コンテンツがはみ出さないように */
    text-align: center;
    /* max-width: 550px; */
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-title2 {
    font-size: 4.5rem;
    margin-top: -20px;
    margin-bottom: -20px;
    font-weight: 800;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #eee;
    margin-bottom: 20px;
    color: #006d88;
    font-weight: 800;
    line-height: 1.8;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.metric {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    flex: 1 1 120px;
    background: #f7be1e;
}

.metric-label {
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.9;
    margin: 0;
    color: #131a37;
    line-height: 1.5;
}

.metric-value {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: #131a37;
}

.rating .metric-value span {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 4px;
}

/* PC表示では評価ブロックを下段フル幅に配置 */
@media (min-width: 769px) {
    .hero-metrics .metric.rating {
        order: 2;
        flex: 0 1 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }
    .hero-metrics .metric:not(.rating) {
        order: 1;
    }
    /* 全アイテムの最小幅をゼロにしてオーバーフローを防止 */
    .hero-metrics .metric {
        min-width: 0;
        box-sizing: border-box;
    }
}

.cta-btn {
    display: inline-block;
    background-color: #FFA10C;
    color: #000;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    transition: 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #FFBC44;
    transform: translateY(-3px);
}

.hero-image {
    /* flex: 1 1 400px;
    text-align: right; */
    flex: 0 0 60%; /* 明示的に30%幅 */
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero-image .my-review-swiper {
    width: 100%;
    /* max-width: 500px; */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ===== Hero Button ===== */
.hero-button {
    margin-top: 50px;
    margin-bottom: 0px;
    text-align: center;
    width: 100%;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* 複製スタイル（該当箇所専用） */
.hero-button-v2 {
    margin-bottom: 40px;
}

.blog-button {
    display: flex;
    align-items: center;
    justify-content: center; /* 中央配置 */
    gap: 16px;
    color: #fff;
    padding: 45px 41px; /* 高さを約1.5倍に増加 */
    border-radius: 6px;
    text-decoration: none;
    font-family: "Noto Sans", sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    background: url('img/btn_bg_03.png') center / cover no-repeat;
    position: relative;
}

.blog-button:hover {
    transform: translateY(-1px);
}

.blog-button::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    pointer-events: none;
}

.hero-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
}

.blog-title {
    display: inline-block;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .hero-image {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    /* モバイルのヒーローアイコンサイズ */
    .hero-icon {
        width: 30px;
        height: 30px;
    }

    .cta-btn {
        padding: 18px 36px;
    }

    .hero-text,
    .hero-image {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-image .my-review-swiper {
        max-width: 100%;
    }
    
    .blog-button {
        padding: 40px 0px;
        font-size: 1.4rem;
    }

    .hero {
        padding: 30px 15px;
        flex-direction: column !important;
    }

    .hero-text {
        order: 1;
        /* ← テキストを先に表示 */
    }

    .hero-swiper {
        order: 2;
        /* ← Swiperを下に表示 */
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .hero-title2 {
        font-size: 4rem;
        margin-bottom: -10px;
        line-height: 1.8;
    }

    .metric {
        flex: 1 1 100%;
    }
}

/* ===== 実績・レビューセクション ===== */
.achievements {
    background-color:  #f5f5f5;
    color: #000;
    padding: 30px 20px;
    text-align: center;
}

.achievements .container {
    max-width: 1140px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #006797;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-item {
    flex: 1 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    border: 4px solid #daeef7;
}


.caption {
    font-size: 1.4rem;
    color: #131a37;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(45% - 20px);
        max-width: calc(45% - 20px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1rem;
    }

    .gallery {
        gap: 20px;
    }

    .gallery-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* ===== CTAセクション ===== */
.cta-section {
	background-color: #006D88;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 auto 0px;
    line-height: 1;
}

.cta-subheading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #FFA10C;
    color: #131a37;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 161, 12, 0.3);
    box-sizing: border-box;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

.cta-button:hover {
    background-color: #FFB63B;
    transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

    .cta-heading {
        font-size: 2em;
        line-height: 1.6;
    }

    .cta-subheading {
        font-size: 1.2rem;
    }

    .cta-button {
        width: 100%;
        padding: 16px 0;
        font-size: 1.1rem;
    }
}

/* ===== Dual Buttons Section ===== */
.dual-buttons-section {
    padding: 10px 0px;
    background-color: #fff;
}

.dual-buttons-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
}

.dual-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    border-radius: 0px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    min-height: 260px;
}

.left-button {
    color: #000;
    background: url('img/btn_bg_01.png') center / cover no-repeat;
}

.right-button {
    color: #fff;
    background: url('img/btn_bg_02.png') center / cover no-repeat;
}

.dual-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button-text {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 6px;
}

.button-subtitle {
    font-family: "Noto Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.9;
    line-height: 1.3;
}

.button-title {
    font-family: "Noto Sans", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.button-arrow {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 10px;
}

.button-icon {
    width: 32px;
    height: 32px;
    margin-top: 12px;
}

/* ===== Responsive Dual Buttons ===== */
@media (max-width: 768px) {
    .dual-buttons-section {
        padding: 40px 15px;
    }
    
    .dual-buttons-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .dual-button {
        width: 100%;
        max-width: 100%;
        min-height: 180px;
        padding: 16px 14px;
        border-radius: 8px;
    }
    
    .button-title {
        font-size: 1.6rem;
    }
    
    .button-subtitle {
        font-size: 0.9rem;
    }

    .button-icon {
        width: 28px;
        height: 28px;
        margin-top: 8px;
    }
}


/* ===== お客様レビュー紹介 ===== */
.review-section {
    background-color: #fff;
    text-align: center;
}

.review-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #006797;
    margin-bottom: 30px;
}

/* モバイル用レビュータイトル */
@media (max-width: 768px) {
    .review-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}

.review-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.review-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.review-category {
    font-weight: 500;
    font-size: 1.2rem;
    color: #006797;
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    font-family: "Noto Sans", sans-serif;
    font-weight: normal;
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
    color: #006D88;
}

.my-review-swiper .swiper-pagination-bullet {
    background: #ccc !important;
    opacity: 0.7;
        margin: 40px 0 0 0;

}

.my-review-swiper .swiper-pagination-bullet-active {
    background: #fff !important;
}

.mySwiper-reviews .swiper-pagination-bullet {
    background: #ccc !important;
    opacity: 0.7;
}

.mySwiper-reviews .swiper-pagination-bullet-active {
    background: #006D88 !important;
}

/* ===== Factory Banner Section ===== */
.factory-banner-section {
    padding: 20px;
    background-color: #fff;
}

.factory-banner-container {
    max-width: 1200px;
    margin: 20px auto 40px auto;
    text-align: center;
}

.factory-banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* 複製スタイル：グレー背景版 */
.factory-banner-section-gray {
    padding: 20px;
    background-color: #f0f0f0; /* グレー背景 */
}

.factory-banner-section-gray .factory-banner-container {
    max-width: 1200px;
    margin: 20px auto 40px auto;
    text-align: center;
}

.factory-banner-section-gray .factory-banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Close Banner Section ===== */
.close-banner-section {
    padding: 20px;
    background-color: #fff;
}

.close-banner-container {
    max-width: 1200px;
    margin: 20px auto 40px auto;
    text-align: center;
}

.close-banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Responsive Factory Banner ===== */
@media (max-width: 768px) {
    .factory-banner-section {
        padding: 15px;
    }

    .factory-banner-section-gray {
        padding: 15px;
    }

    .close-banner-section {
        padding: 15px;
    }
}

.review-swiper .swiper-wrapper {
    height: auto;
}


/* ===== 価格比較セクション ===== */
.price-fact-section {
    background-color: #fafafa;
    text-align: center;
}

.price-fact-section .container {
    margin: 0 auto;
}

.fact-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #131a37;
    line-height: 1.6;
    margin-bottom: 40px;
}

.fact-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    border-radius: 8px;
}

.fact-note {
    text-align: left;
    font-size: 0.8rem;
    color: #666;
    font-weight: normal;
    margin-bottom: 40px;
    line-height: 1.8;
    font-family: "Noto Sans", sans-serif;
}

.fact-body {
    text-align: left;
    font-size: 1rem;
    color: #131a37;
    line-height: 1.9;
}

.fact-body p {
    margin-bottom: 1.5em;
	font-family: "Noto Sans", sans-serif;
    font-weight: normal;

}

.fact-body .highlight {
    background-color: rgba(255, 232, 0, 1);
    padding: 2px 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .price-fact-section {
        padding: 60px 15px;
    }

    .fact-heading {
        font-size: 1.5rem;
    }
}

/* ===== ウソのような話セクション ===== */
.story-section {
    background-color: #f0f7fa;
}

.story-section .container {
    margin: 0 auto;
}

.story-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #131a37;
    margin-bottom: 50px;
}

.story-body {
    font-size: 1rem;
    color: #131a37;
    line-height: 2;
}

.story-body p {
    margin-bottom: 1.5em;
    font-family: "Noto Sans", sans-serif;
    font-weight: normal;
}

.highlight {
    background-color: rgba(255, 232, 0, 1);
    padding: 2px 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .story-section {
        padding: 60px 15px;
    }

    .story-title {
        font-size: 1.6rem;
    }
}


/* ===== 工場紹介セクション ===== */
.factory-section {
    background-color: #fff;
    color: #222;
}

.factory-section .container {
    margin: 0 auto;
}

.factory-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.factory-text {
    width: 100%;
    max-width: 950px;
    text-align: center;
}

.factory-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #131a37;
    line-height: 1.4;
    margin-bottom: 40px;
    margin-top: 50px;
}

.factory-box {
    padding: 40px 0px;
    margin: 0 auto 40px;
    border-radius: 0px;
    max-width: 950px;
    text-align: center;
    border:1px solid #006797;
}

.factory-box-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    background-color: #006797;
    max-width: 480px;
    margin: 0 auto;
}

/* モバイル用 factory-box-title */
@media (max-width: 768px) {
    .factory-box-title {
        font-size: 1.4rem;
        line-height: 1.3;
        padding: 8px 10px;
    }
}

.factory-box p {
    color: #131a37;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: "Noto Sans", sans-serif;
    font-weight: normal;
}

.factory-cert {
    font-size: 2rem;
    font-weight: 700;
    color: #006797;
    margin: 20px 0 10px;
}

/* モバイル用 factory-cert */
@media (max-width: 768px) {
    .factory-cert {
        font-size: 1.4rem;
        line-height: 1.3;
        margin: 12px 0 8px;
    }
}

.factory-note {
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.9;
    font-family: "Noto Sans", sans-serif;
	font-weight: normal;
}

.factory-desc {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: left;
}

.factory-desc p {
    color: #131a37;
    line-height: 1.8;
    margin-bottom: 1.5em;
    font-size: 1rem;
    font-family: "Noto Sans", sans-serif;
    font-weight: normal;
}

.factory-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.factory-images img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .factory-section {
        padding: 60px 15px;
    }
    
    .factory-title {
        font-size: 1.4rem;
    }
    
    .factory-box {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .factory-images {
        flex-direction: column;
        gap: 15px;
    }
    
    .factory-images img {
        max-width: 100%;
    }
}


/* ===== ギャラリーセクション ===== */
.gallery-section {
    background-color: #cde3e8;
    background-image: url('img/bg_02.png');
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
    padding: 0;
}

.gallery-section .container {
    margin: 180px auto 0px auto;

}

.gallery-title {
    color: #006797;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 20px 0;
}

/* モバイル用 gallery-title */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 1.6rem;
        margin: 10px 0 20px 0;
        line-height: 1.3;
        text-align: center;
    }
}

.gallery-desc {
    color: #222;
    line-height: 1.9;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: left;
    font-family: "Noto Sans", sans-serif;
    font-weight: normal;
}

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

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.features {
    background: #fff;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .features-header {
        text-align: center;
        margin-bottom: 30px;
    }
}

.features-header h2 {
    color: #131a37;
    font-size: 2.6rem;
    font-weight: 700;
}

/* モバイル用 features 見出し */
@media (max-width: 768px) {
    .features-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
}

.features-header p {
    color: #f7a91e;
    font-size: 1rem;
    margin-top: 0px;
}

.feature-row {
    margin-bottom: 80px;
}

.feature-subtitle {
    font-family: "impact", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #1A233B;
    margin-bottom: 0px;
    text-align: center;
    font-size: 2.6rem;
    letter-spacing: 0.02em;
}

.feature-subtitle span {
    display: block;
    background: #1A233B;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 0px;
    padding: 5px 55px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
}

.reason-banner {
    display: block;
    color: #f7a91e;
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 20px;
    margin: 0px auto 0px;
    width: fit-content;
    text-align: center;
    border-radius: 4px;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #f7a91e;
}

/* モバイル用 feature-title */
@media (max-width: 768px) {
    .feature-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
        line-height: 1.3;
        padding-bottom: 20px;
    }
}


.feature-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-text {
    flex: 1.2 1 0%; /* テキストをやや広く（約20%増し） */
    vertical-align: top;
    align-self: flex-start;
    font-family: "Noto Sans", sans-serif;
}


.feature-text p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
    font-weight: normal;
}

.feature-image {
    flex: 0.8 1 0%; /* 画像をやや狭く（約20%減） */
    min-width: 320px;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.focustext-bg {
    background: #fff;
    padding: 3px 6px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .feature-content {
        display: flex;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .feature-text,
    .feature-image {
        width: 100% !important;
        flex: none !important;
    }

    .feature-image {
        min-width: auto !important;
        margin-top: 20px;
    }

    .feature-image img {
        width: 100%;
        height: auto;
        display: block;
    }
}

.car-support {
    position: relative;
    background: #131a37;
    background-image: url('img/bg_03.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    text-align: center;
    overflow: hidden;
}



.car-support .inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 100px auto 40px auto;
}

.car-support h2 {
    color: #f7be1e;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.2;
}

.car-support .subtitle {
    color: #fff;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .car-support .section-title {
        font-size: 1.5rem;
    }

    .car-support .subtitle {
        font-size: 1rem;
    }

    /* モバイル用 car-support 見出し */
    .car-support h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
}


.text-block {
    text-align: left;
    margin: 0 auto 60px;
    max-width: 800px;
    font-family: "Noto Sans", sans-serif;
    font-weight: normal;
}

.text-block p {
    line-height: 1.9;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.focustext-bg {
    background: #ffe800;
    padding: 2px 6px;
    border-radius: 2px;
    color: #131a37;
}

@media (max-width: 768px) {
    .car-support {
        padding: 80px 6% 0 6%;
    }
}

.equipment-section {
    text-align: center;
}

.equipment-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #006797;
    margin-bottom: 0.5em;
    line-height: 1.4;
}

.equipment-section .section-subtitle {
    color: #555;
    margin-bottom: 2em;
    font-size: 1.2rem;
    line-height: 1.4;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.equipment-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.equipment-item img {
    width: 100%;
    display: block;
}

.equipment-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    background-color: #006797;
    margin: 0px 0px 10px 0px;
    padding: 15px;
    text-align: center;
    border-radius: 0px;
}

.equipment-item p {
    font-size: 0.95rem;
    font-family: "Noto Sans", sans-serif;
    font-weight: normal;
    color: #333;
    line-height: 2;
    margin: 25px;
}

/* モバイル：1カラム */
@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .equipment-section .section-title {
        font-size: 1.8rem;
    }

    .equipment-section .section-subtitle {
        font-size: 1rem;
    }
}

.price-section {
    background: #ffffff;
    text-align: center;
}

.price-section .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #006D88;
    line-height: 1.6;
    margin-bottom: 40px;
}

.price-section .image-wrap {
    max-width: 800px;
    margin: 0 auto 40px;
}

.price-section .image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.price-section .text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.price-section .text-block p {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2em;
}

.price-section .text-block .highlight {
    background: #ffe800;
    padding: 2px 4px;
    border-radius: 2px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .price-section .section-title {
        font-size: 1.3rem;
    }
}

.mechanic-section {
    background: #0c7cb0;
    background-image: url('img/bg_04.png');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
}

.mechanic-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #131a37;
    line-height: 1.6;
    margin-bottom: 10px;
    padding: 40px 0 0 0;
}

.mechanic-section .section-subtitle {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 40px;
}

.mechanic-section .image-wrap {
    max-width: 900px;
    margin: 0 auto 50px;
}

.mechanic-section .image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.mechanic-section .text-block {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

.mechanic-section .text-block p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2em;
}

.mechanic-section .text-block .highlight {
    background: #ffe800;
    padding: 2px 4px;
    border-radius: 2px;
    color: #131a37;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .mechanic-section .section-title {
        font-size: 1.5rem;
    }
}

.faq-section {
    background: #ffffff;
    text-align: center;
}

.faq-section .section-title {
    color: #006D88;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-section .section-subtitle {
    color: #333;
    font-size: 1rem;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
    border-top: 1px solid #ccc;
}

.faq-list details {
    border-bottom: 1px solid #ccc;
    padding: 20px;
    transition: background 0.3s ease;
}

.faq-list details[open] {
    background: #f9f9f9;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: #006D88;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-list summary::after {
    content: "+";
    font-size: 1.2rem;
    color: #006D88;
    transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-content {
    margin-top: 10px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
    font-family: "Noto Sans", sans-serif;
    font-weight: normal;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .faq-list summary {
        font-size: 1rem;
    }
}

.closing-section {
    background: #ffffff;
    color: #333;
}

.closing-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

.closing-section p {
    font-size: 1rem;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 1em;
    font-family: "Noto Sans", sans-serif;
    font-weight: normal;
}

.closing-section .highlight {
    color: #d20000;
    font-weight: 700;
    margin: 30px auto;
}

@media (max-width: 768px) {
    .closing-section {
        padding: 60px 15px;
    }

    .closing-title {
        font-size: 1.3rem;
    }
}



.my-review-swiper {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.my-review-swiper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.my-review-swiper figure {
    margin: 0;
    position: relative;
}

.my-review-swiper figcaption {
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.review-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.review-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

.review-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.review-swiper .swiper-wrapper {
    justify-content: center;
    height: auto;
}

.review-swiper .swiper-slide {
    width: calc((100% - 48px) / 3) !important;
    margin-right: 24px !important;
    height: auto;
    display: flex;
    box-sizing: border-box;
}

.review-swiper .swiper-slide:last-child {
    margin-right: 0 !important;
}

.review-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-section .swiper-button-prev,
.review-section .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    color: #006D88;
    width: 44px;
    height: 44px;
}

.review-section .swiper-button-prev {
    left: -8px;
}

.review-section .swiper-button-next {
    right: -8px;
}

@media (max-width: 768px) {
    .review-swiper .swiper-slide {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .review-section .swiper-button-prev {
        left: 4px;
    }

    .review-section .swiper-button-next {
        right: 4px;
    }
}

/* BRタグのPC・モバイル表示切り替え */
br.pc-only {
    display: inline;
}

br.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    br.pc-only {
        display: none;
    }

    br.mobile-only {
        display: inline;
    }
}

/* Footer Contact Section */
.footer-contact-section {
    background-color: #006797;
    padding: 60px 40px 0;
    max-width: 100%;
    margin: 0;
}

.footer-contact-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-contact-left {
    flex: 1;
    text-align: center;
}

.footer-slogan {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
    line-height: 1;
}

.footer-phone {
    font-size: 3rem;
    font-weight: 700;
    color: #1A233B;
    margin-top: 5px;
    margin-bottom: 0px;
    font-family: "impact", sans-serif;
    letter-spacing: 0.05em;
}

.footer-phone .tel-label {
    font-size: 2rem;
}

.footer-phone .tel-number {
    font-size: 3rem;
}

.footer-hours {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: "Noto Sans", sans-serif;
    letter-spacing: 0.03em;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 35px auto;
    max-width: 380px;
}

.footer-logo {
    max-width: 220px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
}

.footer-company-name {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
    font-family: "Noto Sans", sans-serif;
    font-weight: bold;
}

.footer-address {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #fff;
    font-family: "Noto Sans", sans-serif;
    font-weight: normal;
}

.footer-contact-right {
    flex: 1;
}

.footer-access-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1A233B;
    margin-bottom: 20px;
    font-family: "impact", sans-serif;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.footer-access-subtitle {
    font-size: 0.8rem;
    color: #1A233B;
    margin-bottom: 20px;
    font-family: "Noto Sans", sans-serif;
    text-align: center;
}

.footer-map {
    background-color: #fff;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 280px;
    border: none;
}

.footer-copyright {
    background-color: #1A233B;
    text-align: center;
    padding: 20px;
}

.footer-copyright p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    font-family: "Noto Sans", sans-serif;
}

@media (max-width: 768px) {
    .footer-contact-section {
        padding: 40px 20px 0;
    }

    .footer-contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .footer-slogan {
        font-size: 1.2rem;
    }

    /* モバイル用 footer-phone */
    .footer-phone {
        font-size: 2.2rem;
        margin-top: 4px;
    }
    .footer-phone .tel-label {
        font-size: 1.2rem;
    }
    .footer-phone .tel-number {
        font-size: 2.2rem;
    }

    .footer-access-title {
        font-size: 2rem;
        margin-top: -20px;
    }

    .footer-map iframe {
        height: 300px;
    }
}
