@charset "UTF-8";
/********************************************************************************

common.css


********************************************************************************/
/*============================================================
 import
*============================================================*/
/* base */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
/* other */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/* fonts
---------------------------------------- */
.font-oswald {
    font-family: 'Oswald', sans-serif;
}

.font-lato {
    font-family: 'Lato', sans-serif;
}

/*============================================================
 system
*============================================================*/
/* pc-sp display switch
---------------------------------------- */
:root {
    --common-vh: 100vh;                         /* jsで変動 */
    --common-vw: 100vw;                         /* jsで変動 */
}

/*============================================================
 system
*============================================================*/
/* pc-sp display switch
---------------------------------------- */
.forPC {
    display: initial;
}

.forSP {
    display: none;
}

/*============================================================
 format
*============================================================*/
html {
    display: block;
    background-color: #EFEFEF;
}

body {
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 180%;
    color: #1F272F;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 152px 0 40px;
    position: relative;
    /*
    max-width: 1105px;
    margin: 0 auto; */
}

body.home {
    padding: 0 0 40px;
}

main {
    width: 100%;
}

main.scrolled {}

section {}

/* .cmn-inner {
    width: calc(100% - 80px);
    margin-left: 40px;
    margin-right: 40px;
} */
.cmn-inner {
    width: 100%;
    max-width: 1680px;
    padding: 0 40px;
    margin: 0 auto;
}

.cmn-unit-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cmn-side-unit {
    width: calc((100% - 32px) * 272 / 1168);
}

.cmn-main-unit {
    width: calc((100% - 32px) * 896 / 1168);
}

.cmn-block {
    border-radius: 4px;
}

.cmn-block[data-type-color="bright"] {
    background: #fff;
}

.cmn-block[data-type-color="dark"] {
    background: #1F272F;
}

h1 {}

h2 {}

h3 {}

h4 {}

.cmn-ttl-section {
    font-weight: bold;
    font-size: 24px;
    line-height: 180%;
}

.cmn-ttl-unit {
    font-weight: bold;
    font-size: 16px;
    line-height: 200%;
}

p {}

.cmn-txt-catch {
    font-weight: 900;
    font-size: 40px;
    line-height: 180%;
}

.cmn-txt-strong {
    font-weight: bold;
    font-size: 20px;
    line-height: 180%;
}

.cmn-txt-normal {
    font-weight: normal;
    font-size: 16px;
    line-height: 180%;
}

.cmn-txt-small {
    font-weight: normal;
    font-size: 12px;
    line-height: 180%;
}

.cmn-txt-xsmall {
    font-weight: normal;
    font-size: 10px;
    line-height: 160%;
    color: #353535;
}

img {
    max-width: 100%;
    height: auto;
}

.img-box {
    line-height: 0;
    text-align: center;
}

span {
    font-weight: inherit;
}

a[href^="tel:"] {
    pointer-events: none;
}

strong {}

.brightness img {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.brightness:hover img {
    filter: brightness(120%);
    opacity: 0.8;
}

/* scroll fade
---------------------------------------- */
.scroll-fade {
    opacity: 0;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
    transform: translate(0, 50px);
}

.scroll-fade-on {
    opacity: 1;
    transform: translate(0, 0);
}

/* form
---------------------------------------- */
input,
select,
textarea,
button {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    -webkit-appearance: none;
}

input[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
    vertical-align: inherit;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    vertical-align: inherit;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
    display: block;
    width: 100%;
    height: 48px;
    background-color: #fff;
    border: solid 1px #969696;
    border-radius: 2px;
    padding: 10px 12px;
    box-sizing: border-box;
}

select {
    background-image: url(../images/common/icon-form-select.svg);
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 8px auto;
}

textarea {
    padding: 10px 12px;
    height: 300px;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    color: #A6A6A6;
}

input:hover,
textarea:hover,
select:hover,
button:hover,
input:focus,
textarea:focus,
select:focus button:focus {
    outline: none;
}

input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
textarea:hover,
select:hover,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    border: solid 1px #969696;
    border-radius: 2px;
}

input[type="checkbox"] {
    margin: 0;
    height: 20px;
    width: 20px;
    vertical-align: -4px;
}

span.wpcf7-list-item {
    margin: 0 40px 0 0;
}

span.wpcf7-list-item:last-child {
    margin: 0;
}

/* checkbox 装飾 (for mwform)
---------------------------------------- */
/* input[type="checkbox"] {
    display: none;
}

.mwform-checkbox-field-text {
    padding-left: 40px;
    position: relative;
}

.mwform-checkbox-field-text::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #000;
    background-color: #fff;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

input[type="checkbox"]:checked + .mwform-checkbox-field-text::before {
    background-color: #000000;
}

input[type="checkbox"]:checked + .mwform-checkbox-field-text::after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 8px;
    width: 8px;
    height: 16px;
    transform: rotate(40deg);
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
} */




/*============================================================
 ヘッダー
*============================================================*/
#site-header-min {
    display: none;
}

#site-header {
    width: 100%;
    padding: 0 40px;
    position: fixed;
    top: 40px;
    left: 0;
    z-index: 500;
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
}
#site-header .cmn-inner {
    padding: 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
}

#site-header.is-fixed {
    top: -100%;
}

#site-header.is-fixed.is-shown {
    top: 40px;
}

/* Gnav
---------------------------------------- */
/* logo */
.gnav .gnav-logo {
    width: 12.5%;
    line-height: 96px;
    text-align: center;
}

.gnav .gnav-logo img {
    max-width: 100px;
    vertical-align: middle;
}

.gnav .gnav-wrap {
    width: calc(100% - 15%);
}

/* gnav-menu */
.gnav .gnav-menu {
    width: 65%;
    padding: 0;
    margin-right: 3%;
    margin-bottom: 0;
}

.gnav .gnav-menu li {
    /* padding: 10px 0; */
}

.gnav ul.gnav-menu.nav-parent > li > .gnav-link {
    display: block;
    text-align: center;
    position: relative;
    background-color: transparent;
    padding: 0;
}

.gnav ul.gnav-menu.nav-parent > li > .gnav-link:hover {
    cursor: pointer;
}

.gnav ul.gnav-menu.nav-parent > li > .gnav-link:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -4px;
    left: calc(50% - 24px);
    background-color: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.gnav ul.gnav-menu.nav-parent > li > .gnav-link:hover::after,
.gnav ul.gnav-menu.nav-parent > li.current > .gnav-link::after {
    width: 48px;
    background-color: #1F272F;
}

.gnav .nav-title {
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 2px;
    text-align: center;
}

.gnav .nav-sub-title {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    margin-bottom: 0;
    color: #969696;
}

/* Gnav 子メニュー（popup）
---------------------------------------- */
/* Overlay */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--common-vw);
    height: var(--common-vh);
    z-index: 9999;
    background-color: rgba(31, 39, 47, 0.72);
}
/* 本体 */
.gnav-child {
    display: none;
    width: 100%;
    max-width: 920px;
    padding: 24px;
    background-color: #fff;
    border-radius: 4px;
    position: fixed;
    top: 80px;
    left: 50%;
    z-index: 99999;
    transform: translateX(-50%);
}
/* コンテンツ */
.gnav-child .gnav-child-inner .nav-child-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.gnav-child .gnav-child-inner .nav-child-layout .nav-child-header {
    padding-right: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 24px;
    position: relative;
}
.gnav-child .gnav-child-inner .nav-child-layout .nav-child-header .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    background-color: transparent;
    background-image: url(../images/common/icon-btn-close.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px auto;
}
.gnav-child .gnav-child-inner .nav-child-layout .nav-child-header .close:hover {
    cursor: pointer;
}
.gnav-child .gnav-child-inner .nav-child-layout .nav-child-header .title {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;

    font-weight: bold;
    font-size: 24px;
    line-height: 100%;
}
.gnav-child .gnav-child-inner .nav-child-layout .nav-child-header .title .title-sub {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #969696;
}
.gnav-child .gnav-child-inner .nav-child-layout .nav-child-content {
    flex: 1;
    overflow-y: auto;
    height: 100%;
    max-height: calc(100vh - 80px - 80px - 24px - 24px);
    max-height: calc(100dvh - 80px - 80px - 24px - 24px);
}
.gnav-child .gnav-child-inner .nav-child-layout .nav-child-content:has(.block) {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.gnav-child .gnav-child-inner .nav-child-layout .nav-child-content .block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gnav-child .gnav-child-inner .nav-child-layout .nav-child-content .block .block-label {
    padding: 2px 8px;
    border-radius: 4px;
    background-color: #EFEFEF;
    font-size: 12px;
    line-height: 140%;
}
.gnav-child .gnav-child-inner .nav-child-layout .item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}
.gnav-child .gnav-child-inner .nav-child-layout .item-list .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 140%;
}
.gnav-child .gnav-child-inner .nav-child-layout .item-list .item::before {
    display: block;
    content: "";
    width: 6px;
    height: 8px;
    background-image: url(../images/common/icon-gnav-child-link.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 6px auto;
}
.gnav-child .gnav-child-inner .nav-child-layout .item-list .item a {
    text-decoration: underline;
}



/* 旧サブメニュー（既に使われていない）
.gnav ul.gnav-menu.nav-parent li.has-nav-child {
    position: relative;
}

.gnav ul.gnav-menu.nav-parent li.has-nav-child ul.nav-child {
    position: absolute;
    top: 56px;
    left: -32px;
    background-color: #1F272F;
    width: 214px;
    overflow: hidden;
    padding: 24px 16px 16px 16px;
    display: none;
}

.gnav ul.gnav-menu.nav-parent li.has-nav-child ul.nav-child li {
    margin-bottom: 16px;
}

.gnav ul.gnav-menu.nav-parent li.has-nav-child ul.nav-child li::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.gnav ul.gnav-menu.nav-parent li.has-nav-child ul.nav-child li:hover::after {
    width: 100%;
    background-color: #fff;
}

.gnav ul.gnav-menu.nav-parent li.has-nav-child ul.nav-child li:last-child {
    margin-bottom: 0;
}

.gnav ul.gnav-menu.nav-parent li.has-nav-child ul.nav-child li .nav-title {
    font-size: 16px;
    line-height: 180%;
    text-align: left;
    color: #fff;
    display: inline-block;
    width: 96px;
}

.gnav ul.gnav-menu.nav-parent li.has-nav-child ul.nav-child li .nav-sub-title {
    font-size: 12px;
    line-height: 160%;
    text-align: left;
    color: #D2D2D2;
    padding-left: 4px;
}

.gnav ul.gnav-menu.nav-parent li.has-nav-child:hover {
    cursor: pointer;
} */

/* gnav-entry */
/* .gnav .gnav-entry {
    width: 16%;
    height: 96px;
    border-radius: 0px;
}

.gnav .gnav-entry a {
    display: block;
    padding: 24px 0;
    color: #fff;
    text-align: center;
}

.gnav .gnav-entry a .sub-label {
    line-height: 160%;
} */

/* gnav-whitepaper */
.gnav .gnav-whitepaper {
    width: 16%;
    height: 96px;
    border-radius: 0px;
    background-color: #156490;
}
.gnav .gnav-whitepaper::after {
    background-color: #2875a0;
}
.gnav .gnav-whitepaper a {
    display: block;
    padding: 24px 0;
    color: #fff;
    text-align: center;
}
.gnav .gnav-whitepaper a .sub-label {
    line-height: 160%;
}
/* gnav-contact */
.gnav .gnav-contact {
    width: 16%;
    height: 96px;
    border-radius: 0px 4px 4px 0;
}

.gnav .gnav-contact a {
    display: block;
    padding: 24px 0;
    color: #fff;
    text-align: center;
}

.gnav .gnav-contact a .sub-label {
    line-height: 160%;
}

@media all and (max-width: 1199px) {
    /*============================================================
     SPヘッダー
    *============================================================*/
    /* PCヘッダー
    ---------------------------------------- */
    #site-header {
        display: none;
    }

    /* SPヘッダー
    ---------------------------------------- */
    #site-header-min {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100%;
    }

    #site-header-min #gnav-min .inner {
        height: 56px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
    }

    /* Gnav
    ---------------------------------------- */
    .gnav-min .inner {
        width: 100%;
        background-color: #fff;
        padding: 4px 8px;
    }

    /* logo */
    .gnav-min .gnav-min-logo {
        width: 58px;
    }

    .gnav-min .gnav-min-title {
        margin-left: 12px;
        font-weight: bold;
        font-size: 14px;
        line-height: 160%;
    }

    .gnav-min .gnav-min-right {
        margin-left: auto;
    }

    .gnav-min .gnav-min-entry {
        width: 128px;
        height: 48px;
        box-shadow: none;
    }

    .gnav-min .gnav-min-entry a {
        font-weight: 500;
        font-size: 14px;
        color: #FFF;
        line-height: 48px;
        border-radius: 2px;
    }

    .gnav-min .gnav-min-hamburger {
        width: 48px;
        height: 48px;
        border: 1px solid #EBEBEB;
        border-radius: 2px;
        padding: 10px;
        background: #fff;
        margin-left: 8px;
    }

    .gnav-min .gnav-min-hamburger:hover {
        cursor: pointer;
    }

    .gnav-min .gnav-min-hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #1F272F;
        margin: 5px 0;
    }

    .gnav-min-menu .gnav-min-hamburger span:nth-of-type(1) {
        transform: rotate(45deg);
        margin-top: 12px;
    }

    .gnav-min-menu .gnav-min-hamburger span:nth-of-type(2) {
        display: none;
    }

    .gnav-min-menu .gnav-min-hamburger span:nth-of-type(3) {
        transform: rotate(-45deg);
        margin-top: -6px;
    }

    /* gnav-min menu */
    #gnav-min-menu {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 99999;
        width: 100%;
        height: 100%;
        background-color: #fff;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
    }

    #gnav-min-menu.open {
        right: 0;
    }

    #gnav-min-menu ul {
        padding: 16px 0;
    }

    #gnav-min-menu ul li {
        border-bottom: solid 1px #F8F8F8;
    }

    #gnav-min-menu ul li a {
        display: block;
        box-sizing: border-box;
        padding: 16px;
    }

    #gnav-min-menu ul li:last-child {
        border: none;
    }

    #gnav-min-menu ul li .nav-title {
        padding-right: 8px;
    }

    #gnav-min-menu ul li .nav-sub-title {
        font-family: 'Lato', sans-serif;
        font-weight: 400;
        font-size: 12px;
        line-height: 160%;
        margin-bottom: 0;
        color: #969696;
    }

    #gnav-min-menu ul li .nav-sub-title::before,
    #gnav-min-menu ul li .nav-sub-title::after {
        content: "─";
        display: inline;
        padding: 0 4px;
    }

    #gnav-min-menu .site-search {
        width: 100%;
        padding: 0 0 0 40px;
        background-position: 16px 12px;
    }

}

/*============================================================
サイト内検索
*============================================================*/
#site-search {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
}

.site-search {
    background-color: #1F272F;
    width: 240px;
    height: 40px;
    padding: 0 0 0 30px;
    background-image: url(../images/common/icon-search.svg);
    background-repeat: no-repeat;
    background-position: 12px 12px;
    background-size: 22px auto;
}

.site-search form {
    height: 100%;
}

.site-search form input {
    display: inline-block;
    height: 100%;
    background-color: transparent !important;
    border: none !important;
    color: #DBDBDB !important;
}

.site-search form input:-webkit-autofill {
    box-shadow: none;
    -webkit-text-fill-color: #DBDBDB !important;
}

/*============================================================
 パンくずリスト
*============================================================*/
/* TOPページでは非表示
---------------------------------------- */
.home #breadcrumb {
    display: none;
}

/* 下層ページでは表示
---------------------------------------- */
#breadcrumb {
    width: 100%;
}

#breadcrumb ul {
    padding: 0;
    margin-bottom: 0;
}

#breadcrumb li {
    display: inline-block;
    padding: 0;
}

#breadcrumb li > * {
    display: inline-block;
    font-size: 14px;
    line-height: 200%;
    text-decoration-line: underline;
    vertical-align: top;
}

#breadcrumb li:after {
    content: " ";
    display: inline-block;
    width: 20px;
    height: 28px;
    background-image: url(../images/common/icon-arrow-bread.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    margin: 0 16px;
    vertical-align: top;
}

#breadcrumb li:last-child > * {
    text-decoration-line: none;
}

#breadcrumb li:last-child::after {
    display: none;
}

/* 1200px未満 */
@media screen and (max-width:1199px) {
    #breadcrumb {
        /*         top: 56px; */
    }
}


/*============================================================
 CTA
*============================================================*/
/* common
---------------------------------------- */
.sec-cta {
    background-color: #fff;
    padding: 32px 24px 24px 24px;
    border-radius: 4px;
}
.sec-cta .cta-title {
    font-weight: bold;
    font-size: 16px;
    line-height: 180%;
    color: #0B7CE6;
    text-align: center;
    margin-bottom: 16px;
}
.sec-cta .parts-btn-wrap {
    gap: 16px;
}
.sec-cta .parts-btn {
    width: calc((100% - ((4 - 1) * 16px)) / 4);
    max-width: 256px;
    height: 120px;
    margin: 0;
    background-color: #0B7CE6;
}
.sec-cta .parts-btn:after {
    background-color: #1886EC;
}
.sec-cta .parts-btn a {
    padding: 76px 0 12px 0;
    font-weight: bold;
    font-size: min(20px, calc(100vw * 0.016));
    line-height: 160%;
	background-repeat: no-repeat;
	background-position: top 8px center;
	background-size: 64px auto;
}
.sec-cta .cta-whitepaper {
    background-color: #156490;
}
.sec-cta .cta-whitepaper::after {
    background-color: #2875a0;
}
.sec-cta .cta-whitepaper a {
    background-image: url(../images/common/icon-cta-whitepaper.svg);
}
.sec-cta .cta-contact a {
    background-image: url(../images/common/icon-cta-contact.svg);
}
.sec-cta .cta-recruit {
    background-color: #619ACF;
}
.sec-cta .cta-recruit::after {
    background-color: #87BAE9;
}
.sec-cta .cta-recruit a {
    background-image: url(../images/common/icon-cta-recruit.svg);
}
.sec-cta .cta-casual a {
    background-image: url(../images/common/icon-cta-casual.svg);
}
.sec-cta .cta-mailmag {
    background-color: #22AAC8;
}
.sec-cta .cta-mailmag::after {
    background-color: #53C3DC;
}
.sec-cta .cta-mailmag a {
    background-image: url(../images/common/icon-cta-mailmag.svg);
}

/* コンテンツ内
---------------------------------------- */
main .sec-cta {
    padding: 24px;
    border-radius: 4px;
    margin-top: 5%;
}


/*============================================================
 ページング
*============================================================*/
/* jqueryプラグイン　InfiniteScroll使用時
---------------------------------------- */
/* メッセージ */
.page-load-status {
    text-align: center;
}

button.view-more-button:hover {
    cursor: pointer;
}

/* WPプラグイン　pagenavi使用時
---------------------------------------- */
.wp-pagenavi {
    margin: 40px 0;
    text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
    border: none;
    padding: 3px 8px;
}

.wp-pagenavi span.current {
    background-color: #0BB4A9;
    color: #fff;
}

/* bones_page_navi使用時
---------------------------------------- */
.pagination {
    margin-top: 80px;
}
.pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    margin: 0 auto;
    gap: 8px;
}
.pagination .page-numbers li > * {
    display: block;
    width: 32px;
    height: 32px;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 32px;
    text-align: center;
}
.pagination .page-numbers li > a {
    background-color: #fff;
    border-radius: 2px;
}
.pagination .page-numbers li > .current {
    background-color: transparent;
    font-weight: bold;
}
.pagination .page-numbers li > a.prev,
.pagination .page-numbers li > a.next {
    /* padding: 8px; */
    background-color: #000;
    color: #fff;
}
.pagination .page-numbers li > *.page-numbers.dots {
    background-color: transparent;
}

/*============================================================
 404
*============================================================*/
#page-system-error #sec-system-error {
    padding: 32px 24px;
    text-align: center;
    margin-top: 24px;
    background-color: #fff;
    border-radius: 4px;
}

#page-system-error #sec-system-error .system-error-num {
    font-weight: 900;
    font-size: 160px;
    line-height: 100%;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-sts {
    font-weight: bold;
    font-size: 32px;
    line-height: 180%;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-lead {
    margin-bottom: 56px;
}

/*============================================================
 サイト内検索
*============================================================*/
/* 検索結果リスト
---------------------------------------- */
#page-search #sec-results .sec-area {
    padding: 0;
}

#page-search #sec-results .sec-area a {
    display: block;
    padding: 24px 24px 32px 24px;
}

#page-search #sec-results .sec-area a .result-lead {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*============================================================
 コンタクトフォーム共通
*============================================================*/
/* 基本(入力画面)
---------------------------------------- */
/* 入力、確認で切り替え */
.page-lower.page-contact .forCF7Input {
    display: initial;
}

.page-lower.page-contact .forCF7Confirm {
    display: none;
}

/* フォーム */
.page-lower.page-contact .form-items .form-item {
    margin-bottom: 32px;
}

.page-lower.page-contact .form-items .form-item:last-child {
    margin-bottom: 0;
}

.page-lower.page-contact .form-items .form-item .form-label {
    margin-bottom: 16px;
    font-weight: bold;
}

.page-lower.page-contact .form-items .form-item .form-label.require::after {
    content: "必須";
    display: inline-block;
    margin-left: 16px;
    background-color: #E2041A;
    font-size: 12px;
    line-height: 100%;
    color: #fff;
    padding: 6px 12px;
}

.page-lower.page-contact .form-items .form-item .item-short {
    width: 30%;
    margin-right: 5%;
}

.page-lower.page-contact .form-items .form-item .item-short:last-child {
    margin-right: 0;
}

.page-lower.page-contact .form-items .form-item .note {
    font-size: 12px;
    line-height: 200%;
}

/* 同意チェック、ボタン */
.page-lower.page-contact #sec-controls {
    text-align: center;
}

.page-lower.page-contact #sec-controls .acceptance {
    margin-bottom: 40px;
}

.page-lower.page-contact #sec-controls .acceptance input[name="acceptance-privacy"] {
    margin-right: 4px;
}

.page-lower.page-contact #sec-controls .acceptance a {
    text-decoration: underline;
}

.page-lower.page-contact #sec-controls .form-btns > p {
    display: none;
}

.page-lower.page-contact #sec-controls .form-btns .parts-btn {
    display: inline-block;
    margin: 0px 12px;
}

.page-lower.page-contact #sec-controls .form-btns .parts-btn > * {
    background-color: transparent;
}

/* 入力内容確認ボタン(同意チェック前) */
.page-lower.page-contact #sec-controls .btn-for-input {
    background-color: #CCCCCC;
    pointer-events: none;
}

.page-lower.page-contact #sec-controls .btn-for-input input {}

/* 入力内容確認ボタン(同意チェック後) */
.page-lower.page-contact #sec-controls.acceptance-checked .btn-for-input {
    background-color: #1F272F;
    pointer-events: auto;
}

.page-lower.page-contact #sec-controls.acceptance-checked .btn-for-input input {}

/* ボタン(入力画面) */
.page-lower.page-contact:not(.step-confirm) #sec-controls .btn-for-input {
    display: inline-block;
}

.page-lower.page-contact:not(.step-confirm) #sec-controls .btn-for-confirmed {
    display: none;
}

/* 確認画面
---------------------------------------- */
/* 入力、確認で切り替え */
.page-lower.page-contact.step-confirm .forCF7Input {
    display: none;
}

.page-lower.page-contact.step-confirm .forCF7Confirm {
    display: initial;
}

/* フォーム */
.page-lower.page-contact.step-confirm input[type="text"],
.page-lower.page-contact.step-confirm input[type="tel"],
.page-lower.page-contact.step-confirm input[type="email"],
.page-lower.page-contact.step-confirm textarea,
.page-lower.page-contact.step-confirm select {
    color: #1F272F;
    border: none;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 1;
}

.page-lower.page-contact.step-confirm input[type="text"],
.page-lower.page-contact.step-confirm input[type="tel"],
.page-lower.page-contact.step-confirm input[type="email"],
.page-lower.page-contact.step-confirm textarea,
.page-lower.page-contact.step-confirm select {
    padding: 0;
}

.page-lower.page-contact.step-confirm .form-items .form-item .form-label.require::after {
    display: none;
}

.page-lower.page-contact.step-confirm .form-items .form-item .item-short {
    width: 100%;
    margin-right: 0;
}

.page-lower.page-contact.step-confirm .form-items .form-item .item-short:first-child {
    margin-bottom: 32px;
}

/* ボタン */
.page-lower.page-contact.step-confirm #sec-controls .btn-for-input {
    display: none;
}

.page-lower.page-contact.step-confirm #sec-controls .btn-for-confirmed {
    display: inline-block;
}

.page-lower.page-contact.step-confirm #sec-controls .btn-for-confirmed {
    display: inline-block;
}

/* ボタン配下のajax-loaderの高さでボタン配置がずれるのでサイズ0にする */
.page-lower.page-contact.step-confirm #sec-controls .btn-for-confirmed .ajax-loader {
    width: 0;
    height: 0;
}

/* メッセージ
---------------------------------------- */
/* common */
.wpcf7 form .wpcf7-response-output {
    text-align: center;
    margin: 0 0 32px 0;
}

/* 入力エラー */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #E2041A;
}

/* 送信完了(ページ遷移するので実質送信中として表示) */
.wpcf7 form.sent .wpcf7-response-output {}

/* 完了画面
---------------------------------------- */
.page-lower.page-contact-thanks #sec-message {
    margin-bottom: 40px;
}

.page-lower.page-contact-thanks #sec-message .message-en {
    font-weight: 900;
    font-size: 80px;
    line-height: 180%;
    letter-spacing: 0.04em;
}

.page-lower.page-contact-thanks #sec-message .message-jp {
    font-weight: 900;
    font-size: 56px;
    line-height: 180%;
    margin-bottom: 40px;
}

/* バナー　お問い合わせ
---------------------------------------- */
.bnr-contact {
    width: 640px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 72px;
    position: relative;
}

.bnr-contact .txt-area {
    width: 40%;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 5%;
    margin: auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.bnr-contact .txt-area .ttl-bnr {
    font-weight: 900;
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 12px;
}

.bnr-contact .txt-area .txt-bnr {
    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 20px;
}

/*============================================================
 footer
*============================================================*/
#site-footer {
    overflow: hidden;
    width: 100%;
}

#site-footer .foot-inner {
    width: 774px;
    margin-left: auto;
    margin-right: auto;
}

#site-footer #sec-contact {
    width: 640px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 72px;
    position: relative;
}

#site-footer #sec-contact .txt-area {
    width: 40%;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 5%;
    margin: auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

#site-footer #sec-contact .txt-area .ttl-bnr {
    font-weight: 900;
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 12px;
}

#site-footer #sec-contact .txt-area .txt-bnr {
    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 20px;
}

#site-footer #sec-melmaga {
    width: 640px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 72px;
    position: relative;
}

#site-footer #sec-melmaga .txt-area {
    width: 40%;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 5%;
    margin: auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

#site-footer #sec-melmaga .txt-area .ttl-bnr {
    font-weight: 900;
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 12px;
}

#site-footer #sec-melmaga .txt-area .txt-bnr {
    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 20px;
}

/* partner
---------------------------------------- */
#site-footer .partner {
    background-color: #fff;
    padding-top: 24px;
    padding-bottom: 32px;
}

#site-footer .partner .catch {
    font-weight: bold;
    font-size: 16px;
    line-height: 180%;
    text-align: center;
    margin-bottom: 18px;
}

#site-footer .partner .partner-list {
    padding: 0;
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
}

#site-footer .partner .partner-list li {
    width: 15%;
    padding: 0;
}

#site-footer .partner .partner-list .ttl {
    font-weight: 500;
    font-size: 10px;
    line-height: 140%;
    text-align: center;
}

/* totop
---------------------------------------- */
#site-footer #pagetop {
    color: #fff;
    text-align: center;
    padding: 32px 0 6px 0;
    background-color: #364049;
    background-image: url(../images/common/icon-arrow-pagetop.svg);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: center top 12px;
}

#site-footer #pagetop:hover {
    cursor: pointer;
}

/* footer-cta
---------------------------------------- */
#site-footer #footer-cta {
    padding: 48px 0 40px 0;
}

#site-footer #footer-cta .catchcopy {
    font-weight: bold;
    font-size: 32px;
    line-height: 160%;
    margin-bottom: 40px;
}

/* fnav
---------------------------------------- */
#site-footer #fnav {
    color: #fff;
    background-color: #1F272F;
    padding: 32px 0 20px 0;
}

/* fnav-logo */
#site-footer #fnav #fnav-logo {
    text-align: center;
}

#site-footer #fnav #fnav-logo img {
    width: 150px;
    margin-bottom: 40px;
}

/* fnav-menu */
#site-footer #fnav ul#fnav-menu {
    /* width: 670px; */
    text-align: center;
    padding: 0;
    margin-bottom: 32px;
}

#site-footer #fnav ul#fnav-menu li {
    padding: 0;
}

#site-footer #fnav ul#fnav-menu li a {
    display: block;
    position: relative;
}

#site-footer #fnav ul#fnav-menu li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -4px;
    left: calc(50% - 24px);
    background-color: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

#site-footer #fnav ul#fnav-menu li a:hover::after,
#site-footer #fnav ul#fnav-menu li.current a::after {
    width: 48px;
    background-color: #fff;
}

#site-footer #fnav ul#fnav-menu li .nav-title {
    font-size: 16px;
    line-height: 180%;
}

#site-footer #fnav ul#fnav-menu li .nav-sub-title {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
}

/* fnav-link */
#site-footer #fnav #fnav-link {
    margin-bottom: 52px;
}

#site-footer #fnav #fnav-link #link-page {
    margin-top: 20px;
}

#site-footer #fnav #fnav-link #link-page p {
    margin-right: 32px;
}

#site-footer #fnav #fnav-link #link-page .privacy {
    margin-right: 0;
}

#site-footer #fnav #fnav-link #link-page a {
    text-decoration: underline;
}

#site-footer #fnav #fnav-link #link-sns ul {
    padding: 0;
    margin-bottom: 0;
}

#site-footer #fnav #fnav-link #link-sns ul li {
    padding: 0;
    margin-left: 16px;
}

/* copyright */
#site-footer #copyright {
    font-size: 10px;
    line-height: 180%;
    text-align: center;
    letter-spacing: 0.08em;
}

#footer-card {
    width: 574px;
    padding: 16px;
    background: #31A39C;
    box-shadow: -1px -1px 4px rgba(0, 0, 0, 0.4);
    border-radius: 4px 0px 0px 0px;
    position: fixed;
    bottom: -250px;
    right: 0;
    z-index: 50;
}

#footer-card .close {
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 51;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}

#footer-card .close span {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 20px;
    height: 2px;
    background-color: #fff;
    margin: auto;
}

#footer-card span:nth-of-type(1) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#footer-card span:nth-of-type(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#footer-card .wrap {
    overflow: hidden;
}

#footer-card .image {
    width: 294px;
    float: left;
    position: relative;
    z-index: 51;
}

#footer-card .txt-area {
    width: 222px;
    float: right;
    color: #fff;
}

#footer-card .txt-area .date {
    font-weight: 500;
    font-size: 12px;
    line-height: 180%;
    margin-bottom: 4px;
}

#footer-card .txt-area .ttl {
    font-weight: bold;
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 40px;
}

#footer-card .goal {
    width: 100%;
    font-weight: 500;
    font-size: 12px;
    line-height: 180%;
    text-align: right;
    background: #fff;
    padding: 3px 12px;
    position: absolute;
    bottom: 16px;
    left: 0;
}

#footer-card .goal img {
    margin-left: 8px;
}


/*============================================================
 サイト共通部分
*============================================================*/
/* 下層タイトル
---------------------------------------- */
.page-lower #page-header {
    position: relative;
}

.page-lower #page-header .popup-button {
    width: 156px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.page-lower #page-header .page-ttl-txt {
    font-weight: bold;
    font-size: 36px;
    line-height: 200%;
}

.page-lower .sub-ttl-txt {
    font-weight: bold;
    font-size: 24px;
    line-height: 180%;
    margin-bottom: 16px;
}

/* ブログ一覧
---------------------------------------- */


.blog-list-item.entry-contents .entry {
    width: calc((100% - 64px) / 3);
    position: relative;
    background-image: url(../images/common/icon_arrow.png);
    background-repeat: no-repeat;
    background-position: bottom 12px right 12px;
    overflow: hidden;
    margin-right: 32px;
    margin-bottom: 32px;
}

.blog-list-item.entry-contents .entry:nth-child(3n) {
    margin-right: 0;
}

.blog-list-item.entry-contents .txt-area {
    position: relative;
    padding: 8px 12px 32px;
}

.blog-list-item.entry-contents .entry-tag {
    min-width: 7em;
    background: #43688A;
    font-size: 12px;
    letter-spacing: 0;
    text-align: center;
    line-height: 200%;
    color: #fff;
    padding: 0 10px;
    box-sizing: border-box;
    position: absolute;
    top: 8px;
    right: 12px;
}

.blog-list-item.entry-contents .entry-date {
    font-size: 10px;
    line-height: 160%;
    color: #969696;
    margin-bottom: 16px;
}

.blog-list-item.entry-contents .entry-ttl {
    font-weight: bold;
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 14px;
}

.blog-list-item.entry-contents .entry-name {
    display: inline-block;
    min-width: 22em;
    font-size: 10px;
    text-align: center;
    line-height: 200%;
    background: #EFEFEF;
    padding: 0 20px;
    position: absolute;
    bottom: 12px;
    left: 12px;
}

/* 事例・実績一覧
---------------------------------------- */
.case-list-item .item-img img {
    width: 100%;
}

.case-list-item .item-title {
    font-weight: bold;
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 11px;
}

.case-list-item .item-business {

    font-size: 12px;
    line-height: 180%;
    margin-bottom: 8px;

}

.case-list-item .item-lead {

    font-weight: bold;
    font-size: 16px;
    line-height: 180%;
}

/* 関連書籍一覧
---------------------------------------- */
.book-list-item .book {
    width: calc((100% - 32px) / 2);
    background-image: url(../images/common/icon_window.png);
    background-repeat: no-repeat;
    background-position: bottom 12px right 12px;
    margin-bottom: 32px;
}


.book-list-item .book a {
    display: block;
    padding: 12px;
    box-sizing: border-box;
    overflow: hidden;
}

.book-list-item .book .image {
    width: 43%;
    float: left;
}

.book-list-item .book .image img {
    width: 100%;
}

.book-list-item .book .txt-area {
    width: 52%;
    float: right;
}

.book-list-item .book .book-ttl {
    font-weight: bold;
    font-size: 16px;
    line-height: 180%;
    color: #000;
    margin-bottom: 24px;
}

.book-list-item .book .book-txt {
    font-size: 16px;
    line-height: 180%;
    color: #000;
}

/* アーカイブ（ブログカテゴリポップアップ部分）
---------------------------------------- */

.archive .mfp-content {
    background-color: #fff;
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
}

.archive .mfp-content h2 {
    font-weight: bold;
    font-size: 20px;
    line-height: 180%;
    text-align: center;
    margin-bottom: 24px;

}

.archive .cat-lists a {
    display: block;
    font-size: 16px;
    line-height: 180%;
    padding: 12px 0;
    border-bottom: 1px solid #1F272F;
    background-image: url(../images/common/icon_arrow.png);
    background-repeat: no-repeat;
    background-position: center right 12px;

}

/* セミナー一覧
---------------------------------------- */
.seminar-list {
    display: flex;
    flex-wrap: wrap;
    --col: 3;
    --gap: 32px;
    gap: var(--gap);
}
.seminar-list .item {
    width: calc((100% - ((var(--col) - 1) * var(--gap))) / var(--col));
    display: flex;
    flex-direction: column;
}
.seminar-list .item .image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.seminar-list .item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.seminar-list .item .info {
    padding: 8px 12px 32px;
    background-image: url(../images/common/icon_window.png);
    background-repeat: no-repeat;
    background-position: right 12px bottom 10px;
    background-size: 16px auto;
}
.seminar-list .item .info .meta {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: flex-start;
    /* justify-content: space-between; */
    gap: 8px;
    margin-bottom: 16px;
}
.seminar-list .item .info .meta .cat {
    width: 56%;
    /* width: 210px; */
    font-weight: bold;
    font-size: 14px;
    line-height: 180%;
    color: #FFF;
    text-align: center;
    background: #43688A;
    padding: 4px 0;
    border-radius: 4px;
    box-sizing: border-box;
}
.seminar-list .item .info .meta .past {
    flex: 1;
    /* width: fit-content; */
    font-weight: bold;
    font-size: 14px;
    line-height: 180%;
    color: #FFF;
    text-align: center;
    background: #ababab;
    padding: 4px 8px;
    border-radius: 4px;
    box-sizing: border-box;
}
.seminar-list .item .info .summary .date {
    font-size: 14px;
    line-height: 180%;
}
.seminar-list .item .info .summary .title {
    font-weight: bold;
    font-size: 16px;
    line-height: 180%;
    /* display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical; */
}

/* セミナー一覧(旧)
---------------------------------------- */
/* .latest-seminar-list .latest-seminar-wrap{
}
.latest-seminar-list .latest {
    width: calc((100% - 32px) / 2);
    overflow: hidden;
    margin-right:32px;
    margin-bottom:32px;
}
.latest-seminar-list .latest:last-child,
.latest-seminar-list .latest:nth-child(2n){
    margin-right:0;
}

.latest-seminar-list .latest .image {
    position: relative;
	width: 100%;
	padding-top: 38%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.latest-seminar-list .latest .image img {
    width: 100%;
}

.latest-seminar-list .latest .image .icon {
    font-weight: bold;
    font-size: 16px;
    line-height: 180%;
    color: #FFF;
    padding: 8px 20px;
    background: rgba(31, 39, 47, 0.4);
    position: absolute;
    top: 24px;
    left: 24px;
}

.latest-seminar-list .latest .txt-area {
    padding: 10px 10px 30px 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-image: url(../images/common/icon_window.png);
    background-repeat: no-repeat;
    background-position:  right 10px bottom 10px;
}
.latest-seminar-list .latest .txt-area .ttl-area {
    width:100%;
}

.latest-seminar-list .latest .txt-area .post-type {
    width: 210px;
    font-weight: bold;
    font-size: 14px;
    line-height: 180%;
    color: #FFF;
    text-align: center;
    background: #43688A;
    padding: 8px 0;
    box-sizing: border-box;
    margin-right: 16px;
}



.latest-seminar-list .latest .txt-area .date {
    font-size: 14px;
    line-height: 180%;
}


.latest-seminar-list .latest .txt-area .ttl {

    font-weight: bold;
    font-size: 16px;
    line-height: 180%;

    display: -webkit-box;
    overflow: hidden;
	white-space: normal;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

} */

/* お知らせ一覧
---------------------------------------- */

.news-list-item li {
    width: 100%;
    border-bottom: 1px solid #969696;
}

.news-list-item li a {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 24px 24px 24px 0;
    background-image: url(../images/common/icon_arrow.png);
    background-repeat: no-repeat;
    background-position: center right;
}


.news-list-item li .date {
    width: 104px;
    font-size: 12px;
    line-height: 250%;
    margin-right: 20px;
}

.news-list-item li .ttl {
    width: calc(100% - 120px);
    font-size: 16px;
    line-height: 180%;
}

.news-list-item li .ttl:hover {
    text-decoration: underline;
}
.news-list-item li .ttl .label {
    display: inline-block;
    font-size: 12px;
    line-height: 190%;
    color: #fff;
    padding: 1px 8px;
    background-color: #1F272F;
    border-radius: 2px;
    margin-right: 8px;
}

/* ブログタグリスト
---------------------------------------- */
.blog-tag-lists {
    text-align: center;
    letter-spacing: 8px;
    padding: 0;
    margin-bottom: 32px;
}

.blog-tag-lists li {
    display: inline-block;
    background: #43688A;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 200%;
    color: #fff;
    padding: 0;
    margin-bottom: 5px;
}

.blog-tag-lists li a {
    display: block;
    padding: 0 10px;
    box-sizing: border-box;
}

/* セミナー一覧
---------------------------------------- */
.webinar-list-item .entry {
    border-bottom: 1.5px solid #1F272F;

}

.webinar-list-item .entry a {
    width: 100%;
    padding: 16px 20px 16px 0;
}

.webinar-list-item .entry .cat {
    width: 56px;
    height: 40px;
    background: #43688A;
    margin-right: 16px;
    position: relative;
}

.webinar-list-item .entry .cat .cat-txt {
    width: calc(100% - 6px);
    color: #fff;
    font-size: 10px;
    line-height: 120%;
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.webinar-list-item .entry .ttl {
    width: calc(100% - 72px);
    font-weight: bold;
    font-size: 20px;
    line-height: 180%;
}
