/* =============================
header　下層ページカスタム
============================= */
.header {
    position: static;
}

.header-logo__txt {
    color: var(--primary-black);
}

/* nav初期表示 */
.header.active {
    position: sticky;
}

.header-nav {
    background-color: rgba(from var(--primary-light-gray) r g b / 0.8);
}

.blur-overlay {
    background-color: rgba(from var(--primary-light-gray) r g b / 0.2);
}

/* ハンバーガーメニュー */
.hamburger span {
    background-color: var(--primary-black);
}

/* nav active表示 */
.header-nav.active {
    box-shadow: 1px 1px 8px var(--primary-dark-gray);
}

body.menu-open main,
body.menu-open footer {
    filter: blur(4px);
    transition: filter 0.5s ease;
}

/* header pc */
@media screen and (min-width:769px) {
    .header-nav {
        background-color: transparent;
    }

    .header-nav__item a {
        color: var(--primary-black);
    }

    .header-nav__item a::before {
        background-color: var(--primary-black);
    }
} /* pc 769px */

/* =============================
company
============================= */
.inner-flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 56px;
}

.inner-flex img {
    display: block;
    margin: 0 auto;
    width: 160px;
    height: 104px;
    object-fit: contain;
}

.inner-flex__txt {
    margin: 24px 8px 0;
    line-height: 2;
    letter-spacing: 0.04em;
}

.about__list {
    margin-top: 48px;
}

.about__item {
    padding: 20px 0;
    border-top: 1px solid var(--primary-light-gray);
}

.about__item:last-of-type {
    border-bottom: 1px solid var(--primary-light-gray);
}

.about__item-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

.about__item-txt {
    margin-top: 8px;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

/* about pc */
@media screen and (min-width:769px) {
    .inner-flex {
        flex-direction: row;
        gap: 56px;
        margin-top: 72px;
        align-items: center;
    }

    .inner-flex img {
        width: 280px;
        height: 170px;
    }

    .inner-flex p {
        margin: 0;
        font-size: 1.8rem;
    }

    .about__list {
        margin-top: 56px;
    }

    .about__item {
        padding: 24px 0;
    }

    .about__item-title {
        font-size: 1.7rem;
    }

    .about__item-txt {
        font-size: 1.8rem;
    }
} /* pc 769px */

/* =============================
access
============================= */
.inner-flex--access {
    gap: 40px;
    margin-top: 40px;
}

.inner-flex iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}

.about__list--access {
    margin-top: 0;
}

.google-link {
    margin-top: 8px;
    display: block;
    text-align: right;
}

.google-link a {
    padding: 0 0 0 28px;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.04em;
    text-transform: capitalize;
    position: relative;
    transition: 0.2s ease;
}

.google-link a::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/roundbtn-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.google-link a:hover {
    transform: translateX(2px);
}

/* access pc */
@media screen and (min-width:769px) {
    .inner-flex--access {
        gap: 104px;
        margin-top: 72px;
        align-items: center;
    }

    .inner-flex iframe {
        flex: 1;
    }

    .about__list--access {
        padding: 32px 0;
        flex: 1;
    }

    .google-link {
        margin-top: 16px;
        text-align: left;
    }

    .google-link a {
        padding: 0 0 0 32px;
        font-size: 1.6rem;
    }

    .google-link a::before {
        width: 24px;
        height: 24px;
    }
} /* pc 769px */