@charset "UTF-8";
@import url("grid.css");

img {
    width: 100%;
    height: auto;
    /*高さ自動*/
    vertical-align: top;
}

a {
    display: block;
    text-decoration-line: none;
    color: #333;
}

a:hover {
    opacity: 80%;
}

.contents_box {
    margin: 100px 0;
}

.container h2 {
    font-size: 20px;
    font-family: 'Noto Serif JP', 'serif', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    margin-bottom: 80px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.05em;
}

ul li {
    list-style: none;
}

.contents_ttl {
    display: flex;
    align-items: center;
    /* 垂直中心 */
    justify-content: center;
    /* 水平中心 */
}

.contents_ttl:before, .contents_ttl:after {
    content: "";
    border-bottom: 0.1px solid;
    width: 1.5em;
}

.contents_ttl:before {
    margin-right: 10px;
}

.contents_ttl:after {
    margin-left: 10px;
}

.tac {
    text-align: center;
}

.show_pc {
    display: block;
}

.show_sp {
    display: none;
}


/* pc ヘッダー */
.header {
    display: flex;
    width: 100%;
    background-color: #fff;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 3;
    height: 100px;
}

.header-logo {
    width: 124px;
    padding: 20px 0;
    margin-left: 40px;
}

.nav {
    margin: 0 0 0 auto;
}

.nav a {
    color: #333;
}

header .nav li {
    list-style: none;
    display: inline-block;
    padding-right: 40px;
}

header img {
    width: 100px;
    padding: 10px 0 10px 10px;
}

@media (max-width: 540px) {
    header {
        height: 72px;
        position: fixed;
        top: 0;
    }
}

/* sp ヘッダー */

.sp-header {
    width: 100%;
    height: 72px;
    background-color: #fff;
    position: fixed;
    z-index: 2;
}
.sp-header .header-logo {
    width: 84px;
    padding: 10px 0;
    margin-left: 15px;
}

/* ハンバーガーボタン */
.hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;

}

.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 10px;
}

.hamburger span:nth-child(2) {
    top: 20px;
}

.hamburger span:nth-child(3) {
    top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    width: 0px;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.hamburger.active span:nth-child(1) {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
}

.hamburger.active span:nth-child(3) {
    -webkit-transform: translateY(-16px) rotate(90deg);
    -ms-transform: translateY(-16px) rotate(90deg);
    -o-transform: translateY(-16px) rotate(90deg);
    transform: translateY(-16px) rotate(90deg);
}


.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    /* color: #000; */
    background: #fff;
    /* text-align: center; */
    transform: translateY(-100%);
    transition: all 0.9s;
    width: 100%;
}

.globalMenuSp ul {
    /* background: #ccc; */
    /* margin: 0 auto; */
    padding: 0;
    width: 100%;
    margin-left: 60px;
}

.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    /* border-bottom: 1px solid #fff; */
}

.globalMenuSp ul li:last-child {
    /* padding-bottom: 50px; */
    margin-bottom: 50px;
    border-bottom: none;
}

.globalMenuSp ul li:hover {
    background: #ddd;
}

.globalMenuSp ul li a {
    display: block;
    color: ;
    padding: 20px 0;
    text-decoration: none;
}

.globalMenuSp-ul-li-a-first-child {
    margin-top: 30px;
}

/* このクラスを、jQueryで付与・削除する */
.globalMenuSp.active {
    transform: translateY(0%);
}

/* トップ画像 */
.top_concept {
    margin: 100px 0 0 0;
}

.sp-top-img {
    margin: 0 0px 0 0px;
}

.top-img-section {}

.top_video {
    margin: 95px 0 0 0;
}

.top_video video {
    width: 100%;
}

/* 768 */
@media screen and (max-width: 520px) {
    .top_concept {
        margin: 72px 10px 0 10px;

    }

    .top_video {
        margin: 70px 0 0 0;
    }
}

/* 共通 */
.sub-title {
    font-size: 20px;
    font-family: 'Noto Serif JP', 'serif';
    font-weight: 900;
    /* font-weight: bolder; */
    text-align: center;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    /* 垂直中心 */
    justify-content: center;
    /* 水平中心 */
}

.sub-title::before, .sub-title::after {
    content: "";
    border-bottom: 0.1px solid;
    width: 1.5em;
}

.sub-title::before {
    margin-right: 10px;
}

.sub-title::after {
    margin-left: 10px;
}

/* トップページ about_area */
.about {
    margin: 120px 0 0 0;
}

.about-text {
    text-align: center;
    line-height: 2;
    letter-spacing: 0.1em;
    margin-top: 40px;
}

.about-img {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 180px auto;
}

.about-img-left {
    max-width: 450px;
    margin-left: 20px;
}

.about-img-right {
    max-width: 508px;
    margin-top: 270px;
}

@media screen and (max-width: 1024px) {
    .about-img {
        width: 90%;
        display: flex;
        justify-content: space-between;
        margin: 180px auto;
    }

    .about-img-left {
        max-width: 450px;
        margin-left: 20px;
        width: 70%;
    }

    .about-img-right {
        max-width: 508px;
        margin-top: 10em;
        margin-left: 50px;
        width: 70%;
    }
}

@media screen and (max-width: 540px) {
    .about {
        margin: 120px 0 0 0;
    }

    .about-text {
        font-size: 12px;
        text-align: center;
        line-height: 2.3;
        letter-spacing: 0.1em;
        margin-top: 40px;
    }

    .about-img {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin: 120px auto;
        flex-direction: column;
    }

    .about-img-left {
        width: 100%;
        margin-left: 0px;
    }

    .about-img-right {
        width: 100%;
        margin-top: 20px;
        margin-left: 0px;
    }
}

/* ニュース news */
.news-bg-color {
    background-color: #F2F2F2;
}

.news-title {
    padding: 80px 0 40px;
}

.news-list {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news-list-item {
    max-width: 341px;
    width: 100%;
}

.news-day-category {
    display: flex;
    margin-top: 20px;
}

.news-day-category li:first-child {
    color: #CBCBCB;
}

.news-day-category li:nth-child(2) {
    font-size: 12px;
    border: solid 1px;
    padding: 0 15px;
    margin-left: 20px;
    max-width: 110px;
}

.news-list-item-title {
    font-size: 14px;
    margin-top: 10px;
    line-height: 2;
}

.news-list-item-text {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0;
    margin-bottom: 50px;
}

.news-btn {
    padding: 16px 0 80px;
}

.news-btn a {
    padding: 9px 16px !important;
    letter-spacing: 0.1em;
    color: #fff;
    font-size: 14px;
    text-align: center;
    width: 220px;
    margin: 0 auto;
    color: #fff;
    background: #333;
}

@media screen and (max-width: 1150px) {
    .news-list {
        max-width: 1024px;
        width: 100%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin: 0 auto;
    }

    .news-list-item {
        max-width: 500px;
        width: 40%;
        margin: 0 20px;
    }
}

@media screen and (max-width: 540px) {
    .news-bg-color {
        background-color: #F2F2F2;
    }

    .news-title {
        padding: 80px 0 40px;
    }

    .news-list {
        max-width: 355px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .news-list-item {
        max-width: 355px;
        width: 100%;
    }

    .news-day-category {
        display: flex;
        margin-top: 20px;
    }

    .news-day-category li:nth-child(2) {
        font-size: 14px;
        border: solid 1px;
        padding: 0 15px;
        margin-left: 20px;
        max-width: 110px;
    }

    .news-list-item-title {
        font-size: 14px;
        margin-top: 10px;
        line-height: 2;
    }

    .news-list-item-text {
        font-size: 14px;
        line-height: 2;
        letter-spacing: 0;
        margin-bottom: 50px;
    }

    .news-btn {
        padding: 0px 0 50px;
    }

    .news-btn a {
        padding: 9px 16px !important;
        letter-spacing: 0.1em;
        color: #fff;
        font-size: 14px;
        text-align: center;
        width: 220px;
        margin: 0 auto;
        color: #fff;
        background: #333;
    }

}

/* スライド */
.slide img {
    width: inherit;
    height: inherit;
    margin: 0;
    padding: 0;
    border: none;
}

.slide {
    white-space: nowrap;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide> :first-child {
    animation-name: slide;
    animation-duration: 30s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

@keyframes slide {
    0% {
        margin-left: 0;
    }

    33% {
        margin-left: -100%;
    }

    66% {
        margin-left: -200%;
    }

    100% {
        margin-left: -300%;
    }
}

.center {
    margin: auto;
}

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


/* Staff */
.staff {
    margin-top: 180px;
}

.staff-list {
    margin-top: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.staff-list-item {
    margin-bottom: 50px;
    width: calc(100% / 3);
}

.staff-list-item-wrap {
    max-width: 200px;
}

.wrap-left {
    margin-right: auto;
}

.wrap-center {
    margin: 0 auto;
}

.wrap-right {
    margin-left: auto;
}

.staff-position {
    margin-top: 10px;
    color: #CBCBCB;
    font-size: 12px;
}

.icn_insta {
    max-width: 22px;
    margin-top: 5px;
}

@media screen and (max-width: 1024px) {
    .staff-list {
        width: 80%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin: 80px auto 0;
    }

    .staff-list-item {
        margin-bottom: 50px;
        width: calc(100% / 3);
    }

    .staff-list-item-wrap {
        max-width: 220px;

    }

    .wrap-left {
        margin: 0 auto;
        padding: 0 10px;
    }

    .wrap-center {
        margin: 0 auto;
        padding: 0 10px;
    }

    .wrap-right {
        margin: 0 auto;
        padding: 0 10px;
    }
}

@media screen and (max-width: 540px) {
    .staff {
        margin-top: 180px;
    }

    .staff-list {
        margin: 80px auto 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .staff-list-item {
        margin: 0 auto 80px;
        width: 100%;
        max-width: 200px;
    }

    .staff-list-item-wrap {
        max-width: 200px;
    }
    .wrap-left {
        margin: 0 auto;
        padding: 0 0px;
    }

    .wrap-center {
        margin: 0 auto;
        padding: 0 0px;
    }

    .wrap-right {
        margin-left: auto;
        padding: 0 0px;
    }

    .staff-position {
        margin-top: 10px;
        color: #CBCBCB;
        font-size: 12px;
    }

    .icn_insta {
        max-width: 22px;
        margin-top: 5px;
    }
}

/* ========================
アコーディオンのためのcss 
===========================*/
.toggle_title {
    font-weight: bold;
    line-height: 42px;
    margin: 0;
    /* padding: 20px 0 0 10px; */
    position: relative;
}

.toggle_btn {
    content: "";
    display: inline-block;
    width: 32px;
    height: 57px;
    background: url(../img/open.png) no-repeat right top;
    background-size: contain;
    position: absolute;
    top: -30px;
    right: 0;
    cursor: pointer;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.toggle_btn.selected {
    content: "";
    display: inline-block;
    width: 32px;
    height: 57px;
    top: -30px;
    /* right: 20px; */
    background: url(../img/close.png) no-repeat right top;
    background-size: contain;
}

.toggle_txt {
    display: none;
    width: 200px;
    padding-top: 25px;
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: 0;
}

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

/* アクセス */
.access {
    margin-top: 125px;
    margin-bottom: 180px;
}

.access-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.access-map {
    max-width: 560px;
    max-height: 455px;
    width: 100%;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.access-map iframe:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}

.access-information {
    max-width: 253px;
}

.access-information-title {
    /* position: relative; */
    color: #BCBCBC;
    border-bottom: 1px solid;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
}

.access-information-text {
    margin: 20px 0 30px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
}

@media screen and (max-width: 1024px) {
    .access-wrap {
        display: flex;
        justify-content: space-between;
        width: 90%;
        margin: 40px auto 0;
    }

    .access-map {
        width: 495px;
        height: 455px;
        padding: 0 20px;
    }

    .access-information {
        max-width: 293px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 780px) {
    .access-wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        margin: 40px auto 0;
    }

    .access-map {
        width: 475px;
        height: 455px;
        padding: 0 10px;
        margin: 0 auto;
    }

    .access-information {
        max-width: 400px;
        width: 100%;
        padding: 0 10px;
        margin: 50px auto 0;
    }
}

@media screen and (max-width: 540px) {
    .access {
        margin-top: 65px;
        margin-bottom: 120px;
    }

    .access-wrap {
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
        flex-direction: column;
    }

    .access-map {
        width: 355px;
        height: 288px;
        margin: 0 auto;
        padding: 0 0px;
    }

    .access-information {
        max-width: 253px;
        margin: 50px auto 0;
        padding: 0 0px;
    }

}

/* フッター */
footer {
    height: 100%;
}

.footer-icon {
    margin-top: 20px;
    margin-right: 40px;
    display: flex;
}

.instagram {
    width: 33px;
    margin-right: 15px;
    margin-left: auto;
    height: 33px;
}

.line {
    width: 33px;
    height: 33px;
}

.copyright {
    font-size: 10px;
    text-align: center;
    color: #BABABA;
    margin-bottom: 20px;
}

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

@media screen and (max-width: 540px) {
    footer {
        margin-top: 120px;
        height: 100%;
    }

    .footer-icon {
        margin-top: 20px;
        margin-right: auto;
        margin-left: auto;
        display: flex;
    }

    .instagram {
        width: 33px;
        /* margin-right: auto; */
        margin-left: auto;
        height: 33px;
    }

    .line {
        width: 33px;
        height: 33px;
        margin-right: auto;
        /* margin-left: auto; */
    }

    .copyright {
        font-size: 10px;
        text-align: center;
        color: #BABABA;
        margin-top: 25px;
        margin-bottom: 20px;
    }
}

/* menuページ */
.main-bgc-gray {
    background-color: #F2F2F2;
    margin-top: 72px;
    padding: 80px 50px 180px;
}

.main-bgc_fff {
    background-color: #fff;
    margin: 0px auto;
    padding: 80px 30px 0;
}

.menu_list_section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    width: 100%;
    margin: 40px 0 0 0;
}

.menu_list_item {
    max-width: 368px;
    width: 100%;
    padding: 0 20px;
}

.menu_list_item_title {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.15em;
    font-family: 'Noto Serif JP','serif';
    /* font-weight: 700; */
}

.menu_list_item_title_line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.menu_list_item_title_line::after {
    content: "";
    border-bottom: 0.1px solid;
    width: 100%;
    margin-left: 10px;
}

.menu_list_item_area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.menu_list_item_area_text {
    font-size: 14px;
    line-height: 2;
}

.menu_text {
    font-size: 12px;
    line-height: 1.75;
    margin: 40px 0 30px;
}

.menu_btn {
    width: 220px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.menu_btn a {
    padding: 9px 16px !important;
    letter-spacing: 0.1em;
    color: #fff;
    font-size: 14px;
    text-align: center;
    background-color: #333;
}

.menu_img_section {
    display: flex;
    flex-direction: row;
    margin: 80px 0 0 0;
}

.menu_left_img {
    max-width: 335px;
    margin-left: 14px;
}

.menu_left_img img {
    width: 100%;
}

.menu_right_img {
    max-width: 378px;
    margin-left: auto;
    margin-right: 14px;
    margin-top: 200px;
    margin-bottom: 95px;
}

.menu_right_img img {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .menu_list_section {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 0;
        width: 100%;
        margin: 40px 0 0 0;
    }

    .menu_list_item {
        max-width: 368px;
        width: 100%;
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .menu_text {
        font-size: 12px;
        line-height: 1.75;
        margin: 40px 0 30px;
        padding: 0 50px;
    }

    .menu_img_section {
        display: flex;
        flex-direction: row;
        margin: 120px 0 0 0;
        flex-wrap: wrap;
    }

    .menu_left_img {
        max-width: 335px;
        margin: 0 auto;
    }
    
    .menu_left_img img {
        width: 100%;
    }
    
    .menu_right_img {
        max-width: 335px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        margin-bottom: 80px;
    }
    
    .menu_right_img img {
        width: 100%;
    }
}

@media screen and (max-width: 540px) {
    .main-bgc-gray {
        background-color: #F2F2F2;
        margin-top: 72px;
        padding: 50px 10px 180px;
    }
    
    .main-bgc_fff {
        background-color: #fff;
        margin: 0px auto;
        padding: 80px 14px 0;
    }

    .menu_list_item {
        max-width: 368px;
        width: 100%;
        padding: 0 0px;
        margin-bottom: 50px;
    }

    .menu_text {
        font-size: 12px;
        line-height: 1.75;
        margin: 40px 0 30px;
        padding: 0 0px;
    }
}

/* リクルートページ */
.recruit_section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.recruit_section_left {
    max-width: 440px;
    padding-right: 20px;
}

.recruit_section_right {
    max-width: 440px;
    padding-left: 20px;
}

.recruit_title {
    border-bottom: solid 1px;
    padding-bottom: 5px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    margin-top: 80px;
    margin-bottom: 20px;
}

.recruit_text {
    line-height: 1.5;
    letter-spacing: 0.08em;
}
.recruit_text p{
    text-indent: -1em;
    padding-left: 1em;
}

.recruit_contact {
    margin: 80px 0 0 0;
    text-align: center;
}

.recruit_contact_application {
    max-width: 90px;
    margin: 0 auto;
}

.recruit_contact_mail {
    background-color: #333;
    width: 220px;
    margin: 20px auto 0;
}

.recruit_contact_mail a {
    padding: 9px 16px !important;
    letter-spacing: 0.1em;
    color: #fff;
    font-size: 14px;
}

.recruit_contact_tel {
    background-color: #333;
    width: 220px;
    margin: 20px auto 10px;
}

.recruit_contact_tel a {
    padding: 9px 16px !important;
    letter-spacing: 0.1em;
    color: #fff;
    font-size: 14px;
}

.recruit_contact_text {
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: 0.08em;
    padding-bottom: 80px;
}

@media screen and (max-width: 1100px) {
    .recruit_section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .recruit_section_left {
        max-width: 420px;
        padding-right: 0px;
        padding-left: 0px;
        margin: 0 auto;
    }
    
    .recruit_section_right {
        max-width: 420px;
        padding-left: 0px;
        padding-right: 0px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 540px) {
    .recruit_section_left {
        max-width: 335px;
        padding-right: 0px;
        padding-left: 0px;
        margin: 0 auto;
    }
    
    .recruit_section_right {
        max-width: 335px;
        padding-left: 0px;
        padding-right: 0px;
        margin: 0 auto;
    }
}

/* NEWS一覧ページ */
.news_all_list_section {
    display: flex;
    margin-top: 62px;
}

.news_all_list_item_section {
    max-width: 930px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: start;
}


.news_all_list_item {
    width: calc(100% / 3);
    padding: 18px;
}

.news_all_list_item_img {
    
}

.news_all_list_item_day_area {
    display: flex;
    margin-top: 15px;
}

.news_all_list_item_time {
    font-size: 12px;
    color: #CBCBCB;
    line-height: 1.5;
    margin-right: 20px;
}

.news_all_list_item_category {
    font-size: 13px;
    line-height: 1.5;
    padding: 0px 15px;
    border: solid 1px #333;
    display: inline-block;
}

.news_all_list_item_title {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin-top: 10px;
}

.news_all_list_sidebar_section {
    max-width: 170px;
    width: 100%;
}

.news_all_list_sidebar_day_section {
    margin-top: 18px;
    padding-left: 18px;
}

.news_all_list_sidebar_staff_section {
    margin-top: 36px;
    padding-left: 18px;
}

.news_all_list_sidebar_title {
    max-width: 94px;
    height: 20px;
    text-align: center;
    background-color: #333;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.08em;
    margin: 0;
}

.news_all_list_sidebar_day-list {
    /* max-width: 110px; */
    width: 100%;
    /* margin: 0 auto; */
    margin-top: 13px;
}

.news_all_list_sidebar_day-list li {
    margin:  0;
    font-size: 11px;
    line-height: 2.3;
    letter-spacing: 0;
}

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

}

@media screen and (max-width: 540px) {

}