/* Reset and Base Styles */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1A2B49;
    --accent-color: #4C89FF;
    --background-light: #f8fafc;
    --text-color: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --max-width: 1200px;
    --header-height: 80px;
    --cta-gradient-start: #ff9966;
    --cta-gradient-end: #ff5e62;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "IBM Plex Sans JP", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Common Styles */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    position: relative;
}

.header-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0;
}

.header-logo {
    width: 215px;
    height: auto;
}

.header-service-name {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    transform-origin: left;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-cta-button {
    background: linear-gradient(0deg, var(--cta-gradient-end), var(--cta-gradient-start));
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 94, 98, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
}

.nav-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 94, 98, 0.3);
    filter: brightness(1.05);
}

.nav-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-cta-button:hover .nav-icon {
    transform: translateX(2px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 85vh;
    color: var(--white);
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
    background: url('../img/digitaldevic/hero_main.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.hero-text {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* ヒーローアニメーション: 画像1秒表示 → タイトル → 0.5秒後に他要素 */
.hero-anim {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease-out forwards;
    animation-delay: 1.5s;
}

.hero-anim-title {
    animation-delay: 1s;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BUTTON STYLES ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(0deg, var(--cta-gradient-end), var(--cta-gradient-start));
    color: var(--white);
    text-decoration: none;
    border-radius: 2rem;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 94, 98, 0.25);
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 94, 98, 0.3);
    filter: brightness(1.05);
    color: var(--white);
}

.cta-button:hover::before {
    left: 100%;
}

.button-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(4px);
}

/* ===== TARGET SECTION ===== */
.target-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.target-item {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.target-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.target-icon-wrap {
    position: absolute;
    top: -1.25rem;
    left: 2rem;
    background: var(--primary-color);
    color: var(--white);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-icon-wrap svg {
    width: 1.5rem;
    height: 1.5rem;
}

.target-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.target-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SERVICE / RISK SECTION ===== */
.service-section {
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.risk-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.risk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.risk-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.risk-icon svg {
    width: 1.8rem;
    height: 1.8rem;
    color: var(--white);
}

.risk-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.risk-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.risk-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: #fff4f4;
    color: var(--error-color);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
}

.risk-tag-icon {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.problem-item {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.problem-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.problem-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.solution-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    border-radius: 50%;
    color: var(--primary-color);
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== WHY FREE SECTION ===== */
.why-free-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.why-free-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 24px;
    padding: 3rem;
}

.why-free-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.why-free-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.why-free-content ul {
    list-style: none;
    padding: 0;
}

.why-free-content li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
}

.why-free-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ===== FLOW SECTION ===== */
.flow-section {
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.flow-cta {
    text-align: center;
}

.flow-cta .cta-button {
    opacity: 1;
    animation: none;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background-light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--white);
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .cta-button {
    opacity: 1;
    animation: none;
}

.cta-note {
    font-size: 0.9rem !important;
    margin-top: 2rem !important;
    opacity: 0.7 !important;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-company {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-info address {
    font-style: normal;
    color: var(--text-light);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.copyright {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== HAMBURGER MENU ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* ===== ANIMATIONS ===== */
@keyframes textSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ScrollReveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE: TABLET (768px以下) ===== */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header .container {
        height: 70px;
    }

    .header-logo {
        width: 180px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    /* Hero */
    .hero {
        min-height: 70vh;
        padding-top: 70px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Grids */
    .target-grid,
    .risk-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .flow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Sections */
    .target-section,
    .service-section,
    .problem-section,
    .solution-section,
    .why-free-section,
    .flow-section,
    .faq-section,
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .solution-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Hamburger Menu */
    .hamburger-menu {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        gap: 0;
        z-index: 999;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
    }

    .header-nav.mobile-menu-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header-nav .nav-link {
        font-size: 1.2rem;
        padding: 1.2rem 0;
        width: 85%;
        text-align: center;
        border-bottom: 1px solid rgba(44, 90, 160, 0.1);
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .header-nav.mobile-menu-open .nav-link {
        transform: translateY(0);
        opacity: 1;
    }

    .header-nav.mobile-menu-open .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .header-nav.mobile-menu-open .nav-link:nth-child(2) { transition-delay: 0.15s; }
    .header-nav.mobile-menu-open .nav-link:nth-child(3) { transition-delay: 0.2s; }
    .header-nav.mobile-menu-open .nav-link:nth-child(4) { transition-delay: 0.25s; }
    .header-nav.mobile-menu-open .nav-link:nth-child(5) { transition-delay: 0.3s; }

    .header-nav .nav-cta-button {
        margin-top: 2rem;
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.4s ease;
        transition-delay: 0s;
    }

    .header-nav.mobile-menu-open .nav-cta-button {
        transform: translateY(0);
        opacity: 1;
        transition-delay: 0.35s;
    }
}

/* ===== RESPONSIVE: SMARTPHONE (480px以下) ===== */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .header .container {
        height: 60px;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        padding: 0 1rem;
    }

    .header-logo-container {
        flex: 1;
        padding: 0;
    }

    .header-logo {
        width: 150px;
    }

    .header-service-name {
        font-size: 0.52rem;
    }

    .header-nav {
        top: 60px;
        height: calc(100vh - 60px);
    }

    /* Hero */
    .hero {
        min-height: 60vh;
        padding-top: 60px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    /* All sections */
    .target-section,
    .service-section,
    .problem-section,
    .solution-section,
    .why-free-section,
    .flow-section,
    .faq-section,
    .cta-section {
        padding: 3rem 1rem;
    }

    .flow-grid {
        grid-template-columns: 1fr;
    }

    .target-item,
    .risk-card,
    .solution-card {
        padding: 2rem 1.5rem;
    }

    .why-free-content {
        padding: 2rem 1.5rem;
    }

    .why-free-content h2 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-content {
        text-align: center;
    }

    .footer-nav {
        text-align: center;
    }
}

/* ===== RESPONSIVE: SMALL PHONE (360px以下) ===== */
@media screen and (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .target-section,
    .service-section,
    .problem-section,
    .solution-section,
    .why-free-section,
    .flow-section,
    .faq-section,
    .cta-section {
        padding: 2.5rem 0.8rem;
    }
}



/* Header対策 */

header {
	    margin-top: 26px;
}
	    
@media screen and (max-width:768px) {
header {
	    margin-top: 0px;
	}
}

/* サイトシール対策 20250707改訂*/

.corporate_logo {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 10px;
  display: flex;
  justify-content: start;
}

.corporate_logo img {
  height: 18px;
  width: auto;

}

@media only screen and (max-width: 768px) {
  .corporate_logo {
    justify-content: center;
  }
}

.site_seal {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.site_seal img{
    width: 115px;
    height: 57px;
}
.site_seal div.site_seal_left {
  padding: 40px 5px 40px 115px;
}
.site_seal div.site_seal_center {
  padding: 40px 5px 0px 5px;
}
.site_seal div.site_seal_right {
  padding: 40px 115px 40px 5px;
}

@media only screen and (max-width: 768px) {

  .site_seal {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
  }


  .site_seal a {
    display: block !important;
  }

  .site_seal div.site_seal_left {
    padding: 40px 5px 40px 0px;
  }
  .site_seal div.site_seal_center {
    padding: 0px 5px 0px 5px;
  }
  .site_seal div.site_seal_right {
    padding: 40px 0px 40px 5px;
  }

}

.footer_area_bg {
  background-color: #fff;

}
