@charset "UTF-8";

/* ==========================================
   Reset
========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl,
section,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

img,
svg,
embed,
object,
iframe {
    vertical-align: bottom;
}

.mb-9 {
    margin-bottom: 0.5rem !important;
}

/* ==========================================
   Wrapper
========================================== */

.pi-wrapper {
    font-size: 13px;
    line-height: 1.7;
}

.pi-fv {
    margin-bottom: 25px;
}

/* ==========================================
   Title
========================================== */

.pi-lead {
    text-align: center;
}

.pi-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;

    /* HTML側で指定 */
    color: var(--color-main);
}

.pi-label {
    display: inline-block;
    font-size: .7em;
    white-space: nowrap;
}

.pi-description {
    margin-top: 20px;

    /* HTML側で指定 */
    color: var(--color-text);
}

/* ==========================================
   Introduction
========================================== */

.pi-introduction {
    margin-top: 24px;
    padding: 0 16px;
    text-align: left;
    font-size: .9em;

    /* HTML側で指定 */
    color: var(--color-intro);
}

.pi-heading {
    font-weight: 600;
}

.pi-paragraph+.pi-paragraph {
    margin-top: 20px;
}

.pi-copyright {
    display: block;
    margin-top: 24px;
    font-size: .85em;

    /* HTML側で指定 */
    color: var(--color-subtext);
}

.pi-link {
    color: var(--color-link);
}

/* ==========================================
   PC
========================================== */

@media screen and (min-width:768px) {

    .pi-wrapper {
        font-size: 14px;
        line-height: 1.9;
    }

    .pi-fv {
        margin-bottom: 45px;
    }

    .pi-title {
        font-size: 24px;
    }

    .pi-label {
        font-size: .8em;
    }

    .pi-introduction {
        padding: 0 50px;
        font-size: .95em;
    }

}