@charset "UTF-8";

/* =====================================================
    クッキーポリシーページ (page-cookies-policy.php)
   ===================================================== */
.main_container {
    min-height: calc(100vh - 188px);
    padding-top: 160px;
    padding-bottom: 92px;
}

.content-title_wrap.align-center {
    font-size: clamp(1.625rem, 0.652rem + 3.46vw, 2.313rem);
    font-weight: 700;
    padding: 12px 0;
    text-align: center;
    position: relative;
    color: #343434;
}

.content-title_wrap.align-center::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 27px;
    height: 22px;
    background-image: url(../images/diamond_img.png);
    background-size: cover;
}

.content-title_wrap.align-center::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 108px;
    height: 11px;
    background-image: url(../images/title-border.png);
    background-size: cover;
}

.external-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #328ACC;
    text-decoration: none;
    transition: color 0.3s;
}

.external-link .icon-anchor::before {
    color: #328ACC;
}

.external-link:hover {
    color: #1A5E8B;
}

.external-link:hover .icon-anchor::before {
    color: #1A5E8B;
}

.policy-link-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.policy-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 245px;
    height: 70px;
    font-size: 1.25rem;
    border: 1px solid #A7A7A7;
    background-color: #fff;
    color: #343434;
    transition: background-color 0.3s, color 0.3s;
}

.policy-link:hover {
    background-color: #A7A7A7;
    color: #fff;
}

.policy-link + .policy-link {
    border-left: none;
}

.cookie-policy-inner {
    max-width: 1212px;
    width: 90%;
    margin: 0 auto;
}

.cookie-policy-section {
    margin-top: 76px;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #343434;
    text-align: center;
}

.section-text {
    margin-top: 28px;
    font-size: 1.25rem;
    line-height: 2.3em;
    color: #343434;
}

@media screen and (max-width: 767px) {
    .main_container {
        padding-top: 108px;
        padding-bottom: 40px;
    }

    .policy-link-wrapper {
        margin-top: 32px;
    }

    .policy-link {
        width: 180px;
        height: 50px;
        font-size: 1rem;
    }

    .cookie-policy-section {
        margin-top: 40px;
    }

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

    .section-text {
        margin-top: 12px;
        font-size: 1rem;
        line-height: 1.8em;
    }
}