@charset "utf-8";

body{
    margin: 0%;
}

.pc{
    display: block;
}
.sp{
    display: none;
}
.top{
    width: 100%;
}

h4{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    font-family: serif;
    font-size: 50px;
    width: 100%;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
}

.frame{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.frame .title{
    width: 70%;
    margin-bottom: 100px;
    margin-top: 50px;
}

.frame .title ol{
    list-style: none;
    padding: 0;
}

.frame .title ol {
    font-size: 20px;
    font-family: serif;
    font-weight: bold;
}

.frame .title ol span{
    font-size: 18px;
    font-family: serif;
    font-weight: bold;
}

.list {
    display: flex;
    min-height: 60px;
}
/*上下線*/
.list:first-child {
    border-top: 0.5px solid #000;
    border-bottom: 0.5px solid #000;
}

.list {
    border-bottom: 0.5px solid #000;
}

.list_title {
    display: flex;
    max-width: 250px;
    min-width: 200px;
    background-color: #E6E6E6;
    align-items: center;
    color: #194f74;
    padding-left: 40px;
}

.list_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    overflow: wrap;
}

/*行間*/
.list_text span:first-child {
    padding-top: 20px;
    padding-bottom: 10px;
}

.list_text span {
    padding-bottom: 10px;
    word-wrap: break-word;
}

.list_text span:last-child {
    padding-bottom: 20px;
}

/*福利厚生の項目の擬似要素*/
.benefits span::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #194f74;
    transform: rotate(45deg);
    margin-right: 10px;
}

.area {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
/*エントリーボタン*/
.entry_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 80px;
    margin-bottom: 100px;
    font-size: 30px;
    font-family: serif;
    font-weight: bold;
    color: #ffffff;
    background-color: #306FB6;
    border: solid 1px #306FB6;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
/*エントリーボタン　アニメーション*/
.entry_button:hover {
    background-color: #ffffff;
    color: #306FB6;
    transition: 0.2s;
}

@media screen and (max-width:980px) { 
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    h4{
        margin-top: -50px;
        font-size: 40px;
    }
    .frame .title{
        width: 90%;
        margin-bottom: 50px;
        margin-top: -50px;
    }
    .list_title {
        max-width: 200px;
        min-width: 30%;
        padding-left: 10px;
    }

    .list_text span:first-child {
        padding-top: 10px;
        padding-bottom: 0;
    }
    
    .list_text span {
        padding-bottom: 0;
    }
    
    .list_text span:last-child {
        padding-bottom: 10px;
    }
    .frame .title ol {
        font-size: 25px;
        font-family: serif;
        font-weight: bold;
    }
    .frame .title ol span{
        font-size: 20px;
        font-family: serif;
        font-weight: normal;
    }
    .text_sub span{
        font-size: 16px;
    }

    .list_text {
        padding-left: 10px;
    }
    .benefits span::before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: #194f74;
        transform: rotate(45deg);
        margin-right: 10px;
    }
    .entry_button {
        margin: 0 10%;
        padding: auto;
        max-width: 400px;
        height: 80px;
        margin-bottom: 50px;
        font-size: 30px;
        font-weight: bold;
        background-color: #306FB6;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }
}