.info {
    text-align: center;
    background-color: #EEEEEE;
    padding: 60px 0;
}
@media only screen and (max-width: 768px), print and (min-width: 2cm) {
    .info {
        padding: 30px 20px;
    }
}
.info .vox {
    width: 100%;
    max-width: 768px;
    padding: 15px 30px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 5px;
}

.info .vox .info__title {
    font-size: 26px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    color: #1e6c83;
    margin-bottom: 15px;
    position: relative;
}
@media only screen and (max-width: 768px), print and (min-width: 2cm) {
    .info .vox .info__title {
        font-size: 21px;
    }
}
.info .vox .info__title::before {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #999999;
    bottom: -0.5em;
    left: 0;
}
.info .vox .table-vox {
    overflow-y: auto;
    width: 100%;
    max-height: 170px;
}
@media only screen and (max-width: 768px), print and (min-width: 2cm) {
    .info .vox .table-vox {
        height: inherit;
    }
}
.info .vox .info__list {
    width: 100%;
    border-collapse: collapse;
}
.info .vox .info__list th {
    width: 7em;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    vertical-align: top;
    padding: 10px 0;
    border-bottom: 1px dashed #999999;
}
@media only screen and (max-width: 768px), print and (min-width: 2cm) {
    .info .vox .info__list th {
        font-size: 1.4rem;
    }
}
.info .vox .info__list td {
    width: calc( 100% - 7em );
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    vertical-align: top;
    padding: 10px 0;
    border-bottom: 1px dashed #999999;
}
@media only screen and (max-width: 768px), print and (min-width: 2cm) {
    .info .vox .info__list td {
        font-size: 1.4rem;
    }
}
.info .vox .info__list td a {
    color: #004e9c;
    transition: .2s;
}
.info .vox .info__list td a:hover {
    color: #009e90;
}

/* info pages */
.info-page__header {
    padding: 60px 0;
}
.info-page__header .info-page__en {
    font-size: 21px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #1e6c83;
}
@media only screen and (max-width: 768px), print and (min-width: 2cm) {
    .info-page__header .info-page__en {
        font-size: 15px;
    }
}
.info-page__header .info-page__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    color: #1e6c83;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    position: relative;
}
@media only screen and (max-width: 768px), print and (min-width: 2cm) {
    .info-page__header .info-page__title {
        font-size: 18px;
    }
}

.info-page__post .inner {
    text-align: center;
}
.info-page__post .date {
    text-align: left;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #666666;
}
.info-page__post h3 {
    text-align: left;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    margin-bottom: 40px;
}
@media only screen and (max-width: 768px), print and (min-width: 2cm) {
    .info-page__post h3 {
        font-size: 18px;
    }
}
.info-page__post h3::before {
    display: block;
    content: "";
    position: absolute;
    background-color: #CCCCCC;
    width: 100%;
    height: 1px;
    bottom: -15px;
    left: 0;
}
.info-page__post p {
    text-align: left;
    font-weight: 400;
    line-height: 2;
    margin: 1em 0;
}
.info-page__post img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 1em auto;
}
.info-page__post .back_buttom {
    width: 80%;
    max-width: 300px;
    margin: 60px auto 30px auto;
}
.info-page__post .back_buttom a {
    font-size: 1.6rem;
    line-height: 1;
    display: block;
    background-color: #009e90;
    color: white;
    text-align: center;
    padding: 1.5em 0;
    border-radius: 5px;
    position: relative;
    transition: .2s;
}
@media only screen and (max-width: 768px), print and (min-width: 2cm) {
    .info-page__post .back_buttom a {
        font-size: 1.4rem;
    }
}
.info-page__post .back_buttom a:hover {
    opacity: 0.7;
}
.info-page__post .back_buttom a::before {
    display: block;
    content: "";
    position: absolute;
    background-color: white;
    width: 8px;
    height: 2px;
    top: 2em;
    left: 15px;
    transform: rotate(-45deg);
    transform-origin: left;
    transition: .2s;
}
.info-page__post .back_buttom a:hover::before {
    left: 25px;
}
.info-page__post .back_buttom a::after {
    display: block;
    content: "";
    position: absolute;
    background-color: white;
    width: 8px;
    height: 2px;
    top: 2em;
    left: 15px;
    transform: rotate(45deg);
    transform-origin: left;
    transition: .2s;
}
.info-page__post .back_buttom a:hover::after {
    left: 25px;
}