@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;600&display=swap");

:root {
    scroll-behavior: auto !important;
}

body {
    margin: 0;
    background: #f3f5fb;
    font-family: "Hiragino Kaku Gothic Pro", "Noto Sans JP", sans-serif;
    color: #0f1622;
    scroll-behavior: smooth;
}

main {
    margin-top: 0px !important;
    margin-bottom: 100px;
}


.content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.om-c-container {
    max-width: 100% !important;
}

.om_theme .wpb_content_element {
    margin-top: 0 !important;
}

body.sidebar-hidden.om-wpb-active .content>.container {
    background-color: #f3f5fb;
}

html {
    scroll-behavior: smooth;
}

.page {
    width: 100%;
    padding: 0;
}

.hero {
    background: #f3f5fb;
    padding: 200px 32px;
    border-radius: 24px;
    margin: 0 auto 48px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0;
    padding: 0 8px 0 192px;
    opacity: 0;
    transform: translateX(-30px);
    animation: heroTextIn 1.0s ease-out 0.9s forwards;
}

.hero-logo {
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translate(-20%, -50%);
    width: 55%;
    max-width: 800px;
    height: auto;
    opacity: 0;
    animation: heroLogoIn 1s ease-out 0.4s forwards;
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 60%,
            rgba(0, 0, 0, 0.4) 90%,
            rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 60%,
            rgba(0, 0, 0, 0.4) 90%,
            rgba(0, 0, 0, 0) 100%);
}

.hero h1 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    margin: 0;
    color: #1d2642;
    font-family: "Inter", "Helvetica Neue", sans-serif;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.hero .sub {
    font-size: 1.25rem;
    margin-top: 12px;
    color: #4d6da4;
    font-family: "Inter", "Helvetica Neue", sans-serif;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero-description {
    margin-top: 16px;
    font-size: 1rem;
    color: #1d2642;
    display: inline-block;
    white-space: nowrap;
    overflow: visible;
    opacity: 0;
    transform: translateX(-30px);
    animation: heroTextIn 1.0s ease-out 0.95s forwards;
}

.profile-table {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 20px 45px rgba(15, 22, 34, 0.08);
    margin-top: 32px;
    border: 1px solid #ebeff7;
}

.profile-header {
    opacity: 0;
    transform: translateX(-30px);
    animation: heroTextIn 1s ease-out 1.1s forwards;
}

.profile-header .company-name {
    font-size: 1rem;
    margin: 0;
    color: #050b16;
}

.profile-header .company-title {
    font-size: 3rem;
    margin: 8px 0 28px;
    color: #4d6da4;
    font-family: "Inter", "Helvetica Neue", sans-serif;
    font-weight: 700;
}

.table-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.table-row {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid #f0f3fb;
}

.table-row:first-child {
    border-top: none;
    padding-top: 0;
}

.row-label {
    font-weight: 600;
    color: #1c2540;
}

.row-content {
    color: #111928;
    font-size: 0.95rem;
    line-height: 1.6;
}

.row-content hr {
    border: none;
    border-top: 1px solid #eef2f6;
    margin: 20px 0;
}

.primary-btn {
    background: linear-gradient(135deg, #4d6da4, #5a7ac2);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.primary-btn.secondary {
    background: #0f2bb7;
}

.primary-btn:hover {
    opacity: 0.85;
}

.section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e6f0;
}

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

.section-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.section h2 {
    font-size: 1.8rem;
    margin: 0 0 24px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.card {
    padding: 16px;
    border: 1px dashed #999;
    border-radius: 8px;
    background: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.section-inner h2+* {
    margin-top: 12px;
}

.section-inner h2+table,
.section-inner h2+.grid {
    margin-top: 24px;
}

.section-inner p,
.section-inner td {
    margin-top: 12px;
    line-height: 1.6;
}

th,
td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #efefef;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-item {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.timeline-item span {
    font-weight: 600;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes heroLogoIn {
    from {
        opacity: 0;
        transform: translate(-20%, -50%) translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translate(-20%, -50%);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-content,
    .hero-description,
    .hero-logo,
    .profile-header {
        animation: none;
        opacity: 1;
        transform: translate(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px;
    }

    .hero-content {
        padding: 0;
        max-width: calc(100% - 40px);
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

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

    .hero-description {
        display: block;
        white-space: normal;
        max-width: 100%;
    }

    .hero-logo {
        left: 30%;
        width: 90%;
        max-width: none;
        transform: translate(-50%, -50%);
    }

    .profile-table {
        padding: 24px 16px;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px 0;
    }

    .table-row:not(:first-child) {
        border-top: 1px solid #f0f3fb;
    }

    .row-label {
        margin-bottom: 6px;
    }

    .row-content {
        margin-top: 0;
    }
}