html {
    height: 100%;
    overflow-y: scroll;
}

body {
    height: 100%;
    font: 16px/1.231 'Lato', Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    *font-size: small;
    *font: x-small;
    font-weight: 500;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    letter-spacing: .08em;
    *font-size: small;
    *font: x-small;
    line-height: 2;
    -webkit-font-smoothing: antialiased;
    color: #000;
    background: #fff;
}

*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul,
ol {
    list-style: none
}

img {
    vertical-align: bottom
}

small {
    font-size: 79%
}

.fltList {
    overflow: hidden
}

.fltList li {
    float: left
}

.tCtr {
    text-align: center
}

.mgnBtm10 {
    margin-bottom: 16px
}

.mgnBtm20 {
    margin-bottom: 24px
}

.mgnBtm30 {
    margin-bottom: 32px
}

.mgnBtm40 {
    margin-bottom: 40px
}

.mgnBtm50 {
    margin-bottom: 48px
}

.mgnBtm60 {
    margin-bottom: 56px
}

.mgnBtm70 {
    margin-bottom: 64px
}

.mgnBtm80 {
    margin-bottom: 72px
}

strong {
    font-weight: bold;
}

a {
    text-decoration: none;
    color: #999;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

a:hover,
a:focus {
    text-decoration: none;
}

.responsiv-img img {
    max-width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.container-fluid {
    padding-right: 80px;
    padding-left: 80px;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.8;
    }

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

    .container,
    .container-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }

    .row {
        margin: 0;
    }

    .col-xs-1,
    .col-sm-1,
    .col-md-1,
    .col-lg-1,
    .col-xs-2,
    .col-sm-2,
    .col-md-2,
    .col-lg-2,
    .col-xs-3,
    .col-sm-3,
    .col-md-3,
    .col-lg-3,
    .col-xs-4,
    .col-sm-4,
    .col-md-4,
    .col-lg-4,
    .col-xs-5,
    .col-sm-5,
    .col-md-5,
    .col-lg-5,
    .col-xs-6,
    .col-sm-6,
    .col-md-6,
    .col-lg-6,
    .col-xs-7,
    .col-sm-7,
    .col-md-7,
    .col-lg-7,
    .col-xs-8,
    .col-sm-8,
    .col-md-8,
    .col-lg-8,
    .col-xs-9,
    .col-sm-9,
    .col-md-9,
    .col-lg-9,
    .col-xs-10,
    .col-sm-10,
    .col-md-10,
    .col-lg-10,
    .col-xs-11,
    .col-sm-11,
    .col-md-11,
    .col-lg-11,
    .col-xs-12,
    .col-sm-12,
    .col-md-12,
    .col-lg-12 {
        padding-left: 0;
        padding-right: 0;
    }

    .mgnBtm10 {
        margin-bottom: 8px
    }

    .mgnBtm20 {
        margin-bottom: 8px
    }

    .mgnBtm30 {
        margin-bottom: 16px
    }

    .mgnBtm40 {
        margin-bottom: 16px
    }

    .mgnBtm50 {
        margin-bottom: 24px
    }

    .mgnBtm60 {
        margin-bottom: 24px
    }

    .mgnBtm70 {
        margin-bottom: 32px
    }

    .mgnBtm80 {
        margin-bottom: 32px
    }
}

/* ======================================================================================

    loading

====================================================================================== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(49deg, #28a7e1, #42e128);
    background-size: 400% 400%;

    -webkit-animation: gradation 19s ease infinite;
    animation: gradation 19s ease infinite;

    z-index: 10000;
    text-align: center;
}

.loading-img {
    width: 40px;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    -webkit-transition: .8s cubic-bezier(0, 1, 0, 1);
    transition: .8s cubic-bezier(0, 1, 0, 1);
}

.loading.active {
    pointer-events: none;
}

.loading.active .loading-img {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

@-webkit-keyframes gradation {
    0% {
        background-position: 0% 92%
    }

    50% {
        background-position: 100% 9%
    }

    100% {
        background-position: 0% 92%
    }
}

@keyframes gradation {
    0% {
        background-position: 0% 92%
    }

    50% {
        background-position: 100% 9%
    }

    100% {
        background-position: 0% 92%
    }
}

/* ==================================================================================
    
     common

================================================================================== */

/* layout
====================================================== */
.mainColumn {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

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

.section-pdg {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* .section-pdg:nth-child(even) {
     background: #F5F5F5;
  background: linear-gradient(#f6f6f6, #eee);
} */

.section-pdg:nth-child(odd) {
    position: relative;
    z-index: 1;
}

.section-clear {
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    /* layout */


    .section-pdg {
        padding: 40px 0px;
        font-size: 100%;
    }
}

/* title
 ********************************************** */
.sectionTtl {
    font-size: 200%;
    color: #333;
    font-weight: normal;
}

.sectionTtl-bg {
    color: #333;
    font-weight: bold;
    border-top: none;
    text-align: center;
    border: none;
    font-size: 263%;
    margin: 0 0 32px;
    line-height: 1.1;
}

.sectionTtl-bg .miniTtl {
    display: block;
    font-size: 33.3%;
    margin: 24px 0 0;
    letter-spacing: 0.1em;
}

.section-pdg .sectionTtl-bg a {
    display: block;
    text-decoration: none;
}

.section-pdg .sectionTtl-bg a:hover {
    text-decoration: underline;
}

.subTtl {
    clear: both;
    display: table;
    margin: 64px auto 40px;
    padding: 0 0 5px;
    font-size: 150%;
    color: #000 !important;
    font-weight: normal;
    background: transparent !important;
    text-align: center;
    border-bottom: 2px solid;
}

.small-ttl {
    font-size: 127%;
    line-height: 1.6;
    margin-bottom: 16px;
}

.medium-ttl {
    font-size: 160%;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: normal;
    color: #666;
}

.service-ttl {
    font-size: 200%;
    line-height: 1.4;
    font-weight: normal;
    margin: 50px 0 0;
    font-weight: normal;
    color: #666;
}

/* pageTtl */
#pageTtl {
    background: #37b;
    text-align: center;
    color: #fff;
    height: 400px;
    font-size: 280%;
    position: relative;
    text-transform: capitalize;
    line-height: 1.1;
    font-weight: bold;
    background: top center fixed;
    background-size: auto;
}

#pageTtl small {
    display: block;
    font-size: 40%;

    margin: 15px 0 0;
    letter-spacing: 0.1em;
    font-weight: bold;
}

#pageTtl::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 5;
}

#pageTtlIn {
    position: relative;
    overflow: hidden;
    width: 100%;
}

#pageTtlIn .container {
    position: relative;
    z-index: 10;
    padding: 196px 0 120px;
}

@media (max-width: 768px) {

    /* title */
    .sectionTtl {
        font-size: 180%;
    }

    .subTtl {
        margin: 10px 0;
        font-size: 116%;
    }

    .sectionTtl-bg {
        font-size: 240%;
        letter-spacing: 1px;
        margin: 0 0 32px;
    }

    .sectionTtl-bg .miniTtl {
        margin-top: 16px;
    }

    .sectionTtl-bg::before {
        top: 0;
        margin: 25px auto 0;
    }

    .subTtl {
        margin: 20px auto 10px;
        font-size: 116%;
        padding-bottom: 0;
        display: block;
    }

    h3.miniTtl {
        margin: 20px 0 0;
    }

    #pageTtl {
        font-size: 240%;
        height: auto;
    }

    #pageTtlIn {
        padding-top: 50px;
    }

    #pageTtl small {
        margin: 0;
        -webkit-font-smoothing: auto;
    }

    #pageTtl,
    #pageTtlIn::before {
        background-size: 100%;
    }

    #pageTtlIn .container {
        padding: 48px 0;
        z-index: 5;
    }
}

/* table
====================================================== */

.styletable {
    width: 100%;
    margin: 32px auto;
    font-size: 93%;
    line-height: 1.7;
}

.styletable,
.styletable th,
.styletable td {
    border-bottom: 2px solid #e2e2e2;
    padding: 16px;
    text-align: left;
}

.styletable th {
    white-space: nowrap;
    font-size: 116%;
    font-weight: normal;
    line-height: 1;
    color: #999;
}

@media (max-width: 768px) {

    /* table */
    .styletable {
        width: 100%;
    }

    .styletable th,
    .styletable td {
        padding: 10px;
        display: block;
        width: auto !important;
    }

    .section-pdg table.styletable th {
        border-bottom: none;
        padding-bottom: 0;
    }

    .section-pdg .tableScroll {
        width: 270px;
        overflow-x: scroll;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .styletable .tableScroll th,
    .styletable .tableScroll td {
        display: table-cell;
    }
}

/* ==================================================================================

    header

================================================================================== */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

#headLogo {
    position: absolute;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 900;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#headLogo h1 {
    font-size: 10px;
    margin: 5px;
    width: 100%;
}

#headLogo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 200px;
    min-width: 280px;
    padding: 0 40px;
    height: 96px;
    line-height: 0;
    font-size: 200%;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 5px 5px;
}

#headLogo a:hover {
    background: #fff;
}

.headLogo-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
}

.numberone {
    width: 200px;
    display: block;
    margin-left: 30px;
}

.active .numberone,
.fixed .numberone {
    display: none;
}

#head-nav {
    position: fixed;
    z-index: 999;
    top: 15px;
    right: 110px;
    font-size: 93%;
    font-weight: bold;
}

#head-nav .head-contact a {
    display: inline-block;
    width: 100%;
    padding: 6px 20px;
    margin-right: 0;
    color: #000;
    font-weight: bold;
    border: 2px solid;
    text-align: center;
}

.header-entry-btn a {
    float: right;
    display: inline-block;
    line-height: 1;
    color: #fff;
    padding: 8px;
    margin: 30px 24px 0 0;
    font-size: 125%;
}

.header-entry-btn a:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    header {
        position: fixed;
    }

    #headLogo a {
        padding: 16px;
        height: 57px;
        max-width: 80%;
        max-width: -webki-calc(100% - 84px);
        max-width: calc(100% - 84px);
    }

    #headLogo img {
        max-height: 28px;
        width: auto;
    }

    .numberone {
        margin-left: 10px;
    }

    .header-entry-btn {
        display: none;
    }
}


/* g-nav
====================================================== */
/* gnavBtn */
#gnavBtn {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    right: 0;
    top: 26px;
    color: #E2E2E2;
    z-index: 999;
    text-align: center;
    line-height: 2.1;
    font-size: 30px;
    float: right;
}

#gnavBtn,
#gnavBtn span {
    display: inline-block;
    -webkit-transition: all .2s;
    transition: all .2s;
}

#gnavBtn span {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
}

#gnavBtn span:nth-of-type(1) {
    top: 8px;
}

#gnavBtn span:nth-of-type(2) {
    top: 23px;
}

#gnavBtn span:nth-of-type(3) {
    bottom: 8px;
}

#gnavBtn:hover span:nth-of-type(1) {
    top: 10px;
}

#gnavBtn:hover span:nth-of-type(3) {
    bottom: 10px;
}

#gnavBtn.active span:nth-of-type(1) {
    top: 22px;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
}

#gnavBtn.active span:nth-of-type(2) {
    opacity: 0;
}

#gnavBtn.active span:nth-of-type(3) {
    top: 22px;
    bottom: auto;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

/* gnav */
#gnav {
    position: fixed;
    top: 0;
    padding: 144px 0 0;
    color: #000;
    background: rgba(190, 194, 201, 0.75);
    width: 100%;
    height: 100%;
    display: block;
    overflow-y: scroll;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    pointer-events: none;
    opacity: 0;
    z-index: 990;
}

#gnav.active {
    pointer-events: auto;
    opacity: 1;
}

.gnav-post a {
    display: block;
    padding: 32px;
    background: #fff;
    color: #000;
    width: 400px;
    margin: 0 16px;
    line-height: 1;
    overflow: hidden;
}

.gnav-post h3 {
    font-weight: normal;
    margin-bottom: 24px;
    opacity: 0.25;
    font-size: 94%;
    text-transform: uppercase;
}

.gnav-post h4 {
    font-size: 113%;
    line-height: 1.6;
    font-weight: normal;
}

.gnav-post-img {
    float: left;
    margin-right: 32px;
}

.subnav-area {
    padding: 40px;
    max-width: 880px;
    background: #ffffff;
    -webkit-box-shadow: 0 0 160px rgba(0, 0, 0, 0.17);
    box-shadow: 0 0 160px rgba(0, 0, 0, 0.17);
}

.subnav {
    padding-bottom: 8px;
    margin-bottom: 32px;
    border-bottom: 1px dashed rgba(109, 132, 180, 0.5);
}

.subnav:last-child {
    padding: 0;
    margin: 0;
    border: none;
}

.subnav-ttl {
    margin-bottom: 16px;
    font-size: 123%;
    color: #333;
    font-weight: normal;
    line-height: 1;
}

.subnav a {
    display: inline-block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    padding: 8px 0;
    line-height: 1;
    margin-right: 32px;
    font-size: 116%;
    white-space: nowrap;
    color: #666;
    font-weight: normal;
}

.subnav a strong {
    background: transparent;
    text-transform: capitalize;
}

.subnav a small {
    display: block;
    font-size: 65%;
    letter-spacing: 0px;
    padding-top: 8px;

}

#gnav .current a {
    color: #fff;
    cursor: default;
}

#mainContent.blur,
footer.blur {
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

.subnav .subnav_official strong::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    background-image: url(/import/tenant_2/zele.recxit.jp/wp-content/themes/recruit_theme/images/common/external_bl.png);
    background-size: cover;
    opacity: .5;
}

.subnav .subnav_insta img,
.subnav .subnav_line img {
    width: 30px;
    height: 30px;
}

.subnav .subnav_insta {
    margin-right: 16px;
}

.subnav .subnav_line {
    margin-right: 0;
}

@media (max-width: 768px) {

    #gnavBtn {
        position: absolute;
        width: 36px;
        height: 22px;
        top: 18px;
        right: 16px;
    }

    #gnavBtn span:nth-of-type(1),
    #gnavBtn:hover span:nth-of-type(1) {
        top: 0;
    }

    #gnavBtn span:nth-of-type(2) {
        top: 10px;
    }

    #gnavBtn span:nth-of-type(3),
    #gnavBtn:hover span:nth-of-type(3) {
        bottom: 0;
    }

    #gnavBtn.active span:nth-of-type(1) {
        top: 10px;
    }

    #gnavBtn.active span:nth-of-type(3) {
        top: 10px;
    }

    #gnav {
        overflow: scroll;
        padding: 72px 0 0;
    }

    #gnav-slide {
        margin-bottom: 40px;
    }

    .slick-list {
        margin-bottom: 8px;
    }

    .gnav-post a {
        width: 90%;
        width: -webki-calc(100% - 32px);
        width: calc(100% - 32px);
        padding: 16px;
        letter-spacing: .05em;
    }

    .subnav a {
        font-size: 100%;
        margin-right: 24px;
        color: #000;
    }

    .subnav a small {
        padding-top: 5px;
    }

    .gnav-post-img {
        width: 80px;
        margin-right: 16px;
    }

    .gnav-post h3 {
        font-size: 86%;
        ;
        margin-bottom: 8px;
    }

    .gnav-post h4 {
        font-size: 100%;
    }

    .subnav {
        margin-bottom: 24px;
        border-color: #fff;
    }

    .subnav-area {
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 20px;
        margin: 0px 16px 24px;
        background-color: #fff;
    }

    .sp-gnav-entry a {
        color: #fff;
        display: block;
        text-align: center;
        line-height: 1;
        padding: 16px;
        font-weight: bold;
    }

    .sp-gnav-entry a small {
        display: block;
        margin-top: 4px;
    }

    .subnav .subnav_insta img,
    .subnav .subnav_line img {
        width: 24px;
        height: 24px;
    }
}


/* fixed
====================================================== */
.header-nav-area.fixed,
.header-nav-area.active {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 96px;
    background: #fff;
    color: #000;
    -webkit-box-shadow: 0 0 15px -10px #000;
    box-shadow: 0 0 15px -10px #000;
    z-index: 9999;
}

.header-nav-area.active {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
}

.header-nav-area.fixed #headLogo a,
.header-nav-area.active #headLogo a {
    background: transparent;
    padding: 0
}

.header-nav-area.fixed #headLogo a {
    -webkit-transform: translate(0, -30px);
            transform: translate(0, -30px);
}

.header-nav-area.fixed .header-entry-btn a,
.header-nav-area.active .header-entry-btn a {
    color: #000;
}

.header-nav-area.fixed #gnavBtn span,
.header-nav-area.active #gnavBtn span {
    background: #000;
}

@media (max-width: 768px) {

    .header-nav-area.fixed,
    .header-nav-area.active {
        width: 100%;
        height: 57px;
        line-height: 1;
    }

    .header-nav-area.fixed #headLogo a,
    .header-nav-area.active #headLogo a {
        padding: 0 16px;
    }
}

@media (max-width: 599px) {
    .header-nav-area.fixed #headLogo a {
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
}
}

/* .headSubNav(固定ページの子ページ)
====================================================== */
.headSubNav {
    display: none;
    position: absolute;
    z-index: 100;
    background: rgba(255, 255, 255, .9);
    font-size: 93%;
    text-align: left;
}

#gnav .headSubNav li {
    display: block;
    border-bottom: solid 1px #ccc;
}

#gnav .headSubNav li a {
    padding: 8px 15px;
}




/* ==================================================================================

  mainContent

================================================================================== */


/* mainContent
====================================================== */
#mainContent {
    position: relative;
    background: #fff;
}


/* sideSection
====================================================== */
.sideSection {
    font-size: 94%;
    padding-left: 24px;
    margin-bottom: 40px;
}

.sideSection a {
    display: block;
    padding: 8px;
    line-height: 1.5;
}

.sideSection a:hover {
    background-color: #fff;
    text-decoration: none;
}

.sideSection li a::before {
    content: "\f105";
    font: normal normal normal 14px/1 FontAwesome;
    margin: 0 8px 0 0;
}

.sideSection .current a:hover {
    background-color: transparent;
    cursor: default;
}

.side-ttl {
    border-bottom: 1px solid #ccc;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.side-ttl small {
    float: right;
}

#wp-calendar {
    text-align: center;
    width: 86%;
    margin: 16px 0;
    width: 100%;
}

#wp-calendar th {
    font-size: 93%;
    font-weight: normal;
    border-bottom: 1px solid #eee;
}


@media (max-width: 768px) {

    .sideSection {
        padding: 16px;
        background: #f6f6f6;
        margin: 24px 0 0;
    }

}



/* ==================================================================================

  footer

================================================================================== */
.footer {
    position: relative;
    background: #fff;
}

/* #footContact
====================================================== */
#footContact {
    position: relative;
    border-top: 1px solid #fff;
    background: #F6F7F8;
}

#footContact .subTtl {
    border: none;
    padding: 0;
    margin-top: 32px;
}

#footContact .subTtl a {
    display: block;
    padding: 16px 100px;
    line-height: 1.6;
    color: #fff !important;
}

#footContact .receptiontime {
    display: block;
    font-size: 58%;
    font-weight: bold;
}

.contact-form {
    padding: 64px;
    background: #fff;
    border-radius: 5px;
}

#recruit-form {
    width: 100%;
}

#recruit-form dt,
#recruit-form dd {
    padding: 10px 20px;
    vertical-align: middle;
}

#recruit-form dt {
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
    width: 16em;
    float: left;
    clear: left;
}

#recruit-form dd {
    padding-left: 16em;
    text-align: left;
    border-bottom: solid 1px #ddd;
}

#recruit-form input[type="radio"],
#recruit-form input[type="checkbox"] {
    border: 2px solid #ccc;
    width: 16px;
    height: 16px;
    margin-bottom: 3px;
}

#recruit-form input[type="radio"] {
    border-radius: 8px;
}

#recruit-form input[type="radio"]:checked::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    background: #f55;
    border-radius: 6px;
    position: relative;
    top: 2px;
    left: 2px;
}

#recruit-form input[type="radio"]:checked,
#recruit-form input[type="checkbox"]:checked {
    border-color: #f55;
}

#recruit-form input[type="checkbox"]:checked::before {
    content: "";
    position: relative;
    display: block;
    width: 18px;
    height: 9px;
    top: -4px;
    left: -1px;
    border-bottom: 2px solid #f55;
    border-left: 2px solid #f55;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    line-height: 1;
}

#recruit-form label {
    display: block;
    line-height: 1.8;
    margin-right: 16px;
}

#recruit-form label:hover {
    background: #F6F7F8;
    cursor: pointer;
}

span.wpcf7-list-item {
    margin: 0;
    display: block;
}

#recruit-form input[type="text"],
#recruit-form input[type="email"],
#recruit-form input[type="tel"],
#recruit-form input[type="password"],
#recruit-form textarea {
    width: 100%;
    border-radius: 3px;
    vertical-align: bottom;
}

#recruit-form input[type="text"],
#recruit-form input[type="email"],
#recruit-form input[type="tel"],
#recruit-form input[type="password"],
#recruit-form select,
#recruit-form textarea {
    margin: 0;
    padding: 5px 15px;
    border: 1px solid #ccc;
    background: #fff;
    font: inherit;
    font-size: 100%;
}

#recruit-form ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#recruit-form input:hover,
#recruit-form textarea:hover {
    opacity: 0.7;
}

#recruit-form input:focus {
    background-color: #fff;
}

#recruit-form .parsley-validated {
    background-color: #F5F5F5;
}

#recruit-form .parsley-error {
    background-color: #fee;
}

#recruit-form .parsley-success {
    background-color: #fff;
}

.help_text {
    font-size: 85%;
    color: #999;
}

.hidden_help {
    display: none;
}

#recruit-form .ajax-loader {
    position: absolute;
    margin: 0 auto;
    left: 50%;
    bottom: -30px;
    margin-left: -8px !important;
}

.wpcf7-mail-sent-ok {
    border: none;
    color: #fff !important;
    display: none !important;
}

#recruit-form .required {
    background: #f55;
    color: #fff;
    margin: 0 8px;
    font-size: 70%;
    padding: 2px 5px;
    border-radius: 3px;
    float: right;
}

#recruit-form .submit {
    padding: 30px 0 0;
    text-align: center;
}

#recruit-form .submit input {
    padding: 16px 120px;
    font-size: 123%;
    background: #F34141;
    border: none;
    color: #fff;
    text-shadow: 0px 1px 0px #A83604;
    margin: 0;
    font: inherit;
    cursor: pointer;
    background: #F34141;
    letter-spacing: 0.1em;
    font-weight: bold;
    border-radius: 3px;
}

#recruit-form .wpcf7-form-control>div {
    margin: 24px auto 0;
}

@media (max-width: 768px) {
    #footContact .subTtl a {
        display: inline-block;
        padding: 8px;
        margin: 0px auto 24px;
        width: 100%;
    }

    .footContact-info {
        text-align: left;
    }

    #recruit-form th,
    #recruit-form td {
        display: block;
        width: auto;
        padding: 0 0 10px;
    }

    #recruit-form th {
        border-bottom: none;
        padding-bottom: 0;
        white-space: normal;
        font-weight: bold;
        padding: 10px 0 0;
    }

    #recruit-form .submit {
        height: auto;
        position: relative;
        padding: 20px 0;
    }

    #recruit-form .submit input {
        width: 100%;
        background-size: contain;
        background-position: center;
    }

    #recruit-form .submit input.autoConfirmBack {
        position: absolute;
        top: 95px;
    }

    #recruit-form dt {
        float: none;
        width: 100%;
        padding: 10px 5px 0;
    }

    #recruit-form dd {
        padding: 0 5px 10px;
    }

    #recruit-form .wpcf7-list-item {
        display: block;
        margin-left: 0;
    }

}



/*   TOP newsrelease
========================================================= */
#newsrelease {
    position: relative;
    background: #e9ebee;
    font-size: 93%;
    padding: 64px 0;
    z-index: 1;
    line-height: 1.5;
}

#newsrelease h2 {
    display: block;
    font-size: 183%;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: 0.1em;
}

.news-wrapper {
    margin: 0 auto;
    height: 214px;
    overflow: hidden;
    overflow-y: scroll;
    background: #fff;
    padding: 16px 32px;
}

.newsList {
    overflow: hidden;
    margin: 8px 0;
}

.newsList dt {
    float: left;
    color: #999;
    font-weight: bold;
}

.newsList dd {
    text-align: left;
    margin: 0 0 0 104px;
}

.newsList a {
    color: #333;
}

.newsList a:hover {
    border-bottom: 1px dotted #aaa;
}


@media (max-width: 768px) {

    /* newsrelease */
    #newsrelease {
        padding: 40px 0;
    }

    #newsrelease h2 {
        display: block;
        width: auto;
        float: none;
        height: auto;
        font-size: 150%;
        margin-bottom: 12px;
    }

    #newsrelease h2::before {
        width: 10px;
        top: 2.8em;
    }

    .news-wrapper {
        width: 100%;
        height: 140px;
    }

    .newsList dt,
    .newsList dd {
        padding: 0;
    }

    .newsList dt {
        float: none;
    }

    .newsList dd {
        margin: 0;
        line-height: 1.5;
    }

    .newsList .newIcon {
        margin: 0 0 0 1em;
    }
}


/* footer
====================================================== */

/* footer-nav-area
====================================================== */
#footer-nav-area {
    padding: 64px 0;
}

/* Official,instagram,line */
.official_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 496px;
    height: 80px;
    color: #fff;
    text-align: center;
    line-height: 80px;
    font-size: 120%;
    margin: 0 auto 32px;
    border-radius: 4px;
    padding-left: 40px;
}

.official_link img {
    width: 32px;
    height: 32px;
    margin-left: 8px;
}

.official_link:hover {
    color: #fff;
    opacity: .7;
}

.social-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 496px;
    margin: 0 auto 32px;
}

.social-link li a {
    position: relative;
    display: block;
    width: 240px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 4px;
}

.social-link li a:hover {
    opacity: .5;
}

.social-link li:not(:last-child) {
    margin-right: 16px;
}

.social-link .social--insta a {
    border: 1px solid #c33083;
    color: #c33083;
    padding-left: 28px;

}

.social-link .social--insta a::before,
.social-link .social--line a::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 17px;
    margin: auto;
    width: 34px;
    height: 34px;
    background-size: cover;
}

.social-link .social--insta a::before {
    background-image: url(/import/tenant_2/zele.recxit.jp/wp-content/themes/recruit_theme/images/common/instagram.png);
}

.social-link .social--line a::before {
    background-image: url(/import/tenant_2/zele.recxit.jp/wp-content/themes/recruit_theme/images/common/line.png);
}

.social-link .social--line a {
    border: 1px solid #00B900;
    padding-left: 44px;
    color: #00b900;
}

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

    .official_link,
    .social-link {
        width: 90%;
    }

    .official_link {
        margin: 0 auto 16px;
    }

    .social-link li {
        width: calc(50% - 8px);
    }

    .social-link li a {
        width: 100%;
        height: 40px;
        text-align: center;
        line-height: 40px;
    }

    .social-link .social--insta a::before,
    .social-link .social--line a::before {
        left: 10px;
        margin: auto;
        width: 21px;
        height: 21px;
    }

    .social-link .social--insta a,
    .social-link .social--line a {
        padding-left: 18px;
    }

    .social-link span {
        display: none;
    }
}

/* sns */
.sns-area {
    position: relative;
    display: block;
    margin-bottom: 24px;
    text-align: center;
}

.sns-area li {
    display: inline-block;
    position: relative;
}

.sns-area li a {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 24px;
}

.sns-area li a.twitter {
    color: #55acee;
}

.sns-area li a.facebook {
    color: #3b5998;
}

.sns-area li a:hover::before {
    content: "SHARE";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 50%;
    line-height: 1;
    font-weight: bold;
}

/* likebox */
#likebox {
    text-align: center;
}

.fb-like-box,
.fb-like-box span,
.fb-like-box iframe[style] {
    max-width: 100% !important;
}

.footDescription {
    margin: 0 0 30px;
    font-size: 79%;
    color: #fff;
    padding: 10px 20px;
}

#footNav {
    text-align: center;
    font-size: 87.5%;
    letter-spacing: 0.01em;
    margin-bottom: 32px
}

#footNav li {
    display: inline-block;
    padding: 0 8px;
}

#footNav a {
    color: #666;
    white-space: nowrap;
}

#footNav a:hover {
    color: #000
}

#footNav a::before {
    content: "\f0da";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
    width: 8px;
    text-align: left;
}

#footNav .mynavi {
    margin: 24px auto;
}

.copryright-area {
    line-height: 1;
    text-align: center;
}

.copryright-area .copyright {
    margin: 0 0 24px;
}

.pbl {
    display: block;
    opacity: 0.5;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.pbl:hover {
    opacity: 1;
}

/* googleMap */
#gm {
    width: 100%;
    height: 400px;
    margin-top: 20px;
}

#gm iframe {
    height: 100%;
}

@media (max-width: 768px) {
    #footer-nav-area {
        padding: 32px 0;
    }

    #footContact .subTtl {
        padding: 8px 0;
        margin: 20px auto 0px;
        width: 100%;
    }

    .contact-form {
        padding: 16px;
    }

    .footDescription {
        padding: 0;
    }

    #likebox {
        margin-top: 24px;
    }

    #gm {
        height: 300px;
    }

}


/* ==================================================================================

  Page

================================================================================== */





/* ==================================================================================

  ブログ

================================================================================== */
#blogPostList .bloglist-box {
    position: relative;
    margin-bottom: 56px;
}

#blogPostList img {
    display: block;
    float: left;
    margin: 0 30px 0 0;
}

#blogPostList .textArea {
    margin: 0 0 0 250px;
    font-size: 94%;
    line-height: 1.7;
}

#blogPostList .section-pdg {
    padding: 60px 22%;
}

.blog-ttl {
    font-size: 138%;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 24px;
}

#pageNav {
    font-size: 85%;
    text-align: center;
    background: #fff;
    padding: 25px 5%;
}

#pageNav li {
    display: inline;
}

.linkArea {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.linkArea:hover {
    background: #FFF;
    filter: alpha(opacity=30);
    -moz-opacity: 0.3;
    opacity: 0.3;
}

.postInfo .date {
    display: inline;
    font-size: 93%;
    color: #999;
    margin: 0 0 0 20px;
    float: right;
}

.catLink a {
    position: relative;
    z-index: 100;
    color: #fff;
    padding: 2px 5px;
    font-size: 85%;
    border-radius: 3px;
    text-decoration: none;
    margin-right: 3px;
}

.eyecatch {
    width: 480px;
    background-position: center;
    background-size: cover;
    height: 320px;
    display: block;
    float: right;
    margin: 0 0 40px 40px;
}

#minipc-area,
#minipc-btn {
    display: none;
}

/*  ページ送り
----------------------------------------- */
.wp-pagenavi {
    margin: 0 0 15px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    margin: 0 5px 0 0;
    -webkit-box-shadow: 0 2px 1px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 2px 1px 0 rgba(0, 0, 0, .15);
    padding: 10px 10px;
    background: #fff;
}


@media (max-width: 768px) {

    /* Blog 
  ------------------------------------------------------------ */
    #blogPostList .section-pdg {
        padding: 50px 5% 30px;
    }

    #blogPostList .textArea {
        margin: 0;
    }

    #blogPostList p {
        font-size: 100%;
    }

    /*blog*/
    #blogPostList img {
        float: right;
        display: block;
        width: 77px;
        margin: 0 0 10px 15px;
    }

    #blogPostList p {
        font-size: 93%;
        line-height: 1.6;
        margin: 10px 0;
    }

    .blog-ttl {
        font-size: 130%;
        line-height: 1.6;
    }

    .eyecatch {
        width: 100%;
        height: 200px;
        float: none;
        margin: 20px auto;
    }

    .first-imagearea img,
    .responsiv-img img {
        margin-bottom: 5px;
    }
}


/* ==================================================================================

  top-page 

================================================================================== */

/* main-visual
=============================== */
.main-visual {
    position: relative;
    height: 880px;
    background: rgba(0, 0, 0, 0.3);
}

.helo-text {
    position: absolute;
    left: 80px;
    bottom: 80px;
    display: inline-block;
    pointer-events: none;
    font-size: 137%;
    line-height: 1.7;
    color: #fff;
    letter-spacing: 0.06em;

    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}

.helo-text strong {
    display: block;
    margin-bottom: 32px;
    font-size: 250%;
    letter-spacing: 0.05em;
    font-weight: normal;
    line-height: 1.5;
}

.helo-text p {
    margin-bottom: 0.25em;
    font-weight: bold;
}

@media (max-width: 768px) {
    .main-visual {
        height: 560px;
    }

    .sm-slider,
    .sm-slider:after {
        height: 560px !important;
    }

    .helo-text {
        font-size: 114%;
        text-align: left;
        left: 5%;
        width: 90%;
        bottom: 40px;
    }

}


/* TOPリンクボタン
========================================================= */

.next-page-link a {
    display: table;
    margin: 32px auto 0;
    text-decoration: none;
    padding: 15px 80px;
    font-size: 108%;
    letter-spacing: 0.1em;
    color: #000;
    text-shadow: none;
    border-radius: 3px;
    color: #fff;
}


@media (max-width: 768px) {
    .next-page-link a {
        width: 100%;
        display: block;
        padding: 15px;
        text-align: center;
        margin: 30px 0 0;
        line-height: 1.4;
    }

    .next-page-link a br {
        display: block;
    }

}


/* #top-about
========================================================= */
#top-about {
    background: #f6f7f9;
}

#top-about .top-content {
    position: relative;
    margin-bottom: 112px;
}

#top-about .top-content .sectionTtl-bg {
    text-align: left;
}

.section-left {
    position: relative;
}

.mini-txt-area {
    width: 440px;
    padding: 48px;
    background: #fff;
    z-index: 99;
    position: absolute;
    top: 64px;
}

.section-left .mini-txt-area {
    left: 0;
}

.section-right .mini-txt-area {
    right: 0;
}

.section-left .img-area {
    float: right;
    position: relative;
    margin: 0 -15px 0 0;
    max-width: 840px;
}

.section-right .img-area {
    float: left;
    position: relative;
    margin: 0 0 0 -15px;
    max-width: 840px;
}

@media (max-width: 768px) {
    #top-about .top-content {
        margin-bottom: 40px;
    }

    #top-about .top-content#top-crosstalk {
        margin-bottom: 0;
    }

    .mini-txt-area {
        width: 100%;
        position: relative;
        padding: 0;
        top: 0;
        background: transparent;
    }

    .section-left .img-area,
    .section-right .img-area {
        float: none;
        margin: 16px 0 0;
    }


}


/* #top-interview 
========================================================= */
#top-interview {
    position: relative;
    background: #fff;
}

#top-interview .top-interview-list {
    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;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content: space-between;
    text-align: center;
    margin-bottom: 64px;
}

#top-interview .top-interview-list li {
    position: relative;
    width: 25%;
}

#top-interview .top-interview-list .small-ttl {
    margin-bottom: 0;
}

#top-interview .top-interview-list .img-area {
    width: 220px;
    height: 220px;
    background: #ccc center;
    background-size: cover;
    border-radius: 110px;
    overflow: hidden;
    margin: 0 auto 20px;
}

#top-interview .top-interview-list p {
    margin: 8px 0 0;
    font-size: 93%;
    line-height: 1.5;
}


@media (max-width: 768px) {
    #top-interview .top-interview-list {
        margin-bottom: 24px;
    }

    .top-contents .sectionTtl-bg img {
        height: 46px;
        width: auto;
    }

    #top-interview .top-interview-list li {
        width: 100%;
        margin-bottom: 24px;
        line-height: 1.6;
        text-align: left;
    }

    #top-interview .top-interview-list .img-area {
        float: left;
        width: 120px;
        height: 120px;
        background-size: 120px;
        border-radius: 60px;
        margin: 0 24px 0 0;
    }

    #top-interview .text-area {
        padding-top: 32px;
    }

    #top-project {
        background: transparent;
    }

}


/* TOP ブログ
========================================================= */
.blog-mini-list {
    text-align: center;
}

.blog-mini-list li {
    display: inline-block;
    position: relative;
    padding: 15px;
    font-size: 85%;
    line-height: 1.6;
    vertical-align: top;
    width: 33%;
}

.section-pdg:nth-child(even) .top-interview-list li .link-area:hover {
    background: rgba(255, 255, 255, 0.3);
}

.blog-mini-list .img-area {
    text-align: center;
    width: 100%;
    height: 150px;
    line-height: 150px;
    background: #fff center top;
    color: #999;
}

.blog-mini-list .text-area {
    text-align: left;
    margin: 15px 0 0;
}

.blog-mini-list p {
    margin: 0;
}

.blog-mini-list h4 {
    margin-bottom: 16px;
}

.link-area {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
}

.link-area:hover {
    background: rgba(255, 255, 255, .3);
}

.section-pdg:nth-child(even) .link-area:hover {
    background: rgba(240, 240, 240, 0.3);
}


@media (max-width: 768px) {
    .blog-mini-list li {
        width: 100%;
        padding: 0 0 20px;
    }

    .top-image-area a {
        min-height: auto;
        height: 150px;
    }

    .top-image-area ul li {
        display: inline-block;
        width: 50%;
        float: left;
    }
}




/* ==================================================================================

  /company/ 会社概要

================================================================================== */
.enkaku dl {
    line-height: 1.6;
    font-size: 93%;
}

.enkaku dt {
    float: left;
    clear: left;
    padding: 5px 0;
}

.enkaku dd {
    padding: 5px 0 5px 85px;
}

#about-company .styletable {
    margin: 0 0 20px;
}

.salon-box {
    background: #fff;
    padding: 48px;
    margin-bottom: 24px
}

@media (max-width: 768px) {
    .enkaku dl {
        display: -ms-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .enkaku dt {
        padding: 4px 0px;
        width: 90px;
    }

    .enkaku dd {
        padding: 4px 0px;
        width: calc(100% - 90px);
    }

    .salon-box {
        padding: 24px;
    }
}

/* ==================================================================================

  /service/ 事業内容

================================================================================== */
.service-contents {
    letter-spacing: -0.01em;
    line-height: 1.8;
}

.syokusyu {
    font-size: 180%;
    color: #52AAB9;
    margin-bottom: 40px;
    text-align: center;
}

.service-price {
    display: block;
    line-height: 1.8;
    margin: 60px 0 0;
}

.first-imagearea {
    margin-bottom: 32px;
}

.first-imagearea img {
    max-width: 100%;
}

@media (max-width: 768px) {

    /*service*/
    .first-imagearea {
        width: 100%;
        float: none;
        margin: 0 0 20px;
    }

    .service-ttl {
        font-size: 170%;
        margin-top: 0;
    }

    .syokusyu {
        margin-bottom: 24px;
        font-size: 150%;
        padding: 10px 20px;
    }

    .medium-ttl {
        font-size: 140%;
        margin-bottom: 24px;
    }

    .small-ttl {
        margin-bottom: 16px;
    }

    .service-price {
        margin: 30px 0;
    }

}

/* ==================================================================================

  message and vision

================================================================================== */
.message-box {
    margin-bottom: 48px;
}

.message-box .message-box-img {
    margin: 0 0 40px;
}

.message-vision-contents {
    font-size: 116%;
    color: #666;
}

@media (max-width: 768px) {
    .message-box .message-box-img {
        margin: 0 0 16px;
    }
}



/* ==================================================================================

  /requirements/

================================================================================== */
.training-box {
    border: 1px solid;
    padding: 40px 24px;
    line-height: 1.8;
}

.training-box .small-ttl {
    margin: 20px 0 10px;
}



/* ==================================================================================

  interview

================================================================================== */
#interview-about .sectionTtl-bg {
    text-align: left;
    margin-bottom: 24px;
}

#interview-list .interview-list-inner {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 56px;
    float: left;
    line-height: 1.6;
    background: #fff;
}

#interview-list li:nth-child(3n+4) {
    clear: both;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    #interview-list li:nth-child(3n+4) {
        clear: inherit;
    }

    #interview-list li:nth-child(2n+3) {
        clear: both;
    }
}

.section-pdg:nth-child(odd) .interview-list-inner {
    border: 1px solid #EBEBED;
}

#interview-list .interview-list-inner .txt-area {
    display: inline-block;
    width: 100%;
    background: #fff;
    padding: 30px 5%;
}

#interview-list .interview-list-inner .img-area {
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;
}

#interview-contents .interview-contents-box .img-area img {
    max-width: 100%;
    height: auto;
}

#interview-list .interview-list-inner .busho {
    position: absolute;
    margin: 0;
    right: 0px;
    top: -10px;
    display: inline-block;
    line-height: 1;
    padding: 5px 20px;
    font-size: 85%;
    border: 1px solid;
    background: rgba(255, 255, 255, 0.75);
}

#interview-about {
    width: 100%;
    padding: 240px 65px;
    background: #FFF center top fixed;
    background-size: 1170px auto;
}

#interview-about::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.3)));
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    content: " ";
    z-index: 0;
}

#interview-about .txt-area {
    position: relative;
    font-size: 94%;
    line-height: 1.8;
    display: inline-block;
    padding: 30px;
    background: #fff;
}

#interview-about h4 {
    color: black;
    font-size: 200%;
    font-weight: normal;
}

#interview-about .busho {
    font-size: 93%;
    display: inline-block;
    text-align: center;
    padding: 0px 20px;
    border: 1px solid;
    margin: 20px 0 6px;
}

#interview-contents {
    background: #fff;
}

#interview-contents .interview-contents-box {
    position: relative;
    overflow: hidden;
}

#interview-contents .interview-contents-box .box-inner {
    margin-bottom: 40px;
    overflow: hidden;
}

#interview-contents .interview-contents-box .img-area {

    float: left;
    margin: 0 60px 80px 0;
}

#interview-contents .interview-contents-box:nth-child(odd) .img-area {
    float: right;
    margin: 0 0 80px 60px;
}

#interview-contents h4 {
    font-size: 150%;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: normal;
    color: #666;
}

#interview-contents h4::before {
    content: "Q.";
    width: 1.2em;
    display: inline-block;
}

#interview-contents .comment {
    line-height: 1.8;
}

@media (max-width: 768px) {

    /*interview 
  ------------------------------------------------------------ */
    #interview-list .interview-list-inner {
        width: 100%;
        float: none;
        margin: 0 0 20px;
        min-height: 10px;
    }

    #interview-list .interview-list-inner .txt-area {
        padding: 15px;
    }

    #interview-list .interview-list-inner .img-area {
        height: 220px;
    }

    #interview-about {
        padding: 220px 0 0;
        background-size: 100% auto;
    }

    #interview-about .sectionTtl-bg {
        font-size: 220%;
    }

    #interview-about h4 {
        font-size: 150%;
        line-height: 1;
        margin: 10px 0 0;
    }

    #interview-about .txt-area {
        display: block;
        padding: 20px 15px;
        background: #f6f7f9;
    }

    #interview-about .busho {
        margin: 8px 3px;
    }

    #interview-contents h4 {
        font-size: 134%;
        margin-bottom: 16px;
    }

    #interview-contents .interview-contents-box .box-inner {
        margin-bottom: 24px;
    }

    #interview-contents .interview-contents-box .img-area,
    #interview-contents .interview-contents-box:nth-child(odd) .img-area {
        float: none;
        margin: 0 0 20px;
    }
}




/* ==================================================================================

  event 説明会情報

================================================================================== */
#event-list li:not(:last-child) {
    margin-bottom: 24px;
}

#event-list .event-detail {
    width: 650px;
    float: right;
    margin: 0 0 20px 70px;
}

#event-list .event-detail table {
    margin: 0;
}

@media (max-width: 768px) {

    /* event
  ------------------------------------------------------------ */
    #event-list .event-detail {
        float: none;
        width: 100%;
        margin: 0 0 20px;
    }
}



/* ==================================================================================

  crosstalk クロストーク

================================================================================== */

/* 一覧 */
#crosstalk-list li:nth-child(2n+3) {
    clear: both;
}

#crosstalk-list .crosstalk-list-inner {
    margin-bottom: 56px;
    line-height: 1.6;
    background: #fff;
    text-align: center;
    border: 1px solid #EBEBED
}

#crosstalk-list .crosstalk-list-inner .img-area {
    height: 300px;
    background-position: center;
    background-size: cover;
}

#crosstalk-list .crosstalk-list-inner .txt-area {
    padding: 20px 5% 10px;
}

#crosstalk-list .crosstalk-list-inner .txt-area .category a {
    display: inline-block;
    font-size: 80%;
    background: #6d84b4;
    color: #fff;
    line-height: 1;
    font-weight: bold;
    width: 180px;
    padding: 4px 16px;
    border-radius: 3px;
    margin-bottom: 4px;
    margin-left: 4px;
    margin-left: 4px;
}

#crosstalk-list .crosstalk-list-inner .date {
    position: absolute;
    margin: 0;
    right: -8px;
    top: -8px;
    display: inline-block;
    line-height: 1;
    padding: 5px 20px;
    font-size: 85%;
    border: 1px solid;
    background: rgba(255, 255, 255, 0.75);
}

/* 詳細 */
.crosstalk-member {
    text-align: center;
}

.crosstalk-member li {
    display: inline-block;
    vertical-align: top;
}

.crosstalk-member li::before {
    content: '×';
    display: table-cell;
    text-align: center;
    font-size: 500%;
    padding: 0 32px;
}

.crosstalk-member li:first-child::before {
    display: none;
}

.crosstalk-member-inner {
    display: table-cell;
    width: 220px;
}

.crosstalk-member-inner .txt-area {
    font-size: 87.5%;
    line-height: 1.7;
}

.crosstalk-member-inner .img-area {
    border-radius: 110px;
    overflow: hidden;
}

.crosstalk-contents {
    overflow: hidden;
}

.crosstalk-contents .img-area {
    margin-bottom: 56px;
}

.crosstalk-contents .img-area img {
    max-width: 100%;
}

/* kaiwa */
.kaiwa {
    margin-bottom: 40px;
}

.kaiwa dt {
    width: 120px;
    text-align: center;
    font-size: 85%;
    line-height: 1.4;
    float: left;
}

.kaiwa dt .img-area {
    overflow: hidden;
    display: inline-block;
    border-radius: 60px;
}

.kaiwa dd {
    position: relative;
    padding: 40px;
    background: #f7f4ef;
    border-radius: 10px;
    width: 80%;
    width: -webki-calc(100% - 152px);
    width: calc(100% - 152px);
    float: right;
    line-height: 1.9;
    letter-spacing: 0.05em;
    text-align: justify;
    text-justify: inter-ideograph;
    -ms-text-justify: inter-ideograph;
}

.kaiwa dd::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 17.3px 10px 0;
    border-color: transparent #f7f4ef transparent transparent;
    display: block;
    position: absolute;
    left: -17px;
    top: 50px;
}

.kaiwa:nth-child(odd) dt {
    float: right;
}

.kaiwa:nth-child(odd) dd {
    float: left;
    background: #f2f6fb;
}

.kaiwa:nth-child(odd) dd::before {
    border-width: 10px 0 10px 17.3px;
    border-color: transparent transparent transparent #f2f6fb;
    left: auto;
    right: -17px;

}

@media (max-width: 768px) {
    .crosstalk-member li::before {
        display: block;
        line-height: 1;
    }

    .crosstalk-contents .img-area,
    .crosstalk-contents:nth-child(odd) .img-area {
        float: none;
        margin: 0 0 20px;
    }

    .kaiwa {
        margin-bottom: 24px;
    }

    .kaiwa dt {
        width: 60px;
    }

    .kaiwa dt .img-area {
        width: 60px;
        height: 60px;
    }

    .kaiwa dd {
        padding: 16px;
        width: 88%;
        width: -webki-calc(100% - 80px);
        width: calc(100% - 80px);
    }

    .kaiwa dd::before {
        top: 22px;
        left: -14px;
    }

    .kaiwa dd::after {
        left: auto;
        right: -14px;
    }
}


/* ==================================================================================

  special スペシャル

================================================================================== */
.special #pageTtl {
    display: none;
}

.special-head {
    background-position: center;
    background-size: cover;
    text-align: center;
}

.special-head .sectionTtl-bg {
    margin-bottom: 40px;
    padding-bottom: 40px;
    color: #fff;
    border-bottom: solid 1px #fff;
}

.special-head .txt-area {
    padding: 200px 6% 110px;
    position: relative;
    line-height: 1.8;
    background: rgba(0, 0, 10, .8);
    color: #fff;
}

.special-head .txt-area-inner {
    position: relative;
    display: inline-block;
    padding: 50px;
    /*background: rgba(255,255,255,.8);*/
}

.special-head-lead {
    font-size: 200%;
}

.special .medium-ttl {
    font-size: 200%;
}

.special .img-area {
    height: 600px;
    background-position: center;
    background-size: cover;
}

@media (max-width: 768px) {
    .special-head .sectionTtl-bg {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .special-head-lead {
        font-size: 129%;
    }

    .special-head-lead br {
        display: none;
    }

    .special-head .txt-area {
        padding: 60px 0 20px;
    }

    .special-head .txt-area-inner {
        padding: 30px;
    }

    .special .medium-ttl {
        font-size: 160%;
    }

    .special .img-area {
        height: auto;
    }
}


/* ==================================================================================

  album フォトアルバム

================================================================================== */
#album-list .album-list-inner {
    margin-bottom: 40px;
    line-height: 1.6;
    background: #fff;
    border: 1px solid #EBEBED;
}

#album-list .album-list-inner .txt-area {
    background: #fff;
    padding: 15px 5%;
}

#album-list .album-list-inner .img-area {
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;
}

@media (min-width: 768px) {
    #album-list li:nth-child(2n+3) {
        clear: both;
    }
}

@media (min-width: 992px) {
    #album-list li:nth-child(2n+3) {
        clear: inherit;
    }

    #album-list li:nth-child(3n+4) {
        clear: both;
    }
}



/* ==================================================================================

  faq よくある質問

================================================================================== */
.faq-box dl {
    margin-bottom: 40px;
    padding-left: 30px;
}

.faq-box dt {
    position: relative;
    font-size: 125%;
    margin-bottom: 16px;
    line-height: 1.7;
}

.faq-box dt::before {
    content: "Q.";
    color: #52AAB9;
    opacity: 0.7;
    position: absolute;
    left: -37px;
    font-size: 130%;
    line-height: 1;
}

.faq-box dd {
    line-height: 1.8;
    position: relative;
}

.faq-box dd::before {
    content: " ";
    background: #eee;
    width: 5px;
    height: 100%;
    display: block;
    min-height: 3px;
    position: absolute;
    left: -26px;
}



@media (max-width: 768px) {

    /* FAQ
  ------------------------------------------------------------ */
    .faq-box dt::before {
        left: -30px;
    }

    .faq-box dd::before {
        left: -20px;
    }
}

/* ==================================================================================

  ビジュアルエディタ … Wysiwyg editor

================================================================================== */

.wysiwyg ul,
.wysiwyg ol {
    margin: 1em 0;
}

.wysiwyg ul li,
.wysiwyg ol li {
    margin: 0;
    border-bottom: none;
    padding: 0;
    margin-left: 2em;
    position: relative;
}

.wysiwyg ul li {
    margin: 0;
    padding-left: 2em;
}

.wysiwyg ul li:before {
    content: "\f141";
    position: absolute;
    left: 10px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    padding-top: 8px;
    font-weight: normal;
}

.wysiwyg ol li {
    list-style-type: decimal;
}

.wysiwyg img {
    /*  margin: 20px 0;
*/
    max-width: 100%;
    height: auto;
}

.wysiwyg iframe {
    max-width: 100%;
}

.alignleft {
    float: left;
    clear: left;
    margin: 0 30px 5px 0;
}

.alignright {
    float: right;
    clear: right;
    margin: 0 0 5px 30px;
}

.aligncenter {
    display: block;
    margin: 20px auto;
}

.wysiwyg table {
    border: 2px solid #ccc;
    max-width: 100%;
    margin: 20px 0;
    line-height: 1.6;
}

.wysiwyg table th,
.wysiwyg table td {
    padding: 10px 25px;
    border: 1px solid #ccc;
    font-size: 93%;
    vertical-align: middle;
}

.wysiwyg table th {
    white-space: nowrap;
}

.wysiwyg h1 {
    font-size: 172%;
}

.wysiwyg h2 {
    font-size: 158%;
}

.wysiwyg h3 {
    font-size: 143%;
}

.wysiwyg h4 {
    font-size: 129%;
}

.wysiwyg h5 {
    font-size: 115%;
    font-weight: bold;
}

.wysiwyg p {
    margin-bottom: 1em;
}

.wysiwyg blockquote {
    margin: 10px 0;
    padding: 15px 35px;
    border-radius: 3px;
    position: relative;
    display: inline-block;
    font-style: oblique;
    background: #f2f2f2;
}

.wysiwyg blockquote:before,
.wysiwyg blockquote:after {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    font-size: 100%;
    position: absolute;
    width: 1em;
    height: 1em;
}

.wysiwyg blockquote:before {
    content: "\f10d";
    top: -7px;
    left: 10px;
}

.wysiwyg blockquote:after {
    content: "\f10e";
    bottom: -7px;
    right: 10px;
}

.wysiwyg blockquote p,
.wysiwyg .box-graybg p {
    margin: 0;
}

.section-pdg .wysiwyg a {
    word-break: break-all;
}

/* ==================================================================================

  iframe, youtube

================================================================================== */

.bx-wrapper .bx-viewport {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    left: 0;
}

iframe {
    width: 100% !important;
}

.iframeBox,
.youtube-list li {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 16px;
}

.iframeBox iframe,
.youtube-list li iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important
}




/* ====================================================================================
=======================================================================================

     ▼▼ responsive ▼▼

=======================================================================================
======================================================================================= */



@media (max-width: 992px) and (min-width: 769px) {
    #pageTtlIn .container {
        padding: 100px 0;
    }

    #top-interview .top-interview-list li:nth-child(4) {
        display: none;
    }

    #top-interview .top-interview-list li {
        width: 33%;
        padding: 0 10px;
    }

    .first-imagearea,
    .message-box .message-box-img,
    .eyecatch {
        width: 360px;
        margin: 0 0 20px 20px;
    }

    .message-box:nth-child(odd) .message-box-img {
        margin: 0 20px 20px 0;
    }

    .eyecatch {
        height: 240px;
    }

    .service-price {
        margin-top: 40px;
    }

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

    .medium-ttl {
        margin-bottom: 24px;
    }

    #event-list .event-detail {
        float: none;
        width: 100%;
        margin: 0 0 20px;
    }
}


@media (max-width: 768px) {
    /* maincontents 
  ------------------------------------------------------------ */

    .section-pdg .next-page-link a {
        margin: 30px 0 0;
    }

    .section-pdg img,
    #blogPostList img {
        float: none;
        display: block;
        margin: 0 auto;
    }

    #pageNav {
        width: 100%;
        padding: 5% 20px;
    }
}




/* ====================================================================================
=======================================================================================

     ▲▲ responsive ▲▲

=======================================================================================
======================================================================================= */
