@charset "utf-8";

/* ===== blog.css ===== */
/* -- blogBox01 -- */
.blogBox01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* - boxL - */
.blogBox01 .boxL {
    width: calc(100% - 320px);
}
.blogListBox01 > *:not(:last-child) {
    margin-bottom: 40px;
}
.blogListBox01 > * > a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.blogListBox01 .img {
    width: 260px;
    border-radius: 10px;
}
.blogListBox01 .img span {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}
.blogListBox01 .img span img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%,-50%);
}
.blogListBox01 .cnt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 18px;
    width: calc(100% - 300px);
}
.blogListBox01 .cnt .tit {
    font-size: 20px;
    font-weight: bold;
    margin-top: 14px;
    width: 100%;
}
.blogListBox01 .cnt .txt {
    font-size: 12px;
    line-height: 1.583;
    margin-top: 14px;
    width: 100%;
}
.blogListBox01 .cnt .cnt_btn {
    margin-top: 24px;
}
.blogListBox01 .cnt .cnt_btn::after {
    display: inline-block;
    position: relative;
    top: 0;
    right: 0;
    margin-left: 4px;
    width: 8px;
    height: 8px;
    background: url(../img/common/arrow_brank_color.svg) no-repeat center / 100% auto;
    content: "";
}
.blogListBox01 .blogBox_day {
    opacity: .7;
}
/* blogBox_tag */
.blogBox_tag {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    margin-top: 25px;
}
.blogBox_tag > li {
    margin-right: 13px;
}
/* - boxR - */
.blogBox01 .boxR {
    width: 250px;
}
/* searchBox */
.searchBox form {
    display: flex;
    background: #F6F7F9;
    border-radius: 4px;
}
.searchBox .search {
    width: calc(100% - 30px);
}
.searchBox .search input {
    padding: 2px 21px 0;
    height: 50px;
}
.searchBox .search input::-webkit-input-placeholder { color: rgba(0, 0, 0, 0.3); }
.searchBox .search input:-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
    opacity: 1;
}
.searchBox .search input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
    opacity: 1;
}
.searchBox .search input:-ms-input-placeholder { color: rgba(0, 0, 0, 0.3); }
.searchBox .search input::-ms-input-placeholder { color: rgba(0, 0, 0, 0.3); }
.searchBox .submit {
    display: flex;
    align-items: center;
    width: 30px;
    background: url(../img/common/icon_search.svg) no-repeat left center / 14px auto;
}
.searchBox .submit input {
    display: block;
    width: 100%;
    height: 100%;
}
.searchBox .submit input:focus-visible {
    outline: none!important;
    background: none!important;
}
/* blogBox01_rnav */
.blogBox01_rnav {
    margin-top: 46px;
}
.blogBox01_rnav dt {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: -.07em;
}
.blogBox01_rnav dd:not(:last-child) {
    margin-bottom: 29px;
}
/* categoryBox01 */
.categoryBox01 {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 11px;
}
.categoryBox01 li:not(:last-child) {
    border-bottom: 1px solid #CDD9E0;
}
.categoryBox01 li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding: 12px 0 13px 15px;
}
.categoryBox01 li a::before {
    display: block;
    position: absolute;
    top: 0;
    bottom: 1px;
    left: 1px;
    margin: auto;
    width: 6px;
    height: 6px;
    background: #115680;
    border-radius: 50%;
    content: "";
}
.categoryBox01 li span {
    font-size: 13px;
    color: #BDBDBD;
    padding-top: 3px;
}
/* tagBox01 */
.tagBox01 {
    font-size: 12px;
    color: #88AABF;
    display: flex;
    flex-wrap: wrap;
    margin: 26px 0 0;
}
.tagBox01 li {
    margin: 0 5px 6px 0;
}
.tagBox01 li a {
    color: #88AABF;
    display: block;
    padding: 5px 8px 2px 6px;
    background: #ebf1f5;
    border-radius: 4px;
}
@media screen and ( max-width: 900px ) {
    /* -- blogBox01 -- */
    .blogBox01 {
        display: block;
    }
    /* - boxL - */
    .blogBox01 .boxL {
        width: 100%;
    }
    .blogListBox01 > * > a {
        display: block;
    }
    .blogListBox01 .img {
        width: 100%;
    }
    .blogListBox01 .cnt {
        width: 100%;
    }
    /* - boxR - */
    .blogBox01 .boxR {
        margin-top: 40px;
        width: 100%;
    }
    /* blogBox01_rnav */
    .blogBox01_rnav {
        margin-top: 20px;
    }
    .blogBox01_rnav dd:not(:last-child) {
        margin-bottom: 15px;
    }
    /* categoryBox01 */
    .categoryBox01 {
        margin-top: 0;
    }
    .categoryBox01 li a {
        padding: 9px 0 10px 15px;
    }
    /* tagBox01 */
    .tagBox01 {
        margin: 15px 0 0;
    }
}

/* -- blogCategoryTitBox -- */
.blogCategoryTitBox {
    margin-bottom: 46px;
}
.blogCategoryTitBox .tit {
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: -.07em;
}
.blogCategoryTitBox .subTxt {
    font-weight: bold;
    color: #7E7E7E;
    margin-top: 18px;
}

/* -- blogDetailBox -- */
.blogDetailBox .blogListBox01 .cnt {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 0;
    width: 100%;
}
.blogDetailBox .blogListBox01 .cnt > p {
    margin-top: 3.3rem;
    width: 100%;
}
.blogDetailBox .blogBox_catecory {
    font-size: 1.3rem;
    margin-top: 0;
}
.blogDetailBox .blogBox_catecory li:not(:last-child) {
    margin-right: 2.1rem;
}
.blogDetailBox .blogListBox01 .blogBox_day {
    font-size: 1.2rem;
    margin: 0 0 -.8rem;
}
.blogDetailBox .blogListBox01 .cnt .tit {
    font-size: 3.5rem;
    margin: 2.1rem 0 -.9rem;
    letter-spacing: -.07em;
}
.blogDetailBox .blogListBox01 .img {
    margin: 3.6rem 0 -1.7rem;
    width: 100%;
}
.blogDetailBox .blogBox_tag {
    margin-top: 4.6rem;
    padding-top: 1.8rem;
    width: 100%;
    border-top: 1px solid #CDD9E0;
}

@media screen and ( max-width: 900px ) {
    .blogCategoryTitBox .tit {
        font-size: 20px;
    }
}

/* -- pager -- */
.pager {
    text-align: center;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
}
.pager a {
    color: #BDBDBD;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.3rem;
    height: 4rem;
}
.pager li.act a {
    color: #115680;
}
.pager li.prev {
    margin-right: 2rem;
}
.pager li.next {
    margin-left: 2rem;
}
.pager .prev a,
.pager .next a {
    position: relative;
    width: 4rem;
    background: #FFF;
    border: 2px solid #F2F2F2;
    border-radius: 50%;
}
.pager .prev a::before,
.pager .next a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: .5rem;
    height: .9rem;
    background: url(../img/common/arrow.svg) no-repeat center / 100% auto;
    content: "";
}
.pager .prev a::before {
    transform: rotate(180deg);
}