@charset "UTF-8";
/* CSS Document */
.main {
    margin: 0 auto;
    background-color: #fffcfc;
}
.about-top {
    margin: 20px auto 20px;
    padding: 0 8px 40px;
    width: 100%;
    text-align: center;
}
.page_title-wrapper h1 {
    font-size: 2.1875rem;
    font-weight: 600;
    font-family:
        "Noto+Sans+JP", sans-serif, "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    color: #47539e;
}
.page_title-wrapper h5 {
    font-size: 1rem;
    font-weight: 400;
    font-family:
        "Noto+Sans+JP", sans-serif, "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    color: #888787;
    margin: -3px 0 3px 0;
}
.page-image {
    display: inline-block;
    /*position: relative;*/
    width: 230px;
    height: 160px;
    /* text-align: center;
   display: flex;
    align-items: center;
    justify-content: center;*/
    background-color: #dfeaf0;
    /*border-radius: 3px;
    box-shadow: 10px 10px 0px 0px #dfeaf0;*/
}
.page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_contents {
    padding: 0 20px;
    margin: 0 auto;
}
.page_contents h3 {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 10px 0 20px;
}
.grid-box {
    display: grid;
    gap: 20px;
    margin: 0 auto;
    max-width: 360px;
}
.contents_grid {
    position: relative;
    padding: 0 0 4px 8px;
    font-size: 1.1rem;
    line-height: 1.4rem;
}
.contents_grid h2 {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: left;
    padding: 0 0 6px 0;
}
.contents_grid h2::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 30%;
    transform: translateY(-50%);
    width: 3px;
    height: 1.2em;
    background: #87b2d9;
    border-radius: 1px;
}
.contents_grid ul {
    list-style: none;
    padding: 0;
}
.contents_grid li {
    text-align: left;
}
.contents_grid p {
    position: relative;
    text-align: left;
}
.contents_grid p::before {
    content: "";
    position: absolute;
    left: 50px;
    bottom: 2.4rem;
    width: 10px;
    height: 6px;
    background: #87b2d9;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (min-width: 768px) {
    .about-top {
        margin: 20px auto 20px;
        padding: 0 8px 40px;
        width: 100%;
        text-align: center;
    }
    .page_title-wrapper {
        padding: 0 20px;
        max-width: 1080px;
    }
    .page_title-wrapper h1 {
        font-size: 2.375rem;
        font-weight: 600;
        text-align: left;
    }
    .page_title-wrapper h5 {
        font-size: 1rem;
        font-weight: 400;
        margin: 0px 0 7px 0;
        text-align: left;
    }
    .page-image {
        display: inline-block;
        width: 100%;
        max-width: 1080px;
        margin: 0 auto;
        height: 425px;
        text-align: left;
    }

    .page_contents {
        max-width: 840px;
        padding: 0 24px;
    }
    .page_contents h3 {
        font-size: 1.3rem;
        font-weight: 300;
    }
    .grid-box {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        margin: 0 auto;
        gap: 40px;
        max-width: 540px;
    }
    .contents_grid {
        line-height: 2rem;
        padding: 0 0 4px 8px;
    }

    .contents_grid h2 {
        font-size: 1.5rem;
        font-weight: 700;
    }
    .contents_grid h2::before {
        left: -5px;
        width: 3px;
        height: 1.2em;
        top: 34%;
    }
    .contents_grid ul,
    .contents_grid p {
        font-size: 1.3rem;
    }
    .contents_grid p::before {
        content: "";
        position: absolute;
        left: 50px;
        bottom: 3.4rem;
        width: 12px;
        height: 8px;
    }
}
