@charset "UTF-8";

:root {
    --bl: #000;
    --gray-02: #ccc;
    --grad-01: linear-gradient(60deg, var(--MAIN) 0%, var(--MAIN) 40%, var(--ACC) 100%);
    --grad-02: linear-gradient(90deg, var(--MAIN) 0%, var(--ACC) 100%);
    --transition: all 0.3s ease-in-out;
    --oversize: calc((100% - 100vw) / 2);
}


/* ==================================
リセット・調整
===================================== */
:where(img) {
    /* max-width: 100%; */
    height: auto;
    vertical-align: bottom;
}

/*---------- アクセシビリティ ----------*/
i,
[class*="material-icons"],
[class*="material-symbols"] {
    speak: non e;
}

/*---------- ボタンのアイコン変更 ----------*/
/* :where(.lib-link__btn):not([class*="ico-after-"]):not([class*="ico-before-"]) > .txt:after {
content: "\ea03";
font-size: 1em;
} */

/*---------- tableの調整 ----------*/
/* :where(table) > thead th:first-child {
border-left-color: var(--LGRY);
}
:where(table) > thead th {
border-top-color: var(--LGRY);
}
:where(table) > thead th:last-child {
border-right-color: var(--LGRY);
}
:where(table) th,
:where(table) > thead {
border: var(--WHT) 1px solid;
background-color: var(--LGRY);
color: var(--DEF);
}
:where(table) tbody > tr > th:first-child {
border-left-color: var(--LGRY);
}
:where(table) td {
border: var(--LGRY) 1px solid;
} */
@media print,
screen and (min-width: 768px) {
    :where(table.lib-table__01) th {
        width: 25%;
    }
    .lib-scroll__outer :where(table.lib-table__02) tbody>tr>th {
        width: 25%;
    }
}


/* ==================================
タイポ
===================================== */
/* ゴシックとか */
.ff-notosans {
    font-family: "Noto Sans JP", serif;
}
.ff-lato {
    font-family: "Lato", sans-serif;
    /* letter-spacing: 0.05rem; */
}
.ff-oswald {
    font-family: "Oswald", sans-serif;
}
.ff-poppins {
    font-family: "Poppins", sans-serif;
}
.ff-zenmarugo {
    font-family: "Staatliches", sans-serif;
}
.ff-montserrat {
    font-family: "Montserrat", sans-serif;
}
.ff-staatliches {
    font-family: "Zen Maru Gothic", sans-serif;
}
.ff-m-plus-rounded-1c {
    font-family: "M PLUS Rounded 1c", sans-serif;
    transform: rotate(0.07deg);
}
/* 明朝とか */
.ff-notoserif {
    font-family: "Noto Serif JP", serif;
}
.ff-yumincho {
    font-family: "Yu Mincho", "YuMincho", serif;
}

.fw-600 {
    font-weight: 600 !important;
}
.fw-800 {
    font-weight: 800 !important;
}
.fw-900 {
    font-weight: 900 !important;
}


/* ==================================
ユーティリティー
===================================== */
/*---------- 画像の比率 ----------*/
.u-aspect img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
}
/* .u-aspect.--contain img {
object-fit: contain;
} */
.u-aspect.--16x9 img {
    aspect-ratio: 16 / 9;
}
.u-aspect.--4x3 img {
    aspect-ratio: 4 / 3;
}
.u-aspect.--21x9 img {
    aspect-ratio: 21 / 9;
}
.u-aspect.--2x1 img {
    aspect-ratio: 2 / 1;
}
.u-aspect.--3x1 img {
    aspect-ratio: 3 / 1;
}
.u-aspect.--1x1 img {
    aspect-ratio: 1 / 1;
}
.u-aspect.--7x8 img {
    aspect-ratio: 7 / 8;
}
.u-aspect.--9x16 img {
    aspect-ratio: 9 / 16;
}
.u-aspect.--3x4 img {
    aspect-ratio: 3 / 4;
}
.u-aspect-b img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.u-aspect.--book {
    width: 100%;
    aspect-ratio: 1 / 1.4141;
    height: auto;
}
.u-aspect.--book img {
    /* aspect-ratio: 1 / 1.4141; */
    /* box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4); */
    box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.4);

}
.u-aspect.--book.month-layout {
    width: 80%;
    aspect-ratio: auto !important;
}
.single-books .u-aspect.--book {
    width: 100%;
    height: auto;
}
#top-month .u-aspect.--book {
    width: 100%;
    /* aspect-ratio: 1 / 1.4141; */
    height: 500px;
}

@media print,
screen and (max-width: 768px) {
    .u-aspect.--book {
        width: 100%;
        aspect-ratio: 1 / 1.02;
        /* height: 150px; */
    }
    #top-month .u-aspect.--book {
        height: auto;
    }
}


/*---------- 角丸 ----------*/
[class*="u-rounded-"] {
    overflow: hidden;
}
.u-rounded-_25 {
    border-radius: 0.25rem !important;
}
.u-rounded-_5 {
    border-radius: 0.5rem !important;
}
.u-rounded-_75 {
    border-radius: 0.75rem !important;
}
.u-rounded-1 {
    border-radius: 1rem !important;
}
.u-rounded-1_5 {
    border-radius: 1.5rem !important;
}
.u-rounded-1_25 {
    border-radius: 1.25rem !important;
}
.u-rounded-2 {
    border-radius: 2rem !important;
}
.u-rounded-3 {
    border-radius: 3rem !important;
}
.--t-only {
    border-bottom-right-radius: unset !important;
    border-bottom-left-radius: unset !important;
}
.--b-only {
    border-top-right-radius: unset !important;
    border-top-left-radius: unset !important;
}
.--r-only {
    border-top-left-radius: unset !important;
    border-bottom-left-radius: unset !important;
}
.--l-only {
    border-top-right-radius: unset !important;
    border-bottom-right-radius: unset !important;
}

/*---------- はみ出させる ----------*/
.u-over {
    margin-inline: var(--oversize);
}
/* 右に */
.u-r-over {
    margin-right: var(--oversize);
}
@media print,
screen and (min-width: 768px) {
    .u-r-md-over {
        margin-right: var(--oversize);
    }
}
@media print,
screen and (min-width: 992px) {
    .u-r-lg-over {
        margin-right: var(--oversize);
    }
}
/* 左に */
.u-l-over {
    margin-left: var(--oversize);
}
@media print,
screen and (min-width: 768px) {
    .u-l-md-over {
        margin-left: var(--oversize);
    }
}
@media print,
screen and (min-width: 992px) {
    .u-l-lg-over {
        margin-left: var(--oversize);
    }
}

/*---------- 中央配置 ----------*/
.l-v-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.l-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*---------- Swiper ----------*/
/* 滑らかに */
.u-swiper-liner .swiper-wrapper {
    transition-timing-function: linear;
}


/* ========================================
パーツ
======================================== */
/*---------- アイコン（アイコンフォント想定。大きさはp-*やfs-、個別にwidth・height指定して調整。） ----------*/
.c-icon {
    aspect-ratio: 1 / 1;
    speak: none;
}
.c-icon img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    speak: none;
}

/*---------- アイコンとテキスト（ボタンによく使う） ----------*/
.c-icon-text {
    display: grid !important;
    grid-template-columns: repeat(2, auto);
    column-gap: 0.5em;
    justify-content: center;
    align-items: center;
}
/* アイコンだけ右寄せ */
.c-icon-text.--r {
    grid-template-columns: 1fr auto;
}
/* アイコンだけ左寄せ */
.c-icon-text.--l {
    grid-template-columns: auto 1fr;
}
@media print,
screen and (min-width: 992px) {
    .c-icon-text {
        column-gap: 1em;
    }
}

/*---------- 背景のベース ----------*/
.p-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    /* height: 22.5rem; */
}
.home .p-bg {
    height: auto;
}
.page-id-5195 .p-bg {
    height: 22.5rem;
}

/* 疑似要素のファンデーション */
.p-bg::before,
.p-bg::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    speak: none;
}
/* 黒透明フィルター */
.p-bg.--bl::before {
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bl);
    opacity: 0.3;
}
/* 白透明フィルター */
.p-bg.--wh::before {
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--WHT);
    opacity: 0.3;
}
/* メインカラーフィルター */
.p-bg.--main::before {
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--MAIN);
    opacity: 0.3;
}
/* アクセントカラーフィルター */
.p-bg.--accent::before {
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--ACC);
    opacity: 0.3;
}
.p-bg.--md::before {
    opacity: 0.5;
}
.p-bg.--strong::before {
    opacity: 0.7;
}
.p-bg.--strongest::before {
    opacity: 0.9;
}
.lib-hero__title {
    font-weight: 300;
}
/*---------- ホバーアクション ----------*/
.c-hover {
    transition: var(--transition);
    color: inherit;
    text-decoration: none;
    font-weight: 300;
}
.c-hover:hover {
    text-decoration: none;
}
.c-hover.--underline:hover {
    text-decoration: underline;
}
.c-hover.--bg-lmain:hover {
    background-color: var(--LMAIN);
}
.c-hover.--bg-gry:hover {
    background-color: var(--GRY);
}
.c-hover.--text-main:hover {
    color: var(--MAIN) !important;
}
.c-hover.--opacity:hover {
    opacity: 0.8;
}
.c-hover.--up:hover {
    transform: translateY(-0.125rem);
}
.c-hover.--scale-up img {
    transition: var(--transition);
}
.c-hover.--scale-up:hover img {
    transform: scale(1.1);
}

/*---------- アコーディオンボタン（ヘッダー以外にも汎用可能） ----------*/
.c-btn-accordion {
    top: 0;
    right: 0;
    /* height: 2.5em;
	width: 2.5em; */
    background-color: transparent;
    border: none;
}
.c-accordion-icon {
    display: block;
    width: 100%;
    height: 100%;
}
.c-accordion-icon::before,
.c-accordion-icon::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background-color: currentColor;
    transition: all 0.3s ease-in-out;
}
.c-accordion-icon::before {
    width: 1em;
    height: 2px;
}
.c-accordion-icon::after {
    width: 2px;
    height: 1em;
}
.c-accordion-icon.is-active::after {
    opacity: 0;
}

/* ==================================
ヘッダー
===================================== */
/*---------- アコーディオンボタン（ヘッダー以外にも汎用可能） ----------*/
.c-btn-accordion {
    top: 0;
    right: 0;
    height: 2.5em;
    width: 2.5em;
    background-color: transparent;
    border: none;
}
.c-accordion-icon {
    display: block;
    width: 100%;
    height: 100%;
}
.c-accordion-icon::before,
.c-accordion-icon::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background-color: currentColor;
    transition: all 0.3s ease-in-out;
}
.c-accordion-icon::before {
    width: 1em;
    height: 2px;
}
.c-accordion-icon::after {
    width: 2px;
    height: 1em;
}
.c-accordion-icon.is-active::after {
    opacity: 0;
}


/* ハンバーガーボタン調整 */
/* .p-header .lib-menu__btn::after {
content: "Menu";
display: block;
position: absolute;
right: 0;
bottom: 0.5em;
left: 0;
line-height: 1;
font-family: "Oswald";
text-transform: uppercase;
color: var(--WHT);
}
.p-header .lib-menu__btn > .line:nth-of-type(1) {
top: calc(50% - 1px - 1em);
}
.p-header .lib-menu__btn > .line:nth-of-type(2) {
top: calc(50% - 1px - 0.5em);
}
.p-header .lib-menu__btn > .line:nth-of-type(3) {
top: calc(50% - 1px);
bottom: unset;
}
.p-header .lib-menu__btn.is-open::after {
content: "Close";
}
.p-header .lib-menu__btn[aria-expanded="true"] > .line:nth-of-type(1) {
-webkit-transform: translateY(calc(50% - 1px + 0.5em)) rotate(-45deg);
transform: translateY(calc(50% - 1px + 0.5em)) rotate(-45deg);
}
.p-header .lib-menu__btn[aria-expanded="true"] > .line:nth-of-type(3) {
-webkit-transform: translateY(calc(50% - 1px - 0.5em)) rotate(45deg);
transform: translateY(calc(50% - 1px - 0.5em)) rotate(45deg);
} */


.lib-header__bar .u-btn .searchform .lib-search__input {
    width: 8rem;
    font-size: .75rem;
}
.lib-header__bar .u-btn .searchform .lib-search__btn {
    width: 2rem;
}
.lib-header__bar .u-btn .searchform .lib-search__btn::before {
    font-size: .875rem;
}
.lib-header__bar .u-btn .searchform .lib-search__input,
.lib-header__bar .u-btn .searchform .lib-search__btn {
    height: 2rem;
}


/* ========================================
フッター
======================================== */


/* ========================================
TOP
======================================== */
/*---------- MV ----------
.--top-02 .lib-fv__thumb {
    height: auto;
}
.--top-02 .lib-fv__thumb img {
    /* aspect-ratio: 16/9;
	object-fit: unset;
    height: auto;
    max-height: 500px;
} */
/* .--top-02 .lib-fv__thumb img {
aspect-ratio: 4/3;
object-fit: contain;
}
@media print, screen and (min-width: 768px) {
.--top-02 .lib-fv__thumb img {
aspect-ratio: 16/9;
object-fit: cover;
}
} */

/* .--top-02 .swiper-slide-prev,
.--top-02 .swiper-slide-next {
transition: var(--transition);
filter: brightness(0.5);
} */

.--top-02 .lib-fv__slider .lib-swiper__btn.--prev {
    left: calc(16.666vw - 1rem);
}
.--top-02 .lib-fv__slider .lib-swiper__btn.--next {
    right: calc(16.666vw - 1rem);
}
@media print,
screen and (min-width: 768px) {
    .--top-02 .lib-fv__slider .lib-swiper__btn.--prev {
        left: calc(25vw - 1.25rem);
    }
    .--top-02 .lib-fv__slider .lib-swiper__btn.--next {
        right: calc(25vw - 1.25rem);
    }
    .lib-fv__control {
        bottom: 3px;
        padding-right: 0;
    }
}
@media print,
screen and (min-width: 1500px) {
    .--top-02 .lib-fv__slider .lib-swiper__btn.--prev {
        left: calc(30vw - 1.25rem);
    }
    .--top-02 .lib-fv__slider .lib-swiper__btn.--next {
        right: calc(30vw - 1.25rem);
    }
}

.--top-02-filter::before,
.--top-02-filter::after {
    top: 0;
    bottom: 0;
    width: 16.6666%;
    background-color: var(--DGRY);
    opacity: 0.7;
    z-index: 2;
}
.--top-02-filter::before {
    left: 0;
}
.--top-02-filter::after {
    right: 0;
}
@media print,
screen and (min-width: 768px) {
    .--top-02-filter::before,
    .--top-02-filter::after {
        width: 25%;
    }
}
@media print,
screen and (min-width: 1500px) {
    .--top-02-filter::before,
    .--top-02-filter::after {
        width: 30%;
    }
}



/* ========================================
下層
======================================== */

/* ==================================
サイトマップ
===================================== */
.sitemap-block ul.wsp-pages-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -ms-flex-pack: justify !important;
    /* justify-content: space-between !important; */
}
.sitemap-block ul.wsp-pages-list li {
    list-style: none;
    width: calc(33% - 20px);
    border-top: none;
    /* margin-bottom: 30px; */
    padding-left: 0;
}
.sitemap-block ul.wsp-pages-list li a {
    display: block;
    padding: 10px 10px 20px 30px;
    position: relative;
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
    padding-right: 50px;
}
.sitemap-block ul.wsp-pages-list li a:hover {
    background-color: #f5f5f5;
}
.sitemap-block ul.wsp-pages-list li a::before {
    content: "";
    position: absolute;
    top: 42%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 1;
    background: url(/sotechsha/wp-content/uploads/arrow.png) no-repeat 90% / 16px auto;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

ul.children li a::before {
    display: none;
}

.sitemap-block ul.wsp-pages-list li a::after {
    display: none;
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: -webkit-linear-gradient(130deg, #0a52a0 0%, #46b1d1 100%);
    background: linear-gradient(130deg, #707070 0%, #989898 100%);
    z-index: 0;
    padding: 20px;
    border-radius: 100px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.sitemap-block ul li.page_item_has_children a {
    border-bottom: none;
}
.sitemap-block ul.children li {
    width: 100%;
    border: none;
    margin-bottom: 0;
}
.sitemap-block ul.children li a {
    font-size: 16px;
    padding: 0px 10px 10px 30px;
    padding-right: 50px;
}
.sitemap-block ul.children li a::after {
    display: none;
}
.sitemap-block ul.children li a::before {
    /* background: url(/sotechsha/wp-content/uploads/arrow.png) no-repeat 90% / 16px auto; */
}
.sitemap-block .wsp-pages-list li:before {
    display: none;
}
:where(ol:not([class*=lib]))>li~li,
:where(ul:not([class*=lib]))>li~li {
    margin-top: 0 !important;
}
:where(a):where(:not([class*=lib-])):where(:not([class*=hover-])):hover {
    color: var(--LINK);
    text-decoration: underline !important;
}
.sitemap-block ul li.page_item_has_children li:last-child a {
    border-bottom: none !important;
}
.single-books .u-aspect img {
    height: auto;
}

@media only screen and (max-width: 690px) {
    .sitemap-block ul.wsp-pages-list li {
        width: 100%;
        margin-bottom: 0px;
    }
    .breadcrumbs.lib-breadcrumb__list span:nth-child(3) {
        white-space: normal !important;
        word-break: break-word;
        display: inline-block;
        max-width: 80%;
    }
}

/* ========================================
Contactform - お問い合わせフォーム
======================================== */
/* .wpcf7 {
width: 100%;
margin: 0 0 2.5em !important;
padding: 0;
border: 1px solid #ddd;
background: #fafafa;
font-size: 14px;
}
.wpcf7 form {
margin: 1.5em 1.5em 0;
}
.wpcf7 p {
margin-bottom: 1em;
font-size: 16px;
}
.wpcf7 input,
.wpcf7 textarea {
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
padding: 8px;
border: 1px solid #ccc;
line-height: 1.2;
}
.wpcf7 select,
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
width: auto;
max-width: 97%;
padding: 8px;
border: 1px solid #ccc;
}
.wpcf7 select,
.wpcf7 .wpcf7-list-item-label {
font-size: 14px;
line-height: 1.2;
}
.wpcf7 .wpcf7-list-item {
display: block;
}
.wpcf7 textarea {
height: 300px;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
border: 1px solid #bbb;
outline: none;
} */
.wpcf7 .wpcf7-submit,
.wpcf7 .wpcf7-previous {
    -webkit-transition: all 0.3s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: relative;
    width: 225px;
    height: 48px;
    margin: 30px auto 0;
    border: none !important;
    outline: none;
    background-color: #333333;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}
.wpcf7 .wpcf7-submit:before,
.wpcf7 .wpcf7-submit:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.wpcf7 .wpcf7-submit:hover,
.wpcf7 .wpcf7-previous:hover {
    background-color: #666666;
}
.wpcf7 .wpcf7-submit .wpcf7-not-valid {
    background: pink;
}
.wpcf7 .wpcf7-submit .wpcf7-response-output {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    margin: 10px 0 0;
    padding: 8px 35px 8px 14px;
    border-radius: 4px;
}
.wpcf7 .wpcf7-submit .wpcf7-validation-errors {
    border: 1px solid #eed3d7;
    background-color: #f2dede;
    color: #b94a48;
}
.wpcf7 .wpcf7-submit .wpcf7-mail-sent-ok {
    border: 1px solid #bce8f1;
    background-color: #d9edf7;
    color: #3a87ad;
}
.wpcf7 .wpcf7-previous+br {
    display: none;
}
.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 2em;
    padding: 0;
    border: none;
    text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    color: #dc3232;
    font-size: 1em;
}

/* Style for DIVA dark ver. */
.wpcf7 {
    color: #000;
}

/* TOPページ */
.catch-midashi {
	border: 2px solid #f5f5f5; /* ゴールド #BEA744 */
	background-color: #c71c28; /* ネイビー #001650 */
	text-align: center;
	padding: 10px 0;
	margin-top: -40px;
	margin-bottom: -40px;
}
.catch-midashi p {
    color: #f5f5f5;
    font-size: 16px;
    font-weight: bold;
}
.catch-midashi img {
    width: 50px;
}
.business-bg {
    background-image: url(/sotechsha/wp-content/uploads/business-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.month-bg {
    background-image: url(/sotechsha/wp-content/uploads/month-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.recruit-bg {
    background-image: url(/sotechsha/wp-content/uploads/recruit-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.greeting-bg {
    background-image: url(/sotechsha/wp-content/uploads/greeting-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.first-r::first-letter {
    color: #C71C28;
}
.book-img {
    background-color: #F9F9F9;
    padding: 10%;
}
#top-business .lib-card__caption {
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
}
#top-business h2.title {
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
}
#top-pc .lib-card__caption {
    font-size: 1.25rem;
    font-weight: 300;
    text-align: center;
}
#top-pc h2.title {
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
}
#top-month .lib-card__caption {
    font-size: 1.25rem;
    font-weight: 300;
}
#top-month h2.title {
    font-size: 1.8rem;
    font-weight: 300;
}
#top-month .lib-card__title {
    font-size: 1.6rem;
    font-weight: 300;
}
#top-recruit .lib-card__caption {
    font-size: 1.25rem;
    font-weight: 300;
}
#top-recruit h2.title {
    font-size: 1.8rem;
    font-weight: 300;
}
#top-recruit .title-sub {
    font-size: 1.5625rem;
}
#top-business img,
#top-pc img,
#top-month img {
    box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.4);
}
.red-arrow {
    flex: 0.2;
    font-size: 24px;
}
.red-arrow i {
    color: #c71c28;
}
.red-arrow-2 {
    flex: 0.2;
    font-size: 16px;
}
.red-arrow-2 i {
    color: #c71c28;
    margin-left: 20px;
}
.page-title-jp {
    font-size: 2.5rem;
    font-weight: 300;
}
.page-title-en {
    font-size: 1.25rem;
    font-weight: 300;
}
.page-title-jp span {
    font-size: 1.875rem;
}
.lib-hero__outer {
    background-color: var(--WHT);
}
ol.custom-counter {
    counter-reset: item;
    list-style: none;
}
ol.custom-counter>li {
    counter-increment: item;
    position: relative;
    padding-left: 2em;
    margin-bottom: 14px;
}
ol.custom-counter>li::before {
    content: "(" counter(item) ")";
    position: absolute;
    left: 0;
}
ol.custom-counter ul {
    margin-top: 8px;
    list-style-type: none;
}
.lib-title__outer.--typeA :where(.title) {
    font-weight: 300;
    font-size: 1.8rem;
}
.fs-20 {
    font-size: 1.25rem;
}
.c-red {
    color: #C71C28;
}
.anker-block a {
    width: 24%;
    display: inline-block;
    border-left: 1px solid #CCCCCC;
    text-decoration: none;
    text-align: center;
}
.anker-block a:last-child {
    border-right: 1px solid #CCCCCC;
}
.com-waku {
    width: 94%;
    margin: auto;
    padding: 5%;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}
.com-t th {
    background-color: #FFF;
    border-left: none;
    border-bottom: var(--GRY) 1px solid;
    color: #333;
    padding: 20px 0;
}
.com-t tr:first-child th {
    border-top: none;
}
.com-t td {
    border-right: none;
    border-bottom: var(--GRY) 1px solid;
    color: #333;
}
.com-t tr:first-child td {
    border-top: none;
}
.his-t {
    border-collapse: separate;
    border-spacing: 10px;
}
.his-t th {
    background-color: #F5F5F5;
    border-left: none;
    color: #333;
}
.his-t td {
    border: none;
}
#s-book .lib-card__title {
    font-weight: 300;
}
#s-book .book-up {
    padding-bottom: 20px;
    border-bottom: var(--GRY) 1px solid;
}
#s-book .lib-cnt-017__table>dt {
    border-top: none;
    font-weight: 300;
    padding: 0;
}
#s-book .lib-cnt-017__table {
    border-bottom: none;
}
#s-book .lib-cnt-017__table>dd {
    border-top: none;
    padding-top: 0;
}
#s-book .lib-cnt-017__table span {
    color: #C71C28;
}
#s-book img {
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
#s-book .buy-banner img {
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.1);
}
.buy-banner img {
    width: 110px;
}
.kanren.book-up {
    margin-top: 60px;
    padding-bottom: 10px;
    border-bottom: var(--GRY) 1px solid;
}
.lib-cnt-025 .lib-tab__cover {
    border: var(--GRY) 1px solid;
    padding: 10px 30px;
}
.bg-f5 {
    background-color: #F5F5F5;
}
#s-book .buy.book-up {
    margin-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: var(--GRY) 1px solid;
}
.top-client .loop-slider .swiper-wrapper,
.top-client .loop-slider2 .swiper-wrapper {
    transition-timing-function: linear;
}
.top-client .swiper-container {
    overflow: visible;
}
.top-client .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}
.top-client img {
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.lib-breadcrumb__list {
    gap: 10px;
    scrollbar-color: #ffffff #ffffff !important;
}

/* WebKit系ブラウザ（Chrome, Safariなど） */
.lib-breadcrumb__list::-webkit-scrollbar {
    width: 8px;
    /* スクロールバーの幅 */
    height: 8px;
    /* スクロールバーの高さ */
    background-color: #fff;
    /* スクロールバーの背景色を白に設定 */
}

.lib-breadcrumb__list::-webkit-scrollbar-thumb {
    background-color: #fff;
    /* スクロールバーのつまみを白に設定 */
    border-radius: 4px;
    /* 角の丸み */
}

.lib-breadcrumb__list::-webkit-scrollbar-track {
    background-color: #fff;
    /* スクロールバーのトラックを白に設定 */
}

/* macOS 10.9.5 Chrome 向けに追加 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .lib-breadcrumb__list::-webkit-scrollbar-track-piece {
        background-color: #fff;
        /* トラックの背景色 */
    }

    .lib-breadcrumb__list::-webkit-scrollbar-corner {
        background-color: #fff;
        /* スクロールバーの角の背景色 */
    }
}

/* Firefox Quantum (57+) 以降 */
@-moz-document url-prefix() {
    .lib-breadcrumb__list {
        scrollbar-width: thin !important;
        scrollbar-color: #fff #fff !important;
    }
}
#top-month .swiper-button-next:after {
    content: "\ea01" !important;
    font-size: 12px !important;
}
#top-month .swiper-button-prev:after {
    content: "\ea01" !important;
    font-size: 12px !important;
    transform: rotate(0deg) translateY(0%) !important;
}
#top-month .swiper-button-prev {
    transform: rotate(180deg) translateY(0%) !important;
}
#top-month .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 0px) !important;
    ;
    left: auto;
}
.lib-footer__sns>li>a {
    justify-content: flex-start;
}
.btn_area {
    display: flex;
    margin-bottom: 5%;
    flex-wrap: wrap;
}
.tab_btn {
    background-color: #f3f3f3;
    border-radius: 5px;
    padding: 0.5% 2%;
    margin-right: 10px;
    margin-bottom: 10px;
}
.btn_area .tab_btn a {
    text-decoration: none;
}
.btn_area .tab_btn a:hover {
    text-decoration: underline;
}
.pnavi {
    display: flex;
    justify-content: center;
}
.rec-catch {
    padding-top: 10%;
}
a.page-numbers,
span.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333333;
    background-color: #fff;
    border: 1px solid #333333;
    width: 40px;
    height: 40px;
    border-radius: 0;
    margin: 0 8px;
}
a.page-numbers.current,
span.page-numbers.current {
    color: #FFF;
    background-color: #333333;
    border: 1px solid #333333;
}
.prev.page-numbers,
.next.page-numbers,
.page-numbers.dots {
    border: none;
    margin: 0;
}
.lib-search__inside {
    border: 1px solid #333333 !important;
    border-radius: 50px;
}
.lib-nav__btn>.txt:before {
    background-color: #C71C28;
}
.lib-nav__list li {
    border-top: none;
    border-left: 1px solid #333 !important;
    padding: 0 20px;
    margin-left: 0 !important;
    list-style: none;
}
/* .lib-nav__list li:last-child {
    border-left: none !important;
} */
.lib-footer__outer.lib-footer-BS02 .lib-footer__utility {
    background-color: #F5F5F5;
}
.lib-footer__outer.lib-footer-BS02 .lib-footer__copyright {
    background-color: #F5F5F5;
    color: #333333;
    font-size: 16px;
}
.lib-footer__outer {
    background-color: #F5F5F5;
}
.lib-footer__other>li a {
    font-weight: 300;
}
.lib-footer__gnav .lib-card__badge li a {
    font-size: 16px;
    border: none;
}
.lib-footer__gnav .lib-card__badge {
    gap: 5px 20px;
    /* justify-content: center; */
}
.lib-footer__other>li a span.txt {
    font-size: 16px;
}
.lib-child__item.--headline span.txt {
    border-left: 3px solid #c71c28;
    padding-left: 10px !important;
    font-weight: 400;
}
.lib-child__item>a {
    font-weight: 400;
}
.txt-gray {
    color: #7A7A7A !important;
}
.book-set {
    height: 90px;
    line-height: 1.5;
}
.txt-kome {
    font-size: 14px;
    color: #717171;
}
.wpcf7-list-item:first-child {
    display: inline-block;
    margin: 0 0 0 0em;
}
.bg-f5 {
    background-color: #F5F5F5 !important;
}
select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}
.w-150 select {
    width: 150px !important;
}
.lib-footer__other>li a:before {
    display: none;
}
/* .lib-footer__other li {
    padding-right: 20px;
    border-right: 1px solid #333333 !important;
} */
.lib-footer__other li:last-child {
    padding-right: 20px;
    border-right: none !important;
}
#top-month .swiper-pagination-bullet {
    border: var(--MAIN) 1px solid;
}
#top-news .lib-card__caption {
    font-size: 1.25rem;
    font-weight: 300;
}
#top-news h2.title {
    font-size: 2.5rem;
    font-weight: 300;
}
.lib-tab__menu>li {
    flex: none;
}
.lib-tab__btn {
    width: auto;
    padding: 10px 50px;
    background-color: #CCCCCC;
}
.lib-tab__menu {
    background-color: #CCCCCC;
}
.single .lib-tab__menu {
    background-color: #FFFFFF;
}
.news-botan {
    background-color: #FFF;
    color: #000;
    padding: 10px 30px;
    border: 1px solid #C71C28;
    border-radius: 50px;
}
.lib-rss__001 .lib-rss__title .chip {
    background-color: #FFF;
    color: #333;
    border-radius: 50px;
    padding: 10px 20px;
    border-color: #333333;
    margin-right: 20px;
}
.lib-rss__001 .lib-rss__title a {
    align-items: center;
}
.lib-rss__001 .lib-rss__list>li {
    align-items: center;
}
.lib-tab__btn[aria-selected=true] {
    background-color: #ffffff !important;
    color: #333 !important;
    pointer-events: none;
}
.lib-tab__menu>li:first-child .lib-tab__btn {
    border-left: var(--GRY) 1px solid;
}
.lib-tab__btn[aria-selected=false] i {
    display: none;
}
.fa-chevron-circle-down:before,
.fa-circle-chevron-down:before {
    color: #CCCCCC;
    font-size: 20px;
    padding-left: 20px;
}
.lib-rss__001 .lib-rss__title a:first-child {
    align-items: center;
    border-radius: 50px;
    padding: 3px 20px;
    border-color: #333333;
    border: 1px solid #333333;
    margin-right: 20px;
}
.lib-footer__sns>li>a {
    background-color: #f5f5f5;
    border: none;
    color: #000000;
}
footer .lib-search__btn {
    width: 50px;
    height: 40px;
}
footer .lib-search__input {
    height: 40px;
}
nav .lib-footer__sns {
    margin-top: 0px;
    margin-left: 10px;
}
nav .lib-footer__sns>li>a {
    background-color: #ffffff;
}
.lib-footer__sns li a:after {
    display: none;
}
.breadcrumbs {
    padding: 0 .75rem 10px;
}
.swiper {
    display: none;
}
.swiper.swiper-container-initialized,
.swiper.swiper-initialized {
    display: block;
}

.lib-title__outer :where(.title) {
    color: var(--DEF);
}
.br-sp {
    display: none;
}
nav .lib-footer__sns li:last-child {
    display: none !important;
}
.home .home_current span.txt:before {
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
}
.main_current span.txt:before {
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
}
.lib-footer__container>*~* {
    border-top: none !important;
}
/*.lib-card__badge {
border-bottom: var(--GRY) 1px solid;
padding-bottom: 30px;
}*/
.lib-header__logo img {
    width: 60px;
}
.lib-utility__item {
    list-style: none !important;
}
.lib-nav__item {
    list-style: none !important;
}
ul.lib-nav__list {
    list-style: none !important;
}
ul.lib-footer__sns li {
    list-style: none !important;
}
.archive .lib-card__badge {
    border-bottom: none;
    padding-bottom: 0;
}
.home .lib-card__badge {
    border-bottom: none;
    padding-bottom: 0;
}
#top-month .lib-card__inside {
    width: 95%;
}
:where(a):has(img) {
    text-align: center;
}
.lib-tab__txtarea p {
    text-align: justify;
}
.lib-txt__outer>:where(*)~:where(*) {
    margin-top: .3em;
}
.lib-title__outer+.lib-card__badge {
    align-items: center;
}
.lib-swiper__btn {
    background-color: rgb(51 51 51 / 50%);
    border: rgb(51 51 51 / 50%) 2px solid;
}
.lib-swiper__btn:hover:after {
    color: rgb(51 51 51 / 50%);
}
:where(:where(a)[target=_blank]):after {
    display: none;
}
.lib-swiper__btn:focus:after {
    color: rgb(51 51 51 / 50%);
}
.lib-swiper__btn:focus:after {
    color: rgb(51 51 51 / 50%);
}
a.text-hover-main:hover .book-set {
    text-decoration: underline;
}
.lib-card__txt.txt-gray {
    text-decoration: none !important;
    cursor: default;
    pointer-events: none;
}
.custom-text-container {
    position: relative;
}
.custom-text {
    display: block;
    white-space: nowrap;
    /* 省略表示 */
    overflow: hidden;
    /* 省略を適用 */
    text-overflow: ellipsis;
    /* 「...」を表示 */
}

.custom-text.expanded {
    white-space: normal;
    /* 全文表示時に改行 */
    overflow: visible;
    /* 省略解除 */
}
.read-more {
    color: #0073aa;
    text-decoration: none;
    cursor: pointer;
}
.read-more:focus,
.read-more:hover {
    text-decoration: underline;
}
.pc-mt-0 {
    margin-top: 10px !important;
}

#kanren .u-aspect.--book {
    height: auto;
}
.link-first {
    margin-right: 30px;
}
:where(.lib-card__item) {
    flex-flow: column;
}
.page-id-160 .lib-card__txtarea {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


@media screen and (max-width: 1080px) {
    .br-pc {
        display: none;
    }
    .br-sp {
        display: inline-block;
    }
}
@media print,
screen and (min-width: 992px) {
    .pc-mt-0 {
        margin-top: 0 !important;
    }
    .lib-header__outer.lib-header-BS02 .lib-utility__outer {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        display: flex;
    }
    .lib-header__outer.lib-header-BS02 .lib-nav__btn {
        padding-top: 0px;
        align-items: center;
        text-decoration: none !important;
    }
    .lib-header__outer.lib-header-BS02 .lib-nav__list {
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
    }
    #wrapper:has(.lib-header-BS02) .lib-hero__outer {
        min-height: 150px;
    }
    .is-scroll .lib-header__outer.lib-header-BS02 .lib-nav__outer>* {
        margin-top: 0px;
    }
    .is-scroll .lib-header__outer.lib-header-BS02 .lib-nav__btn {
        margin-bottom: -20px;
    }
    .lib-header__outer.lib-header-BS02 .lib-utility__outer {
        display: flex;
    }
    .lib-nav__panel {
        width: 100%;
        justify-content: center;
    }
    .lib-header__logo img {
        width: 75px;
    }
    .is-scroll .lib-header__logo img {
        width: 60px;
    }
    #top-business h2.title {
        font-size: 2.5rem;
        font-weight: 300;
    }
    #top-business .lib-card__caption {
        font-size: 1.25rem;
        font-weight: 300;
    }
    #top-pc h2.title {
        font-size: 2.5rem;
        font-weight: 300;
    }
    #top-month h2.title {
        font-size: 2.5rem;
        font-weight: 300;
    }
    #top-recruit h2.title {
        font-size: 2.5rem;
        font-weight: 300;
    }
    #top-pc,
    #top-month {
        margin-top: 40px;
    }
}

@media print,
screen and (min-width: 768px) {
    .lib-footer__other {
        justify-content: end;
    }
    .lib-footer__outer.lib-footer-BS02 .lib-footer__utility {
        margin-top: 0px;
    }
    .lib-footer__outer.lib-footer-BS02 .lib-footer__sns {
        align-items: center;
    }
    .lib-footer__other {
        margin-top: 20px;
    }
    .lib-footer__gnav .badge {
        padding: 0;
    }
    .anker-block a {
        width: 13%;
    }
    .lib-rss__001 .lib-rss__date {
        display: block;
        width: 7em;
    }
    .lib-rss__001 .lib-rss__title a:not([target=_blank]):after {
        display: none;
    }
    .lib-rss__001 .lib-rss__title {
        align-items: center;
    }
    .catch-midashi p {
        font-size: 20px;
    }
    .lib-rss__list>li~li {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    #contents {
        max-width: calc(1120px + .75rem * 2);
    }
}


@media print,
screen and (min-width: 576px) {
    .lib-footer__outer.lib-footer-BS02 .lib-footer__info {
        padding-bottom: 0px;
    }
    #contents {
        padding: 3rem .75rem 80px;
    }
    .lib-footer__outer.lib-footer-BS02 .lib-footer__gnav {
        justify-content: right;
        display: grid;
    }
    .lib-footer__outer.lib-footer-BS02 .lib-footer__sns {
        position: static;
        width: unset;
        margin-left: 0;
        padding-left: 0px;
        justify-content: start;
        margin-bottom: 30px;
    }
    .lib-footer__outer.lib-footer-BS02 .lib-footer__utility {
        padding: 16px;
    }
}
@media screen and (max-width: 1300px) {
    .lib-header__outer.lib-header-BS02 .lib-nav__list {
        justify-content: flex-end;
    }
}
/* @media screen and (max-width: 768px) { */
@media screen and (max-width: 992px) {
    .catch-midashi img {
        width: 80px;
        margin-top: 10px;
    }
    .sp-mt-3 {
        margin-top: 20px;
    }
    .u-aspect.--book {
        text-align: center;
    }
    .u-aspect.--book img {
        width: 70%;
    }
    #kanren .u-aspect.--book {
        height: auto;
    }
    #kanren .u-aspect.--book img {
        width: 100%;
    }
    .lib-fv-004 .u-aspect.--book img {
        width: 100%;
    }
    .--fill {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important;
    }
    .swiper-button-next,
    .swiper-button-prev {
        top: 40%;
    }
    #top-month .lib-card__title {
        font-size: 1.3rem;
    }
    #top-month .lib-card__thumb img {
        text-align: center;
    }
    #top-month .lib-card__thumb img {
        width: 70%;
    }
    #top-month .swiper-button-next,
    #top-month .swiper-button-prev {
        top: 25%;
    }
    .lib-footer__sns {
        display: flex;
        margin-bottom: 30px;
        /* flex-wrap: wrap; */
    }
    .lib-footer__sns>*:last-child {
        flex-basis: 100%;
    }
    .lib-footer__logo {
        text-align: center;
    }
    .lib-footer__gnav .lib-card__badge {
        flex-flow: wrap;
        margin-bottom: 10px;
    }
    .lib-footer__gnav .lib-card__badge li {
        /* text-align: center; */
        width: 48%;
    }
    .lib-footer__gnav .lib-card__badge li a {
        font-size: 15px;
    }
    .lib-footer__gnav .lib-footer__other {
        /* flex-flow: column; */
        margin-bottom: 0px;
        justify-content: center;
        padding: 10px 0;
    }
    .lib-footer__gnav ul.lib-footer__other li {
        text-align: center;
    }
    .lib-footer__gnav ul.lib-footer__other li {
        width: 50%;
    }
    .lib-footer__guidance {
        display: none;
    }
    .lib-footer__other>li {
        border-bottom: none;
    }
    .lib-footer__other>li a {
        justify-content: space-around;
        padding: 0;
    }
    .lib-footer__other li {
        padding-right: 0px;
        border-right: none !important;
    }
    .lib-footer__other {
        box-shadow: none;
        margin: 0;
        border-bottom: none;
    }
    .page-title-jp {
        font-size: 2rem;
    }
    .lib-title__outer.--typeA :where(.title) {
        font-size: 1.5rem;
    }
    .lib-nav__btn:after {
        font-family: icons !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\ea01";
        font-size: .625rem;
        margin-left: 10px;
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s;
        display: block;
    }
    .p-bg {
        height: 10.5rem;
    }
    .page-id-5195 .p-bg {
        height: 10.5rem;
    }
    .rec-catch {
        position: relative;
        padding-top: 10%;
        left: 5% !important;
    }
    .lib-nav__btn[aria-expanded]:after {
        font-family: icons !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\ea02";
        font-size: .625rem;
        margin-left: 10px;
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s;
        display: block;
    }
    .lib-menu__btn {
        background-color: #FFF;
        border: none;
    }
    .lib-menu__btn>.line {
        background-color: #000;
    }
    .lib-nav__btn {
        border-bottom: 1px solid #CCCCCC;
        padding: 18px 10px;
        justify-content: space-between;
    }
    .lib-nav__btn:after {
        color: #FFF;
        background-color: #000;
        padding: 7px;
        border-radius: 50px;
    }
    .lib-nav__cover {
        scrollbar-color: #949494 #f5f5f5;
        background-color: #f5f5f5;
    }
    .lib-child__item.--headline span.txt:before {
        display: none;
    }
    .lib-nav__list.js-child__list li:last-child {
        /* display: none !important; */
		border-right: none !important;
    }
    .lib-nav__list {
        border-bottom: none;
        padding-bottom: 10px;
        box-shadow: none;
    }
    .lib-utility__item:not(:has(.lib-induce__btn)) {
        background-color: #f5f5f5;
    }
    .lib-utility__item a:not([class*=__btn])>.txt {
        justify-content: center;
    }
    .lib-nav__item {
        border-left: none !important;
    }
    .lib-utility__item:not(:has(.lib-induce__btn)) {
        background-color: #f5f5f5;
        margin-bottom: 10px;
        border-bottom: none;
    }
    .lib-utility__list:not(:has(.lib-induce__btn)):after {
        background: none;
    }
    nav .lib-footer__sns {
        flex-flow: nowrap;
        margin-left: 0px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }
    nav .lib-footer__sns>*:last-child {
        flex-basis: auto;
    }
    nav .lib-footer__sns>li>a {
        background-color: #f5f5f5;
    }
    .lib-footer__sns li:last-child {
        display: block !important;
        flex-basis: 100%;
    }
    .lib-footer__outer.lib-footer-BS02 .lib-footer__copyright {
        font-size: 14px;
    }
    .lib-footer__outer {
        padding-top: 1rem;
    }
    .book-set {
        height: auto;
        font-size: 14px;
        line-height: 1.5em;
    }
    .catch-midashi {
        padding: 10px 20px;
    }
    .catch-midashi p {
        font-size: 14px !important;
        flex: 1;
    }
    #s-book .lib-card__title {
        font-size: 16px;
    }
    .link-first {
        margin-right: 0px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 820px) {
    .lib-header__logo img {
        width: 50px;
    }
    .book-img {
        padding: 0%;
    }
    #top-month .swiper-button-next:after {
        display: none;
    }
    #top-month .swiper-button-prev:after {
        display: none;
    }
}

.basic {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.r-icon img {
    width: 30%;
}
#top-month img {
    width: 100%;
    height: auto;
}
:where(a):hover img {
    opacity: .5;
}
.lib-nav__list li:last-child {
    border-right: 1px solid #333 !important;
}
.lib-header__outer.lib-header-BS02 .lib-header__logo {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .basic {
        -webkit-line-clamp: 15;
    }
    .lib-footer__gnav .lib-card__badge li {
        width: auto;
    }
    .lib-footer__gnav ul.lib-footer__other li {
        width: auto;
    }
    .lib-footer__other {
		padding: 10px 20px;
    }
}
@media (max-width: 910px) {
    .w-25 {
        width: 40% !important;
    }
}
@media (max-width: 767px) {
    /*.basic {
        -webkit-line-clamp: 5;
    }*/
    .lib-card__txt.basic {
        display: block;
        overflow: hidden;
        max-height: 6.0em;
        /* 5行分の高さ（約1.5em × 5） */
        line-height: 1.5em;
        position: relative;
    }
    .lib-card__txt.basic::after {
        content: "...";
        position: absolute;
        bottom: 0;
        right: 0;
        padding-left: 5px;
		display: none;
    }
    .page-title-jp span {
        font-size: 1.2rem;
        padding-top: 5px;
        display: block;
    }
    .w-25 {
        width: 60% !important;
    }
    .lib-utility__item:nth-child(odd) {
        border-right: none;
    }
    .sp-w100 {
        width: 100%;
    }
    .sp-w80 {
        width: 80%;
        margin: auto;
    }
    .lib-footer__gnav .lib-card__badge {
        gap: 10px;
    }
    .lib-footer__other {
        padding: 10px 0px;
    }
}

.pc {
    display: block !important;
}
.sp {
    display: none !important;
}

.lib-footer__gnav .lib-card__badge.pc {
    display: flex !important;
}
.lib-footer__gnav .lib-footer__other.pc {
    display: flex !important;
}

@media print,
screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
    .lib-footer__gnav .lib-card__badge.pc {
        display: none !important;
    }
    .lib-footer__gnav .lib-footer__other.pc {
        display: none !important;
    }
    .lib-footer__gnav .lib-card__badge.sp {
        display: flex !important;
    }
}


/* 新旧レイアウト */

.bg-color {
    background-color: #F9F9F9;
    padding: 10%;
}
.book-container {
    overflow: hidden;
    /* 子要素のfloat対策 */
}
/* .book-item {
  width: 25%;
  float: left;
  padding: 10px;
  box-sizing: border-box;
} */
.book-image {
    width: 100%;
    padding-bottom: 141.41%;
    /* aspect-ratioの代替 (1 / 1.4141) */
    position: relative;
}
.book-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top;
    box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.4);
}
.book-details {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* min-height: 100px; */
    word-break: break-word;
    overflow-wrap: break-word;
}
.book-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* 表示する行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.release-date {
    font-size: 14px;
}
.box-shadow {
    box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.4);
}
/* タブコンテンツ */
.tab-container {
    width: 100%;
}
.tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.tab-item {
    padding-left: 1rem;
    text-align: center;
}
.tab-item:first-child {
    padding-left: 0;
}
.tab-list .tab-item:before {
    display: none;
}
.tab-button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #f0f0f0;
    cursor: pointer;
}
.tab-button[aria-selected="true"] {
    background-color: #fff;
    font-weight: bold;
    border: 1px solid #ddd;
    border-bottom: none;
}
.tab-panel {
    padding: 20px;
    display: block;
    border: 1px solid #ddd;
}
.tab-panel[aria-hidden="true"] {
    display: none;
}

@media print,
screen and (max-width: 768px) {
    .sp-mt20 {
        margin-top: 20px;
    }
    .sp-mt30 {
        margin-top: 30px;
    }
    .sp-mt40 {
        margin-top: 40px;
    }
    .sp-mb20 {
        margin-bottom: 20px;
    }
    .sp-mb30 {
        margin-bottom: 30px;
    }
    .sp-mb40 {
        margin-bottom: 40px;
    }
    .tab-item {
        padding-left: 0.5rem;
    }
    .book-container {
        margin-top: 1.5rem;
    }
}

.home .container.lib-fv-004 .lib-fv__slider.lib-fv-005__slider {
    opacity: 0;
    transition-duration: .5s;
    max-height: 24.6vw;
}

.home .container.lib-fv-004 .lib-fv__slider.lib-fv-005__slider.swiper-container-initialized,
.home .container.lib-fv-004 .lib-fv__slider.lib-fv-005__slider.swiper-initialized {
    opacity: 1;
    max-height: 100%;
}


.home .mv_slider_wrap {
    position: relative;
    z-index: 1;
}
.home .mv_slider_wrap .mv_slider .slick-slide a {
    display: block;
    background-color: #666666;
}
.home .mv_slider_wrap .mv_slider .slick-slide a img {
    display: block;
    width: 40vw;
    height: auto;
}
.home .mv_slider_wrap .mv_slider .slick-slide a img {
    opacity: .4;
    transition: .5s;
}
.home .mv_slider_wrap .mv_slider .slick-slide a:hover {
    opacity: .8;
}
.home .mv_slider_wrap .mv_slider .slick-slide.slick-active a img {
    opacity: 1;
}
.home .mv_slider_wrap .slick-track {
    display: flex;
}
.home .mv_slider_wrap .slick-list {
    margin-bottom: 0;
}
.home .mv_slider_wrap .slick-slide {
    height: auto !important;
}
.home .mv_slider_wrap .slick-dots {
    bottom: 10px;
    z-index: 10;
}
.home .mv_slider_wrap .slick-dots li {
    margin: 0 3px;
    width: 10px;
    height: 10px;
}
.home .mv_slider_wrap .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    background-color: #f5f5f5;
    border-radius: 50%;
}
.home .mv_slider_wrap .slick-dots li.slick-active button {
    background-color: var(--MAIN);
}
.home .mv_slider_wrap .slick-dots li::before,
.home .mv_slider_wrap .slick-dots li button::before {
    content: none !important;
}
.home .mv_slider_wrap .slick-arrow {
    width: 40px;
    height: 40px;
    background-color: rgb(51 51 51 / 50%);
    border: rgb(51 51 51 / 50%) 2px solid;
    border-radius: 50%;
    z-index: 10;
    transition: .3s;
}
.home .mv_slider_wrap .slick-arrow:hover {
    background-color: #FFFFFF;
}
.home .mv_slider_wrap .slick-arrow:hover::before {
    color: #666666;
}
.home .mv_slider_wrap .slick-arrow::before {
    font-size: 12px;
    font-family: icons !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: static;
    content: "\ea01";
    color: #fff;
    transition: .3s;
}
.home .mv_slider_wrap .slick-arrow.slick-prev::before {
    display: block;
    transform: rotate(180deg);
}
.home .mv_slider_wrap .slick-arrow.slick-next {
    left: auto;
    right: calc(30% - 20px);
}
.home .mv_slider_wrap .slick-arrow.slick-prev {
    left: calc(30% - 20px);
}

/* .term-ct-05 .btn_area .tab_btn:nth-child(5) {
    display: none;
}
.term-ct-05 .btn_area .tab_btn:nth-child(8) {
    display: none;
} */


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

    .home .mv_slider_wrap .mv_slider .slick-slide a img {
        width: 50vw;
    }
    .home .mv_slider_wrap .slick-arrow.slick-next {
        left: auto;
        right: calc(25% - 20px);
    }
    .home .mv_slider_wrap .slick-arrow.slick-prev {
        left: calc(25% - 20px);
    }

}


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

    .home .mv_slider_wrap .mv_slider .slick-slide a img {
        width: 80vw;
    }
    .home .mv_slider_wrap .slick-arrow.slick-next {
        left: auto;
        right: calc(10% - 20px);
    }
    .home .mv_slider_wrap .slick-arrow.slick-prev {
        left: calc(10% - 20px);
    }

}

/****/
.home .mv_slider:not(.slick-initialized) {
	height:calc(40vw / 1.61);
	opacity:0;
	overflow:hidden;
	margin-bottom:30px;
}

.home .mv_slider.slick-initialized {
	transition:1s;
}
.home .mv_slider_wrap {
	background:url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/images/loading.gif) no-repeat center center/auto;
}

.js-topRecruitSwiper .swiper-wrapper {
    transition-timing-function: linear;
}

.page-id-5195 .p-recruit-top-mv-slider .lib-wide__outer .js-topRecruitSwiper:not(.swiper-container-initialized):not(.swiper-initialized) {
	height:16vw;
	opacity:0;
	overflow:hidden;
}
.page-id-5195 .p-recruit-top-mv-slider .lib-wide__outer .js-topRecruitSwiper.swiper-container-initialized.
.page-id-5195 .p-recruit-top-mv-slider .lib-wide__outer .js-topRecruitSwiper.swiper-initialized {
	transition:1s;
}

.page-id-5195 .p-recruit-top-mv-slider .lib-wide__outer:not(:has(.swiper-container-initialized)):not(:has(.swiper-initialized)) {
	background:url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/images/loading.gif) no-repeat center center/auto;
}

@media screen and (max-width: 1500px) {
	.page-id-5195 .p-recruit-top-mv-slider .lib-wide__outer .js-topRecruitSwiper:not(.swiper-container-initialized):not(.swiper-initialized) {
		height:20vw;
	}
}

@media screen and (max-width: 991px) {
	.home .mv_slider:not(.slick-initialized) {
		height:calc(80vw / 1.61);
	}
}

@media screen and (max-width: 768px) {
	.home .mv_slider:not(.slick-initialized) {
		height:calc(80vw / 1.61);
	}
	.page-id-5195 .p-recruit-top-mv-slider .lib-wide__outer .js-topRecruitSwiper:not(.swiper-container-initialized):not(.swiper-initialized)  {
		height:31vw;
	}
}