.TopMainArea__InformationBlock {
    margin-top: -16em;
}

@media screen and (max-width: 767px){
    .TopMainArea__InformationBlock {
    margin-top: 0em;
    }
}

.TopMenu__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -15px;
    padding-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
}

@media screen and (max-width: 767px){
    .TopMenu__content {
        padding: 20px 0 80px 0;
    }
}

@media screen and (max-width: 767px){
    .TopMenu__content {
    display: block;
    }
}

.TopMenu__box {
    box-sizing: border-box;
    padding: 15px;
    width: 33.33%;
}

@media screen and (max-width: 767px){
    .TopMenu__box {
        width: auto;
    }
}

.TopMenu__item {
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    min-height: 130px;
    min-width: 200px;
    box-shadow: 0px 7px 15px -7px rgb(0 0 0 / 30%);
    transition: background-color 0.3s;
}

.TopMenu__item:hover {
    background-color: #d0f0fa;
}

@media screen and (max-width: 767px){
    .TopMenu__item {
        display: flex;
        align-items: center;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        min-height: 0px;
    }
}

@media screen and (max-width: 767px){
    .TopMenu__box {
        border-bottom: solid 1px #e0e0e0;
    }
}

@media screen and (max-width: 767px){
    .TopMenu__item::after:last-of-type {
        border-bottom: none;
    }
}

.TopMenu__text {
    position: relative;
    padding-right: 33px;
    text-align: center;
}

.TopMenu__arrow {
    position: absolute;
    margin-left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #00a6ec;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.TopMenu__arrow::before {
    content: "";
    display: block;
    position: absolute;
    right: 4px;
    top: 4px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #fff;
}

.TopMenu__arrow::after {
    content: "";
    display: block;
    position: absolute;
    right: 9px;
    top: 7px;
    width: 4px;
    height: 4px;
    background-color: #fff;
}

.TopMenu__img {
    display:flex;
    justify-content: center;
    margin: auto;
    margin-top: 10px;
}

@media screen and (max-width: 767px){
    .TopMenu__img {
        order: -1;
        margin: 0;
        margin-right: 1em;
    }
}

.TopMenu__img1 {
    background-image: url("../img/common/menu01.jpg");
    background-size: cover;
    height:60px;
    width: 60px;
}

.TopMenu__img2 {
    background-image: url("../img/common/menu02.jpg");
    background-size: cover;
    height:60px;
    width: 60px;
}

.TopMenu__link{
    display: block;
}




.top-access::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin-bottom: 15px;
}

.top-access__box {
    margin-bottom: 0.8em;
}

.top-access__time {
    margin-bottom: 0.25em;
    position: relative;
    padding-left: 1em;
    font-weight: bold;
}

.top-access__time::before {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    background-color: #078dc5;
    position: absolute;
    top: 0.5em;
    margin-right: 10px;
    left: 0;
}

.top-access__text {
    margin-bottom: 0;
    margin-left: 1em;
}

.ButtonList {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;  
    gap: 10px;
}
.Button {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 2.5em;
    border: 1px solid #d5d5d5;
    transition: box-shadow 0.2s;
    position: relative;
    cursor: pointer;
}
.Button::before {
    content: '';
    width: 0.5em;
    height: 0.5em;    
    display: block;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #078dc5;
    border-bottom: 2px solid #078dc5;
    transform: rotate(-45deg);
    margin-right: 0.5em;
}

.Button:hover {
    box-shadow: 0px 3px 14px -3px rgba(0,0,0,0.2);
    text-decoration: underline;
    color: #078dc5;
}