@charset "utf-8";

/*---------------------------------
message
---------------------------------*/
#message {
    margin-top: 20px;
}
#message .inner {
    position: relative;
}
#message .title {
    position: relative;
    z-index: 2;
}
.message{
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    z-index: 1;
}
#message .message_img {
    position: absolute;
    left: -200px;
    top: 50px;
    display: block;
    z-index: 1;
}
.message .message_heading {
    position: absolute;
    top: 10%;
    left: 25%;
    display: block;
    z-index: 1;
}
.message_info {
    position: relative;
    z-index: 3;
}
.message_info h3 {
    position: relative;
    margin-top: 20px;
    font-family: 'a-otf-ud-reimin-pr6n';
    font-size: 2.4rem;
    padding-bottom: 80px;
}
.message_info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 60px;
    height: 1px;
    background-color: #333;
}
.message_info p {
    margin: 40px 0 60px;
    font-family: 'ivypresto-headline';
    font-size: 1.4rem;
}
@media print,screen and (max-width: 1024px) {
    #message {
        margin-top: inherit;
        margin-bottom: inherit;
    }
    #message .title {
        order: 1;
    }
    #message .inner {
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 35px 0;
    }
    .message {
        flex-direction: column-reverse;
        order: 3;
    }
    #message .message_img {
        position: relative;
        bottom: unset;
        top: 0;
        left: -4%;
        order: 2;
    }
    .message_info {
        padding-left: 70px;
    }
    .message .message_heading {
        position: absolute;
        top: -30px;
        left: -4%;
        width: 100%;
        display: block;
        z-index: 1;
        transform: none;
    }
    #message .inner::before {
        content: '';
        position: absolute;
        top: unset;
        left: unset;
        right: -4%;
        bottom: 0;
        display: block;
        height: 70%;
        width: 93%;
        z-index: 0;
    }
    .message_info h3 {
        padding-bottom: 30px;
        margin-top: 60px;
        font-size: 1.7rem;
    }
    .message_info p {
        margin: 25px 0 25px;
        font-size: 1.2rem;
    }
    #message .btn {
        width: 250px;
    }
}
/*---------------------------------
outline
---------------------------------*/
table,
table th,
table td{
    border-collapse: collapse;
}
table{
    border-collapse: collapse;
    width: 900px;
    margin: 0 auto;
}
table th:first-of-type,
table td:first-of-type {
    border-top: 1px solid #ccc;
}
table th{
    border-bottom: 1px solid #ccc;
    text-align: left;
    font-weight: bold;
    width: 20%;
    padding-left: 10px;
}
table td{
    padding: 20px 10px 20px 0;
}
table td:last-of-type{
    border-bottom: 1px solid #ccc;
}
table ul li.flex {
    width: 60%;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width:1024px) {
    table,
    table th,
    table td{
        display: block;
        width: 100%;
        border: 0;
        text-align: left;
    }
    table ul li.flex {
        width: 100%;
    }
    table ul li.flex.half {
        width: 60%;
    }
    table {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    table tr {
        display: flex;
        flex-direction: column;
        border-top: solid #ccc 1px;
    }
    table tr:last-of-type {
        border-bottom: solid #ccc 1px;
    }
    table th{
        text-align: left;
        padding:3% 0;
    }
    table th:first-of-type, table td:first-of-type {
        border: none;
    }
    table th:last-of-type,
    table td:last-of-type{
        border-bottom:0;
    }
    table td{
        padding: 0 0 5%;
    }
    table td span{
        margin-left:5px;
        display: block;
    }
}
/*---------------------------------
access
---------------------------------*/
#access .access {
    width: 100%;
    max-width: 900px;
}
#access .access iframe {
    height: 360px;
}
.access_list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
}
.access_list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;;
    width: 50%;
    padding: 20px;
    border: solid 1px #333;
    margin-left: -1px;
    margin-bottom: -1px;
}
.access_list li img {
    margin-right: 15px;
}
@media screen and (max-width:1024px) {
    .access_list li {
        width: 100%;
    }
}
