/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

/*
Main: #30ADC4

*/

/* _g2 > header */

/*** ------------
 デフォルトレイアウト
------------ ***/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

body {
    position: relative !important;
    font-family: "Noto Sans JP";
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
input,
p {
    font-family: "Noto Sans JP";
}

body p,
body ul li,
body ol li,
body a,
body span {
    line-height: 26px;
}

ol li,
ul li {
    line-height: 26px !important;
}

@media (min-width:769px) {
    body {
        position: relative !important;
        font-size: 15px;
    }
}

@media (max-width:768px) {
    body {
        font-size: 1.5rem;
    }

    p {
        margin: 0 1.6rem 1.4rem;
    }
}

/* コンテナ幅を広げる */
@media (min-width: 576px) {
    :root {
        --vk-width-container: 576px;
    }

    .container {
        max-width: 576px;
    }
}

@media (min-width: 768px) {
    :root {
        --vk-width-container: 768px;
    }

    .container {
        max-width: 768px;
    }
}

@media (min-width: 992px) {
    :root {
        --vk-width-container: 992px;
    }

    .container {
        max-width: 992px;
    }
}

@media (min-width: 1200px) {
    :root {
        --vk-width-container: 1200px;
    }

    .container {
        max-width: 1200px;
    }
}


/*** ------------
 記事内見出し
------------ ***/

/* デフォルトのレイアウトクリア */
h2.wp-block-heading,
h2.wp-block-heading::before,
h2.wp-block-heading::after,
h3.wp-block-heading,
h3.wp-block-heading::before,
h3.wp-block-heading::after,
h4.wp-block-heading,
h4.wp-block-heading::before,
h4.wp-block-heading::after {
    border: none !important;
}


/* 記事内 h1 */
h1 {
    border: none !important;
}

/* 記事内 h2 */
h2.wp-block-heading {
    color: #404040;
    font-size: 22px;
    padding: 5px 0 20px 0;
    margin-bottom: 0;
}

h2.wp-block-heading:after {
    content: "";
    background-color: #30ADC4;
    height: 3px;
    display: block;
    margin-top: 5px;
}

/* 記事内 h3 */
h3.wp-block-heading {
    color: #404040;
    font-weight: 700;
    font-size: 17px;
    margin-top: 20px !important;
}

/* 記事内 h4 */
h4.wp-block-heading {
    color: #404040;
    font-weight: 700;
    font-size: 15px;
    padding-top: 10px;
}

h4.wp-block-heading:before {
    content: "・";
}

.entry-body .wp-block-list {
    padding-top: 6px;
    padding-bottom: 10px;
}

.entry-body .wp-block-list li {
    line-height: 20px !important;
}

@media (max-width:768px) {

    /* 記事内 h2 */
    h2.wp-block-heading {
        color: #404040;
        font-size: 18px;
        padding: 0 0 10px;
    }

    h2.wp-block-heading:after {
        content: "";
        background-color: #30ADC4;
        height: 3px;
        display: block;
        margin-top: 5px;
    }

    /* 記事内 h3 */
    h3.wp-block-heading {
        padding: 0 0 2px;
        font-size: 15px;
        color: #404040;
        font-weight: bold;
    }

    /* 記事内 h4 */
    h4.wp-block-heading {
        padding: 0 0 2px;
        font-size: 15px;
        color: #404040;
        font-weight: bold;
    }

    h4.wp-block-heading:before {
        content: "・";
    }
}

/*** ------------
 画像
------------ ***/
/* 画像キャプション */
.wp-element-caption {
    color: gray;
    line-height: 10px;
}

/* 画像中央寄せ */
.wp-block-image .aligncenter {
    text-align: center !important;
    margin: 0 auto !important;
}


/***
* 新ヘッダー
***/
.header {
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
    background: #FFF;
    border-bottom: 1px solid #BEBEBE;
    font-family: "Noto Sans JP" !important;
}

.header a {
    text-decoration: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 1440px;
    height: 99px;
    font-weight: 600 !important;
}

@media screen and (min-width: 769px) and (max-width: 1440px) {
    .header-inner {
        margin: 0 15px;
        width: calc(100% - 30px);
    }
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    width: 150px;
}

.header-nav {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0;
}

.header-nav-top {
    margin: 0 0 17px;
}

.header-nav-top ul {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.header-nav-top ul li a {
    align-items: center;
    border-bottom: 2px solid #fff;
    color: #050126;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    gap: 5px;
    transition: all .15s linear;
}

.header-nav-top ul li a:before {
    content: "";
    display: inline-block;
    height: 22px;
    width: 22px;
    transition: all .15s linear;
}

.header-nav-top ul li.company a:before {
    background: url(https://training.ejinzai.jp/wp-content/uploads/2025/07/ic_company.webp) no-repeat 0 0;
    background-size: contain;
}


.header-nav-top ul li.recruit a:before {
    background: url(https://training.ejinzai.jp/wp-content/uploads/2025/07/ic_recruit.webp) no-repeat 0 0;
    background-size: contain;
}

.header-nav-top ul li.hakenform a:before {
    background: url(https://training.ejinzai.jp/wp-content/uploads/2025/07/ic_hakenform.webp) no-repeat 0 0;
    background-size: contain;
}

.header-nav-top ul li.tel a:before {
    background: url(https://training.ejinzai.jp/wp-content/uploads/2025/07/ic_phone-1.webp) no-repeat 0 0;
    background-size: contain;
}

.header-nav-top ul li a:hover {
    border-bottom: 2px solid #050126;
    opacity: 1;
}

.header-nav-top ul li a:hover:before {
    transform: rotate(-30deg);
}

.header-nav-bottom ul {
    align-items: center;
    display: flex;
    gap: 20px;
}

.header-nav-bottom ul li.home a {
    padding: 0 0 12px;
}

.header-nav-bottom ul li a {
    color: #050126;
    font-size: 15px;
    font-weight: 500;
    padding: 0 0 15px;
    position: relative;
}

.header-nav-bottom ul li.home img {
    height: 22px;
    width: 22px;
}

.header-nav-bottom ul li a:after {
    background: #25aeea;
    border: 1px solid #050126;
    bottom: 0;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left top;
    transition: transform .3s;
    width: 100%;
}

.header-nav-bottom ul li.active a:after {
    transform: scale(1);
}

.header-nav-bottom ul li.btn {
    padding: 0px !important;
}

.header-nav-bottom ul li.btn a {
    align-items: center;
    background: #fff;
    border: 1px solid #050126;
    border-radius: 15px;
    color: #050126;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    height: 26px;
    justify-content: center;
    padding: 0 0 2px;
    width: 110px;
}

.header-nav-bottom ul li.btn__red a {
    background: #ffafe0;
}

.header-nav-bottom ul li.btn a:hover {
    background: #050126;
    opacity: 1.0;
    color: #FFF !important;
    transition: all 0.15s linear;
    text-decoration: none;
}

.header-ext {
    background: #f3ece9;
    border-top: 1px solid #050126;
}

.header-ext .header-inner {
    align-items: center;
    display: flex;
    gap: 20px;
    height: 49px;
    justify-content: flex-end;
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
    .header-inner {
        margin: 0 15px;
        width: calc(100% - 30px);
    }
}

#___gcse_0 {
    width: 240px;
}

#___gcse_0 .gsc-control-cse {
    background: none;
    border: none;
    padding: 0;
}

.gsc-control-wrapper-cse {
    width: 100%;
}

#___gcse_0 .gsc-search-box {
    margin: 0;
}

table.gsc-search-box {
    border-style: none;
    border-width: 0;
    border-spacing: 0 0;
    width: 100%;
    margin-bottom: 2px;
}

#___gcse_0 .gsc-input {
    padding: 0;
}

table.gsc-search-box td {
    vertical-align: middle;
}

.gsc-input {
    font-size: 16px;
}

#___gcse_0 .gsc-input-box {
    border: 1px solid #050126;
    border-radius: 15px 0 0 15px;
    border-right: none;
    height: 26px;
    padding: 0;
}

#___gcse_0 .gsc-search-button {
    border-radius: 0 15px 15px 0;
    margin: 0;
}

#___gcse_0 .gsc-search-button-v2 {
    background: #050126;
    border: none;
    cursor: pointer;
    height: 26px;
    padding: 0;
    width: 40px;
}

.gsc-search-button-v2 svg {
    fill: #FFFFFF;
}

.gsc-search-box-tools .gsc-clear-button {
    display: none;
}

table.gsc-search-box td {
    vertical-align: middle;
}

table.gsc-search-box td input {
    margin: -0.2em 0px 0px !important;
}

.gsc-clear-button {
    display: inline;
    text-align: right;
    margin-left: 4px;
    margin-right: 4px;
    padding-left: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(//www.google.com/cse/static/css/v2/clear.png);
    cursor: pointer;
}

.login_box {
    display: none;
}

.login_box,
.logout_box {
    background: none;
    box-shadow: none;
    padding: 0;
}

.header-link-mypage a {
    align-items: center;
    background: #99d3fc;
    border: 1px solid #050126;
    border-radius: 15px;
    color: #050126;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    height: 26px;
    justify-content: center;
    padding: 0 0 2px;
    width: 110px;
}

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

    .login_box a,
    .logout_box a {
        font-size: 13px;
    }
}

.header-link-mypage a:before {
    background: url(https://training.ejinzai.jp/wp-content/uploads/2025/07/header_icon_mypage.png) no-repeat 0 0;
    background-size: contain;
    content: "";
    height: 14px;
    padding: 0 20px 0 0;
    position: relative;
    top: 1px;
    width: 14px;
}

.header-link-mypage a:hover {
    background: #050126;
    opacity: 1.0;
    color: #FFF !important;
    transition: all 0.15s linear;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .header-inner {
        height: 50px;
        padding: 0 15px;
        width: 100%;
    }

    .header-nav {
        margin: 10px 45px 0 0 !important;
    }

    .header-nav-top {
        display: none;
    }

    .header-nav-bottom ul li.home {
        display: none;
    }

    .header-nav-bottom ul li.txtlink {
        display: none;
    }

    .header-nav-bottom ul li.btn__red {
        display: none;
    }

}


/***
* 新ヘッダー SP
***/
@media screen and (max-width: 768px) {
    .header-inner {
        padding: 0 15px;
        width: 100%;
        height: 50px;
    }

    .header-logo img {
        width: 85px;
        height: 28px;
    }

    #humberger {
        display: block;
        position: fixed;
        top: 8px;
        right: 10px;
        padding: 10px 9px 7px;
        width: 15px;
        border: 1px solid #050126;
        border-radius: 50%;
        box-sizing: initial;
        background: #B3DEFD;
        cursor: pointer;
        z-index: 50000;
    }

    #humbergermenu-logo {
        display: block;
        position: fixed;
        width: 100%;
        height: 50px;
        background: #FFF;
        z-index: 50000;
    }

    #humbergermenu-logo a {
        position: relative;
        top: 11px;
        left: 15px;
        cursor: pointer;
    }

    #humbergermenu-logo a img {
        width: 85px;
        height: 28px;
    }

    .header-nav {
        margin: 6px 45px 0 0;
    }

    .header-nav-btn {
        margin: 0;
    }

    .header-nav-list {
        display: none;
    }

    .header-nav-btn ul li.tel {
        display: none;
    }

    .header-nav-btn ul li.btn__red {
        display: none;
    }

    #humberger {
        display: block;
        position: fixed;
        top: 8px;
        right: 10px;
        padding: 10px 9px 7px;
        width: 15px;
        border: 1px solid #050126;
        border-radius: 50%;
        box-sizing: initial;
        background: #B3DEFD;
        cursor: pointer;
        z-index: 50000;
    }

    .icon-bar {
        display: block;
        margin: 0 0 3px;
        height: 2px;
        box-sizing: initial;
        background: #050126;
        transition: all 400ms cubic-bezier(1, 0, 0, 1);
        transition-timing-function: cubic-bezier(1, 0, 0, 1);
    }

    body.drawer-opened #humberger {
        border: none;
        width: 20px;
        background: none;
    }

    body.drawer-opened #humberger :nth-child(1) {
        transform: translate(0, 5px) rotate(225deg);
    }

    body.drawer-opened #humberger :nth-child(2) {
        opacity: 0;
    }

    body.drawer-opened #humberger :nth-child(3) {
        transform: translate(0, -5px) rotate(-225deg);
    }

    body.drawer-opened #humberger .icon-bar {
        background: #050126;
    }

    /* Humburger Menu */
    #drawernav {
        display: none;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        background-color: #DDF0F9;
        color: #000;
        z-index: 20002;
        overflow-y: auto;
    }

    body.drawer-opened #overlay {
        z-index: 20001;
        opacity: 0.8;
        right: -240px;
    }

    body.drawer-opened #humberger {
        border: none;
        width: 20px;
        background: none;
    }

    .drawernav-inner {
        padding: 50px 15px 70px;
        background: #DBDBE0;
    }

    .drawernav-txtlist ul,
    .drawernav-txtlist li,
    .drawernav-txtlist p {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

    .drawernav-txtlist ul li:not(:last-child) {
        border-bottom: solid 1px #FFF;
    }

    .drawernav-txtlist ul li a {
        display: block;
        position: relative;
        padding: 5px 10px;
        font-size: 15px;
        font-weight: 500;
        color: #050126;
        transition: all 0.15s linear;
    }

    .drawernav-txtlist ul li a:hover {
        opacity: 0.6;
        transition: all 0.15s linear;
        text-decoration: none;
    }

    .drawernav-txtlist ul li.drawernav-txtlist-home img {
        width: 22px;
        height: 22px;
    }

    .drawernav-txtlist ul li a::after {
        transform: rotate(45deg);
        content: '';
        display: flex;
        align-items: center;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 10px;
        margin: auto;
        width: 7px;
        height: 7px;
        border-top: 1px solid #050126;
        border-right: 1px solid #050126;
        cursor: pointer;
    }

    .drawernav-btnlist {
        margin: 20px 0 40px;
        padding: 20px 0 0;
        border-top: solid 1px #050126;
    }

    .drawernav-btnlist ul,
    .drawernav-btnlist li {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

    .drawernav-btnlist ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .drawernav-btnlist ul li {
        display: flex;
        justify-content: center;
    }

    .drawernav-txtlist ul li.home img {
        height: 22px;
        width: 22px;
    }

    .nav-btn a {
        align-items: center;
        color: rgb(5, 1, 38);
        display: flex;
        font-size: 17px;
        font-weight: 700;
        height: 54px;
        justify-content: center;
        position: relative;
        width: 240px;
        background: rgb(255, 255, 255);
        border-width: 1px;
        border-style: solid;
        border-color: rgb(5, 1, 38);
        border-image: initial;
        border-radius: 40px;
        padding: 0px 40px 0px 60px;
    }

    .nav-btn a::before {
        animation-duration: 0.3s;
        animation-fill-mode: forwards;
        animation-name: btn-move-out;
        animation-timing-function: ease-in;
        content: "";
        height: 30px;
        position: absolute;
        width: 30px;
        background: url(https://training.ejinzai.jp/wp-content/uploads/2025/07/ic_arrow-1.webp) 50% center no-repeat rgb(5, 1, 38);
        border-radius: 50%;
        margin: 0px 0px 0px 15px;
    }

    @media screen and (max-width: 768px) {
        .nav-btn a {
            font-size: 15px;
            height: 44px;
            margin: 0px auto;
        }

        .drawernav-btnlist ul li.nav-btn a {
            width: 270px;
        }
    }

    .nav-btn a:before {
        animation-duration: .3s;
        animation-fill-mode: forwards;
        animation-name: btn-move-out;
        animation-timing-function: ease-in;
        background: #050126 url(https://training.ejinzai.jp/wp-content/uploads/2025/07/ic_arrow-1.webp) no-repeat 50%;
        border-radius: 50%;
        content: "";
        height: 30px;
        margin: 0 0 0 15px;
        position: absolute;
        width: 30px
    }

    @keyframes btn-move-out {
        0% {
            left: 5px
        }

        to {
            left: 0
        }
    }

    @media screen and (max-width: 768px) {
        .nav-btn a:before {
            background-size: 13px;
            height: 26px;
            width: 26px
        }
    }

    .nav-btn a:hover {
        background: #050126;
        color: #fff;
        opacity: 1
    }

    .nav-btn a:hover:before {
        animation-duration: .3s;
        animation-fill-mode: forwards;
        animation-name: btn-move-in;
        animation-timing-function: ease-in;
        background: url(https://training.ejinzai.jp/wp-content/uploads/2025/07/ic_arrow_l.webp) no-repeat 50%;
        margin: 0 0 0 22px
    }

    @keyframes btn-move-in {
        0% {
            left: 0
        }

        to {
            left: 5px
        }
    }

    .nav-btn__red a {
        background: #ffafe0;
        height: 48px;
        padding: 0 50px;
        width: 270px
    }

    @media screen and (max-width: 768px) {
        .nav-btn__red a {
            height: 44px
        }
    }

    .drawernav-btnlist li {
        width: 100%;
    }

    .drawernav-btnlist li a {
        text-decoration: none;
    }

    .drawernav-btnlist ul li.tel a {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 25px;
        font-weight: 500;
        color: #050126;
        justify-content: center;
    }

    .drawernav-btnlist ul li.tel a::before {
        content: '';
        display: inline-block;
        width: 34px;
        height: 34px;
        background: url(https://test02.ejinzai.jp/wp-content/uploads/2025/07/ic_phone.webp) no-repeat 0 0;
        background-size: contain;
    }

    .drawernav-txtlist ul li p::after {
        content: '';
        display: inline-block;
        position: relative;
        top: -1px;
        left: 10px;
        width: 9px;
        height: 9px;
        background: url(https://training.ejinzai.jp/wp-content/uploads/2025/07/ic_link.webp) no-repeat 0 0;
        background-size: contain;
    }



    .drawernav-btnlist ul li.tel a:hover {
        text-decoration: none;
        opacity: 0.6;
    }

    .drawernav-copyright {
        text-align: center;
        font-size: 13px;
        font-weight: 400;
    }

    .drawernav-txtlist ul li.training {
        border-bottom: 1px solid #050126;
        margin: 0 0 10px;
        padding: 0 0 15px;
    }

    .drawernav-btnlist ul li.nav-btn__contact {
        border-bottom: 1px solid #050126;
        padding: 0 0 20px;
    }

}

/*** ------------
 フッター
------------ ***/
.footer-inner {
    padding: 66px 15px 50px;
    width: 100%;
}

.footer dl,
ol,
ul {
    margin-top: 0em;
    margin-bottom: 0px;
    padding: 0px;
}

.footer-otherlist ul li.isms span {
    display: block;
    text-align: center;
    padding: 5px 0 0;
    color: #050126;
    font-family: "Noto Sans JP";
    font-size: 10px;
    line-height: 10px;
}

.footer-linklist ul li {
    margin-bottom: 6px;
}

.footer-linklist ul li a {
    font-family: "Noto Sans JP";
}

.footer-linklist ul {
    display: flex;
    flex-direction: column;
    gap: 05px;
}

.footer-otherlist ul li {
    margin-bottom: 0px;
}

.footer-bottom-link ul li a {
    margin-bottom: 0px;
    font-family: "Noto Sans JP";
}

.footer-logo {
    margin: 0 0 20px;
}

.footer-btnlist ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-btnlist ul li .mod-btn__red a {
    height: 54px;
}

.footer-btnlist ul li .mod-btn a {
    padding: 0 50px;
    width: 270px;
}

@keyframes btn-move-in {
    from {
        left: 0px;
    }

    to {
        left: 23px;
    }
}

@keyframes btn-move-out {
    from {
        left: 23px;
    }

    to {
        left: 0px;
    }
}


.footer .mod-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 40px 0 60px;
    width: 240px;
    height: 54px;
    border-radius: 40px;
    border: solid 1px #050126;
    font-size: 17px;
    font-weight: 700;
    background: #FFF;
    color: #050126;
}

.footer .mod-btn__red a {
    padding: 0 50px;
    width: 270px;
    height: 48px;
    background: #FFAFE0;
}

.footer .mod-btn a::before {
    content: "";
    position: absolute;
    margin: 0 0 0 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #050126 url(https://training.ejinzai.jp/wp-content/uploads/2025/07/ic_arrow.webp) no-repeat center center;
    animation-name: btn-move-out;
    animation-duration: 300ms;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    width: 26px;
    height: 26px;
    background-size: 13px;
}

.footer .mod-btn a:hover {
    text-decoration: none;
    background-color: #050126;
    color: #FFF;
    opacity: 1;
}

.mod-btn a:hover::before {
    margin: 0 0 0 22px;
    background: url(https://training.ejinzai.jp/wp-content/uploads/2025/07/ic_arrow.webp) no-repeat center center;
    animation-name: btn-move-in;
    animation-duration: 300ms;
    animation-fill-mode:
        forwards;
    animation-timing-function: ease-in;
}


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

    .footer-inner {
        padding-top: 40px;
        width: 100%;
    }

    .footer-logo {
        margin: 0 auto 30px;
        width: 150px;
    }

    .footer-linklist {
        flex-wrap: wrap;
        gap: 25px;
        margin: 0 0 28px;
    }

    .footer-linklist ul {
        flex-direction: unset;
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .footer-linklist ul li {
        margin-bottom: 0px;
    }

    .footer-linklist {
        gap: 10px 25px;
    }

    .footer-btnlist ul {
        gap: 4px 25px;
    }

    .footer-btnlist {
        margin: 0 auto 40px;
    }

    .footer-bottom-link ul li {
        margin-bottom: 0px;
    }

    .footer-bottom-link ul {
        justify-content: center;
        gap: 0px 30px;
        margin: 0 0 20px;
    }

    .footer-btnlist ul li .mod-btn a {
        height: 42px;
        font-size: 1.1em;
    }

    .footer-btnlist ul li .mod-btn__red a {
        height: 54px;
    }

    .footer-bottom {
        padding: 20px 0 0;
    }

}


/*** ------------
 TOPページ
------------ ***/
.home .siteContent {
    margin-top: 0px;
}

.siteContent {
    margin-top: 60px;
}


.home .pc_slider {
    margin-top: 60px;
}


@media screen and (max-width: 764px) {
    .siteContent {
        margin-top: 60px;
    }
}

/* 記事一覧*/

/* メイン見出し */
.page-id-4280 article h2.wp-block-heading {
    line-height: 18px;
    border-left: 4px solid #30ADC4 !important;
    padding: 4px 6px 8px 12px !important;
    margin-bottom: 16px;
}

.page-id-4280 h2.wp-block-heading:after {
    content: none;
}

.front_post_list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-top: 10px;
}

.front_post_list:last-child {
    border: none;
}

.front_post_list h2 {
    border: none;
    margin: 0;
    padding: 0 0 10px 0 !important;
    line-height: 18px;
}

.front_post_list h2 a {
    font-size: 18px;
    font-weight: 700;
    color: #243147;
    line-height: 18px;
}

.front_post_list .thumb_box {
    width: 24%;
}

.front_post_list .thumb_box img:hover {
    box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.2);
}

.front_post_list .info_box {
    width: 74%;
}

.front_post_list .info_box p {
    margin-bottom: 6px;
    font-size: 13px !important;
    line-height: 20px;
}

.front_post_list .info_box a.read-more {
    font-size: 12px;
    line-height: 21px;
    text-decoration: underline;
}

/* もっと見るボタン */
.front-btn {
    margin: 0 auto !important;
    text-align: center !important;
}

.front-btn a {
    width: 130px !important;
    margin: 0 auto !important;
    border: 2px solid #30ADC4!important;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 0px !important;
}


@media (max-width:768px) {

    .page-id-4280 .z_global_menu {
        margin-bottom: 20px !important;
    }

    .front_post_list .info_box p {
        margin: 0 !important;
    }

    .front_post_list .thumb_box {
        width: 32%;
    }

    .front_post_list .info_box {
        width: 65%;
    }
}



/*** ------------
 投稿ページ
------------ ***/
h1.entry-title {
    font-size: 22px;
    line-height: 28px;
    color: #243147;
}

.single article h2,
.single article h3,
.single article ol,
.single article ul,
.single article p {
    margin: 0;
    padding: 0;
}

.single article h2 {
    padding-top: 10px;
    padding-bottom: 30px;
}

.single article h3 {
    padding-top: 10px;
    padding-bottom: 20px;
}

.single article p,
.single article ol,
.single article ul {
    padding-bottom: 20px;
}

.single article ol,
.single article ul {
    margin-left: 20px;
}

.entry-header {
    border: none;
}

.entry-body hr.wp-block-separator {
    border: 0.2px solid #CCCCCC !important;

}

.entry-meta_updated,
.entry-meta_items_author {
    display: none;
}

.entry-meta-dataList dt {
    font-weight: 600;
}

/* ブロックエディター内 ボタン */
.single .wp-block-button__link {
    background: #2C4E8C;
    color: white;
    width: 60% !important;
    padding: 10px 20px;
    border-radius: 30px !important;
    text-align: center;
    margin: 0 auto;
    display: block;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.single .wp-block-button__link:hover {
    background: #E5F4FD !important;
    color: #369FE8 !important;
}

@media (max-width:768px) {
    .single .wp-block-button__link {
        width: 100% !important;
        font-size: 1em;
    }
}

/* クリックで拡大 */
.fancybox:after {
    display: block;
    content: "※クリックで拡大";
    text-align: center;
    font-size: 0.8em;
}

.wp-block-image figure {
    margin: 0 !important;
}

p.has-small-font-size {
    font-size: 0.8em !important;
    line-height: 20px;
}

@media (max-width:768px) {
    body {
        font-size: 1em;
    }

    p {
        margin: 0 0rem 1.4rem;
    }

}

/* 目次 */
h2.simpletoc-title {
    border: none;
    background: #30ADC4;
    color: white;
    text-align: center;
    padding: 6px 0 !important;
    font-size: 1.2em;
    margin-bottom: 0px !important;
    margin-top: 20px !important;
}

.simpletoc-list {
    border: 3px solid #30ADC4;
    width: 100%;
    margin-left: 0px !important;
    margin-bottom: 40px !important;
}

.simpletoc-list li {
    list-style: none;
}

.simpletoc-list a {
    color: #404040;
    text-decoration: underline;
    margin: 0px !important;
    padding: 0px !important;
}

/* Table */
.wp-block-table table {
    margin-bottom: 10px;
}

.wp-block-table .wp-element-caption {
    font-size: 0.8em;
}

.top-t-header table tr:first-child {
    background: #E8E8E8;
}

.left-t-header table tr td:first-child {
    background: #E8E8E8;
}

@media (max-width:768px) {
    .wp-block-table {
        width: 100%;
    }
}

@media (max-width:428px) {
    .wp-block-table {
        padding: 0px;
    }

    .wp-block-table.scroll_table {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .wp-block-table.scroll_table table {
        width: auto;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .wp-block-table.scroll_table .wp-element-caption {
        text-align: left;
    }

    .wp-block-table {
        margin-bottom: 30px;
    }
}

/*** ------------
 記事内目次
------------ ***/

.toc_container {
    border: 3px solid #30ADC4;
    margin-bottom: 30px;
}

.toc_container:before {
    content: "目次";
    display: block;
    background: #30ADC4;
    text-align: center;
    font-size: 1.2em;
    font-weight: 600;
    padding: 6px 0;
    color: white;
}

.toc_container ol:first-child {
    padding-top: 10px;
}

.toc_container ol {
    list-style-type: none;
}

.toc_container ol a {
    color: #404040;
    text-decoration: underline;
}

@media (max-width:768px) {
    .toc_container {
        width: 100%;
        margin: 0 auto 24px;
    }
}

@media (max-width:428px) {
    .toc_container ol {
        padding: 0 10px;
    }

    .toc_container ol:first-child {
        margin-left: 0px;
    }
}


/*** ------------
 Profile
------------ ***/

.profile_box {
    border: 3px solid #30ADC4;
    margin-bottom: 30px;
}

.profile_box:before {
    content: "執筆者プロフィール";
    display: block;
    background: #30ADC4;
    text-align: center;
    font-size: 1.2em;
    font-weight: 600;
    padding: 6px 0;
    color: white;
}

.profile_box .container {
    display: flex;
    justify-content: space-between;
    padding: 30px 20px 10px 20px;
    box-sizing: border-box;
    width: 100%;
}

.profile_box .container .profile_img {
    width: 26%;
}

.profile_box .container .profile_img img {
    width: 100%;
    border-radius: 50%;
}

.profile_box .container .profile_info {
    width: 70%;
}

.profile_box .container .profile_name {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0px !important;
    padding-bottom: 20px;
}

/* 写真なしの場合 */
.profile_box.no-pic .container .profile_info {
    width: 100%;
}

@media (max-width:768px) {
    .profile_box {
        width: 100%;
        margin: 0 auto 24px;
    }

    .profile_box .container {
        display: block;
    }

    .profile_box .container .profile_img {
        width: 200px;
        margin: 0 auto;
    }

    .profile_box .container .profile_info {
        width: 100%;
    }

    .profile_box .container .profile_name {
        text-align: center;
        margin: 10px 0 !important;
    }

}

@media (max-width:428px) {
    .profile_box .container {
        padding: 20px 10px;
    }
}

/*** ------------
 記事内テーブル
------------ ***/

.wp-block-table thead {
    border-bottom: 1px;
}

.wp-block-table th {
    background: #E8E8E8;
}

.wp-block-table table {
    margin-bottom: 10px;
}

.wp-block-table .wp-element-caption {
    font-size: 0.8em;
}


.wp-block-table {
    padding-bottom: 10px !important;
}

.wp-block-table,
table td,
table th {
    font-size: unset !important;
}

@media (max-width:768px) {
    .wp-block-table {
        width: 96%;
        margin: 0 auto;
    }
}

@media (max-width:428px) {
    .wp-block-table {
        padding: 0 10px;
    }

    .wp-block-table.scroll_table {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .wp-block-table.scroll_table table {
        width: auto;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .wp-block-table.scroll_table .wp-element-caption {
        text-align: left;
    }

    .wp-block-table {
        margin-bottom: 30px;

    }
}

/*** ------------
 SNS & いいね設定
------------ ***/
.wp_ulike_general_class {
    margin-bottom: 10px !important;
}

.wp_ulike_general_class button {
    background: white !important;
    border: 1px solid #C8C8C8 !important;
}

.wp_ulike_put_image:after {
    filter: brightness(0) saturate(100%) invert(29%) sepia(99%) saturate(5392%) hue-rotate(350deg) brightness(0%) contrast(142%);
}

.veu_socialSet {
    margin: 0px !important;
    margin-bottom: 20px !important;
}

.wpulike:before {
    content: "いいね：";
    font-size: 12px;
    font-weight: 700;
    color: #808080;
    display: block;
    padding-bottom: 10px;
}

.veu_socialSet:before {
    content: "共有：";
    font-size: 12px;
    font-weight: 700;
    color: #808080;
}

.sb_icon {
    padding-top: 10px !important;
    width: 120px !important;
}

.sb_icon a {
    background: white !important;
    border: 1px solid #C8C8C8 !important;
    color: #2C3338 !important;
    box-shadow: none !important;
}

.category .wpulike {
    display: none;
}

.page-id-4280 .sb_icon {
    display: none;
}

.page-id-4280 .veu_socialSet:before {
    display: none;
}

/*** ------------
 サイドバー ウィジェット
------------ ***/

/* タイトル */
.sideSection h2 {
    font-family: "Noto Sans JP";
    color: #243147;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: -20px !important;
}

.sideSection h2:after {
    content: none;
}

.sideSection h2.wp-block-heading {
    padding: 0 0 10px;
}

.sideSection h3.wp-block-heading {
    padding: 0 0 2px;
}

.sideSection h4.wp-block-heading {
    padding: 0 0 2px;
}


@media (max-width:768px) {
    #block-13.widget_tag_cloud p {
        margin: 0;
    }
}

/* 検索ボタン */
.wp-block-search__inside-wrapper {
    flex: wrap;
}

.wp-block-search input.wp-block-search__input {
    width: 80%;
    border: 2px solid #30ADC4;
    border-radius: 0px;
}

.wp-block-search .wp-block-search__button {
    width: 18%;
    padding: 4px;
    font-size: 16px;
    margin: 0 !important;
    border-radius: 0px !important;
}

/* サイドバー > カテゴリークラウド & タグクラウド */
#block-19.widget_tag_cloud p,
#block-13.widget_tag_cloud p {
    background: #fff;
    padding: 0px;
}

#block-19.widget_tag_cloud,
#block-13.widget_tag_cloud {
    background: #fff;
    /* padding: 24px 20px 4px 20px; */
}

#block-19.widget_tag_cloud a:hover,
#block-13.widget_tag_cloud a:hover {
    text-decoration: underline;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    transition-duration: 0.4s;
}

#block-19.widget_tag_cloud a::before,
#block-13.widget_tag_cloud a::before {
    content: "#";
    font-weight: bold;
}

@media (max-width:768px) {

    #block-19.widget_tag_cloud p,
    #block-13.widget_tag_cloud p {
        margin: 0;
    }
}

#block-19.widget_tag_cloud p a,
#block-13.widget_tag_cloud p a {
    background: #e8e8e8;
    color: #4b4b4b;
    text-decoration: none;
    border-radius: 3px;
    padding: 2px 10px;
    margin-bottom: 8px;
    font-size: 12px !important;
}

/* サイドバー > カテゴリー */
#block-23.widget_categories {
    background: #fff;
    padding: 10px 54px 10px;
}

#block-23.widget_categories li a {
    display: block;
    padding: 4px 0em;
    border-bottom: none;
    position: relative;
}

#block-23.widget_categories li a:before {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    top: 7px;
    left: -33px;
}

#block-23.widget_categories li a:hover:before {
    opacity: 0.6;
}

/* インタビュー */
#block-23.widget_categories li.cat-item-2 a:before {
    background: url(http://article.ejinzai.jp/wp-content/uploads/2024/05/categories_icon01.png)no-repeat center/ cover;
}

/* コラム */
#block-23.widget_categories li.cat-item-3 a:before {
    background: url(http://article.ejinzai.jp/wp-content/uploads/2024/05/categories_icon02.png)no-repeat center/ cover;
}

/* 時流トピック */
#block-23.widget_categories li.cat-item-11 a:before {
    background: url(http://article.ejinzai.jp/wp-content/uploads/2024/05/categories_icon04.png)no-repeat center/ cover;
}

/* 論説 */
#block-23.widget_categories li.cat-item-10 a:before {
    background: url(http://article.ejinzai.jp/wp-content/uploads/2024/05/categories_icon05.png)no-repeat center/ cover;
}

/* 連載 */
#block-23.widget_categories li.cat-item-9 a:before {
    background: url(http://article.ejinzai.jp/wp-content/uploads/2024/05/categories_icon03.png)no-repeat center/ cover;
}

/* 社長メルマガ */
#block-23.widget_categories li.cat-item-208 a:before {
    background: url(https://article.ejinzai.jp/wp-content/uploads/2024/06/categories_icon06.png)no-repeat center/ cover;
}


/* サイドバー > メルマガ登録 */
.sidebar_cta {
    background: #F3F0E9;
    padding: 0px 20px;
    border: 1px solid #A6C3E8;
}

.sidebar_cta h2.widget-title {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    border: none;
    padding-bottom: 20px;
}

.sidebar_cta h2.widget-title span.deco {
    color: #2774DC;
    font-size: 17px;
    font-weight: 600;
}

.sidebar_cta .wpcf7-form.init p label {
    position: relative;
    width: 100%;
}

.sidebar_cta .wpcf7-form.init.init p label .absolute {
    display: inline;
    position: relative;
    z-index: 2;
    width: fit-content;
    height: fit-content;
    background-color: #F4F0E9;
    font-size: 12px;
    color: #000;
    font-weight: normal;
    padding: 0 .5em;
    top: .9em;
    left: 8px;
}

.sidebar_cta input.wpcf7-email {
    background-color: #F4F0E9 !important;
    border: 1px solid #666666;
    font-size: 14px;
    height: 50px;
}

.sidebar_cta input.wpcf7-submit {
    display: block;
    width: 166px;
    background: #2775DC;
    color: #fff;
    margin: 24px auto 0;
    border-radius: 7px;
    border: 2px solid #2775DC;
    margin-top: 0px;
}

.sidebar_cta input.wpcf7-submit:hover {
    background: #C3D2DD;
}

.sidebar_cta .notes,
.sidebar_cta .notes a {
    display: inline-block;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: .03em;
}


/*** ------------
 カテゴリー一覧ページ
------------ ***/

/* カテゴリーヘッダー表示 */
.section.page-header {
    background: #FFFFFF;
    color: black;
    text-align: left;
    color: #243147;
    font-weight: 600;
}

.category .page-title,
.search-results .page-title {
    color: #243147;
    font-size: 22px;
    margin-bottom: 20px;
}


.category .postList h1.entry-title a {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    line-height: 18px;
}

.category .media-body_excerpt p {
    margin-bottom: 6px;
    font-size: 13px !important;
    line-height: 20px;
}

.category .entry-meta {
    margin-bottom: 0px;
}

.category .postList_thumbnail {
    width: 24% !important;
    margin-right: 0px !important;
    padding-right: 10px
}

.category .media-body {
    width: 104% !important;
}

.postList_thumbnail a {
    border: none !important;
}

.entry-meta_items_term_button {
    padding: 4px 1em 5px;
}

/*** ------------
 タグ一覧ページ
------------ ***/
.tag .page-title {
    color: #243147;
    font-size: 22px;
    margin-bottom: 20px;
}

/*** ------------
 Lazy Blocks
------------ ***/

/* ハイライトページ */
.front_post_list_hl_container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.front_post_list_hl {
    background: white;
    width: 48%;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
    transition-duration: 0.4s;
    margin-bottom: 20px;
}

.front_post_list_hl:hover {
    background: white;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.front_post_list_hl .thumb_box img {
    height: 170px;
    object-fit: cover;
}

.front_post_list_hl .info_box {
    padding: 10px 14px;
}

.front_post_list_hl .info_box h2 {
    font-size: 18px;
    line-height: 23px;
    border: none;
    margin: 10px 0px 6px 0px;
    padding: 0px;
}

.front_post_list_hl .info_box h2 a {
    color: #243147;
}

.front_post_list_hl .info_box .top_tags {
    padding-bottom: 0px;
    margin-bottom: 0px;
    line-height: 12px;
    margin-top: 6px;
}

.front_post_list_hl .info_box .top_tags a {
    padding-bottom: 0px !important;
    background: #75BBDD;
    color: white;
    line-height: 13px;
    margin-right: 6px;
    padding: 0px 6px 2px 6px;
    margin-bottom: 0px !important;
    line-height: 12px !important;
    border-radius: 2px;
}

.front_post_list_hl .info_box p {
    color: #404040;
    font-size: 12px;
}

.front_post_list_hl .info_box .read-more {
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    text-decoration: underline;
    width: 100%;
    text-align: right;
    margin-bottom: 8px;
}

@media (max-width:768px) {
    .front_post_list_hl_container {
        flex-wrap: wrap;
    }

    .front_post_list_hl {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* セミナー情報 */

.seminar_header {
    background-color: #0078BE;
    color: white;
    text-align: center;
    padding: 3px 10px;
    width: 100px;
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 1em;
}

.seminar_box {
    border: 2px solid #0078BE;
    background: white;
    padding: 20px 30px 36px 30px;
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
}

.seminar_box h2 {
    border: none;
}

.seminar_box h2 {
    color: #0078BE;
    font-weight: 600;
    font-size: 1.5em;
    text-align: center;
    padding: 0;
    margin-bottom: 0px;
    margin-top: 10px;
}

.seminar_box h2:after {
    content: "";
    height: 2px;
    width: 100px;
    background: #0078BE;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    box-shadow: 3px 2px 0px 0px rgba(0, 0, 0, 0.2);
}

.seminar_box .seminar_box_info {
    margin-bottom: 0px;
}

.seminar_box .seminar_btn {
    background: #0078BE;
    color: white;
    width: 260px;
    padding: 6px 20px 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
    display: block;
    font-size: 1.2em;
}

.seminar_box .seminar_btn:hover {
    background: #E5F4FD;
    color: #369FE8;
}

@media (max-width:768px) {
    .seminar_box {
        width: 100%;
        margin: 0 auto;
        padding: 30px 10px 40px 10px;
        margin-bottom: 30px;
    }

    .seminar_box h2 {
        font-size: 1.4em;
    }

    .seminar_box .seminar_btn {
        font-size: 1em;
    }
}

/* ブログカード */
.blog-card {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    overflow: hidden;
    margin: 20px 0;
    padding: 10px;
    align-items: center;
    position: relative;
}

.blog-card:before {
    content: "関連記事";
    position: absolute;
    top: 0;
    left: 0;
    background: #666666;
    color: white;
    padding: 4px 12px;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 0.06em;
}

.blog-card-thumbnail {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    overflow: hidden;
}

.blog-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card-title {
    margin: 0;
    font-size: 1.2em;
    border: none;
    font-weight: bold;
}

.blog-card-title:after {
    display: none;
}

.blog-card-title a {
    text-decoration: none;
    color: #333;
}

.blog-card-title a:hover {
    text-decoration: underline;
}

.blog-card-excerpt {
    margin: 10px 0;
    font-size: 13px !important;
    line-height: 16px !important;
    flex-grow: 1;
}

.blog-card-excerpt a {
    margin: 10px 0;
    font-size: 13px !important;
    line-height: 16px !important;
    color: #333;
}

h3.blog-card-title {
    padding-top: 0px !important;
    padding-bottom: 10px !important;
}

p.blog-card-excerpt {
    padding-bottom: 0px !important;
}

@media (max-width:428px) {
    .blog-card {
        flex-wrap: wrap;
    }

    .blog-card-thumbnail {
        width: 100%;
    }

    .blog-card-content {
        padding: 10px 0px;
    }

    .blog-card-excerpt {
        margin-bottom: 0px;
    }
}

.blog-card.seminar:before {
    content: "セミナー";
    position: absolute;
    top: 0;
    left: 0;
    background: #2042A4;
    color: white;
    padding: 4px 12px;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 0.06em;
}

/*** ------------
 フッター
------------ ***/

.siteFooter {
    background: #30ADC4 !important;
    color: white;
    height: 100%;
}

.copySection {
    display: none;
}

.footerWidget {
    padding-bottom: 0px;
}

.footerWidget .row .col-md-6:nth-child(2) {
    padding-top: 120px;
}

@media (max-width:769px) {
    .footerWidget .row .col-md-6:nth-child(2) {
        padding-top: 0;
    }

    .footer_copy_right {
        text-align: center;
    }

    .footerWidget .has-small-font-size {
        margin: 0 !important;
    }
}

/* その他 */
footer a {
    color: white;
    text-decoration: none !important;
}

code {
    background: #EEEEEE;
    padding: 20px;
}

.entry-meta_items_term {
    float: none;
    display: block !important;
    text-align: right;
    margin-bottom: 10px;
}

.single .siteContent {
    padding-top: 30px !important;
}

.breadSection {
    border: none;
}

.breadSection .container {
    margin: 0px;
    padding: 0px;
}

.error404 .section.breadSection {
    max-width: 1180px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .error404 .section.breadSection {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .error404 .section.breadSection {
        max-width: 576px;
    }
}

@media (max-width: 576px) {
    .error404 .section.breadSection {
        max-width: 576px;
    }
}

/* Lサイズ 文字 */
article p.has-medium-font-size {
    color: #404040;
}

@media (max-width:769px) {
    article p.has-medium-font-size {
        font-size: 17px !important;
        line-height: 22px;
    }
}


/*** ------------
 問い合わせ完了ページ
------------ ***/
.page-id-5695 h1.entry-title {
    text-align: center;
}

/*** ------------
 CTA（記事下）
------------ ***/
.main_cta {
    background: #F3F0E9;
    padding: 0px 20px;
    border: 1px solid #A6C3E8;
}

.main_cta h2.widget-title {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    border: none;
    padding-bottom: 0px !important;
    margin-bottom: 0px;
    line-height: 26px;
    padding-top: 30px;
}

.main_cta h2.widget-title span.deco {
    color: #2774DC;
    font-size: 17px;
    font-weight: 600;
}

.main_cta .wpcf7-form.init p label {
    position: relative;
    width: 100%;
}

.main_cta .wpcf7-form.init.init p label .absolute {
    display: inline;
    position: relative;
    z-index: 2;
    width: fit-content;
    height: fit-content;
    background-color: #F4F0E9;
    font-size: 12px;
    color: #000;
    font-weight: normal;
    padding: 0 .5em;
    top: .9em;
    left: 8px;
}

.main_cta input.wpcf7-email {
    background-color: #F4F0E9 !important;
    border: 1px solid #666666;
    font-size: 14px;
    height: 50px;
}

.main_cta input.wpcf7-submit {
    display: block;
    width: 166px;
    background: #2775DC;
    color: #fff;
    margin: 24px auto 0;
    border-radius: 7px;
    border: 2px solid #2775DC;
    margin-top: 0px;
}

.main_cta input.wpcf7-submit:hover {
    background: #C3D2DD;
}

.main_cta .notes,
.main_cta .notes a {
    display: inline-block;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: .03em;
}

/*** ------------
 メルマガ登録フォーム
------------ ***/
.mz_registration h2,
.mz_registration h3,
.mz_registration h3:after {
    margin: 0;
    padding: 0;
    border: none;
}

.mz_registration a {
    color: #2775DC;
    text-decoration: underline;
}

.mz_registration {
    display: flex;
    background: #F4F0E9;
    padding: 40px 30px 20px 20px;
    justify-content: space-between;
    align-items: center;
}

.mz_registration .image_container {
    width: 44%;
}

.mz_registration .image_container p,
.mz_registration .image_container a {
    font-size: 12px;
    line-height: 20px;
    width: 90%;
    margin: 0 auto;
}

.mz_registration .image_container img {
    padding-bottom: 20px;
}

.mz_registration .form_container {
    width: 54%;
}

.mz_registration h2 {
    font-size: 27px;
    color: white;
    font-weight: 700;
    margin: 0 !important;
    padding: 0 !important;
    padding-bottom: 12px !important;
}

.mz_registration h2 span {
    background: #2775DC;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 36px;
    margin-right: 5px;
}

.mz_registration h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    margin: 0 !important;
    padding: 0 !important;
    padding-bottom: 12px !important;
}

.mz_registration p {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 0px !important;
}

.mz_registration [class^="formbox-editor_"] {
    background: #F4F0E9 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mz_registration [id^="formbox_screen_subscribe_"],
.mz_registration [id^="formbox_screen_success_subscribe_"] {
    padding: 0px !important;
}

.mz_registration input[name^="fldfirstname_"] {
    display: none !important;
}

.mz_registration [class^="formbox-title_"] {
    display: none !important;
}

.mz_registration [class^="formbox-field_"] {
    padding: 0px !important;
}

.mz_registration fieldset {
    padding: 0px !important;
    margin: 0px !important;
    text-align: center;
}

.mz_registration input[name^="fldemail_"] {
    height: 56px;
    border: 1px solid #77777A !important;
    border-radius: 4px !important;
    background: #F4F0E9 !important;
    padding-left: 10px !important;
}

.mz_registration input::placeholder {
    font-size: 14px;
    color: #77777A !important;
}

.mz_registration [class^="formbox-button_"] {
    background: #2775DC !important;
    border: none !important;
    border-radius: 10px !important;
    width: 160px;
    font-size: 0px !important;
    padding: 16px 0 !important;
}

.mz_registration [class^="formbox-button_"]:after {
    content: "登録する";
    font-size: 14px;
    font-weight: 500;
}

.sp_br {
    display: none;
}

@media (max-width:468px) {
    .mz_registration {
        padding: 26px 20px 20px 20px;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .mz_registration .image_container {
        width: 100%;
    }

    .mz_registration .form_container {
        width: 100%;
    }

    .mz_registration h2,
    .mz_registration h3 {
        text-align: center;
    }

    .mz_registration [class^="formbox-button_"] {
        width: 100%;
        margin-bottom: 30px;
    }

    .mz_registration .image_container p,
    .mz_registration .image_container a {
        font-size: 12px;
        line-height: 20px;
    }

    .sp_br {
        display: block;
    }
}

.mz_registration.widget {
    border: 1px solid #A6C3E8;
    padding-top: 24px;
}

.mz_registration.widget .form_container {
    width: 100%;
}

.mz_registration.widget .form_container h2 {
    font-size: 17px;
    line-height: 26px;
    text-align: center;
    color: #2774dc;
    padding: 0px !important;
}

.mz_registration.widget .form_container h3 {
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    font-weight: 400;
    color: #243147;
}

.mz_registration.widget [class^="formbox-button_"] {
    padding: 14px 0 !important;
    margin-bottom: 30px;
}

.mz_registration.widget p,
.mz_registration.widget a {
    font-size: 11px;
    line-height: 20px;
}

.mz_registration.widget fieldset {
    padding: 0px !important;
    margin: 0px !important;
    text-align: center !important;
}