@charset "UTF-8";
/* Noto Serif JP フォント統一 - professional5 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/* 全体のフォント設定 */
html,
body,
* {
    font-family: "Noto Serif JP", serif;
}

/* 主要要素のフォント設定 */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
li,
ul,
ol,
input,
textarea,
select,
button,
label {
    font-family: "Noto Serif JP", serif;
}

/* ナビゲーション */
.nav,
.nav-link,
.ae-mobile-nav-link,
.ae-header-menu {
    font-family: "Noto Serif JP", serif;
}

/* フッター */
footer,
.ae-footer,
.ae-footer-menu {
    font-family: "Noto Serif JP", serif;
}

/* ボタン */
.btn,
.ae-btn,
button {
    font-family: "Noto Serif JP", serif;
}

/* ヘッダーロゴ */
.ae-header-logo {
    background-image: url('../images/common/header-logo-black.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 180px;
    height: 50px;
}

/* フッターロゴ */
.ae-footer-logo,
footer .ae-header-logo {
    background-image: url('../images/common/footer-logo-black.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 地図セクション */
.map-section-5847 {
    width: 100%;
    margin: 0;
    padding: 0;
}

.map-section-5847 iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
    filter: grayscale(100%);
}

@media (max-width: 767px) {
    .map-section-5847 iframe {
        height: 300px;
    }
}

/* お問い合わせボタン */
.btn-primary {
    background-color: #333;
    color: #fff;
    border: 2px solid #333;
    padding: 12px 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #555;
    border-color: #555;
}

.btn-outline-primary {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 12px 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #333;
    color: #fff;
}

/* お客様の声カード式スライダー */
.testimonial-slider-wrapper-5847 {
    width: 100%;
    overflow: hidden;
    padding: 40px 0 60px;
}

.testimonial-slider-5847 {
    display: flex;
    gap: 30px;
    animation: testimonialScroll5847 30s linear infinite;
    width: max-content;
}

@keyframes testimonialScroll5847 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-slider-wrapper-5847:hover .testimonial-slider-5847 {
    animation-play-state: paused;
}

.testimonial-card-5847 {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    min-width: 350px;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-tag-5847 {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.testimonial-stars-5847 {
    color: #f5a623;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text-5847 {
    color: #333;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author-5847 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-name-5847 {
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.author-info-5847 {
    color: #888;
    font-size: 12px;
}

@media (max-width: 767px) {
    .testimonial-card-5847 {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }

    .testimonial-slider-5847 {
        gap: 20px;
    }
}

/* ご依頼の流れ */
.flow-steps-5847 {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.flow-step-5847 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.flow-step-5847:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% - 30px);
    background: #ddd;
}

.flow-step-number-5847 {
    width: 70px;
    height: 70px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 30px;
    z-index: 1;
}

.flow-step-content-5847 {
    background: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    flex-grow: 1;
}

.flow-step-content-5847 h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}

.flow-step-content-5847 p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

@media (max-width: 767px) {
    .flow-step-5847 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .flow-step-5847:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
        top: 70px;
        height: 30px;
    }

    .flow-step-number-5847 {
        margin-right: 0;
        margin-bottom: 15px;
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .flow-step-content-5847 {
        padding: 20px;
    }
}

/* よくある質問 */
.faq-list-5847 {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.faq-item-5847 {
    background: #fff;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question-5847 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px;
}

.faq-answer-5847 {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
}

@media (max-width: 767px) {
    .faq-item-5847 {
        padding: 20px;
    }
}

/* アクセス情報 */
.access-info-5847 {
    max-width: 600px;
    margin: 30px auto;
    padding: 0 20px;
}

.access-details-5847 {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.access-details-5847 p {
    margin: 10px 0;
    color: #333;
    font-size: 15px;
}

.access-details-5847 a {
    color: #333;
    text-decoration: none;
}

.access-details-5847 a:hover {
    text-decoration: underline;
}

/* お問い合わせ */
.contact-intro-5847 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-buttons-5847 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

@media (max-width: 767px) {
    .contact-buttons-5847 {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons-5847 a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* フッター説明 */
.footer-description-5847 {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 20px;
}

/* 豊富な実績・明確な料金セクション - 白文字 */
#block-e0f04812ceb746f68d64fdafbc7ff2a1 .ae-text-content,
#block-e0f04812ceb746f68d64fdafbc7ff2a1 .ae-text-content h2,
#block-e0f04812ceb746f68d64fdafbc7ff2a1 .ae-text-content p,
#block-874cb98051a2470dbb3df0a205ed9047 .ae-text-content,
#block-874cb98051a2470dbb3df0a205ed9047 .ae-text-content h2,
#block-874cb98051a2470dbb3df0a205ed9047 .ae-text-content p {
    color: #fff;
}























/* ==============================
   HERO 全体コンテナ
============================== */
.hero-image-container-5847 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
    background: #000; /* 念のため */
}

/* ==============================
   背景動画
============================== */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;          /* ← PC / SP ともに cover */
    object-position: center;
    z-index: 1;
}

/* ==============================
   中央ロゴ＋キャッチコピー
============================== */
.hero-center-logo-5847 {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
}

.hero-center-logo-5847 img {
    max-width: 500px;
    height: auto;
}

.hero-catchcopy-5847 {
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
    line-height: 1.5;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

/* ==============================
   スマホ調整（黒帯なし・全面表示）
============================== */
@media (max-width: 767px) {

    .hero-image-container-5847 {
        height: 70vh;
        min-height: 400px;
        max-height: none;
    }

    /* 黒帯を消すため contain は使わない */
    .hero-video {
        object-fit: cover;   /* ←ここがポイント */
    }

    .hero-center-logo-5847 img {
        max-width: 280px;
    }

    .hero-catchcopy-5847 {
        font-size: 24px;
        margin-top: 20px;
    }
}
