@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;*/
    max-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;
}

@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;
    }
}
.section-access {
    /*position: relative;*/
    margin: 0 auto 20px;
    padding: 0 8px 40px;
    border-radius: 4%;
    width: 100%;
    /*max-height: 506px;*/
    text-align: center;
    background-color: #fffcfc;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
}
.grid_sec1 {
    grid-area: sec1;
}
.grid_sec2 {
    grid-area: sec2;
}
.grid_sec3 {
    grid-area: sec3;
}
.access_grid {
    display: grid;
    grid-template-rows: 1fr;
    justify-items: center;
    gap: 10px;
    grid-template-areas:
        "sec1"
        "sec2"
        "sec3";
    background: #fffcfc;
    font-size: 1.1rem;
    line-height: 1.8rem;
}
.access_company {
    text-align: left;
} /* アスペクト比固定でレスポンシブ（16:9） */
.map-wrap {
    position: relative;
    z-index: 1;
    max-width: 90%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    background: #ddd;
}
.gmap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.access-image {
    position: relative;
    width: 230px;
    height: 160px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #dfeaf0;*/
    border-radius: 3px;
}

@media (min-width: 768px) {
    .access_grid {
        grid-template-columns: 1fr 1fr; /* 左広め */
        grid-template-areas:
            "sec1 sec2"
            "sec1 sec3";
        align-items: stretch;
        max-width: 1080px;
        padding: 20px;
        font-size: 1.3rem;
        line-height: 2rem;
    }
    .access_company {
        height: 100%;
    }
}
