<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*=========================
company
=========================*/
/* ===== article__header =====*/
.article__header {
    padding: 64px var(--contentPadding) 0;
}

.article__header .topic {
    color: var(--txt-color);
    text-align: center;

    /* 見出し */
    font-family: DynaPuff;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
}

/* article__header pc */
@media screen and (min-width: 769px){
    .article__header .topic {
        font-size: 2.5rem;
    }
}

/* ===== contents__wrap =====*/
.contents__wrap {
    padding: 0 var(--contentPadding) 64px;
    margin-top: 38px;
}

/* ===== desc =====*/
.desc {
    padding: 30px 15px;
    
}

.desc__title {
    margin-top: 68px;
    margin-bottom: 50px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 400;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.desc__title:first-of-type {
    margin-top: 0;
}

.desc__title img {
    width: 90px;
}

.desc__point {
    position: relative;
    margin-top: -20px;
}

.desc__point:first-of-type {
    margin-top: 0;
}

.desc__point--r {
    display: flex;
    justify-content: flex-end;
}

.point__txt {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;

    /* width: 40%; */
    max-width: 375px;
    aspect-ratio: 1 / 1;
    padding: 10px;
    border-radius: 50%;
    background-color: #FFF;
}

.point__txt span {
    display: block;
    color: var(--primary-pink, #F29494);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.ornament {
    position: absolute;
    top: 6px;
    right: -14px;
    width: 96px;
}

.desc__point:nth-of-type(2) .ornament {
    position: absolute;
    top: 59px;
    left: 0;
    width: 57px;
    transform: scale(-1, 1);
}

.desc__txt {
    margin-top: 25px;
    color: var(--txt-color);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7;
}

/* desc pc */
@media screen and (min-width: 769px){
    .point__txt {
        width: 50%;
        min-width: 150px;
    }
}

/* ===== info =====*/
.info dt {
    margin-top: 38px;
    padding: 30px 15px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.info table {
    border-top: 1px solid var(--txt-color);
    margin-bottom: 10px;
}

.info th {
    border-right: 1px solid var(--txt-color);
    width: 36%;
}

.info td, th {
    padding: 5px;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
}</pre></body></html>