/* コンポーネントの基本デザイン */

.section {
    position: relative;
    /* 背景要素の基準点 */
    overflow: hidden;
}

.bg-text-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: -1;
    pointer-events: none;
    user-select: none;
    opacity: 0.05;
    /* 非常に薄く表示 */
}

.scroll-line {
    display: flex;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12rem;
    line-height: 1.1;
    text-transform: uppercase;
    animation: scroll-left 60s linear infinite;
}

.scroll-line.reverse {
    animation: scroll-right 60s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* タイトル行の制御 */
.giant-title .line,
.statement-title span {
    display: block;
    /* 意図的に改行させる */
    word-break: keep-all;
    line-height: 1.2;
}

.section-lead {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 20px;
    max-width: 600px;
}

.category-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.work-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000;
}

.sub-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    text-align: justify;
}

.work-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.work-tags span {
    font-size: 0.7rem;
    padding: 4px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* NEWSセクション専用スタイル */
.news-list {
    margin-top: 40px;
}

.news-item {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.news-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    display: block;
}

.news-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* FOOTER Styles */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--line);
    margin-top: 40px;
    background-color: #fff;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-size: 40px 40px, 40px 40px, auto;
    position: relative;
    z-index: 10;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 24px;
    width: auto;
    margin-bottom: 15px;
    display: block;
}

.footer-description {
    font-size: 0.75rem;
    line-height: 1.8;
    opacity: 0.6;
    margin-bottom: 20px;
}

.footer-link {
    text-decoration: none;
    color: var(--main);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.9;
    transition: all 0.4s var(--ease);
    position: relative;
    width: fit-content;
    display: block;
}

.footer-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-link::before {
    content: "→";
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: 0.3s var(--ease);
}

.footer-link:hover::before {
    opacity: 1;
    left: -20px;
}

.footer-tagline {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    opacity: 0.4;
}

.footer-nav {
    display: flex;
    gap: 40px;
    counter-reset: footer-section;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-label {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--sub);
    margin-bottom: 15px;
    text-transform: uppercase;
    opacity: 1;
    display: flex;
    align-items: center;
}

.footer-nav-label::after {
    counter-increment: footer-section;
    content: "[ 00-" counter(footer-section, decimal-leading-zero) " ]";
    font-size: 0.45rem;
    margin-left: 12px;
    letter-spacing: 0.1em;
    opacity: 0.6;
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.copyright {
    font-size: 0.65rem;
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}