@charset "UTF-8";
/* ========================
　ページレイアウト 共通
======================== */
.main_page{
    background-color: var(--gray_clear);
}

.page_content{
    width: 100%;
    border-radius: 3em;
    background-color: var(--white);
}

.page_tit{
    margin-top: 1.5em;
    padding-bottom: 0.5em;
	border-bottom: solid 2px var(--black);
}

.bt_arrow{
    margin-left: 0.5em;
    width: 28px;
    height: 7px;
    display: flex;
    position: relative;
    left: 0;
    transition: .3s;
    justify-content: flex-end;
}

.bt_arrow::before{
    content: '';
    width: 28px;
    height: 2px;
    border-radius: 3px;
    background-color: var(--black);
    position: absolute;
    top: 3px;
}

.bt_arrow::after{
    content: '';
    width: 7px;
    height: 2px;
    border-radius: 20px;
    background-color: var(--black);
    transform: rotate(45deg);
    position: absolute;
    right: 1px;
}

@media screen and (min-width: 0px) {
    .page_header,
    .page_course__header{
        padding-top: 1.5em;
    }

    .page_content{
        padding: 3em 1.5em;
    }

    .page_main__area{
        padding: 0em 1.5em 3em 1.5em;
    }
}

@media screen and (min-width: 768px) {
    .page_content{
        padding: 3em;
    }
}

@media screen and (min-width: 1024px) {
    .page_header,
    .page_course__header{
        padding-top: 5.5em;
    }
}

@media screen and (min-width: 1025px) {
    .page_main__area{
        padding: 0em 4.5em 3em 4.5em;
    }
}

@media screen and (min-width: 1440px) {

}

/* ========================
　インタビュー テンプレート
======================== */
.interview_header{
    margin-bottom: 3em;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2em;
}

.interview_tit_area{
    width: auto;
    max-width: calc(100% - 500px);
}

.interview_tit_area .single_cat__area{
    justify-content: flex-start;
}

.interview_name{
    font-weight: 600;
    font-size: 1.5em;
}

.interview_img{
    width: auto;
    max-height: 500px;
    height: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    border-radius: 25px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.interview_img img{
    object-fit: cover;
    height: 100%;
}

@media screen and (min-width: 0px) {
    .interview_header{
        flex-wrap: wrap;
        justify-content: center;
    }

    .interview_tit_area{
        max-width: 100%;
    }

    .interview_img{
        max-height: 100%;
    }
}

@media screen and (min-width: 768px) {
    

}

@media screen and (min-width: 1024px) {
    .interview_header{
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .interview_tit_area{
        max-width: calc(100% - 500px);
    }

    .interview_img{
        max-height: 500px;
    }
}

@media screen and (min-width: 1025px) {

}

@media screen and (min-width: 1440px) {

}

.topics-template-page-interview .editor h3:first-of-type{
    margin-top: 0;
}

.topics-template-page-interview .editor h3{
    margin: 2.5em 0 1em 0;
    padding-left: 1.75em;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}

.topics-template-page-interview .editor h3::before{
    content: '';
    width: 1.25em;
    height: 4px;
    background-color: var(--black);
    top: 0.75em;
    bottom: auto;
    left: 0;
}

.topics-template-page-interview .editor h3::after{
    content: unset;
}

.topics-template-page-interview .editor h2{
    padding: 0.5em 0;
    border-radius: unset;
    border: unset;
    border-bottom: solid 2px var(--black);
}

/* 企業情報 */
.topics-template-page-interview .editor h2.company_info__tit{
    padding: 0.5em 1em;
    border-radius: 20px;
    border: unset;
    background-color: var(--gray);
}

.topics-template-page-interview .editor h2.company_info__tit::before{
    content: unset;
}

.company_info{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2em;
}

.company_info .company_name{
    margin-top: 0;
    margin-bottom: 1em;
    font-weight: bold;
}

.company_info .company_name a{
    color: var(--black);
}

.company_info .company_img{
    height: 100%;
    border: solid 1px var(--gray);
}

@media screen and (min-width: 0px) {
    .company_info{
        gap: 1em;
    }

    .company_info .company_name{
        width: 100%;
    }

    .company_info .company_img{
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .company_info{
        gap: 2em;
    }

    .company_info .company_name{
        width: calc(50% - 1em);
    }

    .company_info .company_img{
        width: calc(50% - 1em);
    }

}

@media screen and (min-width: 1024px) {

}

@media screen and (min-width: 1025px) {

}

@media screen and (min-width: 1440px) {

}

/* ========================
　日付・カテゴリー 共通
======================== */
.single_header .page_tit{
    margin-bottom: unset;
    border-bottom: unset;
}

.single_header{
    margin-bottom: 1.5em;
    border-bottom: solid 2px var(--black);
}

.single_cat__area{
    display: flex;
    justify-content: space-between;
    gap: 1em;
    flex-wrap: wrap;
}

/* ========================
　サイドバー有
======================== */
.page_layout,
.archive_layout{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tree_list .page_item{
    position: relative;
}

.sidebar ul.tree_list li a{
    padding: 1.25em 2em 1.25em 1em;
    display: flex;
}

.sidebar ul.tree_list .current_page_item a{
    padding: 1.025em;
    position: relative;
    font-size: 1.15em;
    font-weight: 600;
    pointer-events: none
}

.sidebar ul.tree_list li a::before{
    content: '';
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background-color: var(--black);
    position: absolute;
    top: calc(50% - 2px);
    right: 10px;
    transition: .3s;
}

.sidebar ul.tree_list li a::after{
    content: '';
    width: 7px;
    height: 2px;
    border-radius: 20px;
    background-color: var(--black);
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 4px);
    right: 10px;
    transition: .3s;
}

.sidebar ul.tree_list .current_page_item a::before,
.sidebar ul.tree_list .current_page_item a::after{
    content: unset;
}

.tree_list .page_item a:hover::before,
.tree_list .page_item a:hover::after{
    right: 5px;
}


/* 子ページを表示 */
.page_child__list{
    margin-top: 1.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.page_child__item{
    width: 100%;
    display: flex;
    border-top: solid 1px var(--gray);
}

.page_child__item a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.15em;
    font-weight: 600;
    position: relative;
    transition: .3s;
}

.page_child__item a:hover{
    background-color: var(--gray);
}

.page_child__item a:hover .bt_arrow{
    left: 10px;
}

@media screen and (min-width: 0px) {
    .page_layout{
        flex-direction: column-reverse;
    }

    .page_left{
        width: 100%;
    }

    .page_child__item a{
        padding: 1.5em 0.5em;
    }
}

@media screen and (min-width: 768px) {
    .page_child__item a{
        padding: 1.5em;
    }
}

@media screen and (min-width: 1024px) {
    .page_layout{
        flex-direction: unset;
    }

    .page_layout .sidebar{
        width: calc(25% - 1.5em);
    }

    .page_left{
        width: calc(75% - 1.5em);
    }
}

@media screen and (min-width: 1025px) {

}

@media screen and (min-width: 1440px) {

}

/*====================================
検索結果
=====================================*/
.editor .search_card{
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}

.editor .search_card li{
    margin-bottom: 0em;
    width: 100%;
    list-style: none;
    border-bottom: solid 1px var(--border);
}

.editor .search_card li a{
    padding: 1.5em 1em;
    width: 100%;
    display: block;
}

.search_p__link a{
    text-decoration: underline;
}

/*====================================
サイトマップ
=====================================*/
.simple-sitemap-page{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.simple-sitemap-container ul{
    margin: 0em;
}

.sitemap-item{
    width: 100%;
}

.editor ul > .sitemap-item{
    list-style: none;
    margin-bottom: 0;
}

.sitemap-item .children{
    padding-top: 0em;
    padding-left: 0em;
}

.sitemap-item a{
    padding: 1.5em;
    display: flex;
    width: 100%;
    border-bottom: solid 1px var(--border);
    position: relative;
    transition: .3s;
}

.sitemap-item a, .sitemap-item a.sitemap_li:link, .sitemap-item a.sitemap_li:visited {
    color: var(--black);
}

.sitemap-item a::before{
    content: '';
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background-color: var(--black);
    position: absolute;
    top: calc(50% - 2px);
    right: 1.5em;
    transition: .3s;
}

.sitemap-item a::after {
    content: '';
    width: 7px;
    height: 2px;
    border-radius: 20px;
    background-color: var(--black);
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 4px);
    right: 1.5em;
    transition: .3s;
}

.sitemap-item a:hover{
    background-color: var(--gray);
}

.sitemap-item a:hover::before,
.sitemap-item a:hover::after{
    right: 10px;
}