@charset "utf-8";

/*======================================
    2024.06 インターンシップ追加
======================================*/
*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#intern_top{
	background: url("../img/intern_top_back.jpg") 50% 0 no-repeat;
	background-size: cover;
}
#intern_top > div h1{
	margin-top: 5rem;
}

/* 見出し等 */
.bl_internCont h3{
    border-bottom: 2px solid #4696ff;
    font-size: 22px;
    font-weight: bold;
    text-align: left;
    padding-bottom: 10px;
}
.bl_internCont *+h3{
    margin-top: 60px;
}
.bl_internCont p{
    text-align: left;
    font-size: 16px!important;
}
.bl_internCont *+p{
    margin-top: 15px;
}

/* 定義タグ */
.bl_internCont dl{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0!important;
    width: 100%!important;
}
.bl_internCont dl+dl{
    margin-top: 20px!important;
}
.bl_internCont dt,
.bl_internCont dd{
    color: #000!important;
    font-size: 16px!important;
    font-weight: normal;
    text-align: left!important;
    padding: 0!important;
    width: 100%;
}
.bl_internCont dt{
    font-weight: bold;
}
.bl_internCont dt::before{
    display: none!important;
}
.bl_internCont dd{
    margin-top: 10px;
}
@media (min-width:768px){
    .bl_internCont dt{
        width: 10%;
    }
    .bl_internCont dd{
        margin-top: 0;
        width: 90%;
    }
}
@media (min-width:1024px){
    .bl_internCont dt{
        width: 8%;
    }
    .bl_internCont dd{
        width: 92%;
    }
}

/* リストタグ */
.bl_internCont ul{
    display: block!important;
    text-align: left;
    width: 100%!important;
}
.bl_internCont ul li{
    font-size: 16px!important;
    padding-left: 15px;
    position: relative;
}
.bl_internCont ul li::before{
    background-color: #4696ff;
    border-radius: 50%;
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 12px;
    left: 0;
}

/* チラシ */
.bl_pdf {
    max-width: 900px;
    width: 100%;
    margin: 60px auto 100px;
    display: flex;
    gap: 1em;
}
.bl_pdf p {
    margin: 0;
}

/* フォーム */
.bl_form{
    margin: 60px auto 0;
}
.bl_form table,
.bl_form table th,
.bl_form table td{
    border: none!important;
    padding: 0;
}
.bl_form table{
    width: 100%;
    margin: 0 auto;
}
.bl_form table tr{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
}
.bl_form table tr+tr{
    margin-top: 30px;
}
.bl_form table th,
.bl_form table td{
    font-size: 16px!important;
    text-align: left!important;
    width: 100%;
}
.bl_form table th{
    font-weight: bold;
}
@media (max-width:767px){
    .bl_form table th,
    .bl_form table td{
        display: block;
        text-align: left;
    }
    .bl_form table th br{
        display: none;
    }
}
@media (min-width:768px){
    .bl_form table th{
        text-align: left;
        width: 30%;
    }
    .bl_form table td{
        width: 70%;
    }
}
@media (min-width:1024px){
    .bl_form table th{
        width: 25%;
    }
    .bl_form table td{
        width: 75%;
    }
}

.bl_form .el_required{
    color: red;
}

.bl_form input[type="text"],
.bl_form input[type="email"],
.bl_form select,
.bl_form textarea{
    border: 1px solid #999;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    padding: 10px;
    width: 100%;
}

.bl_form .bl_radio{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
.bl_form .bl_radio label{
    display: block!important;
    font-size: 16px;
}
.bl_form .bl_radio label+label{
    margin-top: 10px;
}

/* ボタン */
.bl_btn-form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.bl_btn-form input,
.bl_btn-form a,
.el_btn{
    background-color: #4696ff;
    border: 1px solid #4696ff;
    border-radius: 10px;
    color: #fff;
    display: block;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: 0.3s;
    padding: 10px 0;
    max-width: 250px;
    width: 100%;
}
.el_btn{
    margin: 60px auto 0;
}
.bl_btn-form input{
    padding: 15px 0;
}
.bl_btn-form input:hover,
.bl_btn-form a:hover{
    opacity: 0.5;
}
.bl_btn-form *+input,
.bl_btn-form *+a{
    margin-top: 30px;
}
.bl_btn-form .el_btn-back{
    background-color: #fff;
    color: #4696ff;
}
@media (min-width:768px){
    .bl_btn-form *+input,
    .bl_btn-form *+a{
        margin-top: 0;
        margin-left: 40px;
    }
}



