@charset "utf-8";
._sub_page_list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.__department_list {
    width: 300px;
    height: auto;
    position: sticky;
    top: 3.6rem;
    left: 0;
}
.__department_list li {
    width: calc((100% / 1) - 20px);
    height: auto;
    border: solid 1px #dedede;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #ffffff;
    padding: 1.2rem;
    margin-bottom: 10px;
}
.__department_list li a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    left: 0;
    top: 0;
    z-index: 0;
}
.__department_list li svg {
    width: 30px;
    aspect-ratio: 1 / 1;
}
.__department_list li i {
    rotate: -90deg;
    position: absolute;
    right: 1.2rem;
}
.__department_list li h3 {
    font-weight: normal;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    text-align: left;
    text-align-last: left;
    width: auto;
    margin-left: 10px;
}
.__department_list li h3 p {
    width: 100%;
    font-size: 1rem;
}
.__department_list li h3 span {
    width: 100%;
    font-size: 0.6rem;
}
.__department_list li:hover {
    background: -moz-linear-gradient(45deg, #425daa, #5577d4);
    background: -webkit-linear-gradient(45deg, #425daa, #5577d4);
    background: linear-gradient(45deg, #425daa, #5577d4);
    color: #ffffff;
    border: solid 1px #425daa;
}
.__department_list_item {
    width: calc((100% - 300px) - 20px);
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.__department_list_item li {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 40px;
    border: solid 1px #dedede;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    transition: 1s all;
}
.__department_list_item li:hover {
    scale: 1.05;
    transition: 1s all;
}
.__department_list_item li::after {
    content: "";
    background-image: url(../../img/department/haruta_logo.png);
    position: absolute;
    display: inline-block;
    width: 30%;
    aspect-ratio: 1 / 1;
    z-index: -1;
    opacity: 0.1;
    right: 0;
    bottom: -35px;
    transform: rotate(20deg);
    background-size: contain;
    background-repeat: no-repeat;
}
.__department_list_item li:first-child {
    width: 100%;
}
.__department_list_item_box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.__department_list_item_box_title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: nowrap;
    font-weight: normal;
    padding: 0 0 20px 0;
}
.__department_list_item_box_title p {
    font-size: 1em;
    display: flex;
    align-items: start;
}
.__department_list_item_box_title span {
    font-size: 0.6em;
    margin-left: 10px;
}
.__department_list_item_boxs {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.__department_list_item_box_img {
    width: 30%;
}
.__department_list_item_box_img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.__department_list_item_box_comment {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-flow: column;
    line-height: 1.6em;
}
.__department_list_item_box_comment p {
    width: 100%;
    text-align: justify;
    text-align-last: left;
}
.__department_list_item_box_internal {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.__department_list_item_box_internal a {
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8em;
    border: solid 1px #425daa;
    margin-bottom: 20px;
}
.__department_list_item_box_internal a:hover {
    background: #ffffff;
    color: #425daa;
}
