@charset "UTF-8";

/*----------------------------------------------------------*/
/* カスタマイズ用CSS
/*----------------------------------------------------------*/

*{
    margin: 0;
    padding: o;
}
html{
	box-sizing:border-box;
	line-height:1;
	font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
    background: #fff;
}
body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
    overflow-x: hidden;
    counter-reset: rank;
    animation: fadeIn 2.5s ease 0s 1 normal;
    letter-spacing: .05em;
    color: #242424;
}

html :where(img) {
    max-width: unset;
}

#all_wrap { position: relative; }
#all_wrap .content a { color: #0476AE; font-weight: 400; transition: ease 0.2s; }
#all_wrap .content a:hover { color: #0476AE; font-weight: 400; text-decoration: underline; transition: ease 0.2s; }
#all_wrap .single_content img { width: 100%; height: auto; padding: 0; margin: 0 auto; }

#all_wrap .content a.wp-block-button__link {
    display: block;
    width: 50%;
    color: #fff;
    transition: ease 0.2s;
    position: relative;
    padding: 10px 20px;
    margin: 0 auto;
}
#all_wrap .content a.wp-block-button__link:hover { text-decoration: none; opacity: 0.8; transition: ease 0.2s; }
#all_wrap .content a.wp-block-button__link::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: none;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0,-50%) rotate(-45deg);
    -webkit-transform: translate(0,-50%) rotate(-45deg);
    transition: ease 0.2s;
}
#all_wrap .content a.wp-block-button__link:hover::after {
    right: 18px;
    transition: ease 0.2s;
}

#all_wrap.sub_page {
    background-image: url('https://wj-inter.co.jp/wp-content/uploads/2021/09/topDataBg.png');
    background-size: 95%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top 400px center;
}


/* スクロールの幅の設定 */
html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* スクロールの背景の設定 */
html::-webkit-scrollbar-track {
  border-radius: 0;
  box-shadow: 0 0 4px #fff inset;
}

/* スクロールのつまみ部分の設定 */
html::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #c8c8c8;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

#all_wrap .single_content a { color: #0476AE; font-weight: 400; transition: ease 0.2s; }
#all_wrap .single_content a:hover { color: ##0476AE; font-weight: 400; text-decoration: underline; transition: ease 0.2s; }


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap.sub_page {
        background-image: url('https://wj-inter.co.jp/wp-content/uploads/2021/09/topDataBg.png');
        background-size: 95%;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: top 230px center;
    }
    #all_wrap .content a.wp-block-button__link {
        display: block;
        width: 90%;
        color: #fff;
        transition: ease 0.2s;
        position: relative;
        padding: 10px 50px;
        margin: 0 auto;
    }
}


/************************************************************/
/*　アニメーション
/************************************************************/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* 左からスラインドイン */
@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    transition: all 0.5s ease;
}

/* 右からスラインドイン */
@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    transition: all 0.5s ease;
}

/* 下からスラインドイン */
@-webkit-keyframes slideInBtm {
    from {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes slideInBtm {
    from {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
.slideInBtm {
    -webkit-animation-name: slideInBtm;
    animation-name: slideInBtm;
    transition: all 0.5s ease;
}

/* 中心からズームイン */
@-webkit-keyframes slideInZoom {
    from {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes slideInZoom {
    from {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
.slideInZoom {
    -webkit-animation-name: slideInZoom;
    animation-name: slideInZoom;
    transition: all 0.5s ease;
}


/************************************************************/
/*　共通
/************************************************************/

/*本文*/
#all_wrap .content {
    font-size: 15px;
    line-height: 2;
    padding: 0;
    margin: 0 auto 100px;
}

/*アンダーライン*/
.yellow { background: linear-gradient(transparent 50%,rgba(255,252,107,.69) 50%); }
.red { background: linear-gradient(transparent 50%,rgba(255,182,193,.3) 50%); }

/*More ボタン*/
.MoreBtn {
    text-align: left;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}
.MoreBtn > a {
    display: inline-block;
    padding: 25px 80px 25px 50px;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    background: #444;
    border-radius: 20px 0 20px 0;
    position: relative;
    transition: all 0.3s ease;
}
.MoreBtn > a:hover {
    transition: all 0.3s ease;
    background: #2BD1EF;
}
.MoreBtn > a::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.MoreBtn > a::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0;
    background: none;
    border-right: 1px solid #fff;
    position: absolute;
    top: calc(50% + 2px);
    right: 22px;
    transform: translate(0, -50%) rotate(-65deg);
    -webkit-transform: translate(0, -50%) rotate(-65deg);
    -ms-transform: translate(0, -50%) rotate(-65deg);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.MoreBtn > a:hover::before {
    right: 18px;
    transition: all 0.3s ease;
}
.MoreBtn > a:hover::after {
    right: 20px;
    transition: all 0.3s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*More ボタン*/
    .MoreBtn {
        text-align: left;
        padding: 0;
        margin: 0;
        margin-top: 20px;
    }
    .MoreBtn > a {
        display: inline-block;
        padding: 15px 55px 15px 40px;
        margin: 0;
        font-size: 15px;
        font-weight: bold;
        line-height: 1;
        color: #fff;
        background: #444;
        border-radius: 20px 0 20px 0;
        position: relative;
        transition: all 0.3s ease;
    }
    .MoreBtn > a:hover {
        transition: all 0.3s ease;
        background: #2BD1EF;
    }
    .MoreBtn > a::before {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        padding: 0;
        margin: 0;
        background: #fff;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    .MoreBtn > a::after {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        padding: 0;
        margin: 0;
        background: none;
        border-right: 1px solid #fff;
        position: absolute;
        top: calc(50% + 2px);
        right: 22px;
        transform: translate(0, -50%) rotate(-65deg);
        -webkit-transform: translate(0, -50%) rotate(-65deg);
        -ms-transform: translate(0, -50%) rotate(-65deg);
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    .MoreBtn > a:hover::before {
        right: 18px;
        transition: all 0.3s ease;
    }
    .MoreBtn > a:hover::after {
        right: 20px;
        transition: all 0.3s ease;
    }
}

/*More テキスト*/
.More {
    text-align: left;
    padding: 0;
    margin: 20px 0 0;
}
.More > a {
    display: inline-block;
    padding: 10px 40px 10px 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #222;
    border-bottom: 1px solid #222;
    position: relative;
    transition: all 0.3s ease;
}
.More > a::after {
    content: '';
    display: block;
    width: 10px;
    height: 20px;
    padding: 0;
    margin: 0;
    background: none;
    border-right: 1px solid #222;
    position: absolute;
    bottom: -20px;
    right: 5px;
    transform: translate(0, -50%) rotate(-60deg);
    -webkit-transform: translate(0, -50%) rotate(-60deg);
    -ms-transform: translate(0, -50%) rotate(-60deg);
    transform-origin: center center;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.MoreW > a {
    display: inline-block;
    padding: 10px 40px 10px 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    border-bottom: 1px solid #fff;
    position: relative;
    transition: all 0.3s ease;
}
.MoreW > a::after {
    content: '';
    display: block;
    width: 10px;
    height: 20px;
    padding: 0;
    margin: 0;
    background: none;
    border-right: 1px solid #fff;
    position: absolute;
    bottom: -20px;
    right: 5px;
    transform: translate(0, -50%) rotate(-60deg);
    -webkit-transform: translate(0, -50%) rotate(-60deg);
    -ms-transform: translate(0, -50%) rotate(-60deg);
    transform-origin: center center;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.More > a:hover,
.MoreW > a:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*More テキスト*/
    .More {
        text-align: left;
        padding: 0;
        margin: 20px 0 0;
    }
    .More > a {
        display: inline-block;
        padding: 10px 40px 10px 0;
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        color: #222;
        border-bottom: 1px solid #222;
        position: relative;
        transition: all 0.3s ease;
    }
    .More > a::after {
        content: '';
        display: block;
        width: 10px;
        height: 20px;
        padding: 0;
        margin: 0;
        background: none;
        border-right: 1px solid #222;
        position: absolute;
        bottom: -20px;
        right: 5px;
        transform: translate(0, -50%) rotate(-60deg);
        -webkit-transform: translate(0, -50%) rotate(-60deg);
        -ms-transform: translate(0, -50%) rotate(-60deg);
        transform-origin: center center;
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    .MoreW > a {
        display: inline-block;
        padding: 10px 40px 10px 0;
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        color: #fff;
        border-bottom: 1px solid #fff;
        position: relative;
        transition: all 0.3s ease;
    }
    .MoreW > a::after {
        content: '';
        display: block;
        width: 10px;
        height: 20px;
        padding: 0;
        margin: 0;
        background: none;
        border-right: 1px solid #fff;
        position: absolute;
        bottom: -20px;
        right: 5px;
        transform: translate(0, -50%) rotate(-60deg);
        -webkit-transform: translate(0, -50%) rotate(-60deg);
        -ms-transform: translate(0, -50%) rotate(-60deg);
        transform-origin: center center;
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    .More > a:hover,
    .MoreW > a:hover {
        opacity: 0.8;
        transition: all 0.3s ease;
    }
}


/*ポイントボックス*/
#all_wrap .l-wrapper .content .pointBox {
    width: 100%;
    padding: 40px;
    margin: 0 auto 20px;
    background: #fef9e6;
    font-size: 15px;
    line-height: 2;
}
#all_wrap .l-wrapper .postContents .content .pointBox > h2,
#all_wrap .l-wrapper .pageContents .content .pointBox > h2,
#all_wrap .l-wrapper .postContents .content .pointBox > h3,
#all_wrap .l-wrapper .pageContents .content .pointBox > h3 {
    width: 100%;
    padding: 0 0 0 55px;
    margin: 0 auto 20px;
    font-size: 20px;
    line-height: 1.4em;
    color: #f3b677;
    font-weight: bold;
    position: relative;
    background: none;
}
#all_wrap .l-wrapper .postContents .content .pointBox > h2::before,
#all_wrap .l-wrapper .pageContents .content .pointBox > h2::before,
#all_wrap .l-wrapper .postContents .content .pointBox > h3::before,
#all_wrap .l-wrapper .pageContents .content .pointBox > h3::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    background: #f3b677;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    z-index: 0;
}
#all_wrap .l-wrapper .postContents .content .pointBox > h2::after,
#all_wrap .l-wrapper .pageContents .content .pointBox > h2::after,
#all_wrap .l-wrapper .postContents .content .pointBox > h3::after,
#all_wrap .l-wrapper .pageContents .content .pointBox > h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    background: url('https://homepage.simple-alpha.com/wp-content/themes/homepage/img/svg/icon_pen.svg') no-repeat;
    background-size: 20px;
    background-position: center center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    z-index: 1;
}


#all_wrap .l-wrapper .postContents .content .wp-block-button,
#all_wrap .l-wrapper .pageContents .content .wp-block-button {
    margin-top: 20px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .postContents .content .wp-block-button,
    #all_wrap .l-wrapper .pageContents .content .wp-block-button {
        margin-top: 10px;
    }
}

/************************************************************/
/*　コンテンツ整形
/************************************************************/
#all_wrap p {
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    font-feature-settings: "palt" 1;
    font-style: normal;
}
#all_wrap .l-wrapper .content p {
    font-size: 15px;
    line-height: 2;
    padding: 0;
    margin: 0 auto 20px;
}
#all_wrap .l-wrapper-full .content p {
    font-size: 15px;
    line-height: 2;
    padding: 0;
    margin: 0 auto 20px;
}
#all_wrap img.alignleft {
    margin-right: 30px;
    margin-bottom: 30px;
}
#all_wrap img.alignright {
    margin-left: 30px;
    margin-bottom: 30px;
}

/*カスタマイズ*/
#all_wrap .content div {
    margin-top: 0;
}
#all_wrap .content .wp-block-columns {
    margin-top: 0;
    align-content: flex-start;
    align-items: flex-start;
}
#all_wrap .content .wp-block-spacer {
    padding: 0;
    margin: 0;
}
#all_wrap .l-wrapper .postContents .content .wp-block-columns h3:first-of-type,
#all_wrap .l-wrapper .pageContents .content .wp-block-columns h3:first-of-type,
#all_wrap .l-wrapper .postContents .content .wp-block-columns h4:first-of-type,
#all_wrap .l-wrapper .pageContents .content .wp-block-columns h4:first-of-type,
#all_wrap .l-wrapper .postContents .content .wp-block-columns h5:first-of-type,
#all_wrap .l-wrapper .pageContents .content .wp-block-columns h5:first-of-type {
    margin-top: 0;
}
#all_wrap .l-wrapper .postContents .content p.toriatsukai,
#all_wrap .l-wrapper .pageContents .content p.toriatsukai {
    display: inline-block;
    background: #33BBED;
    color: #FFF;
    padding: 11px 35px 10px;
    border-radius: 40px;
}

/*投稿ページ　タグ下マージン*/
#all_wrap .l-wrapper .dateList {
    margin-bottom: 5px;
}

/*下マージン*/
#all_wrap .l-wrapper .pageContents .content .mb0,
#all_wrap .l-wrapper .postContents .content .mb0 { margin-bottom: 0px; }
#all_wrap .l-wrapper .pageContents .content .mb5,
#all_wrap .l-wrapper .postContents .content .mb5 { margin-bottom: 5px; }
#all_wrap .l-wrapper .pageContents .content .mb10,
#all_wrap .l-wrapper .postContents .content .mb10 { margin-bottom: 10px; }
#all_wrap .l-wrapper .pageContents .content .mb20,
#all_wrap .l-wrapper .postContents .content .mb20 { margin-bottom: 20px; }
#all_wrap .l-wrapper .pageContents .content .mb30,
#all_wrap .l-wrapper .postContents .content .mb30 { margin-bottom: 30px; }
#all_wrap .l-wrapper .pageContents .content .mb40,
#all_wrap .l-wrapper .postContents .content .mb40 { margin-bottom: 40px; }
#all_wrap .l-wrapper .pageContents .content .mb50,
#all_wrap .l-wrapper .postContents .content .mb50 { margin-bottom: 50px; }
#all_wrap .l-wrapper .pageContents .content .mb60,
#all_wrap .l-wrapper .postContents .content .mb60 { margin-bottom: 60px; }
#all_wrap .l-wrapper .pageContents .content .mb70,
#all_wrap .l-wrapper .postContents .content .mb70 { margin-bottom: 70px; }
#all_wrap .l-wrapper .pageContents .content .mb80,
#all_wrap .l-wrapper .postContents .content .mb80 { margin-bottom: 80px; }
#all_wrap .l-wrapper .pageContents .content .mb90,
#all_wrap .l-wrapper .postContents .content .mb90 { margin-bottom: 90px; }
#all_wrap .l-wrapper .pageContents .content .mb100,
#all_wrap .l-wrapper .postContents .content .mb100 { margin-bottom: 100px; }

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap p {
        font-size: 14px;
        line-height: 1.7em;
        font-weight: 400;
        font-feature-settings: "palt" 1;
        font-style: normal;
    }
    #all_wrap .l-wrapper .content p {
        font-size: 14px;
        line-height: 1.7em;
        padding: 0;
        margin-bottom: 10px;
    }
    #all_wrap .l-wrapper-full .content p {
        font-size: 14px;
        line-height: 1.7em;
        padding: 0;
        margin-bottom: 10px;
    }
    #all_wrap .l-wrapper .postContents .content p.toriatsukai,
    #all_wrap .l-wrapper .pageContents .content p.toriatsukai {
        display: inline-block;
        background: #33BBED;
        color: #FFF;
        padding: 11px 35px 10px;
        border-radius: 40px;
        text-align: center;
    }
    /*下マージン*/
    #all_wrap .l-wrapper .pageContents .content .mb0,
    #all_wrap .l-wrapper .postContents .content .mb0 { margin-bottom: 0px; }
    #all_wrap .l-wrapper .pageContents .content .mb5,
    #all_wrap .l-wrapper .postContents .content .mb5 { margin-bottom: 2px; }
    #all_wrap .l-wrapper .pageContents .content .mb10,
    #all_wrap .l-wrapper .postContents .content .mb10 { margin-bottom: 5px; }
    #all_wrap .l-wrapper .pageContents .content .mb20,
    #all_wrap .l-wrapper .postContents .content .mb20 { margin-bottom: 10px; }
    #all_wrap .l-wrapper .pageContents .content .mb30,
    #all_wrap .l-wrapper .postContents .content .mb30 { margin-bottom: 15px; }
    #all_wrap .l-wrapper .pageContents .content .mb40,
    #all_wrap .l-wrapper .postContents .content .mb40 { margin-bottom: 20px; }
    #all_wrap .l-wrapper .pageContents .content .mb50,
    #all_wrap .l-wrapper .postContents .content .mb50 { margin-bottom: 25px; }
    #all_wrap .l-wrapper .pageContents .content .mb60,
    #all_wrap .l-wrapper .postContents .content .mb60 { margin-bottom: 30px; }
    #all_wrap .l-wrapper .pageContents .content .mb70,
    #all_wrap .l-wrapper .postContents .content .mb70 { margin-bottom: 35px; }
    #all_wrap .l-wrapper .pageContents .content .mb80,
    #all_wrap .l-wrapper .postContents .content .mb80 { margin-bottom: 40px; }
    #all_wrap .l-wrapper .pageContents .content .mb90,
    #all_wrap .l-wrapper .postContents .content .mb90 { margin-bottom: 45px; }
    #all_wrap .l-wrapper .pageContents .content .mb100,
    #all_wrap .l-wrapper .postContents .content .mb100 { margin-bottom: 50px; }

}

/*ウィジェットパディング*/
#all_wrap .widget-main {
    padding: 0;
    margin: 0;
}

/*== スマホ・PC 非表示 ==*/
.pc_none { display: none; }
.sp_none { display: block; }
@media only screen and (max-width: 768px){
    .pc_none { display: block; }
    .sp_none { display: none; }
}

/*== フレックス ==*/
.flex {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}
.flex > div {
    width: 48%;
    padding: 0;
    margin: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .flex {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .flex > div {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
    }
}

/************************************************************/
/*　JS
/************************************************************/

/*lightbox*/
.nivo-lightbox-effect-fade {
    visibility: hidden;
    opacity: 0;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
    visibility: visible;
    opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
    opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
    background-size: 20px 20px;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
    width: 20px;
    height: 20px;
}


/************************************************************/
/*　構成
/************************************************************/
.l-main {
	width: calc(80% - 50px);
	margin-bottom: 0;
    z-index: 1;
}
#all_wrap.main_page .l-wrapper {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
}
#all_wrap.sub_page .l-wrapper {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
}
.l-wrapper-full {
    position: relative;
    width: 100%;
	margin: 0 auto;
    padding: 0;
}
.top_wrapper {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

#all_wrap .l-wrapper .l-main {
    width: 70%;
    padding: 50px 0;
    margin: 0;
}



.page {
    width: 100%;
}
.dividerBottom {
    margin-bottom: 0;
}
.pageContents .content,
.archiveContents .content {
    padding: 0;
    margin: 0 auto 50px;
}
#all_wrap .l-wrapper-full .pageContents .content, #all_wrap .l-wrapper-full .archiveContents .content {
    margin: 0;
    padding: 0;
}
#all_wrap .l-wrapper-full .sitemap_content {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 100px;
}
 
.l-sidebar {
    width: 25%;
    padding: 50px 0;
    margin: 0;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 5;
}
.l-main-wide    {width: calc(80% - 50px); margin-right:0;}
.l-main-wide1000{width:1000px;margin: auto;}
.l-main-wide900 {width:900px; margin: auto;}
.l-main-wide800 {width:800px; margin: auto;}
.l-main-wide700 {width:700px; margin: auto;}
.l-main-right   {order: 2;}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .l-main {
        width: 90%;
        margin: 0 auto;
    }
    #all_wrap .l-wrapper {
        width: 100%;
        padding: 20px 0;
        margin: 0 auto;
    }
    .l-wrapper-full .l-main {
        width: 100%;
        margin: 0 auto;
    }

    .l-wrapper {
        width: 100%;
        padding: 0;
        margin:20px 0;
    }
    .l-wrapper-full {
        position:relative;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        background: #fff;
    }
    
    .l-wrapper-guide {
        position: relative;
        width: 100%;
        margin: 0 auto;
        padding: 20px 0;
    }
    .l-wrapper-guide::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
        margin: 0 auto;
        background-image: url("https://iine-book.com/img/guide_wrap_bg.jpg");
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: top 150px right;
        background-color: #f5f5f5;
        background-size: 100%;
    }
    
    .l-sidebar {
        display: none;
    }
    
    .page {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .content {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .postContents {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .pageContents .content,
    .archiveContents .content {
        padding: 0;
        margin: 0 auto;
    }
    
    /*グーグルマップ表示*/
    .l-wrapper iframe {
        width: 100%;
    }
    
    /*検索結果なし*/
    .archive__item-none {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        border: none;
    }
}

.widgetSearch__contents .widgetSearch__select {
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    padding: 10px 10px;
    line-height: 1em;
}
.searchbox {
    width: 100%;
    position: relative;
    display: inline-block;
}
.searchbox::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #b4b3b3;
  border-right: solid 2px #b4b3b3;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}

#all_wrap .pager {
    width: 100%;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
}

/************************************************************/
/*　見出し　＆　パンくず
/************************************************************/

h1,h2,h3,h4,h5,h6,b,strong {
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
    font-size: 1em;
    color: #272727;
}

#page_title {
    width: 100%;
    padding: 180px 0 30px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}
#page_title > figure {
    display: block;
    width: 85%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: #E1EAEF;
    border-radius: 0 0 0 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
    overflow: hidden;
    text-align: center;
}
#page_title > figure::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#page_title > figure img {
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#page_title::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url('https://wj-inter.co.jp/wp-content/uploads/2021/09/topServiceBg.png') no-repeat;
    background-size: 40%;
    background-position: top -50px right;
}
#page_title > strong {
    display: block;
    width: 100%;
    max-width: 1200px;
    position: relative;
    padding: 20px 50px 0;
    margin: 0 auto 10px;
    font-family: 'Urbanist', sans-serif;
    font-size: 70px;
    font-weight: 500;
    line-height: 1;
    color: #0476AE;
}
#page_title > strong::first-letter {
    text-transform: uppercase;
}
#page_title > strong::before {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 50px;
}
#page_title > strong::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 105px;
}
#page_title > h1 {
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
    margin: 0 auto 20px;
    font-size: 20px;
    line-height: 1.4em;
    color: #222;
    font-weight: bold;
    border: none;
    background: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (min-width: 1550px){
    #page_title > figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #page_title {
        width: 100%;
        padding: 100px 0 20px;
        margin: 0 auto;
        position: relative;
        z-index: 0;
    }
    #page_title > figure {
        display: block;
        width: 95%;
        height: 100%;
        padding: 0;
        margin: 0;
        background: #E1EAEF;
        border-radius: 0 0 0 20px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -2;
        overflow: hidden;
        text-align: center;
    }
    #page_title > figure::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.3;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #page_title > figure img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 20%;
        transform: translate(-50%,-50%) scaleX(-1);
        -webkit-transform: translate(-50%,-50%) scaleX(-1);
    }
    #page_title::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        background: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        background: url('https://wj-inter.co.jp/wp-content/uploads/2021/09/topServiceBg.png') no-repeat;
        background-size: 40%;
        background-position: top 50px right;
    }
    #page_title > strong {
        display: block;
        width: 80%;
        max-width: 80%;
        position: relative;
        padding: 15px 0 0;
        margin: 0 auto 5px;
        font-family: 'Urbanist', sans-serif;
        font-size: 30px;
        font-weight: 500;
        line-height: 1;
        color: #fff;
    }
    #page_title > strong::first-letter {
        text-transform: uppercase;
    }
    #page_title > strong::before {
        content: '';
        display: block;
        width: 50px;
        height: 4px;
        border-radius: 20px;
        background: #fff;
        position: absolute;
        top: 0;
        left: 0;
    }
    #page_title > strong::after {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 20px;
        background: #fff;
        position: absolute;
        top: 0;
        left: 55px;
    }
    #page_title > h1 {
        width: 80%;
        max-width: 80%;
        padding: 0;
        margin: 0 auto 10px;
        font-size: 12px;
        line-height: 1.4em;
        color: #fff;
        font-weight: bold;
        border: none;
        background: none;
    }
}

#all_wrap .l-wrapper .pageContents .content h2,
#all_wrap .l-wrapper .postContents .content h2 {
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4em;
    color: #fff;
    background: #339CD0;
    margin-top: 6rem;
    border-radius: 20px 0 20px 0;
}

#all_wrap .l-wrapper .pageContents .content h3,
#all_wrap .l-wrapper .postContents .content h3 {
    margin-bottom: 30px;
    padding: 15px 20px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4em;
    background-color: none;
    border-radius: 0;
    border-bottom: 1px solid #555;
    color: #0476AE;
    margin-top: 4rem;
    position: relative;
}
#all_wrap .l-wrapper .pageContents .content h3::before,
#all_wrap .l-wrapper .postContents .content h3::before{
    content: '';
    display: block;
    width: 5px;
    height: 60%;
    background: linear-gradient(to bottom, rgba(4,118,174,0.9) 0, rgba(43,209,239,0.9) 100%);
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 20px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}

#all_wrap .l-wrapper .pageContents .content h4,
#all_wrap .l-wrapper .postContents .content h4 {
    margin-bottom: 10px;
    padding: 0 0 0 25px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
    background: none;
    border:none;
    color: #333;
    margin-top: 3rem;
    position: relative;
}
#all_wrap .l-wrapper .pageContents .content h4::before,
#all_wrap .l-wrapper .postContents .content h4::before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    background: #339CD0;
    position: absolute;
    top: 0.6em;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}

#all_wrap .l-wrapper .pageContents .content h5,
#all_wrap .l-wrapper .postContents .content h5 {
    margin-bottom: 5px;
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4em;
    background: none;
    border: none;
    color: #333;
}

#all_wrap .l-wrapper .pageContents .content h2:first-of-type,
#all_wrap .l-wrapper .postContents .content h2:first-of-type {
    margin-top: 0;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .pageContents .content h2,
    #all_wrap .l-wrapper .postContents .content h2 {
        margin-bottom: 30px;
        padding: 10px 20px;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4em;
        color: #fff;
        background: #339CD0;
        margin-top: 6rem;
        border-radius: 20px 0 20px 0;
    }

    #all_wrap .l-wrapper .pageContents .content h3,
    #all_wrap .l-wrapper .postContents .content h3 {
        margin-bottom: 20px;
        padding: 15px 20px;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.4em;
        background-color: none;
        border-radius: 0;
        border-bottom: 1px solid #555;
        color: #0476AE;
        margin-top: 4rem;
        position: relative;
    }
    #all_wrap .l-wrapper .pageContents .content h3::before,
    #all_wrap .l-wrapper .postContents .content h3::before{
        content: '';
        display: block;
        width: 5px;
        height: 60%;
        background: linear-gradient(to bottom, rgba(4,118,174,0.9) 0, rgba(43,209,239,0.9) 100%);
        position: absolute;
        top: 50%;
        left: 0;
        border-radius: 20px;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }

    #all_wrap .l-wrapper .pageContents .content h4,
    #all_wrap .l-wrapper .postContents .content h4 {
        margin-bottom: 10px;
        padding: 0 0 0 25px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.2em;
        background: none;
        border:none;
        color: #333;
        margin-top: 3rem;
        position: relative;
    }
    #all_wrap .l-wrapper .pageContents .content h4::before,
    #all_wrap .l-wrapper .postContents .content h4::before {
        content: '';
        display: block;
        width: 15px;
        height: 15px;
        padding: 0;
        margin: 0;
        border-radius: 50%;
        background: #339CD0;
        position: absolute;
        top: 0.6em;
        left: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }

    #all_wrap .l-wrapper .pageContents .content h5,
    #all_wrap .l-wrapper .postContents .content h5 {
        margin-bottom: 5px;
        padding: 0;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4em;
        background: none;
        border: none;
        color: #333;
    }

    #all_wrap .l-wrapper .pageContents .content h2:first-of-type,
    #all_wrap .l-wrapper .postContents .content h2:first-of-type {
        margin-top: 0;
    }
}


#all_wrap .l-wrapper .pageContents .content h2.designMidashi,
#all_wrap .l-wrapper .postContents .content h2.designMidashi {
    width: 100%;
    max-width: 1000px;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-family: 'Urbanist', sans-serif;
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
    color: #272727;
    text-align: left;
    padding: 0;
    margin: 0 auto 30px;
    border: none;
}
#all_wrap .l-wrapper .pageContents .content h2.designMidashi > span,
#all_wrap .l-wrapper .postContents .content h2.designMidashi > span {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #272727;
    padding: 0;
    margin: 0 0 0 20px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .pageContents .content h2.designMidashi,
    #all_wrap .l-wrapper .postContents .content h2.designMidashi {
        width: 90%;
        max-width: 90%;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        font-family: 'Urbanist', sans-serif;
        font-size: 30px;
        line-height: 1;
        font-weight: 700;
        color: #272727;
        text-align: left;
        padding: 0;
        margin: 0 auto 20px;
        border: none;
    }
    #all_wrap .l-wrapper .pageContents .content h2.designMidashi > span,
    #all_wrap .l-wrapper .postContents .content h2.designMidashi > span {
        display: block;
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        color: #272727;
        padding: 0;
        margin: 5px 0 0;
        text-align: center;
    }
}


/************************************************************/
/*　ページネーション
/************************************************************/
.pager {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.pager > li {
    line-height: 1;
    padding: 0;
    margin: 0 5px 0 0;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-feature-settings: "palt";
    color: #272727;
    border: 1px solid #272727;
}
.pager > li:hover {
    border: 1px solid #0476AE;
}
.pager > li.pager__item-current {
    padding: 5px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0476AE;
    border: 1px solid #0476AE;
    color: #fff;
}
.pager > li.pager__item-next,
.pager > li.pager__item-prev {
    background: none;
    border-radius: 0;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-feature-settings: "palt";
}
.pager > li a {
    text-align: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-weight: normal;
    font-feature-settings: "palt";
    transition: ease 0.2s;
    line-height: 1;
}
.pager > li a:hover {
    background: #0476AE;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-weight: normal;
    font-feature-settings: "palt";
    transition: ease 0.2s;
    line-height: 1;
}

/************************************************************/
/*　パンくず
/************************************************************/
/*パンくず*/
.breadcrumb {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background: none;
    border: none;
    position: relative;
}
.breadcrumb::before {
    content: '';
    display: block;
    width: 80vw;
    height: 100%;
    padding: 0;
    margin: 0;
    background: #f7f7f7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0.8;
}
.breadcrumb > ul {
    width: 100%;
    max-width: 1100px;
    padding: 20px 0;
    margin: 0 auto;
    font-size: 12px;
    color: #888;
}
.breadcrumb a {
    font-size: 12px;
    line-height: 1;
    padding: 0;
    margin: 0;
    text-decoration: none;
    transition: ease 0.2s;
    color: #888;
}
.breadcrumb a:hover {
    text-decoration: none;
    transition: ease 0.2s;
    color: #0476AE;
    opacity: 0.8;
}
.breadcrumb__list {
    padding: 0;
}
.breadcrumb__item {
    position: relative;
    display: table-cell;
    white-space: nowrap;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 12px;
    line-height: 1;
    color: #888;
}
.breadcrumb__item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -2px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #888;
    border-right: 1px solid #888;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*パンくず*/
    .breadcrumb {
        width: 100%;
        padding: 0 20px;
        margin: 0 auto;
        background: none;
        border: none;
        font-size: 0.9em;
        line-height: 1.2em;
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow: auto;
        white-space: nowrap;
        background: none;
    }
    .breadcrumb::-webkit-scrollbar {
        display: none;
    }
    .breadcrumb::before {
        display: none;
    }
    .breadcrumb > ul {
        width: 100%;
        max-width: 100%;
        padding: 10px 0;
        margin: 0 auto;
        font-size: 10px;
        color: #888;
    }
    .breadcrumb a {
        font-size: 10px;
        line-height: 1;
        padding: 0;
        margin: 0;
        text-decoration: none;
        transition: ease 0.2s;
        color: #888;
    }
    .breadcrumb a:hover {
        text-decoration: none;
        transition: ease 0.2s;
        color: #0476AE;
        opacity: 0.8;
    }
    .breadcrumb__list {
        padding: 0;
        display: block;
    }
    .breadcrumb__item {
        position: relative;
        display: table-cell;
        white-space: nowrap;
        padding-right: 15px;
        padding-left: 15px;
        font-size: 10px;
        line-height: 1;
        color: #888;
    }
    .breadcrumb__item::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -2px;
        width: 5px;
        height: 5px;
        border-top: 1px solid #888;
        border-right: 1px solid #888;
    }
}


/************************************************************/
/*　フォントサイズ
/************************************************************/
.content table {
	font-size: 15px;
    color: #fff;
}


/************************************************************/
/*　グローバルメニュー　＆　ヘッダー
/************************************************************/
#header {
    width: 100%;
    padding: 0 80px 0 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}
#header > #logo {
    width: auto;
    padding: 20px;
    margin: 0;
	background: #444;
    border-radius: 0 0 20px 0;
    text-align: left;
}
#header > #logo img {
    width: auto;
    height: 20px;
    padding: 0;
    margin: 0 auto 10px;
}
#header > #logo .logoTxt {
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}
#header > #logo .logoTxt a {
    font-size: 12px;
    line-height: 1;
    color: #fff;
    padding: 0;
    margin: 0;
}
#header > #logo .logoTxt tel {
    display: block;
    text-align: right;
}

#header > #headerNav {
    width: calc(100% - 280px);
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
#header > #headerNav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
#header > #headerNav > ul > li {
    padding: 0 20px;
    margin: 0;
    text-align: center;
    position: relative;
}
#header > #headerNav > ul > li a {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s ease;
	position: relative;
}
#all_wrap.main_page #header > #headerNav > ul > li a {
    color: #222;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s ease;
}
#header > #headerNav > ul > li a:hover {
    color: #fff;
    transition: all 0.5s ease;
}
#header > #headerNav > ul > li a::before {
	content: '';
	display: block;
	width: 0;
	height: 3px;
	background: #fff;
	border-radius: 3px;
	position: absolute;
	bottom: -10px;
	left: 0;
	transition: all 0.3s ease;
}
#header > #headerNav > ul > li a:hover::before {
	width: 100%;
	height: 3px;
	transition: all 0.3s ease;
}
/*お問い合わせ*/
#header > #headerNav > tel {
    padding: 0 20px;
    margin: 0;
}
#header > #headerNav > tel a {
    display: block;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    padding: 10px 20px;
    margin: 0;
    line-height: 1;
    transition: all 0.5s ease;
    background: linear-gradient(to right, #FB7D00 0, #FCCB47 100%);
    border-radius: 20px 0 20px 0;
    text-align: center;
    white-space: nowrap;
}
#header > #headerNav > tel a:hover {
    opacity: 0.8;
    transition: all 0.5s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #header {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        background: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 5;
    }
    #header > #logo {
        width: 50%;
        padding: 10px 20px;
        margin: 0;
        border-radius: 0 0 20px 0;
        text-align: left;
        display: -webkit-inline-flex;
		display: inline-flex;
        justify-content: flex-start;
        flex-wrap: wrap;
		grid-row-gap: 5px;
    }
    #header > #logo img {
        width: auto;
        height: 15px;
        padding: 0;
        margin: 0;
    }
    #header > #logo .logoTxt {
        display: block;
        padding: 0;
        margin: 0;
        border: none;
        background: none;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
		grid-row-gap: 2px;
    }
    #header > #logo .logoTxt a {
        display: block;
        width: 100%;
        font-size: 10px;
        line-height: 1.2em;
        color: #fff;
        padding: 0;
        margin: 0;
        text-align: left;
    }
    #header > #logo .logoTxt tel {
        display: block;
        width: 100%;
        text-align: right;
    }

    #header > #headerNav {
        display: none;
    }
}


/* ドロワーメニュー */
.humburger span {
    width: 20px;
    height: 2px;
    background-color: #0476AE;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s; /*真ん中の線がゆっくり消えるように*/
}
.humburger span:nth-of-type(1) {
    transform: translate(-50%, -7px);
}
.humburger span:nth-of-type(3) {
    width: 15px;
    transform: translate(calc(-50% - 2.5px), 5px);
}

#navTgl:checked + .open .humburger span:nth-of-type(1) {
    transform: rotate(45deg) translate(-50%, 0);
    transform-origin: 0% 50%;
    background-color: #fff;
    margin-top: -2px;
    margin-left: -1px;
}
#navTgl:checked + .open .humburger span:nth-of-type(2) {
    opacity: 0;
}
#navTgl:checked + .open .humburger span:nth-of-type(3) {
    width: 20px;
    transform: rotate(-45deg) translate(-50%, 0);
    transform-origin: 0% 50%;
    background-color: #fff;
    margin-top: -2px;
    margin-left: -1px;
}

#navTgl {
    display: none;
}
label.open,
label.close {
    cursor: pointer;
    position: fixed;
    top: 35px;
    right: 20px;
    z-index: 10000;
}
.open {
    z-index: 10000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #0476AE;
    color: white;
    background: none;
    font-size: 3em;
    text-align: center;
    -webkit-transition: background-color .6s, -webkit-transform .4s;
    transition: background-color .6s, transform .4s;
}
#navTgl:checked + .open {
    border: 1px solid #fff;
    background-color: rgba(0, 0, 0, 0);
}
.close {
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: background-color .4s;
}
#navTgl:checked ~ .close {
    border: 1px solid #fff;
    pointer-events: auto;
    background-color: rgba(0,0,0,.3);
}


#menu.menu {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(4,118,174,0.9) 0, rgba(43,209,239,0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .4s;
    transition: transform .4s;
    overflow-y: scroll;
}
#navTgl:checked ~ .menu {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#menuNavBox {
    width: 80%;
    height: 80%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#menuNavBox ul {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    border: none;
    background: none;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
}
#menuNavBox ul::before,
#menuNavBox ul::after {
    content: '';
    width: 25%;
    display: block;
}
#menuNavBox ul::before {
    order: 1;
}
#menuNavBox ul li {
    width: 25%;
    padding: 10px 0 10px 15px;
    margin: 0 0 20px;
    background: none;
    border: none;
    position: relative;
}
#menuNavBox ul li::before {
    content: '';
    display: block;
    width: 5px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#menuNavBox ul li a {
    display: inline;
    padding: 0;
    margin: 0;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    background: none;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
}
#menuNavBox ul li a::before {
    display: none;
}
#menuNavBox ul li a:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
}

#menuNavBox .widget-menu h2.heading.heading-widget {
    width: 100%;
    padding: 0 0 20px;
    margin: 0 auto 30px;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    font-weight: bold;
    border: none;
    border-bottom: 1px solid #fff;
    background: none;
    border-radius: 0;
}
#menuNavBox .widget-menu h2.heading.heading-widget > strong {
    display: block;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 10px 0 0;
    margin: 0 auto 5px;
    font-family: 'Urbanist', sans-serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}
#menuNavBox .widget-menu h2.heading.heading-widget > strong::before {
    content: '';
    display: block;
    width: 30px;
    height: 4px;
    border-radius: 20px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
#menuNavBox .widget-menu h2.heading.heading-widget > strong::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 20px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 35px;
}

#menuNavBox .panelTel {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
#menuNavBox .panelTel > tel {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    position: relative;
}
#menuNavBox .panelTel > tel::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0 5px 0 0;
    background: url('https://wj-inter.co.jp/wp-content/themes/wji/img/svg/icon_tel_w.svg') no-repeat;
    background-size: 100%;
    background-position: center center;
}
#menuNavBox .panelTel > tel > a {
    font-size: 40px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    transition: 0.5s;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}
#menuNavBox .panelTel > tel > a:hover {
    opacity: 0.8;
    transition: 0.5s;
    text-decoration: none;
}

#menuNavBox .panelTel > .panelContact a {
    display: block;
    font-weight: 700;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    padding: 15px 40px 15px 20px;
    margin: 0 0 0 30px;
    line-height: 1;
    transition: all 0.5s ease;
    background: linear-gradient(to right, #FB7D00 0, #FCCB47 100%);
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
    position: relative;
}
#menuNavBox .panelTel > .panelContact a::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    padding: 0;
    margin: 0;
    background: none;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#menuNavBox .panelTel > .panelContact a:hover {
    opacity: 0.8;
    transition: all 0.5s ease;
}
#menuNavBox .panelTel > .panelContact a:hover::before {
    transform: translate(2px,-50%) rotate(45deg);
    -webkit-transform: translate(2px,-50%) rotate(45deg);
    transition: all 0.5s ease;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    label.open,
    label.close {
        cursor: pointer;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 10000;
    }
    #menu.menu {
        z-index: 9999;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(4,118,174,0.9) 0, rgba(43,209,239,0.9) 100%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: -webkit-transform .4s;
        transition: transform .4s;
        overflow-y: scroll;
    }
    #menuNavBox {
        width: 80%;
        height: 80%;
        padding: 40px 0;
        margin: auto;
        position: static;
        top: unset;
        left: unset;
        transform: translate(0,0);
        -webkit-transform: translate(0,0);
    }
    #menuNavBox ul {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        border: none;
        background: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-around;
        flex-wrap: wrap;
        position: relative;
    }
    #menuNavBox ul::before,
    #menuNavBox ul::after {
        content: '';
        width: 25%;
        display: block;
    }
    #menuNavBox ul::before {
        order: 1;
    }
    #menuNavBox ul li {
        width: 100%;
        padding: 0;
        margin: 0;
        background: none;
        border: none;
        position: relative;
        border-bottom: 1px solid rgba(255,255,255,0.5);
    }
    #menuNavBox ul li::before {
        content: '';
        display: block;
        width: 5px;
        height: 2px;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 5px;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
    #menuNavBox ul li a {
        display: block;
        padding: 20px 0 20px 20px;
        margin: 0;
        font-size: 14px;
        line-height: 1;
        color: #fff;
        font-family: 'Urbanist', sans-serif;
        font-weight: 500;
        background: none;
        border: none;
        text-align: left;
        transition: all 0.3s ease;
    }
    #menuNavBox ul li a::before {
        display: none;
    }
    #menuNavBox ul li a:hover {
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    #menuNavBox .widget-menu h2.heading.heading-widget {
        width: 100%;
        padding: 0 0 20px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1;
        color: #fff;
        font-weight: bold;
        border: none;
        border-bottom: 1px solid #fff;
        background: none;
        border-radius: 0;
    }
    #menuNavBox .widget-menu h2.heading.heading-widget > strong {
        display: block;
        width: 100%;
        max-width: 100%;
        position: relative;
        padding: 10px 0 0;
        margin: 0 auto 5px;
        font-family: 'Urbanist', sans-serif;
        font-size: 30px;
        font-weight: 500;
        line-height: 1;
        color: #fff;
    }
    #menuNavBox .widget-menu h2.heading.heading-widget > strong::before {
        content: '';
        display: block;
        width: 30px;
        height: 4px;
        border-radius: 20px;
        background: #fff;
        position: absolute;
        top: 0;
        left: 0;
    }
    #menuNavBox .widget-menu h2.heading.heading-widget > strong::after {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 20px;
        background: #fff;
        position: absolute;
        top: 0;
        left: 35px;
    }
    
    #menuNavBox .panelTel {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    #menuNavBox .panelTel > tel {
        width: 100%;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        padding: 0;
        margin: 0 auto 10px;
        position: relative;
    }
    #menuNavBox .panelTel > tel::before {
        content: '';
        display: block;
        width: 30px;
        height: 30px;
        padding: 0;
        margin: 0 5px 0 0;
        background: url('https://wj-inter.co.jp/wp-content/themes/wji/img/svg/icon_tel_w.svg') no-repeat;
        background-size: 100%;
        background-position: center center;
    }
    #menuNavBox .panelTel > tel > a {
        font-size: 40px;
        font-family: 'Urbanist', sans-serif;
        font-weight: 700;
        line-height: 1;
        color: #fff;
        transition: 0.5s;
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        white-space: nowrap;
    }
    #menuNavBox .panelTel > tel > a:hover {
        opacity: 0.8;
        transition: 0.5s;
        text-decoration: none;
    }
    #menuNavBox .panelTel > .panelContact {
        width: 100%;
    }
    #menuNavBox .panelTel > .panelContact a {
        display: block;
        font-weight: 700;
        color: #fff;
        font-size: 15px;
        line-height: 1;
        padding: 15px 40px 15px 20px;
        margin: 0;
        line-height: 1;
        transition: all 0.5s ease;
        background: linear-gradient(to right, #FB7D00 0, #FCCB47 100%);
        border-radius: 5px;
        text-align: center;
        white-space: nowrap;
        position: relative;
    }
    #menuNavBox .panelTel > .panelContact a::before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        padding: 0;
        margin: 0;
        background: none;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #menuNavBox .panelTel > .panelContact a:hover {
        opacity: 0.8;
        transition: all 0.5s ease;
    }
    #menuNavBox .panelTel > .panelContact a:hover::before {
        transform: translate(2px,-50%) rotate(45deg);
        -webkit-transform: translate(2px,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
}



#header > #headerNav > tel .telNumber {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 0;
    margin: 0 auto 10px;
    position: relative;
}
#header > #headerNav > tel .telNumber::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0 5px 0 0;
    background: url('https://wj-inter.co.jp/wp-content/themes/wji/img/svg/icon_tel_w.svg') no-repeat;
    background-size: 100%;
    background-position: center center;
}
#all_wrap.main_page #header > #headerNav > tel .telNumber::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0 5px 0 0;
    background: url('https://wj-inter.co.jp/wp-content/themes/wji/img/svg/icon_tel.svg') no-repeat;
    background-size: 100%;
    background-position: center center;
}
#header > #headerNav > tel .telNumber > a {
    font-size: 25px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    transition: 0.5s;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}
#all_wrap.main_page #header > #headerNav > tel .telNumber > a {
    font-size: 25px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    line-height: 1;
    color: #222;
    transition: 0.5s;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}
#header > #headerNav > tel .telNumber > a:hover {
    opacity: 0.8;
    transition: 0.5s;
    text-decoration: none;
}

/************************************************************/
/*　メインビジュアル
/************************************************************/
#mainVisual {
    padding: 0;
    margin: 0;
    position: relative;
}
div.g-inner {
    position: relative;
    width: 90%;
    height: 700px;
    margin: 0 0 0 auto;
}
#view {
    position: absolute;
    width: 100%;
    height: 700px;
    top: 0;
    right: 0;
    overflow: hidden;
    border-radius: 0 0 0 20px;
}
#view p {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    padding: 0;
    margin: 0 auto;
}
#view p img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
#thumbBtn {
    width: calc(100% - 20px);
    position: absolute;
    bottom: 20px;
    right: 0;
    background: none;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1000;
}
#thumbBtn li {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0 0 0 10px;
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 50%;
    border: none;
    transition: 1s;
}
#thumbBtn li.active {
    background: #2BD1EF;
    transition: 1s;
}

/*テキスト*/
#mainVisualTxt {
    width: 80%;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 50px;
    left: 80px;
    z-index: 10;
    opacity: 0;
}
#mainVisualTxt > strong {
    display: block;
    padding: 0;
    margin: 0 auto 20px;
    font-family: 'Urbanist', sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1;
    color: #0476AE;
}
#mainVisualTxt > strong > span {
    display: block;
    padding: 0;
    margin: 0;
    color: #0476AE;
}
#mainVisualTxt > strong > span:last-of-type {
    display: block;
    padding: 0;
    margin: 0;
    color: #2BD1EF;
}
#mainVisualTxt > h1 {
    padding: 0;
    margin: 0;
    font-size: 28px;
    line-height: 1;
    color: #fff;
    font-weight: bold;
}
#mainVisualTxt > h1 > span:first-child {
    display: inline-block;
    padding: 20px 20px 0;
    margin: 0;
    position: relative;
    z-index: 1;
}
#mainVisualTxt > h1 > span:last-child {
    display: inline-block;
    padding: 10px 20px 20px;
    margin: 0;
    position: relative;
    z-index: 0;
}
#mainVisualTxt > h1 > span:first-of-type::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #444;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
#mainVisualTxt > h1 > span:last-of-type::before {
    content: '';
    display: block;
    width: 100%;
    height: calc(100% + 10px);
    background: #444;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1200px){
    #view p {
        position: absolute;
        width: auto;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        padding: 0;
        margin: 0 auto;
    }
    #view p img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
    }
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    div.g-inner {
        position: relative;
        width: 90%;
        height: 400px;
        margin: 0 0 0 10%;
    }
    #view {
        position: absolute;
        width: 100%;
        height: 400px;
        top: 0;
        left: unset;
        right: 0;
        overflow: hidden;
        border-radius: 0 0 0 20px;
    }
    #view p {
        position: absolute;
        width: 100%;
        height: auto;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        padding: 0;
        margin: 0;
    }
    #view p img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
    #thumbBtn {
        width: 100%;
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: none;
        padding: 0;
        margin: 0;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: wrap;
        z-index: 1000;
        display: none;
    }
    #thumbBtn li {
        display: block;
        width: 30px;
        height: 30px;
        padding: 0;
        margin: 0 0 0 10px;
        cursor: pointer;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        background: none;
        border: none;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.3);
        transition: 1s;
    }
    #thumbBtn li::before {
        counter-increment: rank 1;
        content: counter(rank) "";
        color: #fff;
        font-family: 'Urbanist', sans-serif;
    }
    #thumbBtn li.active {
        background: #a89168;
        border: 1px solid rgba(255,255,255,0.3);
        transition: 1s;
    }
    .visual_desc2 {
        width: 90%;
        padding: 10px;
        margin: 0 0 0 auto;
        overflow: hidden;
        background: #323232;
        position: relative;
        color: #fff;
    }
    /*テキスト*/
    #mainVisualTxt {
        width: 100%;
        padding: 20px;
        margin: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 10;
        opacity: 0;
    }
    #mainVisualTxt > strong {
        display: block;
        padding: 0;
        margin: 0 auto 10px;
        font-family: 'Urbanist', sans-serif;
        font-size: 30px;
        font-weight: 700;
        line-height: 1;
        color: #0476AE;
    }
    #mainVisualTxt > strong > span {
        display: block;
        padding: 0;
        margin: 0;
        color: #0476AE;
    }
    #mainVisualTxt > strong > span:last-of-type {
        display: block;
        padding: 0;
        margin: 0;
        color: #2BD1EF;
    }
    #mainVisualTxt > h1 {
        padding: 0;
        margin: 0;
        font-size: 14px;
        line-height: 1;
        color: #fff;
        font-weight: bold;
    }
    #mainVisualTxt > h1 > span:first-child {
        display: inline-block;
        padding: 10px 10px 0;
        margin: 0;
        position: relative;
        z-index: 1;
    }
    #mainVisualTxt > h1 > span:last-child {
        display: inline-block;
        padding: 10px 10px 10px;
        margin: 0;
        position: relative;
        z-index: 0;
    }
    #mainVisualTxt > h1 > span:first-of-type::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #mainVisualTxt > h1 > span:last-of-type::before {
        content: '';
        display: block;
        width: 100%;
        height: calc(100% + 5px);
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -2;
    }
}


#news_ticker {
    width: 90%;
    padding: 0;
    margin: 0 0 0 auto;
    background: #fff;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
#news_ticker > strong {
    width: auto;
    display: -webkit-flex;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #222;
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    position: relative;
    padding: 0 20px 0 0;
    margin: 0;
}
#news_ticker > strong::after {
    content: '';
    display: block;
    width: 1px;
    height: 25px;
    background: #D8D8D8;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%) rotate(20deg);
    -webkit-transform: translate(0,-50%) rotate(20deg);
}
#ticker {
    width: 100%;
    padding: 0;
    margin: 0;
}
#ticker > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#ticker > ul > li {
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#ticker > ul > li > span {
    display: inline-block;
    padding: 0;
    margin: 0 20px 0 0;
    font-size: 14px;
    line-height: 1.4em;
    color: #222;
}
#ticker > ul > li > a {
    font-size: 14px;
    line-height: 1.4em;
    color: #222;
    transition: all 0.3s ease;
}
#ticker > ul > li > a:hover {
    color: #0476AE;
    transition: all 0.3s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #news_ticker {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        background: #fff;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    #news_ticker > strong {
        width: auto;
        display: -webkit-flex;
        display: flex;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        color: #222;
        font-family: 'Urbanist', sans-serif;
        font-size: 18px;
        line-height: 1;
        font-weight: 600;
        position: relative;
        padding: 0 10px 0 20px;
        margin: 0;
    }
    #news_ticker > strong::after {
        content: '';
        display: block;
        width: 1px;
        height: 12px;
        background: #D8D8D8;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0,-50%) rotate(20deg);
        -webkit-transform: translate(0,-50%) rotate(20deg);
    }
    #ticker {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    #ticker > ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    #ticker > ul > li {
        padding: 0;
        margin: 0;
        display: -webkit-flex;
        display: flex;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    #ticker > ul > li > span {
        display: inline-block;
        padding: 0;
        margin: 0 10px 0 0;
        font-size: 12px;
        line-height: 1.4em;
        color: #222;
    }
    #ticker > ul > li > a {
        font-size: 12px;
        line-height: 1.4em;
        color: #222;
        transition: all 0.3s ease;
    }
    #ticker > ul > li > a:hover {
        color: #0476AE;
        transition: all 0.3s ease;
    }
}

/************************************************************/
/*　サイドバー
/************************************************************/
.l-sidebar > aside {
    padding: 30px;
    margin: 0 auto 30px;
    background: #F7F7F7;
    border-radius: 20px 0 20px 0;
    border: 1px solid #fff;
}
.l-sidebar h2.heading.heading-widget {
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    font-size: 12px;
    line-height: 1;
    color: #222;
    font-weight: bold;
    border: none;
    background: none;
}
.l-sidebar h2.heading.heading-widget > strong {
    display: block;
    width: 100%;
    position: relative;
    padding: 10px 0 0;
    margin: 0 auto 5px;
    font-family: 'Urbanist', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    color: #0476AE;
}
.l-sidebar h2.heading.heading-widget > strong::before {
    content: '';
    display: block;
    width: 20px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 0;
}
.l-sidebar h2.heading.heading-widget > strong::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 25px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .l-sidebar h2.heading.heading-widget,
    .topContentSid h2.heading-widget {
        width: 100%;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        font-family: 'Urbanist', sans-serif;
        font-size: 30px;
        line-height: 1;
        font-weight: 700;
        background: none;
        color: #272727;
        text-align: left;
        padding: 0;
        margin: 0 auto 20px;
    }
    h2.heading-widget > span {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        color: #272727;
        padding: 0;
        margin: 5px auto 0;
    }
}

.l-sidebar .widget.widget_nav_menu ul.menu {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    border: none;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li a {
    padding: 12px 10px 12px 25px;
    margin: 0;
    font-size: 14px;
    line-height: 1.2em;
    color: #222;
    font-weight: 400;
    text-decoration: none;
    border: none;
    border-bottom: 1px dotted rgba(0,0,0,0.2);
    background: none;
    transition: all 0.3s ease;
    position: relative;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li a::before,
.l-sidebar .widget.widget_nav_menu ul.menu > li a::after {
    display: none;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li a::before {
    content: '';
    display: block;
    width: 5px;
    height: 2px;
    background: #0476AE;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
.l-sidebar .widget.widget_nav_menu ul.menu > li a:hover {
    color: #0476AE;
    background: none;
    font-weight: 400;
    transition: all 0.3s ease;
}


/*お問い合わせ*/
.l-sidebar tel {
    display: block;
    padding: 0;
    margin: 0 auto 20px;
}
.l-sidebar tel a {
    display: block;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    padding: 14px 20px;
    margin: 0;
    line-height: 1;
    transition: all 0.5s ease;
    background: linear-gradient(to right, #FB7D00 0, #FCCB47 100%);
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
    position: relative;
}
.l-sidebar tel a::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    padding: 0;
    margin: 0;
    background: none;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
.l-sidebar tel a:hover {
    opacity: 0.8;
    transition: all 0.5s ease;
}
.l-sidebar tel a:hover::before {
    transform: translate(2px,-50%) rotate(45deg);
    -webkit-transform: translate(2px,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
.l-sidebar tel .telNumber {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding: 0;
    margin: 0 auto 10px;
    position: relative;
}
.l-sidebar tel .telNumber::before {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 0 5px 0 0;
    background: url('https://wj-inter.co.jp/wp-content/themes/wji/img/svg/icon_tel.svg') no-repeat;
    background-size: 100%;
    background-position: center center;
}
.l-sidebar tel .telNumber > a {
    font-size: 35px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    line-height: 1;
    color: #0476AE;
    transition: 0.5s;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}
.l-sidebar tel .telNumber > a:hover {
    opacity: 0.8;
    transition: 0.5s;
    text-decoration: none;
}

/************************************************************/
/*　フッター
/************************************************************/
#footerArea {
    width: 100%;
    padding: 80px 0;
    margin: 0 auto;
    background: #444;
    color: #fff;
}
#footerArea > .footerBox {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
#footerArea > .footerBox .footerBoxLeft {
    width: 65%;
    padding: 0;
    margin: 0;
}
#footerArea > .footerBox .footerBoxRight {
    width: 30%;
    padding: 0;
    margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #footerArea {
        width: 100%;
        padding: 40px 0 0;
        margin: 0 auto;
        color: #fff;
    }
    #footerArea > .footerBox {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #footerArea > .footerBox .footerBoxLeft {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    #footerArea > .footerBox .footerBoxRight {
        width: 100%;
        padding: 0;
        margin: 0;
    }
}

/*会社概要*/
#footerArea > .footerBox .footerBoxLeft figure {
    width: 100%;
    padding: 0;
    margin: 0 auto 15px;
}
#footerArea > .footerBox .footerBoxLeft figure img {
    width: auto;
    height: 20px;
    padding: 0;
    margin: 0;
}
#footerArea > .footerBox .footerBoxLeft h2 {
    padding: 0;
    margin: 0 auto 10px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2em;
    border: none;
    background: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*会社概要*/
    #footerArea > .footerBox .footerBoxLeft figure {
        width: 100%;
        padding: 0;
        margin: 0 auto 15px;
        text-align: center;
    }
    #footerArea > .footerBox .footerBoxLeft figure img {
        width: auto;
        height: 15px;
        padding: 0;
        margin: 0;
    }
    #footerArea > .footerBox .footerBoxLeft h2 {
        padding: 0;
        margin: 0 auto 10px;
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        line-height: 1.2em;
        border: none;
        background: none;
        text-align: center;
    }
    #footerArea > .footerBox .footerBoxLeft p {
        text-align: center;
    }
}

/*サイトマップ*/
#footerArea .widget_nav_menu ul.menu {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    border: none;
    background: none;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
#footerArea .widget_nav_menu ul.menu > li {
    display: inline-block;
    padding: 0 10px 0 0;
    margin: 0 10px 10px 0;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    position: relative;
    border: none;
    background: none;
}
#footerArea .widget_nav_menu ul.menu > li::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    opacity: 0.5;
}
#footerArea .widget_nav_menu ul.menu > li a {
    font-size: 12px;
    line-height: 1;
    color: #fff;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}
#footerArea .widget_nav_menu ul.menu > li a::before,
#footerArea .widget_nav_menu ul.menu > li a::after {
    display: none;
}
#footerArea .widget_nav_menu ul.menu > li a:hover {
    color: #0476AE;
    transition: all 0.3s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*サイトマップ*/
    #footerArea .widget_nav_menu ul.menu {
        width: 95%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        border: none;
        background: none;
        display: flex;
        display: -webkit-flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    #footerArea .widget_nav_menu ul.menu > li {
        display: inline-block;
        padding: 0 10px 0 0;
        margin: 0 10px 10px 0;
        font-size: 12px;
        line-height: 1;
        color: #fff;
        position: relative;
        border: none;
        background: none;
    }
}

/*コピーライト*/
#footer_btm_area {
    background: #626F77;
}
#footer_btm_area h2 {
    width: 100%;
    text-align: center;
    padding: 50px 0 40px;
    margin: 0 auto;
}
#footer_btm_area h2 img {
    width: 100%;
    max-width: 230px;
    height: auto;
    padding: 0;
    margin: 0;
}

.bottomFooter__copyright {
    display: block;
    font-size: 8px;
    line-height: 1;
    color: #fff;
    padding: 20px 0;
    background: #444;
    position: relative;
}
.bottomFooter__copyright .f_alpha {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){

    /*コピーライト*/
   .bottomFooter__copyright {
        width: 100%;
        padding: 10px 0 10px;
        text-align: center;
        margin: 0 auto;
        color: #fff;
        position: static;
        bottom: unset;
        left: unset;
        transform: none;
        -webkit-transform: none;
    }
    .bottomFooter__copyright,
    .bottomFooter__copyright a.bottomFooter__link {
        font-size: 10px;
        color: #fff;
        opacity: 1;
    }
    .bottomFooter__copyright a.bottomFooter__link:hover {
        text-decoration: none;
        opacity: 1;
        color: #fff;
    }
    .bottomFooter__copyright .f_alpha {
        display: block;
        position: static;
        text-align: center;
        padding: 10px 0 10px;
        margin: 0 auto;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
    }
}



/************************************************************/
/*　アーカイブ　リスト
/************************************************************/

/************************************************************/
/*　リスト
/************************************************************/
#all_wrap .l-wrapper .pageContents .content ul,
#all_wrap .l-wrapper .postContents .content ul {
    list-style: none;
    padding: 0;
    margin: 5px auto 10px;
}
#all_wrap .l-wrapper .pageContents .content ul li,
#all_wrap .l-wrapper .postContents .content ul li {
    padding: 0 0 0 15px;
    margin: 0 0 10px;
    list-style: none;
    border: none;
    background: none;
    position: relative;
    line-height: 1.5em;
}
#all_wrap .l-wrapper .pageContents .content ul li:before,
#all_wrap .l-wrapper .postContents .content ul li:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    padding: 0;
    margin: 0;
    background: #272727;
    position: absolute;
    top: 0.7em;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    border-radius: 50%;
}

#all_wrap .l-wrapper .pageContents .content ol,
#all_wrap .l-wrapper .postContents .content ol {
    list-style: none;
    padding: 0;
    margin: 5px auto 10px;
}
#all_wrap .l-wrapper .pageContents .content ol li,
#all_wrap .l-wrapper .postContents .content ol li {
    padding: 0 0 0 30px;
    margin: 0 0 5px;
    list-style: none;
    border: none;
    background: none;
    position: relative;
}
#all_wrap .l-wrapper .pageContents .content ol li:before,
#all_wrap .l-wrapper .postContents .content ol li:before {
    counter-increment: number;
    content: counter(number);
    background: #fff;
    border: 1px solid #272727;
    color: #272727;
    width: 2.2rem;
    height: 2.2rem;
    line-height: 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: 1.4em;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    border-radius: 50%;
}


/************************************************************/
/*　お問い合わせ&テーブル
/************************************************************/

/*表*/
#all_wrap .l-wrapper .pageContents table,
#all_wrap .l-wrapper .postContents table,
#all_wrap .l-wrapper-full .pageContents table {
    overflow: hidden;
    table-layout: fixed;
    border: none;
    color: #222;
    width: 100%;
    max-width: 100%;
    margin: 30px auto 50px;
    padding: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}
#all_wrap .l-wrapper .pageContents table tbody tr:nth-of-type(odd),
#all_wrap .l-wrapper .pageContents table tbody tr,
#all_wrap .l-wrapper .content table tr:nth-child(odd) td,
#all_wrap .l-wrapper .postContents table tbody tr:nth-of-type(odd),
#all_wrap .l-wrapper .postContents table tbody tr {
    background: none;
}
#all_wrap .l-wrapper .pageContents table th,
#all_wrap .l-wrapper .postContents table th,
#all_wrap .l-wrapper-full .pageContents table th {
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    border: none;
    border-bottom: none;
    vertical-align: inherit;
    background: none;
    color: #272727;
    padding: 20px;
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    width: 20%;
    font-size: 16px;
    line-height: 1.7em;
}
#all_wrap .l-wrapper .pageContents table td,
#all_wrap .l-wrapper .postContents table td,
#all_wrap .l-wrapper-full .pageContents table td {
    border: none;
    background: none;
    vertical-align: inherit;
    border-bottom: none;
    padding: 20px;
    margin: 0;
    background: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 16px;
    line-height: 1.7em;
    color: #222;
}
#all_wrap .l-wrapper .pageContents table td p,
#all_wrap .l-wrapper .postContents table td p,
#all_wrap .l-wrapper-full .pageContents table td p {
    font-size: 16px;
    line-height: 1.7em;
}
#all_wrap .content table th {
    background: none;
}
#all_wrap address {
    font-family: 'Noto Sans Japanese', sans-serif;
    font-style: normal;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .pageContents table tr,
    #all_wrap .l-wrapper .postContents table tr {
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }
    #all_wrap .l-wrapper .pageContents table th,
    #all_wrap .l-wrapper .postContents table th {
        font-size: 14px;
        font-family: 'Noto Sans Japanese', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-feature-settings: "palt";
        border: none;
        border-bottom: none;
        vertical-align: inherit;
        background: #fafafa;
        color: #272727;
        padding: 10px;
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        width: 100%;
        min-width: 100%;
        text-align: left;
    }
    #all_wrap .l-wrapper .pageContents table td,
    #all_wrap .l-wrapper .postContents table td {
        font-size: 14px;
        line-height: 1.7em;
        font-family: 'Noto Sans Japanese', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-feature-settings: "palt";
        border: none;
        background: #fff;
        vertical-align: inherit;
        border-bottom: none;
        padding: 20px 10px;
        margin: 0;
        background: #fff;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        width: 100%;
        min-width: 100%;
        text-align: left;
    }
    #all_wrap .l-wrapper .content table tr:nth-child(odd) td {
        background: #fff;
    }
    #all_wrap .l-wrapper .pageContents table th,
    #all_wrap .l-wrapper .pageContents table td,
    #all_wrap .l-wrapper .pageContents table tr,
    #all_wrap .l-wrapper .pageContents table tbody,
    #all_wrap .l-wrapper .pageContents table {
        display: block;
        width: 100%;
    }
    #all_wrap .l-wrapper .pageContents table td p,
    #all_wrap .l-wrapper .postContents table td p {
        font-size: 14px;
        line-height: 1.7em;
    }
}

/************************************************************/
/*　会社概要テーブル
/************************************************************/

/*表*/
#all_wrap .l-wrapper .pageContents table.l-company-table,
#all_wrap .l-wrapper .postContents table.l-company-table,
#all_wrap .l-wrapper-full .pageContents table.l-company-table {
    overflow: hidden;
    table-layout: fixed;
    border: none;
    color: #222;
    width: 100%;
    max-width: 100%;
    margin: 30px auto 50px;
    padding: 0;
}
#all_wrap .l-wrapper .pageContents table.l-company-table tbody tr:nth-of-type(odd),
#all_wrap .l-wrapper .pageContents table.l-company-table tbody tr,
#all_wrap .l-wrapper .content table.l-company-table tr:nth-child(odd) td,
#all_wrap .l-wrapper .postContents table.l-company-table tbody tr:nth-of-type(odd),
#all_wrap .l-wrapper .postContents table.l-company-table tbody tr {
    background: none;
}
#all_wrap .l-wrapper .pageContents table.l-company-table th,
#all_wrap .l-wrapper .postContents table.l-company-table th,
#all_wrap .l-wrapper-full .pageContents table.l-company-table th {
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    border: none;
    border-bottom: none;
    vertical-align: inherit;
    background: #0476AE;
    color: #fff;
    padding: 20px;
    margin: 0;
    border-bottom: 1px solid #fff;
    width: 25%;
    font-size: 16px;
    line-height: 1.7em;
}
#all_wrap .l-wrapper .pageContents table.l-company-table td,
#all_wrap .l-wrapper .postContents table.l-company-table td,
#all_wrap .l-wrapper-full .pageContents table.l-company-table td {
    border: none;
    background: none;
    vertical-align: inherit;
    border-bottom: none;
    padding: 20px;
    margin: 0;
    background: #fafafa;
    border-bottom: 1px solid #fff;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 16px;
    line-height: 1.7em;
    color: #222;
}
#all_wrap .l-wrapper .pageContents table.l-company-table td p,
#all_wrap .l-wrapper .postContents table.l-company-table td p,
#all_wrap .l-wrapper-full .pageContents table.l-company-table td p {
    font-size: 16px;
    line-height: 1.7em;
}
#all_wrap .content table.l-company-table th {
    background: none;
}
#all_wrap address {
    font-family: 'Noto Sans Japanese', sans-serif;
    font-style: normal;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .pageContents table.l-company-table,
    #all_wrap .l-wrapper .postContents table.l-company-table {
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    #all_wrap .l-wrapper .pageContents table.l-company-table tr,
    #all_wrap .l-wrapper .postContents table.l-company-table tr {
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }
    #all_wrap .l-wrapper .pageContents table.l-company-table th,
    #all_wrap .l-wrapper .postContents table.l-company-table th {
        font-size: 14px;
        font-family: 'Noto Sans Japanese', sans-serif;
        font-weight: 600;
        font-style: normal;
        font-feature-settings: "palt";
        border: none;
        border-bottom: none;
        vertical-align: inherit;
        background: #fafafa;
        color: #272727;
        padding: 10px;
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        width: 100%;
        min-width: 100%;
        text-align: left;
    }
    #all_wrap .l-wrapper .pageContents table.l-company-table td,
    #all_wrap .l-wrapper .postContents table.l-company-table td {
        font-size: 14px;
        line-height: 1.7em;
        font-family: 'Noto Sans Japanese', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-feature-settings: "palt";
        border: none;
        vertical-align: inherit;
        border-bottom: none;
        padding: 20px 10px;
        margin: 0;
        background: #fff;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        width: 100%;
        min-width: 100%;
        text-align: left;
    }
    #all_wrap .l-wrapper .content table.l-company-table tr:nth-child(odd) td {
        background: #fff;
    }
    #all_wrap .l-wrapper .pageContents table.l-company-table th,
    #all_wrap .l-wrapper .pageContents table.l-company-table td,
    #all_wrap .l-wrapper .pageContents table.l-company-table tr,
    #all_wrap .l-wrapper .pageContents table.l-company-table tbody,
    #all_wrap .l-wrapper .pageContents table.l-company-table {
        display: block;
        width: 100%;
    }
    #all_wrap .l-wrapper .pageContents table.l-company-table td p,
    #all_wrap .l-wrapper .postContents table.l-company-table td p {
        font-size: 14px;
        line-height: 1.7em;
    }
}

/************************************************************/
/*　CPテーブル
/************************************************************/

/*表*/
#all_wrap .l-wrapper .pageContents .cp_table table,
#all_wrap .l-wrapper .postContents .cp_table table,
#all_wrap .l-wrapper-full .pageContents .cp_table table {
    overflow: hidden;
    table-layout: fixed;
    border: none;
    color: #222;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 10px;
    padding: 0;
    background: none;
}
#all_wrap .l-wrapper .pageContents .cp_table table tr,
#all_wrap .l-wrapper .postContents .cp_table table tr,
#all_wrap .l-wrapper-full .pageContents .cp_table table tr {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    align-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .l-wrapper .pageContents .cp_table table th,
#all_wrap .l-wrapper .postContents .cp_table table th,
#all_wrap .l-wrapper-full .pageContents .cp_table table th {
    width: 24%;
    border: none;
    background: none;
    display: flex !important;
    display: -webkit-flex !important;
    align-content: center !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap;
    border: none !important;
    border-right: 1px solid #fff !important;
    border-bottom: 1px solid #fff !important;
    padding: 20px;
    margin: 0;
    background: #f0f0f0 !important;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 12px;
    line-height: 1.7em;
    color: #aaa !important;
}
#all_wrap .l-wrapper .pageContents .cp_table table td,
#all_wrap .l-wrapper .postContents .cp_table table td,
#all_wrap .l-wrapper-full .pageContents .cp_table table td {
    width: 24%;
    border: none;
    background: none;
    display: flex !important;
    display: -webkit-flex !important;
    align-content: center !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap;
    border: none !important;
    border-right: 1px solid #fff !important;
    border-bottom: 1px solid #fff !important;
    padding: 20px;
    margin: 0;
    background: #2BD1EF !important;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 12px;
    line-height: 1.7em;
    color: #fff !important;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*表*/
    #all_wrap .l-wrapper .pageContents .cp_table table,
    #all_wrap .l-wrapper .postContents .cp_table table,
    #all_wrap .l-wrapper-full .pageContents .cp_table table {
        overflow: hidden;
        table-layout: fixed;
        border: none;
        color: #222;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 10px;
        padding: 0;
        background: none;
    }
    #all_wrap .l-wrapper .pageContents .cp_table table tr,
    #all_wrap .l-wrapper .postContents .cp_table table tr,
    #all_wrap .l-wrapper-full .pageContents .cp_table table tr {
        width: 100%;
        display: flex;
        display: -webkit-flex;
        align-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .l-wrapper .pageContents .cp_table table th,
    #all_wrap .l-wrapper .postContents .cp_table table th,
    #all_wrap .l-wrapper-full .pageContents .cp_table table th {
        width: calc(50% - 0.5px) !important;
        min-width: calc(50% - 0.5px) !important;
        border: none;
        background: none;
        display: flex !important;
        display: -webkit-flex !important;
        align-content: center !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap;
        border: none !important;
        border-right: 1px solid #fff !important;
        border-bottom: 2px solid #fff !important;
        padding: 20px;
        margin: 0;
        background: #f0f0f0 !important;
        font-family: 'Noto Sans Japanese', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-feature-settings: "palt";
        font-size: 12px;
        line-height: 1.7em;
        color: #aaa !important;
    }
    #all_wrap .l-wrapper .pageContents .cp_table table td,
    #all_wrap .l-wrapper .postContents .cp_table table td,
    #all_wrap .l-wrapper-full .pageContents .cp_table table td {
        width: calc(50% - 0.5px) !important;
        min-width: calc(50% - 0.5px) !important;
        border: none;
        background: none;
        display: flex !important;
        display: -webkit-flex !important;
        align-content: center !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap;
        border: none !important;
        border-right: 1px solid #fff !important;
        border-bottom: 2px solid #fff !important;
        padding: 20px;
        margin: 0;
        background: #2BD1EF !important;
        font-family: 'Noto Sans Japanese', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-feature-settings: "palt";
        font-size: 12px;
        line-height: 1.7em;
        color: #fff !important;
    }
}


/*お問い合わせフォーム*/
#all_wrap .l-wrapper #contactPage p.center {
    text-align: center;
    width: 90%;
    margin: 0 auto;
}
#all_wrap .l-wrapper table.table-contactform7 {
    border: none;
    background: none;
    padding: 0;
    margin: 0 auto 50px;
    width: 100%;
    max-width: 100%;
    border-top: 1px solid rgba(0,0,0,0.1);
}
#all_wrap .l-wrapper table.table-contactform7 tr,
#all_wrap .l-wrapper table.table-contactform7 tr:nth-of-type(odd),
#all_wrap .l-wrapper table.table-contactform7 tr:nth-of-type(even) {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}
#all_wrap .l-wrapper table.table-contactform7 th {
    border: none;
    background: none;
    padding: 20px 20px;
    margin: 0;
    color: #222;
    font-size: 16px;
    line-height: 1;
    font-style: normal;
    font-feature-settings: "palt";
    width: 35%;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-feature-settings: "palt";
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
#all_wrap .l-wrapper table.table-contactform7 td {
    width: 65%;
    border: none;
    background: none;
    padding: 20px 20px;
    margin: 0;
    color: #222;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
#all_wrap .l-wrapper table.table-contactform7 td small {
    display: block;
    width: 100%;
    padding: 0;
    margin: 5px auto 0;
    text-align: left;
    font-size: 0.7em;
    color: #555;
}
#all_wrap .l-wrapper table.table-contactform7 th .att,
#all_wrap .l-wrapper .att {
    display: inline-block;
    padding: 5px 10px;
    margin: 0;
    background: #DE5D50;
    font-size: 12px;
    line-height: 1;
    color: #fff;
}
#all_wrap .l-wrapper table.table-contactform7 .cf7-harf {
    border-right: 1px solid #fff;
}
#all_wrap .l-wrapper table.table-contactform7 input {
    border-radius: 5px;
    border: 1px solid #c8c8c8;
    box-shadow: none;
    font-size: 1em;
    padding: 15px;
}
#all_wrap .l-wrapper table.table-contactform7 td.add span:first-of-type input {
    margin: 0 0 10px;
}
#all_wrap .l-wrapper table.table-contactform7 input.wpcf7-text {
    width: 70%;
    padding: 15px;
    margin: 0;
    border-radius: 5px;
    border: 1px solid #c8c8c8;
    box-shadow: none;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 0.8em;
    line-height: 1;
    background: #fff;
}
#all_wrap .l-wrapper table.table-contactform7 input.wpcf7-date {
    padding: 9px;
    margin: 0;
    margin-right: 10px;
    font-size: 0.8em;
    background: #fafafa;
}
#all_wrap .l-wrapper table.table-contactform7 select.wpcf7-form-control.wpcf7-select {
    width: 150px;
    height: 40px;
    line-height: 40px;
    padding: 10px;
    margin: 0;
    border-radius: 5px;
    border: 1px solid #c8c8c8;
    box-shadow: none;
    font-size: 0.8em;
    background: #fafafa;
}
#all_wrap .l-wrapper table.table-contactform7 input.your-naiyou {
    display: inline;
    width: auto;
}
#all_wrap .l-wrapper table.table-contactform7 label {
    font-size: 0.8em;
    line-height: 1.2em;
}
#all_wrap .l-wrapper table.table-contactform7 .required-contactform7 {
    background: #f44336;
    padding: 5px 10px;
    margin: 0 0 0 10px;
    border-radius: 3px;
    display: inline-block;
    color: #fff;
    font-size: 10px;
    line-height: 1;
}
#all_wrap .l-wrapper table.table-contactform7 .wpcf7-list-item {
    padding: 15px;
    margin: 0 10px 10px 0;
    border: dashed 1px #CCCCCC;
    vertical-align: middle;
    line-height: 1;
    font-weight: 500;
    background: #fff;
}
#all_wrap .l-wrapper table.table-contactform7 .wpcf7-list-item input[type='radio'] {
    top: 2px;
    position: relative;
}
#all_wrap .l-wrapper table.table-contactform7 .wpcf7-list-item input[type='checkbox'] {
    top: 2px;
    position: relative;
    width: 14px;
    height: 14px;
    padding: 0;
}
#all_wrap .l-wrapper table.table-contactform7 textarea {
    width: 100%;
    padding: 15px;
    margin: 0;
    border-radius: 5px;
    border: 1px solid #c8c8c8;
    box-shadow: none;
    font-size: 0.8em;
    line-height: 1;
    background: #fff;
}
#all_wrap .l-wrapper .txt_cent {
    text-align: center;
}
#all_wrap .l-wrapper .txt_cent input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 5px;
}
#all_wrap .l-wrapper .txt_cent input {
    padding: 20px 100px;
    margin: 0 auto;
    display: inline-block;
    border-radius: 5px;
    background: linear-gradient(to right, #FB7D00 0, #FCCB47 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
#all_wrap .l-wrapper .txt_cent input:hover {
    transition: 0.5s;
    opacity: 0.8;
}

#all_wrap .wpcf7 .ajax-loader {
    display: none;
}

.privacy_txt {
    text-align: center;
    padding: 0;
    margin: 0 auto 40px;
}

#all_wrap #confirm {
    width: 100%;
    max-width: 1000px;
    padding: 50px 0;
    margin: 0 auto;
}
#all_wrap #confirm h3 {
    text-align: center;
    width: 100%;
    margin: 0 auto 10px;
}
#all_wrap #confirm .confirm_box {
    padding: 20px 30px;
    margin: 0;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #f5f5f5;
}
#all_wrap #confirm input[type=checkbox] {
    transform: scale(1.5);
    margin-right: 10px;
}
#all_wrap .l-wrapper .txt_cent input[type="submit"]:disabled {
    background: #c8c8c8;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*お問い合わせフォーム*/
    #all_wrap .l-wrapper table.table-contactform7 {
        border: none;
        background: none;
        padding: 0;
        margin: 0 auto 20px;
        width: 100%;
        max-width: 100%;
    }
    #all_wrap .l-wrapper table.table-contactform7 tr,
    #all_wrap .l-wrapper table.table-contactform7 tr:nth-of-type(odd),
    #all_wrap .l-wrapper table.table-contactform7 tr:nth-of-type(even) {
        border: none;
        background: none;
        padding: 0;
        margin: 0;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .l-wrapper table.table-contactform7 th {
        border-bottom: 1px solid rgba(0,0,0,0.05);
        box-shadow: none;
        background: #fafafa;
        padding: 15px 10px;
        margin: 0;
        color: #222;
        font-size: 14px;
        font-style: normal;
        font-feature-settings: "palt";
        width: 100%;
        min-width: 100%;
    }
    #all_wrap .l-wrapper table.table-contactform7 td {
        border-bottom: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 1px 0 rgba(255,255,255,1);
        background: #fff;
        padding: 15px 10px 30px;
        margin: 0;
        color: #222;
        font-size: 14px;
        width: 100%;
        min-width: 100%;
    }
    #all_wrap .l-wrapper table.table-contactform7 td.att {
        border-bottom: 1px dashed rgba(0,0,0,0.05);
        box-shadow: none;
        background: #fafafa;
        padding: 15px 10px;
        margin: 0;
        color: #222;
        font-size: 14px;
        font-style: normal;
        font-feature-settings: "palt";
        width: 30%;
        min-width: 30%;
        text-align: right;
    }
    #all_wrap .l-wrapper table.table-contactform7 input {
        border-radius: 3px;
        border: 1px solid #c8c8c8;
        box-shadow: none;
        font-size: 1em;
    }
    #all_wrap .l-wrapper table.table-contactform7 input.wpcf7-text {
        width: 100%;
        padding: 10px;
        margin: 0;
        border-radius: 3px;
        border: 1px solid #c8c8c8;
        box-shadow: none;
        font-size: 0.8em;
        line-height: 1;
        background: #fff;
        font-family: 'Noto Sans Japanese', sans-serif;
    }
    #all_wrap .l-wrapper table.table-contactform7 input.wpcf7-date {
        padding: 5px;
        margin: 0;
        margin-right: 10px;
        font-size: 0.8em;
        background: #fafafa;
        height: 38px;
        border-radius: 3px;
        border: 1px solid #c8c8c8;
        box-shadow: none;
        transform: translateY(-3px);
        -webkit-transform: translateY(-3px);
    }
    #all_wrap .l-wrapper table.table-contactform7 select.wpcf7-form-control.wpcf7-select {
        width: 150px;
        height: 40px;
        line-height: 40px;
        padding: 5px;
        margin: 0;
        border-radius: 3px;
        border: 1px solid #c8c8c8;
        box-shadow: none;
        font-size: 0.8em;
        background: #fff;
    }
    #all_wrap .l-wrapper table.table-contactform7 input.your-naiyou {
        display: inline;
        width: auto;
    }
    #all_wrap .l-wrapper table.table-contactform7 label {
        font-size: 0.8em;
        line-height: 1.2em;
    }
    #all_wrap .l-wrapper table.table-contactform7 .required-contactform7 {
        border-radius: 0;
        background: #f44336;
        padding: 5px 5px;
        margin: 0 5px 0 0;
        display: inline-block;
        color: #fff;
        font-size: 0.7em;
        line-height: 1;
    }
    #all_wrap .l-wrapper table.table-contactform7 .wpcf7-list-item {
        padding: 10px;
        margin: 0 10px 10px 0;
        border: dashed 1px #CCCCCC;
        vertical-align: middle;
        line-height: 1;
        background: #fff;
    }
    #all_wrap .l-wrapper table.table-contactform7 .wpcf7-list-item input[type='radio'] {
        top: 2px;
        position: relative;
    }
    #all_wrap .l-wrapper table.table-contactform7 textarea {
        width: 100%;
        padding: 10px;
        margin: 0;
        border-radius: 3px;
        border: 1px solid #c8c8c8;
        box-shadow: none;
        font-size: 0.8em;
        line-height: 1;
        background: #fff;
    }
    #all_wrap .l-wrapper-full .txt_cent {
        text-align: center;
    }
    #all_wrap .l-wrapper-full .txt_cent input[type="submit"] {
        -webkit-appearance: none;
        border-radius: 5px;
    }
    #all_wrap .l-wrapper-full .txt_cent input {
        padding: 20px 100px;
        margin: 0 auto;
        display: inline-block;
        border-radius: 5px;
        background: #0476AE;
        border: none;
        color: #fff;
        cursor: pointer;
        transition: 0.5s;
    }
    #all_wrap .l-wrapper-full .txt_cent input:hover {
        transition: 0.5s;
        opacity: 0.8;
    }
    #all_wrap #confirm {
        width: 100%;
        max-width: 100%;
        padding: 20px 0;
        margin: 0 auto;
    }
    #all_wrap .wpcf7 .ajax-loader {
        display: none;
    }
}

/*表削除*/
#all_wrap .pageContents .content .tablenone,
#all_wrap .postContents .content .tablenone {
    padding: 0;
    margin: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: none;
    background: none;
    color: #222;
}
#all_wrap .pageContents .content .tablenone tbody,
#all_wrap .pageContents .content .tablenone th,
#all_wrap .pageContents .content .tablenone td,
#all_wrap .pageContents .content .tablenone tr,
#all_wrap .pageContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .pageContents .content .tablenone tr:nth-child(even) td {
    padding: 0;
    margin: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: none;
    background: none;
    color: #222;
}
#all_wrap .postContents .content .tablenone tbody,
#all_wrap .postContents .content .tablenone th,
#all_wrap .postContents .content .tablenone td,
#all_wrap .postContents .content .tablenone tr,
#all_wrap .postContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .postContents .content .tablenone tr:nth-child(even) td {
    padding: 0;
    margin: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: none;
    background: none;
    color: #222;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    
}



/************************************************************/
/*　お問い合わせ&テーブル
/************************************************************/

/*表*/
#all_wrap .l-wrapper-single .pageContents table,
#all_wrap .l-wrapper-single .postContents table{
    overflow: hidden;
    table-layout: fixed;
    border: none;
    background: #fff;
    padding: 50px;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
}
#all_wrap .l-wrapper-single .pageContents table tbody tr:nth-of-type(odd),
#all_wrap .l-wrapper-single .pageContents table tbody tr,
#all_wrap .l-wrapper-single .content table tr:nth-child(odd) td,
#all_wrap .l-wrapper-single .postContents table tbody tr:nth-of-type(odd),
#all_wrap .l-wrapper-single .postContents table tbody tr {
    background: #ffffff;
}
#all_wrap .l-wrapper-single .pageContents table th,
#all_wrap .l-wrapper-single .postContents table th {
    font-style: normal;
    font-feature-settings: "palt";
    border: none;
    border-bottom: none;
    vertical-align: inherit;
    background: #fff;
    color: #222;
    padding: 20px;
    margin: 0;
    border-bottom: 1px dashed rgba(0,0,0,0.2);
    box-shadow: 0 1px 0 rgba(255,255,255,1);
    width: 20%;
    font-size: 16px;
}
#all_wrap .l-wrapper-single .pageContents table td,
#all_wrap .l-wrapper-single .postContents table td {
    border: none;
    background: #fff;
    vertical-align: inherit;
    border-bottom: none;
    padding: 20px;
    margin: 0;
    border-bottom: 1px dashed rgba(0,0,0,0.2);
    box-shadow: 0 1px 0 rgba(255,255,255,1);
    font-size: 16px;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*表*/
    #all_wrap .l-wrapper-single .pageContents table,
    #all_wrap .l-wrapper-single .postContents table{
        overflow: hidden;
        table-layout: fixed;
        border: none;
        background: #fff;
        padding: 0;
        width: 90%;
        max-width: 90%;
        margin: 0 auto;
    }
    #all_wrap .l-wrapper-single .pageContents table tbody tr:nth-of-type(odd),
    #all_wrap .l-wrapper-single .pageContents table tbody tr,
    #all_wrap .l-wrapper-single .content table tr:nth-child(odd) td,
    #all_wrap .l-wrapper-single .postContents table tbody tr:nth-of-type(odd),
    #all_wrap .l-wrapper-single .postContents table tbody tr {
        background: #ffffff;
    }
    #all_wrap .l-wrapper-single .pageContents table th,
    #all_wrap .l-wrapper-single .postContents table th {
        font-style: normal;
        font-feature-settings: "palt";
        border: none;
        border-bottom: none;
        vertical-align: inherit;
        background: #fafafa;
        color: #222;
        padding: 10px;
        margin: 0;
        border-bottom: 1px dashed rgba(0,0,0,0.2);
        box-shadow: 0 1px 0 rgba(255,255,255,1);
        width: 100%;
        min-width: 100%;
        font-size: 14px;
        display: block;
    }
    #all_wrap .l-wrapper-single .pageContents table td,
    #all_wrap .l-wrapper-single .postContents table td {
        border: none;
        background: #fff;
        vertical-align: inherit;
        border-bottom: none;
        padding: 20px 10px;
        margin: 0;
        border-bottom: 1px dashed rgba(0,0,0,0.2);
        box-shadow: 0 1px 0 rgba(255,255,255,1);
        font-size: 14px;
        width: 100%;
        min-width: 100%;
        display: block;
    }
}


/************************************************************/
/*　Google Map
/************************************************************/
.google-maps {
    position: relative;
    padding-bottom: 30%;
    height: 0;
    overflow: hidden;
}
.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
.access_info p {
    font-size: 1.1em;
    line-height: 2em;
    margin-bottom: 20px;
    text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .access_info p {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        font-size: 1.1em;
        line-height: 2em;
        margin-bottom: 20px;
        text-align: center;
    }
    .top_gmap iframe {
        height: 200px;
    }
}



/************************************************************/
/*　全体
/************************************************************/


/************************************************************/
/*　サイトマップ
/************************************************************/
.l-wrapper .sitemap ul {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}
.l-wrapper .sitemap ul li.page_item {
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    list-style: none;
}
.l-wrapper .sitemap ul li.page_item:nth-child(2n){
    background: none;
}
.l-wrapper .sitemap ul li.page_item:hover {
    background: none;
}
.l-wrapper .sitemap ul li.page_item:before,
.l-wrapper .sitemap ul li.page_item:after {
    display: none;
}
.l-wrapper .sitemap ul li.page_item a {
    display: block;
    padding: 20px 20px 20px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    transition: 0.5s;
    color: #272727;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.l-wrapper .sitemap ul li.page_item a:hover {
    transition: 0.5s;
    color: #272727;
}
.l-wrapper .sitemap ul li.page_item a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -3px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #272727;
    border-right: 1px solid #272727;
    transform: rotate(45deg);
    transition: ease 0.2s;
}
.l-wrapper .sitemap ul li.page_item a::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #272727;
    opacity: 0;
    overflow: hidden;
}
.l-wrapper .sitemap ul li.page_item a:hover::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #272727;
    opacity: 1;
    transition: 0.2s cubic-bezier(0.55, 0.05, 0.22, 0.99);
    transform-origin: left;
}
.l-wrapper .sitemap ul li.page_item:hover a::before {
    border-top: 1px solid #272727;
    border-right: 1px solid #272727;
    right: 15px;
}
.l-wrapper .sitemap ul li ul.children {
    width: 100%;
    padding: 5px 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}
.l-wrapper .sitemap ul li.page_item ul.children li {
    width: 100%;
    padding: 0 0 0 20px;
    margin: 0;
    margin-bottom: 0;
    background: none;
    border-bottom: none;
    list-style: none;
}
.l-wrapper .sitemap ul li.page_item ul.children li a {
    display: block;
    padding: 10px 0;
    margin: 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    position: relative;
    transition: 0.5s;
}
.l-wrapper .sitemap ul li.page_item ul.children li a:hover {
    background: none;
    transition: 0.5s;
    color: #272727;
}
.l-wrapper .sitemap ul li.page_item ul.children li a::before {
    content: '-';
    display: inline-block;
    position: static;
    padding: 0;
    margin: 0 10px 0 0;
    border: none;
    transform: rotate(0deg);
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .l-wrapper-full .sitemap ul {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto 50px;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        list-style: none;
    }
    .sitemap {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    .sitemap ul {
        width: 90%;
        padding: 0;
        margin: 0 auto;
    }
    .sitemap ul li {
        width:100%;
    }
    .l-wrapper-full .sitemap ul li.page_item a {
        font-size: 14px;
    }
}

/*スマホ改行
------------------------------------------------------------*/
	
.pc { display:block; }
.sp { display:none; }
@media screen and (max-width: 768px){   
  .pc { display:none; }
  .sp { display:block; }
}


/************************************************************/
/*　本文ギャラリー
/************************************************************/
#all_wrap .content .gallery {
    width: 80%;
    padding: 0;
    margin: 0 auto 100px;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .content .gallery dl {
    width: 31%;
    padding: 0;
    margin: 0 0 30px;
}
#all_wrap .content .gallery dt {
    padding: 5px 0;
    margin: 0;
    text-align: center;
}
#all_wrap .content .gallery dd {
    padding: 0;
    margin: 0;
    text-align: center;
}
#all_wrap .content .gallery dl img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .content .gallery {
        width: 100%;
        padding: 0;
        margin: 0 auto 50px;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .content .gallery dl {
        width: 48%;
        padding: 0;
        margin: 0 0 20px;
    }
    #all_wrap .content .gallery dt {
        padding: 5px 0;
        margin: 0;
        text-align: center;
    }
    #all_wrap .content .gallery dd {
        padding: 0;
        margin: 0;
        text-align: center;
    }
    #all_wrap .content .gallery dl img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
}

/************************************************************/
/*　Youtube
/************************************************************/
#all_wrap .l-wrapper .youtubeBox {
    width:860px;              /*横幅いっぱいにwidthを指定*/
    padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
    height:0px;              /*高さはpaddingで指定するためheightは0に*/
    position: relative;
    margin: 0 auto;
}
#all_wrap .l-wrapper .youtubeBox > iframe {
    position: static;
    top: auto;
    left: auto;
    width: 860px;
    height: 500px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .youtubeBox {
        width:100%;              /*横幅いっぱいにwidthを指定*/
        padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
        height:0px;              /*高さはpaddingで指定するためheightは0に*/
        position: relative;
    }
    #all_wrap .l-wrapper .youtubeBox > iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/************************************************************/
/*　記事詳細
/************************************************************/

/*タグ*/
#all_wrap .singleTags {
    width: 100%;
    padding: 0 0 20px;
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
#all_wrap .singleTags > span {
    display: inline-block;
    padding: 0;
    margin: 0 5px 5px 0;
}
#all_wrap .singleTags > span a {
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 11px !important;
    line-height: 1em !important;
    color: #272727;
    padding: 5px 10px;
    margin: 0;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
    transition: all 0.5s ease;
}
#all_wrap .singleTags > span a::before {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    padding: 0;
    margin: 0 5px 0 0 ;
    background: url('https://homepage.simple-alpha.com/wp-content/themes/homepage/img/svg/tag.svg') no-repeat;
    background-size: 11px;
    background-position: top;
}
#all_wrap .singleTags > span a:hover {
    color: #0476AE;
    background: #FFE2C6;
    border: 1px solid #0476AE;
    transition: all 0.5s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .singleTags {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/*日付*/
#all_wrap span.singleDate {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    background: none;
    color: #626F77;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 1;
}

/*目次*/
#all_wrap .l-wrapper .pageContents .content .toc p,
#all_wrap .l-wrapper .postContents .content .toc p {
    padding: 0;
    margin: 0;
}
.toc {
    position: relative;
    background: #f7f7f7;
    padding: 20px 30px 20px;
    word-break: break-all;
    word-wrap: break-word;
    border: 1px solid #ececec;
    border-radius: 10px;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper .pageContents .content .toc-title,
#all_wrap .l-wrapper .postContents .content .toc-title {
    text-align: center;
    font-size: 18px;
    margin: 0 auto;
    font-weight: bold;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
#all_wrap .l-wrapper .content .toc-title span.dot {
    position: relative;
    width: 9px;
    height: 3px;
    padding: 0;
    margin: 0 10px;
}
#all_wrap .l-wrapper .content .toc-title span.dot::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #FBCB00;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}
#all_wrap .l-wrapper .content .toc-title span.dot::after {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #0476AE;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
}
#all_wrap .l-wrapper .pageContents .content .toc-toggle,
#all_wrap .l-wrapper .postContents .content .toc-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0 auto;
}
#all_wrap .l-wrapper .pageContents .content .toc-toggle a,
#all_wrap .l-wrapper .postContents .content .toc-toggle a {
    padding: 5px 10px;
    border: 1px solid #ececec;
    background: #fff;
    border-radius: 20px;
    font-size: 11px;
    line-height: 1;
    font-weight: 400;
    color: #272727;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list,
#all_wrap .l-wrapper .postContents .content ul.toc-list {
    margin-top: 20px;
    padding: 0;
    list-style: none;
    line-height: 1.7;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li,
#all_wrap .l-wrapper .postContents .content ul.toc-list li {
    padding: 0;
    margin: 0 auto 30px;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li::before,
#all_wrap .l-wrapper .postContents .content ul.toc-list li::before {
    display: none;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li:last-child,
#all_wrap .l-wrapper .postContents .content ul.toc-list li:last-child {
    padding: 0;
    margin: 0 auto;
}
#all_wrap .toc-list li::before {
    display: none;
}
.toc-list ul {
    list-style: none;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li a,
#all_wrap .l-wrapper .postContents .content ul.toc-list li a {
    font-size: 12px;
    line-height: 1.2em;
    font-weight: 400;
    font-style: normal;
    color: #272727;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list > li > a,
#all_wrap .l-wrapper .postContents .content ul.toc-list > li > a {
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 600;
    font-style: normal;
    color: #272727;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li a:hover,
#all_wrap .l-wrapper .postContents .content ul.toc-list li a:hover {
    color: #0476AE;
    transition: all 0.5s ease;
}
.contentstable-number {
    display: inline-block;
    padding: 5px;
    margin: 0;
    margin-right: 5px;
    border: 1px solid #ececec;
    background: #fff;
    color: #272727;
    white-space: nowrap;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li ul,
#all_wrap .l-wrapper .postContents .content ul.toc-list li ul {
    margin: 10px 0 0 10px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .toc {
        position: relative;
        background: #f7f7f7;
        padding: 20px 30px 20px;
        word-break: break-all;
        word-wrap: break-word;
        border: 1px solid #ececec;
        border-radius: 5px;
        transition: all 0.5s ease;
    }
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .social-bottom {
        width: 90%;
        margin: 0 auto;
    }
}

/*関連記事*/
#all_wrap .related__list {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
#all_wrap .related__list li.related__item {
    width: 49%;
    border: 1px solid rgba(0,0,0,.1);
    padding: 20px;
    margin: 0 0 20px;
}
#all_wrap .related__list li.related__item .eyecatch {
    margin: 0;
}
#all_wrap .related__list li.related__item .dateList {
    margin: 0 auto 10px;
}
#all_wrap .related__list li.related__item h3.heading-secondary {
    font-size: 1em;
}
#all_wrap .related__list li.related__item h3.heading-secondary a {
    transition: 0.5s;
}
#all_wrap .related__list li.related__item h3.heading-secondary a:hover {
    transition: 0.5s;
    color: #165e83;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .related > h2 {
        width: 90%;
        margin: 0 auto 10px;
    }
    #all_wrap .related > p.related__contents {
        width: 90%;
        margin: 0 auto;
    }
    #all_wrap .related__list li.related__item {
        width: 100%;
        border: 1px solid rgba(0,0,0,.1);
        padding: 20px;
        margin: 0 0 10px;
    }
}

/************************************************************/
/*　ブログ　詳細＆サイドバー 
/************************************************************/


/*前後の記事*/
#all_wrap .prevNext {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
#all_wrap .prevNext__pop {
    background-color: #0476AE;
}
#all_wrap .eyecatch {
    background: #000;
}
#all_wrap .heading-secondary {
    color: #fff;
}
#all_wrap .prevNext__text {
    padding: 0;
    margin: 0;
    color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*前後の記事*/
    #all_wrap .prevNext {
        width: 90%;
        padding: 0;
        margin: 0 auto;
    }
}

/*プロフィール*/
#all_wrap .profile {
    border: none;
    margin-top: 0;
    padding: 20px;
    background: #000;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
#all_wrap .profile__text {
    background: none;
    font-size: 16px;
    padding: 0 0 0 13px;
    margin-bottom: 15px;
    margin-top: 40px;
    border-left: 2px solid #d3c8a8;
    font-style: italic;
    text-align: left;
    color: #d3c8a8;
}
#all_wrap .profile__contents {
    width: 80%;
    padding: 0;
    margin: 0;
}
#all_wrap .profile__name {
    color: #d3c8a8;
    font-size: 19px;
    line-height: 1.4em;
    font-style: italic;
    padding: 0 0 10px;
    margin: 0 auto 10px;
    border-bottom: 1px solid #d3c8a8;
}
#all_wrap .profile__author {
    width: 15%;
    text-align: left;
    padding: 0;
    margin: 0 20px 0 0;
}
#all_wrap .profile__author img {
    width: 100%;
    height: auto;
    margin: 0;
}
#all_wrap .profile__list {
    display: none;
}
#all_wrap .profile__description {
    padding: 0;
    margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*プロフィール*/
    #all_wrap .profile {
        border: none;
        margin-top: 0;
        padding: 20px;
        background: #000;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    #all_wrap .profile__text {
        background: none;
        font-size: 16px;
        padding: 0 0 0 13px;
        margin-bottom: 15px;
        margin-top: 40px;
        border-left: 2px solid #d3c8a8;
        font-style: italic;
        text-align: left;
        color: #d3c8a8;
    }
    #all_wrap .profile__contents {
        width: 80%;
        padding: 0;
        margin: 0;
    }
    #all_wrap .profile__name {
        color: #d3c8a8;
        font-size: 19px;
        line-height: 1.4em;
        font-style: italic;
        padding: 0 0 10px;
        margin: 0 auto 10px;
        border-bottom: 1px solid #d3c8a8;
    }
    #all_wrap .profile__author {
        width: 15%;
        text-align: left;
        padding: 0;
        margin: 0 0 0 0;
    }
    #all_wrap .profile__author img {
        width: 100%;
        height: auto;
        margin: 0;
    }
    #all_wrap .profile__list {
        display: none;
    }
    #all_wrap .profile__description {
        padding: 0;
        margin: 0;
    }
}


/************************************************************/
/*　ページ形成
/************************************************************/



/************************************************************/
/*　トップページ　メッセージ
/************************************************************/
#topMessage {
    width: 100%;
    padding: 50px 0;
    margin: 0;
    background: #0476AE;
    position: relative;
}
.topMessageBox {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.topMessageBox > .topMessageInfo {
    width: 43%;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.topMessageBox > figure {
    width: 52%;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.topMessageBox > .topMessageInfo > strong {
    display: block;
    width: 100%;
    position: relative;
    padding: 20px 0 0;
    margin: 0 auto 10px;
    font-family: 'Urbanist', sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    opacity: 0;
}
.topMessageBox > .topMessageInfo > strong::before {
    content: '';
    display: block;
    width: 35px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 0;
}
.topMessageBox > .topMessageInfo > strong::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 40px;
}
#all_wrap .topMessageBox > .topMessageInfo > h2 {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    font-weight: bold;
    border: none;
    background: none;
    opacity: 0;
}
#all_wrap .topMessageBox > .topMessageInfo > p {
    padding: 0;
    margin: 0;
    color: #fff;
    opacity: 0;
}
#all_wrap .topMessageBox > figure > .topMessageImg {
    width: 70%;
    padding: 0;
    margin: 0 0 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    opacity: 0;
}
#all_wrap .topMessageBox > figure > .topMessageImg:before {
    content: "";
    display: block;
    padding-top: 75%;
}
#all_wrap .topMessageBox > figure > .topMessageImg > img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    transition: all 0.5s ease;
}
#all_wrap .topMessageBox > figure span {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    bottom: -85px;
    left: 0;
    z-index: 2;
    opacity: 0;
}
#all_wrap .topMessageBox > figure span > img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    border-radius: 20px;
}
#all_wrap .topMessageBox > figure > iframe {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	aspect-ratio: 16 / 9;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #topMessage {
        width: 100%;
        padding: 40px 0;
        margin: 0;
        background: #0476AE;
        position: relative;
    }
    .topMessageBox {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .topMessageBox > .topMessageInfo {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        display: -webkit-flex;
        display: flex;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .topMessageBox > figure {
        width: 100%;
        padding: 0;
        margin: 0;
        display: -webkit-flex;
        display: flex;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }
    .topMessageBox > .topMessageInfo > strong {
        display: block;
        width: 100%;
        position: relative;
        padding: 10px 0 0;
        margin: 0 auto 5px;
        font-family: 'Urbanist', sans-serif;
        font-size: 40px;
        font-weight: 500;
        line-height: 1;
        color: #fff;
        opacity: 0;
    }
    .topMessageBox > .topMessageInfo > strong::before {
        content: '';
        display: block;
        width: 35px;
        height: 4px;
        border-radius: 20px;
        background: #2BD1EF;
        position: absolute;
        top: 0;
        left: 0;
    }
    .topMessageBox > .topMessageInfo > strong::after {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 20px;
        background: #2BD1EF;
        position: absolute;
        top: 0;
        left: 40px;
    }
    #all_wrap .topMessageBox > .topMessageInfo > h2 {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 16px;
        line-height: 1;
        color: #fff;
        font-weight: bold;
        border: none;
        background: none;
        opacity: 0;
    }
    #all_wrap .topMessageBox > .topMessageInfo > p {
        padding: 0;
        margin: 0;
        color: #fff;
        opacity: 0;
        text-align: justify;
    }
    #all_wrap .topMessageBox > figure > .topMessageImg {
        width: 80%;
        padding: 0;
        margin: 0 0 0 auto;
        text-align: center;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        opacity: 0;
    }
    #all_wrap .topMessageBox > figure > .topMessageImg:before {
        content: "";
        display: block;
        padding-top: 75%;
    }
    #all_wrap .topMessageBox > figure > .topMessageImg > img {
        width: 100%;
        height: auto;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        padding: 0;
        margin: 0;
        transition: all 0.5s ease;
    }
    #all_wrap .topMessageBox > figure span {
        width: 50%;
        padding: 0;
        margin: 0;
        text-align: center;
        position: absolute;
        bottom: -60px;
        left: 0;
        z-index: 2;
        opacity: 0;
    }
    #all_wrap .topMessageBox > figure span > img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        border-radius: 20px;
    }
}

/************************************************************/
/*　トップページ　サービス
/************************************************************/
#topService {
    width: 100%;
    padding: 150px 0 100px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
    overflow: visible;
}
#topService::before {
    content: '';
    display: block;
    width: 70%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: #E1EAEF;
    border-radius: 0 0 0 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
}
#topService::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url('https://wj-inter.co.jp/wp-content/uploads/2021/09/topServiceBg.png') no-repeat;
    background-size: 55%;
    background-position: bottom 50px right;
}

#topService ul.topServiceList {
    width: 43%;
    padding: 0;
    margin: 0;
    list-style: none;
    order: 0;
}
#topService ul.topServiceList > li {
    padding: 0;
    margin: 0;
    text-align: right;
    opacity: 0;
}
#topService ul.topServiceList > li figure a {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
}
#topService ul.topServiceList > li figure a::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    transition: all 0.3s ease;
}
#topService ul.topServiceList > li:hover figure a::after {
    opacity: 0;
    transition: all 0.3s ease;
}
#topService ul.topServiceList > li figure a:before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
#topService ul.topServiceList > li figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}
#topService ul.topServiceList > li > h3 {
    display: block;
    width: 85%;
    min-width: 85%;
    padding: 15px 20px 15px 20px;
    margin: 0 0 0 auto;
    background: #339CD0;
    border-radius: 20px 0 20px 0;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    text-align: left;
    position: relative;
    z-index: 5;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    transition: all 0.3s ease;
}
#topService ul.topServiceList > li:hover > h3 {
    background: #2BD1EF;
    transition: all 0.3s ease;
}
#topService ul.topServiceList > li > h3::before {
    content: '';
    display: inline-block;
    padding: 0;
    margin: 0;
    font-family: 'Urbanist', sans-serif;
    color: #fff;
    font-size: 25px;
    line-height: 1;
    font-weight: 500;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
	display: none;
}
#topService ul.topServiceList > li:nth-child(1) > h3::before { content: '01'; }
#topService ul.topServiceList > li:nth-child(2) > h3::before { content: '02'; }
#topService ul.topServiceList > li:nth-child(3) > h3::before { content: '03'; }
#topService ul.topServiceList > li:nth-child(4) > h3::before { content: '04'; }
#topService ul.topServiceList > li:nth-child(5) > h3::before { content: '05'; }
#topService ul.topServiceList > li > h3::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 40%;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    opacity: 0.5;
	display: none;
}
#topService ul.topServiceList > li > h3 a {
    color: #fff;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
}
#topService ul.topServiceList > li > h3 small {
    font-size: 0.6em;
}

#topService > .topServiceInfo {
    width: 52%;
    padding: 0 50px 0 0;
    margin: 0;
    order: 1;
    position: -webkit-sticky; /* Safariに対応する */
    position: sticky; /* 要素を固定/解除する */
    top: 50px; /* 縦方向の閾値 */
    left: 0; /* 横方向の閾値 */
}
#topService > .topServiceInfo > strong {
    display: block;
    width: 100%;
    position: relative;
    padding: 20px 0 0;
    margin: 0 auto 10px;
    font-family: 'Urbanist', sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 1;
    color: #0476AE;
    opacity: 0;
}
#topService > .topServiceInfo > strong::before {
    content: '';
    display: block;
    width: 35px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 0;
}
#topService > .topServiceInfo > strong::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 40px;
}
#all_wrap #topService > .topServiceInfo > h2 {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1;
    color: #222;
    font-weight: bold;
    border: none;
    background: none;
    opacity: 0;
}
#all_wrap #topService > .topServiceInfo > p {
    padding: 0;
    margin: 0 auto 20px;
    opacity: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #topService {
        width: 100%;
        padding: 80px 0 20px;
        margin: 0 auto;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        position: relative;
        z-index: 0;
        overflow: visible;
    }
    #topService::before {
        content: '';
        display: block;
        width: 80%;
        height: 100%;
        padding: 0;
        margin: 0;
        background: #E1EAEF;
        border-radius: 0 0 0 20px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -2;
    }
    #topService::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        background: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        background: url('https://wj-inter.co.jp/wp-content/uploads/2021/09/topServiceBg.png') no-repeat;
        background-size: 55%;
        background-position: bottom 50px right;
    }

    #topService ul.topServiceList {
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        order: 1;
    }
    #topService ul.topServiceList > li {
        padding: 0;
        margin: 0;
        text-align: right;
        opacity: 0;
    }
    #topService ul.topServiceList > li figure a {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
        position: relative;
        overflow: hidden;
        border-radius: 20px 0 20px 0;
    }
    #topService ul.topServiceList > li figure a::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.2;
        transition: all 0.3s ease;
    }
    #topService ul.topServiceList > li:hover figure a::after {
        opacity: 0;
        transition: all 0.3s ease;
    }
    #topService ul.topServiceList > li figure a:before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }
    #topService ul.topServiceList > li figure img {
        width: 100%;
        height: auto;
        object-fit: cover;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        padding: 0;
        margin: 0;
        transition: all 0.3s ease;
    }
    #topService ul.topServiceList > li > h3 {
        display: block;
        width: 100%;
        padding: 15px 20px 15px 20px;
        margin: 0;
        background: #339CD0;
        border-radius: 0 0 20px 0;
        color: #fff;
        font-size: 16px;
        line-height: 1;
        font-weight: bold;
        position: relative;
        z-index: 5;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
        transition: all 0.3s ease;
        text-align: left;
    }
    #topService ul.topServiceList > li:hover > h3 {
        background: #2BD1EF;
        transition: all 0.3s ease;
    }
    #topService ul.topServiceList > li > h3::before {
        content: '';
        display: inline-block;
        padding: 0;
        margin: 0;
        font-family: 'Urbanist', sans-serif;
        color: #fff;
        font-size: 18px;
        line-height: 1;
        font-weight: 500;
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
		display: none;
    }
    #topService ul.topServiceList > li:nth-child(1) > h3::before { content: '01'; }
    #topService ul.topServiceList > li:nth-child(2) > h3::before { content: '02'; }
    #topService ul.topServiceList > li:nth-child(3) > h3::before { content: '03'; }
    #topService ul.topServiceList > li:nth-child(4) > h3::before { content: '04'; }
    #topService ul.topServiceList > li:nth-child(5) > h3::before { content: '05'; }
    #topService ul.topServiceList > li > h3::after {
        content: '';
        display: inline-block;
        width: 1px;
        height: 40%;
        padding: 0;
        margin: 0;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 40px;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
        opacity: 0.5;
		display: none;
    }
    #topService ul.topServiceList > li > h3 a {
        color: #fff;
        font-size: 14px;
        line-height: 1;
        font-weight: bold;
    }
    #topService ul.topServiceList > li > h3 small {
        font-size: 0.6em;
    }

    #topService > .topServiceInfo {
        width: 90%;
        padding: 0;
        margin: 0 auto 40px;
        order: 0;
        position: static; /* 要素を固定/解除する */
        top: unset; /* 縦方向の閾値 */
        left: unset; /* 横方向の閾値 */
    }
    #topService > .topServiceInfo > strong {
        display: block;
        width: 100%;
        position: relative;
        padding: 10px 0 0;
        margin: 0 auto 5px;
        font-family: 'Urbanist', sans-serif;
        font-size: 40px;
        font-weight: 500;
        line-height: 1;
        color: #0476AE;
        opacity: 0;
    }
    #topService > .topServiceInfo > strong::before {
        content: '';
        display: block;
        width: 35px;
        height: 4px;
        border-radius: 20px;
        background: #2BD1EF;
        position: absolute;
        top: 0;
        left: 0;
    }
    #topService > .topServiceInfo > strong::after {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 20px;
        background: #2BD1EF;
        position: absolute;
        top: 0;
        left: 40px;
    }
    #all_wrap #topService > .topServiceInfo > h2 {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 16px;
        line-height: 1;
        color: #222;
        font-weight: bold;
        border: none;
        background: none;
        opacity: 0;
    }
    #all_wrap #topService > .topServiceInfo > p {
        padding: 0;
        margin: 0 auto 20px;
        opacity: 0;
    }
}

/************************************************************/
/*　トップページ　数字で見る西日本国際人材センター
/************************************************************/
#topData {
    width: 100%;
    padding: 80px 0 160px;
    margin: 0 auto;
    background-color: #fff;
    background-image: url('https://wj-inter.co.jp/wp-content/uploads/2021/09/topDataBg.png');
    background-size: 95%;
    background-repeat: no-repeat;
    background-position: center center;
}
#topData > strong {
    display: block;
    width: 100%;
    max-width: 1100px;
    position: relative;
    padding: 20px 0 0;
    margin: 0 auto 10px;
    font-family: 'Urbanist', sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 1;
    color: #0476AE;
    opacity: 0;
}
#topData > strong::before {
    content: '';
    display: block;
    width: 35px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 0;
}
#topData > strong::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 40px;
}
#topData > h2 {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1;
    color: #222;
    font-weight: bold;
    border: none;
    background: none;
    opacity: 0;
}

#topData > ul.topDataList {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#topData > ul.topDataList > li {
    width: 32%;
    padding: 30px;
    margin: 0 0 20px;
    display: -webkit-flex;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: #DEEBF5;
    border-radius: 20px 0 20px 0;
    position: relative;
    opacity: 0;
}
#topData > ul.topDataList > li:nth-child(2n) {
    transform: translate(0,30px);
    -wekbkit-transform: translate(0,30px);
    background: #F2F2F0;
}
#topData > ul.topDataList > li:nth-child(3n) {
    transform: translate(0,60px);
    -wekbkit-transform: translate(0,60px);
    background: #DEE1F5;
}
#topData > ul.topDataList > li:nth-child(4n) {
    transform: translate(0,0);
    -wekbkit-transform: translate(0,0);
    background: #D5EAF0;
}
#topData > ul.topDataList > li:nth-child(5n) {
    transform: translate(0,30px);
    -wekbkit-transform: translate(0,30px);
    background: #DEEBF5;
}
#topData > ul.topDataList > li:nth-child(6n) {
    transform: translate(0,60px);
    -wekbkit-transform: translate(0,60px);
    background: #F2F2F0;
}

#topData > ul.topDataList > li figure {
    width: 100%;
    padding: 0;
    margin: 0;
}
#topData > ul.topDataList > li figure img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

#topData > small {
    display: block;
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #topData {
        width: 100%;
        padding: 40px 0 40px;
        margin: 0 auto;
        background-color: #fff;
        background-image: url('https://wj-inter.co.jp/wp-content/uploads/2021/09/topDataBg.png');
        background-size: 95%;
        background-repeat: no-repeat;
        background-position: top 40px center;
    }
    #topData > strong {
        display: block;
        width: 90%;
        max-width: 90%;
        position: relative;
        padding: 10px 0 0;
        margin: 0 auto 5px;
        font-family: 'Urbanist', sans-serif;
        font-size: 40px;
        font-weight: 500;
        line-height: 1;
        color: #0476AE;
        opacity: 0;
    }
    #topData > strong::before {
        content: '';
        display: block;
        width: 35px;
        height: 4px;
        border-radius: 20px;
        background: #2BD1EF;
        position: absolute;
        top: 0;
        left: 0;
    }
    #topData > strong::after {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 20px;
        background: #2BD1EF;
        position: absolute;
        top: 0;
        left: 40px;
    }
    #topData > h2 {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 16px;
        line-height: 1;
        color: #222;
        font-weight: bold;
        border: none;
        background: none;
        opacity: 0;
    }

    #topData > ul.topDataList {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    #topData > ul.topDataList > li {
        width: 100%;
        padding: 20px;
        margin: 0 auto 20px;
        display: -webkit-flex;
        display: flex;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        background: #DEEBF5;
        border-radius: 20px 0 20px 0;
        position: relative;
        opacity: 0;
        box-sizing: border-box;
    }
    #topData > ul.topDataList > li:nth-child(2n) {
        transform: translate(0,30px);
        -wekbkit-transform: translate(0,30px);
        background: #F2F2F0;
        margin: 0 auto 20px;
    }
    #topData > ul.topDataList > li:nth-child(3n) {
        transform: translate(0,60px);
        -wekbkit-transform: translate(0,60px);
        background: #DEE1F5;
    }
    #topData > ul.topDataList > li:nth-child(4n) {
        transform: translate(0,0);
        -wekbkit-transform: translate(0,0);
        background: #D5EAF0;
    }
    #topData > ul.topDataList > li:nth-child(5n) {
        transform: translate(0,30px);
        -wekbkit-transform: translate(0,30px);
        background: #DEEBF5;
    }
    #topData > ul.topDataList > li:nth-child(6n) {
        transform: translate(0,60px);
        -wekbkit-transform: translate(0,60px);
        background: #F2F2F0;
    }

    #topData > ul.topDataList > li figure {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    #topData > ul.topDataList > li figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
    #topData > small {
        display: block;
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto;
    }
}

/************************************************************/
/*　トップページ　新着情報
/************************************************************/
#topInformation {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
}
#topInformation::before {
    content: '';
    display: block;
    width: 70%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: #F7F7F7;
    border-radius: 0 20px 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
#topInformation > .topInfo {
    width: 52%;
    padding: 80px 50px 80px 0;
    margin: 0;
}
#topInformation > .topColumn {
    width: 40%;
    padding: 80px;
    margin: 0;
    background: #0476AE;
    border-radius: 0 0 0 20px;
    transform: translate(0,-60px);
    -webkit-transform: translate(0,-60px);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #topInformation {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        position: relative;
        z-index: 0;
    }
    #topInformation::before {
        content: '';
        display: block;
        width: 90%;
        height: calc(100% - 40px);
        padding: 0;
        margin: 0;
        background: #F7F7F7;
        border-radius: 0 20px 20px 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #topInformation > .topInfo {
        width: 90%;
        padding: 30px;
        margin: 0 auto 0 0;
    }
    #topInformation > .topColumn {
        width: 90%;
        padding: 30px;
        margin: 0 0 0 auto;
        background: #0476AE;
        border-radius: 0 0 0 20px;
        transform: translate(0,0);
        -webkit-transform: translate(0,0);
    }
}

#topInformation > .topInfo > strong {
    display: block;
    width: 100%;
    position: relative;
    padding: 20px 0 0;
    margin: 0 auto 10px;
    font-family: 'Urbanist', sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 1;
    color: #0476AE;
    opacity: 0;
}
#topInformation > .topInfo > strong::before {
    content: '';
    display: block;
    width: 35px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 0;
}
#topInformation > .topInfo > strong::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 40px;
}
#topInformation > .topInfo > h2 {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1;
    color: #222;
    font-weight: bold;
    border: none;
    background: none;
    opacity: 0;
}

/*リスト*/
.infoList {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}
.infoList > li {
    width: 100%;
    padding: 0 0 20px;
    margin: 0 auto 20px;
    position: relative;
    opacity: 0;
}
.main_page .infoList > li::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #c8c8c8;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.8;
}
.main_page .infoList > li::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: -1px;
    left: 0;
    opacity: 1;
}
.sub_page .infoList > li::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #c8c8c8;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.5;
}
.tags {
    padding: 0;
    margin: 0 auto 5px;
}
.tags > span {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px 5px 0;
    background: #222;
    border-radius: 10px 0 10px 0;
    font-size: 10px;
    line-height: 1;
    color: #fff;
    font-weight: 400;
}
.infoList > li h3 {
    padding: 0;
    margin: 0 auto 5px;
    border: none;
    background: none;
}
.infoList > li h3 a {
    font-size: 1em;
    line-height: 1.4em;
    color: #222;
    transition: all 0.3s ease;
}
.infoList > li h3 a:hover {
    color: #0476AE;
    transition: all 0.3s ease;
}
.infoListDate {
    display: inline-block;
    font-size: 11px;
    color: #c8c8c8;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .infoList > li {
        width: 100%;
        padding: 0 0 15px;
        margin: 0 auto 15px;
        position: relative;
        opacity: 0;
    }
}

/*コラム*/
#topInformation > .topColumn > strong {
    display: block;
    width: 100%;
    position: relative;
    padding: 20px 0 0;
    margin: 0 auto 10px;
    font-family: 'Urbanist', sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    opacity: 0;
}
#topInformation > .topColumn > strong::before {
    content: '';
    display: block;
    width: 35px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 0;
}
#topInformation > .topColumn > strong::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 40px;
}
#all_wrap #topInformation > .topColumn > h2 {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    font-weight: bold;
    border: none;
    background: none;
    opacity: 0;
}
.topColumnList {
    padding: 0;
    margin: 0 auto 20px;
    list-style: none;
}
.topColumnList > li {
    width: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
}
.topColumnList > li figure {
    padding: 0;
    margin: 0 auto 20px;
}
.topColumnList > li figure a {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px 0 20px 0;
}
.topColumnList > li figure.border a {
    border: 2px solid #fff;
    box-sizing: border-box;
}
.topColumnList > li figure a:before {
    content: "";
    display: block;
    padding-top: 75%;
}
.topColumnList > li figure a img {
    width: auto;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}
.topColumnList > li figure a:hover img {
    transform: translate(-50%, -50%) scale(1.05);
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform-origin: center;
}
.topColumnList > li h3 {
    padding: 0;
    margin: 0 auto 5px;
    border: none;
    background: none;
}
.topColumnList > li h3 a {
    font-size: 1em;
    line-height: 1.4em;
    color: #fff;
    transition: all 0.3s ease;
}
.topColumnList > li h3 a:hover {
    color: #fff;
    text-decoration: underline;
    transition: all 0.3s ease;
}
.topColumnList > li .infoListDate {
    display: inline-block;
    font-size: 11px;
    color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #topInformation > .topInfo > strong {
        display: block;
        width: 100%;
        position: relative;
        padding: 10px 0 0;
        margin: 0 auto 5px;
        font-family: 'Urbanist', sans-serif;
        font-size: 40px;
        font-weight: 500;
        line-height: 1;
        color: #0476AE;
        opacity: 0;
    }
    .infoList > li h3 a {
        font-size: 14px;
        line-height: 1.4em;
        color: #222;
        transition: all 0.3s ease;
    }
    /*コラム*/
    #topInformation > .topColumn > strong {
        display: block;
        width: 100%;
        position: relative;
        padding: 10px 0 0;
        margin: 0 auto 5px;
        font-family: 'Urbanist', sans-serif;
        font-size: 40px;
        font-weight: 500;
        line-height: 1;
        color: #fff;
        opacity: 0;
    }
    .topColumnList > li h3 a {
        font-size: 14px;
        line-height: 1.4em;
        color: #fff;
        transition: all 0.3s ease;
    }
}

/*コラムリスト*/
.columnList {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.columnList > li {
    width: 48%;
    padding: 0;
    margin: 0 0 30px;
    opacity: 0;
}
.columnList > li figure {
    padding: 0;
    margin: 0 auto 20px;
}
.columnList > li figure a {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px 0 20px 0;
}
.columnList > li figure.border a {
    border: none;
    box-sizing: border-box;
}
.columnList > li figure a:before {
    content: "";
    display: block;
    padding-top: 75%;
}
.columnList > li figure a img {
    width: auto;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}
.columnList > li figure a:hover img {
    transform: translate(-50%, -50%) scale(1.05);
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform-origin: center;
}
.columnList > li h3 {
    padding: 0;
    margin: 0 auto 5px;
    border: none;
    background: none;
}
.columnList > li h3 a {
    font-size: 1;
    line-height: 1.4em;
    color: #222;
    transition: all 0.3s ease;
}
.columnList > li h3 a:hover {
    color: #0476AE;
    text-decoration: underline;
    transition: all 0.3s ease;
}
.columnList > li .infoListDate {
    display: inline-block;
    font-size: 11px;
    color: #c8c8c8;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .columnList > li {
        width: 47%;
        padding: 0;
        margin: 0 0 30px;
        opacity: 0;
    }
    .columnList > li figure {
        padding: 0;
        margin: 0 auto 10px;
    }
}

/************************************************************/
/*　トップページ　バナー一覧
/************************************************************/
#topBannerArea {
    width: 100%;
    padding: 80px 0;
    margin: 0 auto;
    background: #fff;
}
#topBannerArea > ul {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    opacity: 0;
}
#topBannerArea > ul > li {
    width: 31%;
    padding: 0;
    margin: 0 0 20px;
}
#topBannerArea > ul > li img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}
#topBannerArea > ul > li img:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #topBannerArea {
        width: 100%;
        padding: 40px 0;
        margin: 0 auto;
        background: #fff;
    }
    #topBannerArea > ul {
        width: 80%;
        max-width: 80%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        opacity: 0;
    }
    #topBannerArea > ul > li {
        width: 100%;
        padding: 0;
        margin: 0 0 10px;
    }
    #topBannerArea > ul > li img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        transition: all 0.3s ease;
    }
    #topBannerArea > ul > li img:hover {
        opacity: 0.8;
        transition: all 0.3s ease;
    }
}

/************************************************************/
/*　サービス内容
/************************************************************/
.vk_flow_frame {
    width: 100%;
    padding: 0;
    margin: 0 auto 30px;
    position: relative;
	border-radius: 10px;
}
.vk_flow_frame::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
	border-top: 15px solid #CFEAF9;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
}
.vk_flow_frame.arrowNone::after {
    display: none;
}
.vk_flow_frame_text {
    width: 100%;
    margin: 0 auto;
    padding: 15px 15px;
	background: #CFEAF9;
	border-radius: 10px;
}
.vk_flow_frame_text > dt {
    padding: 0;
    font-size: 20px;
    font-weight: bold;
	color: #0476AE;
    line-height: 1.2em;
    margin: 0 auto 10px;
    width: 100%;
    text-align: center;
	background: none;
}
.vk_flow_frame_text > dd {
	background: #fff;
    padding: 25px 30px;
    color: #222;
    margin: 0 auto;
    width: 100%;
    text-align: left;
	border-radius: 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.02));
}

/*よくある質問*/
.wp-block-vk-blocks-faq {
    padding: 30px 0;
    margin: 0 auto;
    width: 100%;
    border-bottom: 1px dotted #c8c8c8;
    position: relative;
}
.wp-block-vk-blocks-faq > dt {
    padding: 0 35px 0 35px;
    margin: 0 auto 10px;
    text-align: left;
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 1.2em;
    cursor: pointer;
}
.wp-block-vk-blocks-faq > dt::before {
    content: 'Q';
    display: block;
    padding: 0;
    margin: 0;
    position: absolute;
    top: -0.1em;
    left: 0;
    font-family: 'Urbanist', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: #e50000;
}
.wp-block-vk-blocks-faq::before,
.wp-block-vk-blocks-faq::after {
    content: '';
    display: block;
    width: 12px;
    height: 2px;
    border-radius: 5px;
    background: #0476AE;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.wp-block-vk-blocks-faq::after {
    background: #0476AE;
    transform: translateY(-50%) rotate(90deg);
    transition: 0.5s;
}
.wp-block-vk-blocks-faq.active::after {
    transform: rotate(0);
    transition: 0.5s;
}
.wp-block-vk-blocks-faq > dd {
    padding: 0 35px 0 35px;
    margin: 30px 0 0;
    text-align: left;
    position: relative;
}
.wp-block-vk-blocks-faq > dd::before {
    content: 'A';
    display: block;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Urbanist', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: #0476AE;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.vk_flow_frame {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	.vk_flow_frame::after {
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-top: 10px solid #CFEAF9;
		position: absolute;
		bottom: -10px;
	}
	.vk_flow_frame_text {
		padding: 10px 10px;
	}
	.vk_flow_frame_text > dt {
		padding: 0;
		font-size: 18px;
		margin: 0 auto 10px;
	}
	.vk_flow_frame_text > dd {
		background: #fff;
		padding: 15px 20px;
		color: #222;
		margin: 0 auto;
		width: 100%;
		line-height: 1.7em;
		text-align: left;
		border-radius: 10px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.02));
	}
    /*よくある質問*/
    .wp-block-vk-blocks-faq {
        padding: 20px 0;
        margin: 0 auto;
        width: 100%;
        border-bottom: 1px dotted #c8c8c8;
    }
    .wp-block-vk-blocks-faq > dd {
        padding: 0 35px 0 35px;
        margin: 0;
        text-align: left;
        position: relative;
    }
}


/************************************************************/
/*　お問い合わせ
/************************************************************/
#all_wrap .l-wrapper .content .telNumber {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 0;
    margin: 0 auto 30px;
    position: relative;
}
#all_wrap .l-wrapper .content .telNumber::before {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 0 10px 0 0;
    background: url('https://wj-inter.co.jp/wp-content/themes/wji/img/svg/icon_tel.svg') no-repeat;
    background-size: 100%;
    background-position: center center;
}
#all_wrap .l-wrapper .content .telNumber > a {
    font-size: 35px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    line-height: 1;
    color: #0476AE;
    transition: 0.5s;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
#all_wrap .l-wrapper .content .telNumber > a:hover {
    opacity: 0.8;
    transition: 0.5s;
    text-decoration: none;
}

/************************************************************/
/*　ニュース
/************************************************************/
#topNews {
    width: 100%;
    max-width: 1100px;
    padding: 50px 0;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.topNewsLeft {
    width: 20%;
    padding: 0;
    margin: 0;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
}
.topNewsLeft > .More {
    margin: auto 0 0;
}
.topNewsRight {
    width: 75%;
    padding: 0;
    margin: 0;
}
#topNews .topNewsLeft > strong {
    display: block;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 20px 0 0;
    margin: 0 auto 10px;
    font-family: 'Urbanist', sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 1;
    color: #0476AE;
    opacity: 0;
}
#topNews .topNewsLeft > strong::before {
    content: '';
    display: block;
    width: 35px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 0;
}
#topNews .topNewsLeft > strong::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 20px;
    background: #2BD1EF;
    position: absolute;
    top: 0;
    left: 40px;
}
#topNews .topNewsLeft > h2 {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1;
    color: #222;
    font-weight: bold;
    border: none;
    background: none;
    opacity: 0;
}

/*リスト*/
.newsList {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.newsList::after {
    content: '';
    display: block;
    width: 31%;
}
.newsList > li {
    width: 31%;
    padding: 0;
    margin: 0;
}
.sub_page .newsList::after {
    content: '';
    display: block;
    width: 48%;
}
.sub_page .newsList > li {
    width: 48%;
    padding: 0;
    margin: 0 0 30px;
}
.newsList > li > figure {
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 10px 0 10px 0;
}
.newsList > li > figure::before {
    content: '';
    display: block;
    padding-top: 75%;
}
.newsList > li > figure img {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    object-fit: cover;
    transition: 0.2s;
}
.newsList > li > figure:hover img {
    transform: translate(-50%, -50%) scale(1.05);
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform-origin: center;
    transition: 0.2s;
}
.newsList > li h3 {
    font-size: 15px;
    line-height: 1.4em;
    padding: 0;
    margin: 0 auto 5px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #topNews {
        width: 90%;
        max-width: 90%;
        padding: 40px 0 40px;
        margin: 0 auto;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
        z-index: 0;
    }
    .topNewsLeft {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
    }
    .topNewsLeft > .More {
        margin: auto 0 0;
    }
    .topNewsRight {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    #topNews .topNewsLeft > strong {
        display: block;
        width: 100%;
        max-width: 100%;
        position: relative;
        padding: 10px 0 0;
        margin: 0 auto 5px;
        font-family: 'Urbanist', sans-serif;
        font-size: 40px;
        font-weight: 500;
        line-height: 1;
        color: #0476AE;
        opacity: 0;
    }
    #topNews .topNewsLeft > strong::before {
        content: '';
        display: block;
        width: 35px;
        height: 4px;
        border-radius: 20px;
        background: #2BD1EF;
        position: absolute;
        top: 0;
        left: 0;
    }
    #topNews .topNewsLeft > strong::after {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 20px;
        background: #2BD1EF;
        position: absolute;
        top: 0;
        left: 40px;
    }
    #topNews .topNewsLeft > h2 {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 16px;
        line-height: 1;
        color: #222;
        font-weight: bold;
        border: none;
        background: none;
        opacity: 0;
    }

    /*リスト*/
    .newsList {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .newsList::after {
        content: '';
        display: none;
    }
    .newsList > li {
        width: 48%;
        padding: 0;
        margin: 0 0 30px;
    }
    .sub_page .newsList::after {
        content: '';
        display: none;
    }
    .sub_page .newsList > li {
        width: 100%;
        padding: 0;
        margin: 0 0 30px;
    }
    .newsList > li > figure {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        position: relative;
        text-align: center;
        overflow: hidden;
        border-radius: 10px 0 10px 0;
    }
    .newsList > li > figure::before {
        content: '';
        display: block;
        padding-top: 75%;
    }
    .newsList > li > figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        object-fit: cover;
        transition: 0.2s;
    }
    .newsList > li > figure:hover img {
        transform: translate(-50%, -50%) scale(1.05);
        -webkit-transform: translate(-50%, -50%) scale(1.05);
        -ms-transform: translate(-50%, -50%) scale(1.05);
        transform-origin: center;
        transition: 0.2s;
    }
    .newsList > li h3 {
        font-size: 15px;
        line-height: 1.4em;
        padding: 0;
        margin: 0 auto 5px;
    }
    #topNews .topNewsLeft .More {
        position: absolute;
        bottom: 20px;
        left: 0;
    }
}


.bottomFooter__topBtn {
	bottom: 90px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.bottomFooter__topBtn {
		bottom: 90px;
	}
}


/************************************************************/
/*　採用情報　LP
/************************************************************/
#lp-wrapper {
	padding: 0;
	margin: 0;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAADNJREFUKFNjZMAD/v///58RlzxYEgSwKYBJguQwFCBLYihAl0RRgE0SrgCXJFgBPkmQAgCChiAFMCTgHQAAAABJRU5ErkJggg==');
	background-color: #eae6df;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-wrapper {
		overflow: hidden;
	}
}
/*=====================*/
/*メインビジュアル*/
#rctMvWrap {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#rctMvWrap::before {
	content: '';
	display: block;
	width: 100%;
	height: 100px;
	padding: 0;
	margin: 0;
	background: #24335a;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.rctMv {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0 auto;
	background-image: url('http://wj-inter.co.jp/wp-content/uploads/recruit_mv_bg.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 0;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0% 100%);
}
/*背景画像*/
.rctMv > figure.bgCover {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.5;
}
.rctMv > figure.bgCover img,
.rctMv > figure.bgCover source {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
/*背景画像2*/
.rctMv > figure.bgImg {
	width: 560px;
	height: 580px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: -10px;
	right: -20px;
	z-index: 0;
}
.rctMv > figure.bgImg img,
.rctMv > figure.bgImg source {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
/*情報*/
#all_wrap .rctMvInfo {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 1080px;
	max-width: 1100px;
	height: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
#all_wrap .rctMvInfo.ptb100 {
	padding: 100px 0 130px;
}
#all_wrap .rctMvInfo > strong {
	display: block;
	width: 680px;
	padding: 0;
	margin: 0 0 20px;
}
#all_wrap .rctMvInfo > strong img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.1));
}
#all_wrap .rctMvInfo > h1 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: left;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .rctMvInfo > h1 > .emBox {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
}
#all_wrap .rctMvInfo > h1 > .emBox > em {
	display: inline-block;
	padding: 10px;
	margin: 0 10px 10px 0;
	background: #ffe41a;
	font-size: 36px;
	line-height: 1;
	font-weight: bold;
	font-style: normal;
	color: #044ba1;
}
#all_wrap .rctMvInfo > h1 > span {
	display: block;
	width: 680px;
	padding: 0;
	margin: 0;
}
#all_wrap .rctMvInfo > h1 > span img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.1));
}
#all_wrap .rctMvInfo > h1 > span:nth-of-type(1) {
	margin-bottom: 20px;
}
#all_wrap .rctMvInfo > h1 > span:nth-of-type(2) {
	width: 700px;
	margin-bottom: 20px;
}
#all_wrap .rctMvInfo > h1 > span:nth-of-type(3) {
	width: 540px;
}

/*ボタンバナー*/
#all_wrap .mvBtns {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 50px auto 0;
	position: relative;
	z-index: 0;
	border-radius: 10px;
	-webkit-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
	filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
}
#all_wrap .mvBtns::after {
	content: '';
	display: block;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	padding: 0;
	margin: 0;
	background: none;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	border-radius: 0 0 10px 0;
	position: absolute;
	bottom: -8px;
	right: -8px;
	z-index: -1;
	opacity: 0.5;
}
#all_wrap .mvBtns > dt {
	width: 100%;
	padding: 15px 30px;
	margin: 0;
	background-color: #fff;
	border-radius: 10px 10px 0 0;
}
#all_wrap .mvBtns > dt > h2 {
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	font-size: 25px;
	line-height: 1;
	font-weight: bold;
	color: #4072c3;
	text-align: center;
}
#all_wrap .mvBtns > dd {
	width: 100%;
	padding: 30px 30px 30px;
	margin: 0;
	background: #4072c3;
	border-radius: 0 0 10px 10px;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap .mvBtns > dd .mvBtn {
	width: 48%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .mvBtns > dd .mvBtn > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 8px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	font-size: 15px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	position: relative;
}
#all_wrap .mvBtns > dd .mvBtn > h3::before {
	content: '';
	display: block;
	width: 2px;
	height: 17px;
	border-radius: 3px;
	background: #fff;
	transform: rotate(-10deg);
	-webkit-transform: rotate(-10deg);
	margin-right: 10px;
}
#all_wrap .mvBtns > dd .mvBtn > h3::after {
	content: '';
	display: block;
	width: 2px;
	height: 17px;
	border-radius: 3px;
	background: #fff;
	transform: rotate(10deg);
	-webkit-transform: rotate(10deg);
	margin-left: 10px;
}
#all_wrap .mvBtns > dd .mvBtn > a {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	padding: 15px 30px;
	margin: 0 auto;
	position: relative;
	font-size: 18px;
	line-height: 1;
	font-weight: bold;
	color: #2d3348;
	background: #f7c753;
	box-shadow: 0 5px 0 #ce8a30;
	transition: all 0.3s ease;
	border-radius: 50px;
	white-space: nowrap;
}
#all_wrap .mvBtns > dd .mvBtn > a:hover {
	transform: translateY(5px);
	box-shadow: 0 0 0 #ce8a30;
	filter: brightness(1.1);
}
#all_wrap .mvBtns > dd .mvBtn > a::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	background: none;
	border-top: 2px solid #2d3348;
	border-right: 2px solid #2d3348;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%) rotate(45deg);
	-webkit-transform: translate(0,-50%) rotate(45deg);
}
#all_wrap .mvBtns > dd > p {
	width: 100%;
	padding: 0;
	margin: 0;
	margin-top: 20px;
	text-align: justify;
	text-justify: inter-ideograph;
	font-size: 14px;
	line-height: 1.7em;
	color: #fff;
}

/*実績*/
#all_wrap .rctMvMedal {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: auto;
	padding: 0;
	margin: 0;
	list-style: none;
	position: absolute;
	top: 430px;
	right: 180px;
	z-index: 9;
}
#all_wrap .rctMvMedal > li {
	width: 200px;
	padding: 0;
	margin: 0 5px;
	position: relative;
}
#all_wrap .rctMvMedal > li img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
#all_wrap .rctMvMedal > li > span {
	display: block;
	font-size: 12px;
	line-height: 1;
	color: #fff;
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*メインビジュアル*/
	#rctMvWrap {
		height: auto !important;
	}
	#rctMvWrap::before {
		height: 30px;
	}
	.rctMv {
		padding-bottom: 80px;
		background: #009eff;
		clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0% 100%);
	}
	/*背景画像2*/
	.rctMv > figure.bgImg {
		width: 200px;
		height: 200px;
		padding: 0;
		margin: 0;
		position: absolute;
		top: -15px;
		right: -15px;
		bottom: 0;
		z-index: 0;
		opacity: 0.7;
	}
	/*情報*/
	#all_wrap .rctMvInfo {
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
		width: calc(100% - 60px);
		max-width: 100%;
		height: auto;
		padding: 100px 0 0;
		margin: 0 auto 30px;
		position: relative;
		z-index: 10;
	}
	#all_wrap .rctMvInfo.ptb100 {
		padding: 100px 0 0;
	}
	#all_wrap .rctMvInfo > strong {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0 0 10px;
	}
	#all_wrap .rctMvInfo > h1 {
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 100%;
		padding: 0;
		margin: 0;
		text-align: left;
		border: none;
		background: none;
		position: relative;
	}
	#all_wrap .rctMvInfo > h1 > .emBox {
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .rctMvInfo > h1 > .emBox > em {
		display: inline-block;
		padding: 8px;
		margin: 0;
		background: #ffe41a;
		font-size: 16px;
		line-height: 1;
		font-weight: bold;
		font-style: normal;
		color: #044ba1;
	}
	#all_wrap .rctMvInfo > h1 > span {
		display: block;
		width: 100%;
		padding: 0;
		margin: 0;
	}
	#all_wrap .rctMvInfo > h1 > span img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
		filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.1));
	}
	#all_wrap .rctMvInfo > h1 > span:nth-of-type(1) {
		margin-bottom: 20px;
	}
	#all_wrap .rctMvInfo > h1 > span:nth-of-type(2) {
		width: 100%;
		margin-bottom: 0;
	}
	#all_wrap .rctMvInfo > h1 > span:nth-of-type(3) {
		width: 100%;
	}
	/*実績*/
	#all_wrap .rctMvMedal {
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto;
		list-style: none;
		position: relative;
		top: unset;
		right: unset;
		z-index: 9;
	}
	#all_wrap .rctMvMedal > li {
		width: 48%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .rctMvMedal > li > span {
		white-space: nowrap;
	}
	
	/*ボタンバナー*/
	#all_wrap .mvBtns {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 30px auto 0;
	}
	#all_wrap .mvBtns::after {
		opacity: 1;
	}
	#all_wrap .mvBtns > dt {
		width: 100%;
		padding: 12px 20px;
		margin: 0;
		border-radius: 10px 10px 0 0;
	}
	#all_wrap .mvBtns > dt > h2 {
		font-size: 20px;
	}
	#all_wrap .mvBtns > dd {
		width: 100%;
		padding: 20px;
		border-radius: 0 0 10px 10px;
	}
	#all_wrap .mvBtns > dd .mvBtn {
		width: 100%;
		padding: 0;
		margin: 0 auto 25px;
		position: relative;
	}
	#all_wrap .mvBtns > dd .mvBtn:last-of-type {
		margin-bottom: 0;
	}
	#all_wrap .mvBtns > dd .mvBtn > h3 {
		font-size: 15px;
	}
	#all_wrap .mvBtns > dd > p {
		margin-top: 0;
	}
}

/*=====================*/
/*紹介*/
#rctAbout {
	width: 100%;
	padding: 30px 0 100px;
	margin: 0 auto;
	position: relative;
}
#rctAbout > header {
	width: 1080px;
	max-width: 1080px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
#rctAbout > header > span {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	font-size: 25px;
	line-height: 1;
	color: #24335a;
	font-weight: bold;
}
#rctAbout > header > span > strong {
	display: inline-block;
	display: -webkit-inline-block;
	padding: 10px 15px;
	margin: 0 5px;
	background: #049dd3;
	border-radius: 5px;
	font-size: 30px;
	line-height: 1;
	color: #fff;
	font-weight: bold;
}
#rctAbout > header > h2 {
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	font-size: 45px;
	line-height: 1;
	font-weight: bold;
	color: #24335a;
	text-align: center;
}
#rctAbout > header > h2 > strong {
	display: inline-block;
	font-size: 55px;
	line-height: 1;
	font-weight: bold;
	color: #24335a;
	text-align: center;
	position: relative;
	z-index: 0;
}
#rctAbout > header > h2 > strong::before {
	content: '';
	display: block;
	width: 100%;
	height: 14px;
	padding: 0;
	margin: 0;
	background: #ffe41a;
	border-radius: 5px;
	position: absolute;
	bottom: -5px;
	left: 0;
	z-index: -1;
}
/*問題提起*/
#all_wrap .rctAboutWorry {
	width: 1080px;
	max-width: 1080px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#all_wrap .rctAboutWorry > li {
	width: auto;
	height: 180px;
	padding: 0;
	margin: 0 7px;
	position: relative;
}
#all_wrap .rctAboutWorry > li img {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0;
}
/*ココがスゴイ*/
#all_wrap .rctAboutBox {
	width: 1080px;
	max-width: 1080px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: none;
	border: none;
}
#all_wrap .rctAboutBox > dt {
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	text-align: center;
}
#all_wrap .rctAboutBox > dt > strong {
	display: inline-block;
	display: -webkit-inline-block;
	padding: 22px 20px 15px;
	background: #24335a;
	border-radius: 15px;
	font-size: 25px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	position: relative;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
}
#all_wrap .rctAboutBox > dt > strong::after {
	content: '';
	display: block;
	width: 20px;
	height: 10px;
	padding: 0;
	margin: 0;
	background: #24335a;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	bottom: -9px;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
}
#all_wrap .rctAboutBox > dt > strong > em {
	color: #ffe41a;
	font-style: normal;
	position: relative;
}
#all_wrap .rctAboutBox > dt > strong > em::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	padding: 0;
	margin: 0;
	background: #ffe41a;
	border-radius: 50%;
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
}
#all_wrap .rctAboutBox > dt > h2 {
	width: 780px;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
}
#all_wrap .rctAboutBox > dt > h2 img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
/*人物イラスト*/
#all_wrap .rctAboutBox > dt > figure {
	width: auto;
	height: 200px;
	padding: 0;
	margin: 0;
	z-index: 5;
}
#all_wrap .rctAboutBox > dt > figure:nth-of-type(1) {
	position: absolute;
	bottom: -55px;
	left: 10px;
}
#all_wrap .rctAboutBox > dt > figure:nth-of-type(2) {
	position: absolute;
	bottom: -55px;
	right: -20px;
}
#all_wrap .rctAboutBox > dt > figure img {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0;
}
/*情報*/
#all_wrap .rctAboutBox > dd {
	width: 100%;
	padding: 30px 0;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	border: 5px dotted #24335a;
	position: relative;
}
#all_wrap .rctAboutBox > dd > h2 {
	width: 100%;
	padding: 20px;
	margin: 0 auto 30px;
	background: #049dd3;
	text-align: center;
	font-size: 42px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
}
#all_wrap .rctAboutBox > dd > h2 > strong {
	font-family: 'Noto Sans Japanese',   sans-serif;
	font-size: 1.3em;
	font-weight: bold;
	color: #ffe41a;
	text-shadow: 3px 3px 0 rgba(36,51,90,0.3);
	-webkit-text-stroke: 1px #24335a;
	text-stroke: 1px #24335a;
}

/*比較*/
#all_wrap .compBoxWrap {
	width: calc(100% - 60px);
	padding: 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
#all_wrap .compBox {
	width: 48.5%;
	padding: 0;
	margin: 0;
	position: relative;
	background: none;
	border: none;
}
#all_wrap .compBox:last-of-type {
	margin-bottom: 0;
}
#all_wrap .compBox > dt {
	width: 100%;
	padding: 15px 20px;
	margin: 0 auto;
	background: #24335a;
	border-radius: 10px 10px 0 0;
	position: relative;
	font-size: 25px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	text-align: center;
}
#all_wrap .compBox:last-of-type > dt {
	background: #049dd3;
}
#all_wrap .compBox > dd {
	padding: 30px 0 0;
	margin: 0;
	background: #e9ebee;
	border-radius: 0 0 10px 10px;
	position: relative;
	z-index: 1;
}
#all_wrap .compBox:last-of-type > dd {
	background: #dff8fd;
}
/*リスト*/
#all_wrap .compBox > dd .flowimg {
	display: block;
	padding: 0 30px;
	margin: 0 auto 30px;
}
#all_wrap .compBox > dd .flowimg img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
#all_wrap .compFlow {
	width: 200px;
	padding: 0;
	margin: 0 auto 30px;
	list-style: none;
	position: relative;
}
#all_wrap .compFlow > li {
	width: 100%;
	min-height: 60px;
	padding: 20px;
	margin: 0 auto 55px;
	background: #fff;
	border-radius: 5px;
	position: relative;
}
.compColor01 {
	background: #ff7d1a !important;
	color: #fff;
}
.compColor02 {
	background: #ff9f1a !important;
	color: #fff;
}
.compColor03 {
	background: #ffc21a !important;
	color: #fff;
}
.compColor04 {
	background: #ffe41a !important;
	color: #454545;
}
#all_wrap .compFlow > li:last-child {
	margin-bottom: 0;
}
#all_wrap .compFlow > li > h3 {
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	color: #24335a;
}
#all_wrap .compFlow > li.compColor01 > h3,
#all_wrap .compFlow > li.compColor02 > h3,
#all_wrap .compFlow > li.compColor03 > h3,
#all_wrap .compFlow > li.compColor04 > h3 {
	color: #fff;
}
#all_wrap .compFlow > li.compColor04 > h3 {
	color: #454545;
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
/*ロゴ用*/
#all_wrap .compBox:nth-of-type(2) .compFlow > li:nth-child(2) {
	width: 100%;
	min-height: 77px;
	padding: 10px;
	margin: 0 auto 55px;
	background: #fff;
	border-radius: 5px;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#all_wrap .compFlow > li > h3 img {
	width: auto;
	height: 50px;
	padding: 0;
	margin: 0 auto;
}
/*下矢印*/
#all_wrap .compFlow > li > span.arrow {
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
	color: #049dd3;
	text-align: center;
	width: 50px;
	height: 50px;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
}
#all_wrap .compFlow > li > span.arrow::before {
	content: '';
	display: block;
	width: 40px;
	height: 25px;
	padding: 0;
	margin: 0;
	background-image: linear-gradient(to bottom, rgba(36,51,90,0) 0%, rgba(36,51,90,1) 70%, rgba(36,51,90,1) 100%);
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	z-index: -1;
}
#all_wrap .compFlow > li > span.arrow::after {
	content: '';
	display: block;
	width: 60px;
	height: 25px;
	padding: 0;
	margin: 0;
	background: #24335a;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	bottom: 1px;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	z-index: -1;
}
#all_wrap .compFlow > li > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 5px auto 0;
	font-size: 12px;
	line-height: 1;
	font-weight: bold;
	text-align: center;
	font-style: normal;
}
/*紹介手数料*/
#all_wrap .compFlow > li > .returnRight {
	width: 30%;
	height: 267px;
	padding: 0;
	margin: 0;
	border: 20px solid #24335a;
	border-left: none;
	position: absolute;
	top: calc(50% - 10px);
	right: -60px;
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
	color: #049dd3;
}
#all_wrap .compFlow > li:nth-child(2) > .returnRight {
	top: 70%;
	height: 117px;
}

#all_wrap .compFlow > li > .returnRight::before {
	content: '';
	display: block;
	width: 20px;
	height: 40px;
	padding: 0;
	margin: 0;
	background: #e9ebee;
	position: absolute;
	top: -30px;
	left: 0;
	border-top: 20px solid transparent;
	border-right: 20px solid #24335a;
	border-bottom: 20px solid transparent;
}
#all_wrap .compBox:nth-of-type(2) .compFlow > li > .returnRight::before,
#all_wrap .compBox:nth-of-type(2) .compFlow > li > .returnLeft::before,
#all_wrap .compBox:nth-of-type(2) .compFlow > li > .ex::after,
#all_wrap .compBox:nth-of-type(2) .compFlow > li > .ex .return::after {
	background: #dff8fd;
}
#all_wrap .compFlow > li > .returnRight > b {
	display: inline-block;
	width: 100px;
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: bold;
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
	color: #049dd3;
	position: absolute;
	top: 50%;
	left: 30%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(0,-50%);
	white-space: nowrap;
}
/*None*/
#all_wrap .compFlow > li > .returnRight.none {
	border: 20px solid #e9ebee;
	border-left: none;
}
#all_wrap .compFlow > li > .returnRight.none::before {
	border-right: 20px solid #e9ebee;
}
#all_wrap .compFlow > li > .returnRight.none > b {
	color: #b5b5b5;
}
#all_wrap .compFlow > li > .returnRight.none > i,
#all_wrap .compFlow > li > .ex2 > i,
#all_wrap .compFlow > li > .ex3 > i {
	display: block;
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translate(0,0);
	-webkit-transform: translate(0,0);
	opacity: 0.8;
}
#all_wrap .compFlow > li > .returnRight.none > i::before,
#all_wrap .compFlow > li > .ex2 > i::before,
#all_wrap .compFlow > li > .ex3 > i::before {
	content: '';
	display: block;
	width: 80px;
	height: 5px;
	padding: 0;
	margin: 0;
	background: #AA0033;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
}
#all_wrap .compFlow > li > .returnRight.none > i::after,
#all_wrap .compFlow > li > .ex2 > i::after,
#all_wrap .compFlow > li > .ex3 > i::after {
	content: '';
	display: block;
	width: 80px;
	height: 5px;
	padding: 0;
	margin: 0;
	background: #AA0033;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
}
/*Noneここまで*/
#all_wrap .compFlow > li > .returnLeft {
	width: 30%;
	height: 130px;
	padding: 0;
	margin: 0;
	border: 20px solid #24335a;
	border-right: none;
	position: absolute;
	top: calc(50% - 10px);
	left: -60px;
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
	color: #049dd3;
}
#all_wrap .compFlow > li > .returnLeft::before {
	content: '';
	display: block;
	width: 20px;
	height: 40px;
	padding: 0;
	margin: 0;
	background: #e9ebee;
	position: absolute;
	top: -30px;
	right: 0;
	border-top: 20px solid transparent;
	border-left: 20px solid #24335a;
	border-bottom: 20px solid transparent;
}
#all_wrap .compFlow > li > .returnLeft > b {
	display: inline-block;
	width: 100px;
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: bold;
	text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
	color: #049dd3;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	white-space: nowrap;
	text-align: center;
}
#all_wrap .compFlow > li > .returnLeft > b small {
	font-size: 12px;
	line-height: 1;
}
/*外国人求職者*/
#all_wrap .compFlow > li > .ex {
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100px;
	min-height: 60px;
	padding: 10px;
	margin: 0;
	background: #ffc21a;
	border-radius: 10px;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 0;
	left: -130px;
}
#all_wrap .compFlow > li > .ex h4 {
	color: #fff;
}
#all_wrap .compFlow > li > .ex::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	border: 10px solid #24335a;
	border-bottom: 0;
	position: absolute;
	top: 25px;
	left: unset;
	right: -30px;
}
#all_wrap .compFlow > li > .ex::after {
	content: '';
	display: block;
	width: 10px;
	height: 20px;
	padding: 0;
	margin: 0;
	background: #e9ebee;
	position: absolute;
	top: 20px;
	left: unset;
	right: -10px;
	border-top: 10px solid transparent;
	border-right: 10px solid #24335a;
	border-bottom: 10px solid transparent;
}
#all_wrap .compFlow > li > .ex .return {
	display: block;
	width: 120px;
	height: 30px;
	padding: 0;
	margin: 0;
	border: 10px solid #24335a;
	border-top: 0;
	position: absolute;
	bottom: -30px;
	left: 40px;
}
#all_wrap .compFlow > li > .ex .return::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	background: #e9ebee;
	position: absolute;
	top: 0;
	right: -15px;
	border-bottom: 10px solid #24335a;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
}
#all_wrap .compFlow > li > .ex .return > b {
	position: absolute;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	padding: 18px 5px 18px 0;
	top: 0.5em;
	left: 15%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	font-size: 11px;
	line-height: 1.2em;
	font-weight: bold;
	color: #AA0033;
	white-space: nowrap;
	background-image: url(http://wj-inter.co.jp/wp-content/uploads/fukidashi_thorn.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
/*人物*/
#all_wrap .compBox > dd > figure {
	width: calc(100%);
	height: auto;
	padding: 0 30px 0 0;
	margin: 0 auto;
	text-align: center;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: flex-end;
	align-items: flex-end;
	flex-wrap: wrap;
}
#all_wrap .compBox > dd > figure img {
	width: auto;
	height: 200px;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: 0;
	left: 20px;
}
#all_wrap .compBox:nth-of-type(2) > dd > figure img {
	width: auto;
	height: 200px;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: 0;
	left: 0;
}
#all_wrap .compBox > dd > figure > p {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px;
	margin: 0 0 30px;
	width: calc(100% - 180px);
	min-height: 180px;
	background: #fff;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.4em;
	text-align: justify;
	text-justify: inter-ideograph;
	z-index: 2;
	position: relative;
	filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.05));
}
#all_wrap .compBox > dd > figure > p::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	padding: 0;
	margin: 0s;
	background: #fff;
	position: absolute;
	top: 50%;
	left: -14px;
	clip-path: polygon(0 50%, 100% 100%, 100% 0);
}
#all_wrap .compBox > dd > figure > p small {
	display: block;
}
/*None*/
#all_wrap .compFlow > li > .ex2 {
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100px;
	min-height: 30px;
	padding: 10px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	color: #24335a;
	position: absolute;
	top: -40px;
	left: -120px;
}
#all_wrap .compFlow > li > .ex3 {
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100px;
	min-height: 30px;
	padding: 10px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	color: #24335a;
	position: absolute;
	top: 40px;
	left: -120px;
}
/*Result*/
#all_wrap .compFlow > li > .result {
	display: block;
	width: 200px;
	padding: 40px 0;
	margin: 0;
	background-image: url(http://wj-inter.co.jp/wp-content/uploads/fukidashi_thorn.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: -40px;
	right: -170px;
	z-index: 5;
}
#all_wrap .compFlow > li > .result > p {
	text-align: center;
	padding: 0;
	margin: 0;
	font-size: 18px;
	line-height: 1.7em;
	font-weight: bold;
	color: #24335a;
}
#all_wrap .compFlow > li > .result > small {
	display: block;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#rctAbout {
		width: 100%;
		padding: 30px 0 40px;
		margin: 0 auto;
		position: relative;
	}
	#rctAbout > header {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
	}
	#rctAbout > header > span {
		margin: 0 auto 10px;
		font-size: 18px;
	}
	#rctAbout > header > span > strong {
		padding: 5px 6px;
		margin: 0 2px 5px;
		font-size: 16px;
	}
	#rctAbout > header > h2 {
		font-size: 25px;
		white-space: nowrap;
	}
	#rctAbout > header > h2 > strong {
		font-size: 30px;
	}
	#rctAbout > header > h2 > strong::before {
		height: 10px;
	}
	/*問題提起*/
	#all_wrap .rctAboutWorry {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		list-style: none;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	#all_wrap .rctAboutWorry > li {
		width: auto;
		height: 70px;
		margin: 0 3px;
	}
	/*ココがスゴイ*/
	#all_wrap .rctAboutBox {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		background: none;
		border: none;
	}
	#all_wrap .rctAboutBox > dt {
		padding: 0;
		margin: 0 auto;
		position: relative;
		z-index: 1;
		text-align: center;
	}
	#all_wrap .rctAboutBox > dt > strong {
		display: inline-block;
		display: -webkit-inline-block;
		padding: 20px 20px 15px;
		margin: 0 auto 20px;
		background: #24335a;
		border-radius: 10px;
		font-size: 20px;
		line-height: 1;
		font-weight: bold;
		color: #fff;
		position: relative;
		transform: translateY(0);
		-webkit-transform: translateY(0);
	}
	#all_wrap .rctAboutBox > dt > strong > em::before {
		content: '';
		display: block;
		width: 6px;
		height: 6px;
		padding: 0;
		margin: 0;
		background: #ffe41a;
		border-radius: 50%;
		position: absolute;
		top: -10px;
		left: 50%;
		transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
	}
	#all_wrap .rctAboutBox > dt > h2 {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
	}
	#all_wrap .rctAboutBox > dt > h2 img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
	}
	/*人物イラスト*/
	#all_wrap .rctAboutBox > dt > figure {
		width: auto;
		height: 70px;
		padding: 0;
		margin: 0;
		z-index: 5;
	}
	#all_wrap .rctAboutBox > dt > figure:nth-of-type(1) {
		position: absolute;
		bottom: -43px;
		left: 2px;
	}
	#all_wrap .rctAboutBox > dt > figure:nth-of-type(2) {
		position: absolute;
		bottom: -43px;
		right: unset;
		left: 50px;
	}
	#all_wrap .rctAboutBox > dt > figure img {
		width: auto;
		height: 100%;
		padding: 0;
		margin: 0;
	}
	/*情報*/
	#all_wrap .rctAboutBox > dd {
		width: 100%;
		padding: 20px 0;
		margin: 0 auto;
		background: #fff;
		border-radius: 10px;
		border: 3px dotted #24335a;
		position: relative;
	}
	#all_wrap .rctAboutBox > dd > h2 {
		width: 100%;
		padding: 10px;
		margin: 0 auto 20px;
		background: #049dd3;
		text-align: center;
		font-size: 20px;
		line-height: 1.2em;
		font-weight: bold;
		color: #fff;
	}
	#all_wrap .rctAboutBox > dd > h2 > strong {
		font-size: 1.2em;
		font-weight: bold;
		color: #ffe41a;
		text-shadow: 2px 2px 0 rgba(36,51,90,0.2);
		-webkit-text-stroke: 1px #24335a;
		text-stroke: 1px #24335a;
	}
	/*比較*/
	#all_wrap .compBoxWrap {
		width: calc(100% - 40px);
		padding: 0;
		margin: 0 auto;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		position: relative;
	}
	#all_wrap .compBox {
		width: calc(100%);
		margin: 0 auto 20px;
	}
	#all_wrap .compBox > dt {
		width: 100%;
		padding: 10px 20px;
		font-size: 20px;
	}
	#all_wrap .compBox:last-of-type > dt {
		background: #049dd3;
	}
	#all_wrap .compBox > dd {
		padding: 20px 20px 0;
		margin: 0;
		background: #e9ebee;
		border-radius: 0 0 10px 10px;
		position: relative;
		z-index: 1;
	}
	#all_wrap .compBox:last-of-type > dd {
		background: #dff8fd;
	}
	/*リスト*/
	#all_wrap .compBox > dd .flowimg {
		display: block;
		padding: 0;
		margin: 0 auto 30px;
	}
	#all_wrap .compBox > dd .flowimg img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
	}
	#all_wrap .compFlow {
		width: 150px;
		padding: 0;
		margin: 0 auto 2s0px;
		list-style: none;
		position: relative;
	}
	#all_wrap .compFlow > li {
		width: 100%;
		min-height: auto;
		padding: 12px;
		margin: 0 auto 55px;
		background: #fff;
		border-radius: 5px;
		position: relative;
	}
	#all_wrap .compFlow > li:last-child {
		margin-bottom: 0;
	}
	#all_wrap .compFlow > li > h3 {
		padding: 0;
		margin: 0 auto;
		text-align: center;
		font-size: 15px;
		line-height: 1;
		font-weight: bold;
		color: #24335a;
	}
	/*ロゴ用*/
	#all_wrap .compBox:nth-of-type(2) .compFlow > li:nth-child(2) {
		width: 100%;
		min-height: 77px;
		padding: 10px;
		margin: 0 auto 55px;
		background: #fff;
		border-radius: 5px;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	#all_wrap .compFlow > li > h3 img {
		width: auto;
		height: 50px;
		padding: 0;
		margin: 0 auto;
	}
	/*下矢印*/
	#all_wrap .compFlow > li > span.arrow {
		display: inline-flex;
		display: -webkit-inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		font-size: 20px;
		line-height: 1;
		font-weight: bold;
		text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
		color: #049dd3;
		text-align: center;
		width: 50px;
		height: 50px;
		padding: 0;
		margin: 0;
		position: absolute;
		bottom: -50px;
		left: 50%;
		transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
	}
	#all_wrap .compFlow > li > span.arrow::before {
		content: '';
		display: block;
		width: 40px;
		height: 25px;
		padding: 0;
		margin: 0;
		background-image: linear-gradient(to bottom, rgba(36,51,90,0) 0%, rgba(36,51,90,1) 70%, rgba(36,51,90,1) 100%);
		position: absolute;
		bottom: 50%;
		left: 50%;
		transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
		z-index: -1;
	}
	#all_wrap .compFlow > li > span.arrow::after {
		content: '';
		display: block;
		width: 60px;
		height: 25px;
		padding: 0;
		margin: 0;
		background: #24335a;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		position: absolute;
		bottom: 1px;
		left: 50%;
		transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
		z-index: -1;
	}
	#all_wrap .compFlow > li > em {
		display: block;
		width: 100%;
		padding: 0;
		margin: 5px auto 0;
		font-size: 12px;
		line-height: 1;
		font-weight: bold;
		text-align: center;
		font-style: normal;
	}
	/*紹介手数料*/
	#all_wrap .compFlow > li > .returnRight {
		width: 25%;
		height: 215px;
		padding: 0;
		margin: 0;
		border: 10px solid #24335a;
		border-left: none;
		position: absolute;
		top: calc(50% - 5px);
		right: -38px;
		display: inline-flex;
		display: -webkit-inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		font-size: 12px;
		line-height: 1;
		font-weight: bold;
		text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
		color: #049dd3;
	}
	#all_wrap .compFlow > li:nth-child(2) > .returnRight {
		top: 70%;
		height: 93px;
	}

	#all_wrap .compFlow > li > .returnRight::before {
		content: '';
		display: block;
		width: 10px;
		height: 20px;
		padding: 0;
		margin: 0;
		background: #e9ebee;
		position: absolute;
		top: -15px;
		left: 0;
		border-top: 10px solid transparent;
		border-right: 10px solid #24335a;
		border-bottom: 10px solid transparent;
	}
	#all_wrap .compBox:nth-of-type(2) .compFlow > li > .returnRight::before,
	#all_wrap .compBox:nth-of-type(2) .compFlow > li > .returnLeft::before,
	#all_wrap .compBox:nth-of-type(2) .compFlow > li > .ex::after,
	#all_wrap .compBox:nth-of-type(2) .compFlow > li > .ex .return::after {
		background: #dff8fd;
	}
	#all_wrap .compFlow > li > .returnRight > b {
		display: inline-block;
		width: 100px;
		padding: 0;
		margin: 0;
		font-size: 12px;
		line-height: 1.4em;
		font-weight: bold;
		text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
		color: #049dd3;
		position: absolute;
		top: 50%;
		left: -13px;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(0,-50%);
		white-space: nowrap;
		text-align: center;
	}
	/*None*/
	#all_wrap .compFlow > li > .returnRight.none {
		border: 10px solid #e9ebee;
		border-left: none;
		height: 235px;
	}
	#all_wrap .compFlow > li > .returnRight.none::before {
		border-right: 10px solid #e9ebee;
	}
	#all_wrap .compFlow > li > .returnRight.none > b {
		color: #b5b5b5;
	}
	#all_wrap .compFlow > li > .returnRight.none > i,
	#all_wrap .compFlow > li > .ex2 > i,
	#all_wrap .compFlow > li > .ex3 > i {
		display: block;
		position: absolute;
		top: 50%;
		left: 34px;
		transform: translate(0,0);
		-webkit-transform: translate(0,0);
		opacity: 0.8;
	}
	#all_wrap .compFlow > li > .ex2 > i,
	#all_wrap .compFlow > li > .ex3 > i {
		left: 35px;
	}
	#all_wrap .compFlow > li > .returnRight.none > i::before,
	#all_wrap .compFlow > li > .ex2 > i::before,
	#all_wrap .compFlow > li > .ex3 > i::before {
		content: '';
		display: block;
		width: 40px;
		height: 5px;
		padding: 0;
		margin: 0;
		background: #AA0033;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(45deg);
		-webkit-transform: translate(-50%,-50%) rotate(45deg);
	}
	#all_wrap .compFlow > li > .returnRight.none > i::after,
	#all_wrap .compFlow > li > .ex2 > i::after,
	#all_wrap .compFlow > li > .ex3 > i::after {
		content: '';
		display: block;
		width: 40px;
		height: 5px;
		padding: 0;
		margin: 0;
		background: #AA0033;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(-45deg);
		-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	}
	#all_wrap .compFlow > li > .ex2 > i::before,
	#all_wrap .compFlow > li > .ex3 > i::before,
	#all_wrap .compFlow > li > .ex2 > i::after,
	#all_wrap .compFlow > li > .ex3 > i::after {
		width: 80px;
	}
	#all_wrap .compFlow > li > .ex3::after {
		content: '必要ナシ！';
		display: block;
		width: 80px;
		padding: 0;
		margin: 0 auto;
		text-align: center;
		font-size: 14px;
		font-weight: bold;
		color: #AA0033;
		white-space: nowrap;
		position: absolute;
		bottom: -20px;
		left: 0;
	}
	/*Noneここまで*/
	#all_wrap .compFlow > li > .returnLeft {
		width: 15%;
		height: 100px;
		padding: 0;
		margin: 0;
		border: 10px solid #24335a;
		border-right: none;
		position: absolute;
		top: calc(50% - 5px);
		left: -23px;
		display: inline-flex;
		display: -webkit-inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		font-size: 12px;
		line-height: 1;
		font-weight: bold;
		text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
		color: #049dd3;
	}
	#all_wrap .compFlow > li > .returnLeft::before {
		content: '';
		display: block;
		width: 10px;
		height: 20px;
		padding: 0;
		margin: 0;
		background: #e9ebee;
		position: absolute;
		top: -15px;
		right: 0;
		border-top: 10px solid transparent;
		border-left: 10px solid #24335a;
		border-bottom: 10px solid transparent;
	}
	#all_wrap .compFlow > li > .returnLeft > b {
		display: inline-block;
		width: 100px;
		padding: 0;
		margin: 0;
		font-size: 12px;
		line-height: 1.4em;
		font-weight: bold;
		text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
		color: #049dd3;
		position: absolute;
		top: 50%;
		right: -34px;
		transform: translate(0,-50%);
		-webkit-transform: translate(0,-50%);
		white-space: nowrap;
		text-align: center;
	}
	#all_wrap .compFlow > li > .returnLeft > b small {
		font-size: 12px;
		line-height: 1;
	}
	/*外国人求職者*/
	#all_wrap .compFlow > li > .ex {
		display: inline-flex;
		display: -webkit-inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		width: 50px;
		min-height: 40px;
		padding: 5px;
		margin: 0;
		background: #ffc21a;
		border-radius: 10px;
		font-size: 11px;
		line-height: 1.2em;
		font-weight: bold;
		text-align: center;
		color: #fff;
		position: absolute;
		top: 0;
		left: -70px;
	}
	#all_wrap .compFlow > li > .ex::before {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		padding: 0;
		margin: 0;
		border: none;
		background: #24335a;
		position: absolute;
		top: 15px;
		right: -20px;
		left: unset;
	}
	#all_wrap .compFlow > li > .ex::after {
		content: '';
		display: block;
		width: 10px;
		height: 20px;
		padding: 0;
		margin: 0;
		background: #e9ebee;
		position: absolute;
		top: 10px;
		left: unset;
		right: -11px;
		border-top: 10px solid transparent;
		border-right: 10px solid #24335a;
		border-bottom: 10px solid transparent;
		z-index: -1;
	}
	#all_wrap .compFlow > li > .ex .return {
		display: block;
		width: 60px;
		height: 30px;
		padding: 0;
		margin: 0;
		border: 10px solid #24335a;
		border-top: 0;
		position: absolute;
		bottom: -30px;
		left: 20px;
	}
	#all_wrap .compFlow > li > .ex .return::after {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		padding: 0;
		margin: 0;
		background: #e9ebee;
		position: absolute;
		top: 0;
		right: -15px;
		border-bottom: 10px solid #24335a;
		border-right: 10px solid transparent;
		border-left: 10px solid transparent;
	}
	#all_wrap .compFlow > li > .ex .return > b {
		position: absolute;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		width: 100px;
		padding: 18px 5px 18px 0;
		top: 1em;
		left: 5%;
		transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
		font-size: 11px;
		line-height: 1.2em;
		font-weight: bold;
		color: #AA0033;
		white-space: nowrap;
		background-image: url(http://wj-inter.co.jp/wp-content/uploads/fukidashi_thorn.svg);
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: center;
		z-index: 5;
	}
	/*人物*/
	#all_wrap .compBox > dd > figure {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0 auto;
		text-align: center;
		position: relative;
	}
	#all_wrap .compBox > dd > figure picture {
		order: 1;
	}
	#all_wrap .compBox > dd > figure img {
		width: 50%;
		height: auto;
		padding: 0;
		margin: 0;
		position: relative;
		top: unset;
		left: unset;
	}
	#all_wrap .compBox:nth-of-type(2) > dd > figure img {
		width: 50%;
		height: auto;
		padding: 0;
		margin: 0;
		position: relative;
		top: unset;
		left: unset;
	}
	#all_wrap .compBox > dd > figure > p {
		width: 100%;
		padding: 20px;
		margin: 0;
		background: #fff;
		border-radius: 10px;
		position: relative;
		top: unset;
		right: unset;
		font-size: 14px;
		line-height: 1.4em;
		text-align: justify;
		text-justify: inter-ideograph;
		z-index: 2;
	}
	#all_wrap .compBox:nth-of-type(2) > dd > figure > p {
		width: 100%;
		min-height: auto;
		padding: 20px;
		margin: 0;
		background: #fff;
		border-radius: 10px;
		position: relative;
		top: unset;
		right: unset;
		font-size: 14px;
		line-height: 1.4em;
		text-align: justify;
		text-justify: inter-ideograph;
		z-index: 2;
	}
	#all_wrap .compBox > dd > figure > p small {
		display: block;
	}
	#all_wrap .compBox > dd > figure > p::before {
		content: '';
		display: block;
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		background: #fff;
		position: absolute;
		top: unset;
		bottom: -19px;
		left: 65%;
		clip-path: polygon(0 0, 0% 100%, 100% 0);
	}
	/*None*/
	#all_wrap .compFlow > li > .ex2 {
		display: inline-flex;
		display: -webkit-inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		width: 70px;
		height: 70px;
		min-height: auto;
		padding: 5px;
		margin: 0;
		background: #049dd3;
		border-radius: 50%;
		font-size: 12px;
		line-height: 1.2em;
		font-weight: bold;
		text-align: center;
		color: #fff;
		position: absolute;
		top: -50px;
		left: -75px;
		white-space: nowrap;
	}
	#all_wrap .compFlow > li > .ex3 {
		display: inline-flex;
		display: -webkit-inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		width: 70px;
		height: 70px;
		min-height: auto;
		padding: 5px;
		margin: 0;
		background: #049dd3;
		border-radius: 50%;
		font-size: 12px;
		line-height: 1.2em;
		font-weight: bold;
		text-align: center;
		color: #fff;
		position: absolute;
		top: 25px;
		left: -75px;
	}
	#all_wrap .compFlow > li > .ex2 h4,
	#all_wrap .compFlow > li > .ex3 h4 {
		color: #fff;
		white-space: nowrap;
	}
	/*Result*/
	#all_wrap .compFlow > li > .result {
		display: block;
		width: 150px;
		padding: 30px 0;
		margin: 0;
		background-image: url(http://wj-inter.co.jp/wp-content/uploads/fukidashi_thorn.svg);
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: center;
		position: absolute;
		top: -30px;
		right: -130px;
		z-index: 5;
	}
	#all_wrap .compFlow > li > .result > p {
		text-align: center;
		padding: 0;
		margin: 0;
		font-size: 14px;
		line-height: 1.7em;
		font-weight: bold;
		color: #24335a;
	}
	#all_wrap .compFlow > li > .result > small {
		display: block;
		padding: 0;
		margin: 0 auto;
		text-align: center;
	}
}

/*=====================*/
/*バナー*/
#rctWhats {
	padding: 0;
	margin: 0 auto 100px;
	text-align: center;
}
.linkBtn {
	text-align: center;
}
.linkBtn a {
	width: 600px;
	padding: 25px 20px 20px;
	margin: 0 auto;
	position: relative;
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	font-size: 40px;
	font-weight: bold;
	color: #fff;
	background: #049dd3;
	border-radius: 60px;
	filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.1));
	transition: all 0.3s ease;
	white-space: nowrap;
}
.linkBtn a:hover {
	opacity: 0.8;
	transition: all 0.3s ease;
}
.linkBtn a img {
	display: block;
	width: auto;
	height: 20px;
	padding: 0;
	margin: 0 0 0 30px;
	position: relative;
}
.linkBtn a em {
	display: inline-block;
	padding: 10px 20px;
	margin: 0;
	background: #fff;
	border-radius: 40px;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	font-style: normal;
	color: #24335a;
	position: absolute;
	top: -30px;
	left: 20px;
	z-index: 2;
}
.linkBtn a em::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	margin: 0;
	background: #fff;
	clip-path: polygon(0 0, 75% 100%, 100% 0);
	position: absolute;
	bottom: -7px;
	left: 50%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*バナー*/
	#rctWhats {
		padding: 0;
		margin: 0 auto 40px;
		text-align: center;
	}
	.linkBtn {
		text-align: center;
	}
	.linkBtn a {
		width: calc(100% - 60px);
		padding: 20px 20px 15px;
		margin: 0 auto;
		position: relative;
		display: inline-flex;
		display: -webkit-inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		font-size: 18px;
		font-weight: bold;
		color: #fff;
		background: #049dd3;
		border-radius: 60px;
		filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.1));
		transition: all 0.3s ease;
	}
	.linkBtn a:hover {
		opacity: 0.8;
		transition: all 0.3s ease;
	}
	.linkBtn a img {
		display: block;
		width: auto;
		height: 20px;
		padding: 0;
		margin: 0 0 0 30px;
		position: relative;
	}
	.linkBtn a em {
		display: inline-block;
		padding: 10px 20px;
		margin: 0;
		background: #fff;
		border-radius: 40px;
		font-size: 15px;
		line-height: 1;
		font-weight: bold;
		font-style: normal;
		color: #24335a;
		position: absolute;
		top: -30px;
		left: 20px;
		z-index: 2;
	}
	.linkBtn a em::before {
		content: '';
		display: block;
		width: 8px;
		height: 8px;
		padding: 0;
		margin: 0;
		background: #fff;
		clip-path: polygon(0 0, 75% 100%, 100% 0);
		position: absolute;
		bottom: -7px;
		left: 50%;
	}
}

/*=====================*/
/*ココ推し*/
#rctFeatures {
	width: 100%;
	padding: 100px 0 100px;
	margin: 0 auto;
	background-image: url('http://wj-inter.co.jp/wp-content/uploads/recruit_mv_bg.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}
#rctFeatures > h2 {
	width: 780px;
	padding: 0;
	margin: 0 auto 60px;
	z-index: 2;
}
#rctFeatures > h2 img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
#all_wrap .rctFeaturesList {
	width: 1080px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap .rctFeaturesList > li {
	width: 31%;
	padding: 80px 30px 30px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	position: relative;
	z-index: 0;
}
#all_wrap .rctFeaturesList > li::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background-image: url('http://wj-inter.co.jp/wp-content/uploads/rctFeatures_border.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right bottom;
	position: absolute;
	bottom: -5px;
	right: -5px;
	z-index: -1;
}
#all_wrap .rctFeaturesList > li > em {
	display: block;
	width: 110px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: -52px;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	z-index: 2;
}
#all_wrap .rctFeaturesList > li > em img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
#all_wrap .rctFeaturesList > li > strong {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	color: #24335a;
	text-align: center;
}
#all_wrap .rctFeaturesList > li > strong::before {
	content: '';
	display: block;
	width: 10px;
	height: 20px;
	padding: 0;
	margin: 0 10px 0 0;
	background-image: url('http://wj-inter.co.jp/wp-content/uploads/rctFeatures_serif_left.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .rctFeaturesList > li > strong::after {
	content: '';
	display: block;
	width: 10px;
	height: 20px;
	padding: 0;
	margin: 0 0 0 10px;
	background-image: url('http://wj-inter.co.jp/wp-content/uploads/rctFeatures_serif_right.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .rctFeaturesList > li > h2 {
	font-size: 35px;
	font-weight: bold;
	font-style: italic;
	line-height: 1.2em;
	color: #24335a;
	text-align: center;
	margin: 00 auto 5px;
}
#all_wrap .rctFeaturesList > li > h2 > strong {
	font-size: 40px;
	font-weight: bold;
	font-style: italic;
	color: rgba(0, 0, 0, 0);
	text-shadow: 3px 3px 0 #ffe41a;
	-webkit-text-stroke: 1px #222;
	text-stroke: 1px #222;
	margin: 0 auto;
	padding: 0;
}
#all_wrap .rctFeaturesList > li > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	line-height: 1.7em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ココ推し*/
	#rctFeatures {
		width: 100%;
		padding: 40px 0 40px;
		margin: 0 auto;
		background: #009eff;
		position: relative;
	}
	#rctFeatures > h2 {
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto 50px;
		z-index: 2;
	}
	#rctFeatures > h2 img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
	}
	#all_wrap .rctFeaturesList {
		width: calc(100% - 60px);
	}
	#all_wrap .rctFeaturesList > li {
		width: 100%;
		padding: 55px 20px 20px;
		margin: 0 auto 35px;
		background: #fff;
		border-radius: 10px;
		position: relative;
		z-index: 0;
	}
	#all_wrap .rctFeaturesList > li:last-child {
		margin-bottom: 0;
	}
	#all_wrap .rctFeaturesList > li::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		background-image: url('http://wj-inter.co.jp/wp-content/uploads/rctFeatures_border.svg');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: right bottom;
		position: absolute;
		bottom: -5px;
		right: -5px;
		z-index: -1;
	}
	#all_wrap .rctFeaturesList > li > em {
		display: block;
		width: 80px;
		padding: 0;
		margin: 0;
		position: absolute;
		top: -40px;
		left: 50%;
		transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
		z-index: 2;
	}
	#all_wrap .rctFeaturesList > li > h2 {
		font-size: 27px;
		margin: 0 auto 10px;
		white-space: normal;
		white-space: nowrap;
	}
	#all_wrap .rctFeaturesList > li > h2 > strong {
		font-size: 30px;
	}
}

/*=====================*/
/*採用してみて*/
#rctImp {
	width: 100%;
	padding: 80px 0;
	margin: 0 auto;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAAXNSR0IArs4c6QAAACBJREFUKFNj/P//fwMDEYARpJCRkZGg4lGFeEOT6OABAAIzJ4hEJNTIAAAAAElFTkSuQmCC');
	background-color: #dae5e8;
	position: relative;
	z-index: 0;
}
#rctImp::before {
	content: '';
	display: block;
	width: 215px;
	height: 315px;
	padding: 0;
	margin: 0;
	background-image: url('http://wj-inter.co.jp/wp-content/uploads/rctImp_bg.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	z-index: -1;
}
#rctImp > header {
	width: 1080px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	text-align: center;
}
#rctImp > header > span {
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: flex-end;
	align-items: flex-end;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
}
#rctImp > header > span img {
	width: auto;
	height: 75px;
	padding: 0;
	margin: 0;
	margin-right: 15px;
}
#rctImp > header > span strong {
	font-size: 45px;
	line-height: 1;
	font-weight: bold;
	color: #24335a;
	padding: 0;
	margin: 0;
}
#rctImp > header > span small {
	font-size: 30px;
	line-height: 1;
	font-weight: bold;
	color: #24335a;
	padding: 0;
	margin: 0;
	margin-left: 10px;
}
#rctImp > header > h2 {
	width: 780px;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
}
#rctImp > header > h2 img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
/*リスト*/
#all_wrap .rctImpList {
	width: 1080px;
	padding: 0;
	margin: 0 auto 10px;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap .rctImpList > li {
	width: 48%;
	min-height: 310px;
	padding: 90px 30px 40px;
	margin: 0;
	background-image: url('http://wj-inter.co.jp/wp-content/uploads/rctImp_box_bg.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top center;
	position: relative;
}
#all_wrap .rctImpList > li > h3 {
	display: inline-block;
	padding: 10px 30px 10px 40px;
	background: #24335a;
	border: none;
	position: relative;
	font-size: 25px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	position: absolute;
	top: 30px;
	left: -12px;
}
#all_wrap .rctImpList > li > h3 small {
	font-size: 0.6em;
}
#all_wrap .rctImpList > li > h3::before {
	content: '';
	display: block;
	width: 12px;
	height: 7px;
	padding: 0;
	margin: 0;
	background: #737c95;
	position: absolute;
	bottom: -7px;
	left: 0;
	clip-path: polygon(0 0, 100% 100%, 100% 0);
}
#all_wrap .rctImpList > li > h3::after {
	content: '';
	display: block;
	width: 20px;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #24335a;
	position: absolute;
	top: 0;
	right: -19px;
	clip-path: polygon(100% 0%, 50% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
}
#all_wrap .rctImpList > li > figure {
	width: auto;
	height: 120px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: -40px;
	right: 30px;
	z-index: 1;
}
#all_wrap .rctImpList > li > figure img {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap .rctImpList > li > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	line-height: 2em;
}

/*アクセス*/
#all_wrap .rctAccessBox {
	width: 1080px;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap .rctAccessBox > .rctAccessInfo {
	width: 48%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .rctAccessBox > figure {
	width: 48%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .rctAccessInfo > span {
	display: block;
	width: 230px;
	padding: 0;
	margin: 0 0 10px;
}
#all_wrap .rctAccessInfo > span img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
#all_wrap .rctAccessInfo > h2 {
	padding: 0;
	margin: 0 auto 10px;
	border: none;
	background: none;
}
#all_wrap .rctAccessInfo > h2 > span {
	display: inline-block;
	padding: 10px 15px;
	margin: 0 0 10px;
	background: #049dd3;
	border-radius: 10px;
	font-size: 35px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
}
#all_wrap .rctAccessInfo > h2 > span strong {
	color: #ffe41a;
}
#all_wrap .rctAccessInfo > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	line-height: 2em;
}
/*オブジェクト*/
#all_wrap .rctAccessInfo::before {
	content: '';
	width: 82px;
	height: 45px;
	padding: 0;
	margin: 0;
	background-image: url('http://wj-inter.co.jp/wp-content/uploads/icon_star01.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 50px;
	right: 0;
}
#all_wrap .rctAccessInfo::after {
	content: '';
	width: 30px;
	height: 25px;
	padding: 0;
	margin: 0;
	background-image: url('http://wj-inter.co.jp/wp-content/uploads/icon_star02.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	bottom: -10px;
	right: -20px;
}
/*画像*/
#all_wrap .rctAccessBox > figure img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
#all_wrap .rctAccessBox > figure > span {
	display: block;
	width: 180px;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: -80px;
	right: -70px;
	z-index: 5;
}

/*社長挨拶*/
#all_wrap .rctRepBox {
	width: 1080px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
#all_wrap .rctRepBox > figure {
	width: 48%;
	padding: 0;
	margin: 0;
	margin-left: 50px;
	position: relative;
}
/*画像*/
#all_wrap .rctRepBox > figure img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
#all_wrap .rctRepBox > figure > span {
	display: block;
	width: 195px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: -100px;
	z-index: 5;
}
/*オブジェクト*/
#all_wrap .rctRepBox > figure::before {
	content: '';
	width: 43px;
	height: 68px;
	padding: 0;
	margin: 0;
	background-image: url('http://wj-inter.co.jp/wp-content/uploads/icon_star03.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	bottom: 0;
	left: -50px;
}
/*情報*/
#all_wrap .rctRepBox > .rctRepInfo {
	width: 50%;
	padding: 45px 30px 45px 70px;
	margin: 0;
	background-image: url('http://wj-inter.co.jp/wp-content/uploads/rctImp_rep_bg.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top center;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	z-index: 4;
}
#all_wrap .rctRepBox > .rctRepInfo > h2 {
	width: 100%;
	padding: 0;
	margin: 0 0 20px;
	border: none;
	background: none;
	position: relative;
	text-align: left;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: bold;
	color: #24335a;
}
#all_wrap .rctRepBox > .rctRepInfo > h2 > span {
	position: relative;
}
#all_wrap .rctRepBox > .rctRepInfo > h2 > span::before {
	content: '';
	display: block;
	width: 100%;
	height: 10px;
	padding: 0;
	margin: 0;
	background: #ffe41a;
	border-radius: 5px;
	position: absolute;
	bottom: -3px;
	left: 0;
	z-index: -1;
}
#all_wrap .rctRepBox > .rctRepInfo > h2 img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
#all_wrap .rctRepBox > .rctRepInfo > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	line-height: 2em;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*採用してみて*/
	#rctImp {
		width: 100%;
		padding: 40px 0 60px;
		margin: 0 auto;
		background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAAXNSR0IArs4c6QAAACBJREFUKFNj/P//fwMDEYARpJCRkZGg4lGFeEOT6OABAAIzJ4hEJNTIAAAAAElFTkSuQmCC');
		background-color: #dae5e8;
		position: relative;
		z-index: 0;
	}
	#rctImp::before {
		content: '';
		display: block;
		width: 215px;
		height: 315px;
		padding: 0;
		margin: 0;
		background-image: url('http://wj-inter.co.jp/wp-content/uploads/rctImp_bg.svg');
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: center;
		position: absolute;
		top: 30px;
		left: 50%;
		transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
		z-index: -1;
	}
	#rctImp > header {
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
		text-align: center;
	}
	#rctImp > header > span {
		margin: 0 auto 10px;
		position: relative;
		flex-wrap: nowrap;
	}
	#rctImp > header > span img {
		width: auto;
		height: 30px;
		padding: 0;
		margin: 0;
		margin-right: 10px;
	}
	#rctImp > header > span strong {
		font-size: 20px;
		line-height: 1;
		font-weight: bold;
		white-space: nowrap;
		color: #24335a;
		padding: 0;
		margin: 0;
	}
	#rctImp > header > span small {
		font-size: 15px;
		margin-left: 0;
	}
	#rctImp > header > h2 {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		border: none;
		background: none;
		position: relative;
	}
	/*リスト*/
	#all_wrap .rctImpList {
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto 20px;
		list-style: none;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#all_wrap .rctImpList > li {
		width: 100%;
		min-height: auto;
		padding: 70px 20px 20px;
		margin: 0 auto 20px;
		background: #fff;
		border-radius: 20px;
		filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.2));
		position: relative;
	}
	#all_wrap .rctImpList > li:last-child {
		margin-bottom: 0;
	}
	#all_wrap .rctImpList > li > h3 {
		display: inline-block;
		padding: 10px 30px 10px 40px;
		background: #24335a;
		border: none;
		position: relative;
		font-size: 20px;
		line-height: 1;
		font-weight: bold;
		color: #fff;
		position: absolute;
		top: 20px;
		left: -12px;
	}
	#all_wrap .rctImpList > li > h3 small {
		font-size: 0.6em;
	}
	#all_wrap .rctImpList > li > figure {
		width: auto;
		height: 70px;
		padding: 0;
		margin: 0;
		position: absolute;
		top: -10px;
		right: 20px;
		z-index: 1;
	}

	/*アクセス*/
	#all_wrap .rctAccessBox {
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#all_wrap .rctAccessBox > .rctAccessInfo {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
	}
	#all_wrap .rctAccessBox > figure {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	#all_wrap .rctAccessInfo > span {
		display: block;
		width: 180px;
		padding: 0;
		margin: 0 0 10px;
	}
	#all_wrap .rctAccessInfo > span img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
	}
	#all_wrap .rctAccessInfo > h2 {
		padding: 0;
		margin: 0 auto;
		border: none;
		background: none;
	}
	#all_wrap .rctAccessInfo > h2 > span {
		display: inline-block;
		padding: 7px 10px;
		margin: 0 0 7px;
		background: #049dd3;
		border-radius: 5px;
		font-size: 20px;
		line-height: 1;
		font-weight: bold;
		color: #fff;
	}
	#all_wrap .rctAccessInfo > h2 > span strong {
		color: #ffe41a;
	}
	#all_wrap .rctAccessInfo > p {
		padding: 0;
		margin: 0;
		text-align: justify;
		text-justify: inter-ideograph;
		line-height: 2em;
	}
	/*オブジェクト*/
	#all_wrap .rctAccessInfo::before {
		top: 20px;
		right: 0;
	}
	#all_wrap .rctAccessInfo::after {
		content: '';
		width: 30px;
		height: 25px;
		padding: 0;
		margin: 0;
		background-image: url('http://wj-inter.co.jp/wp-content/uploads/icon_star02.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		position: absolute;
		bottom: -10px;
		right: -10px;
	}
	/*画像*/
	#all_wrap .rctAccessBox > figure img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
	}
	#all_wrap .rctAccessBox > figure > span {
		display: block;
		width: 100px;
		padding: 0;
		margin: 0;
		position: absolute;
		bottom: -40px;
		right: -20px;
		z-index: 5;
	}

	/*社長挨拶*/
	#all_wrap .rctRepBox {
		width: calc(100% - 60px);
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	#all_wrap .rctRepBox > figure {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		order: 1;
	}
	/*画像*/
	#all_wrap .rctRepBox > figure img {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
	}
	#all_wrap .rctRepBox > figure > span {
		display: block;
		width: 100px;
		padding: 0;
		margin: 0;
		position: absolute;
		top: unset;
		left: unset;
		bottom: -40px;
		right: -20px;
		z-index: 5;
	}
	/*オブジェクト*/
	#all_wrap .rctRepBox > figure::before {
		content: '';
		width: 43px;
		height: 68px;
		padding: 0;
		margin: 0;
		background-image: url('http://wj-inter.co.jp/wp-content/uploads/icon_star03.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		position: absolute;
		bottom: -10px;
		left: -5px;
	}
	/*情報*/
	#all_wrap .rctRepBox > .rctRepInfo {
		width: 100%;
		padding: 20px;
		margin: 0 auto 10px;
		background: #fff;
		border-radius: 20px;
		filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.2));
		position: relative;
		top: unset;
		right: unset;
		transform: translate(0,0);
		-webkit-transform: translate(0,0);
		z-index: 4;
	}
	#all_wrap .rctRepBox > .rctRepInfo::before {
		content: '';
		display: block;
		width: 30px;
		height: 30px;
		padding: 0;
		margin: 0;
		clip-path: polygon(0 0, 0 100%, 100% 0);
		background: #fff;
		position: absolute;
		bottom: -25px;
		right: 40px;
	}
	#all_wrap .rctRepBox > .rctRepInfo > h2 {
		width: 100%;
		padding: 0;
		margin: 0 0 10px;
		border: none;
		background: none;
		position: relative;
		text-align: left;
		font-size: 20px;
		line-height: 1.4em;
		font-weight: bold;
		color: #24335a;
	}
	#all_wrap .rctRepBox > .rctRepInfo > h2 > span {
		position: relative;
	}
	#all_wrap .rctRepBox > .rctRepInfo > h2 > span::before {
		content: '';
		display: block;
		width: 100%;
		height: 6px;
		padding: 0;
		margin: 0;
		background: #ffe41a;
		border-radius: 5px;
		position: absolute;
		bottom: -3px;
		left: 0;
		z-index: -1;
	}
}

/*=====================*/
/*LPフッター*/
#rctFooter {
	width: 100%;
	padding: 50px 0 200px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	text-align: center;
}
#rctFooter > .rctFooterBox {
	width: auto;
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 auto;
}
#rctFooter > .rctFooterBox > figure {
	width: auto;
	height: 120px;
	padding: 0;
	margin: 0;
	margin-right: 40px;
}
#rctFooter > .rctFooterBox > figure img {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0;
}
/*電話*/
#rctFooter > .rctFooterBox > tel {
	padding: 0;
	margin: 0;
	text-align: center;
}
#rctFooter > .rctFooterBox > tel h2 {
	padding: 0;
	margin: 0 auto 5px;
	text-align: center;
}
#rctFooter > .rctFooterBox > tel h2 a {
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	color: #24335a;
}
#rctFooter > .rctFooterBox > tel p {
	padding: 0;
	margin: 0 auto 5px;
	text-align: center;
	font-size: 16px;
	line-height: 1;
	font-weight: bold;
}
#rctFooter > .rctFooterBox > tel a {
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 0 5px;
	font-size: 45px;
	line-height: 1;
	font-weight: bold;
	color: #24335a;
}
#rctFooter > .rctFooterBox > tel a img {
	width: auto;
	height: 35px;
	padding: 0;
	margin: 0;
	margin-right: 10px;
}
#rctFooter > .rctFooterBox > tel span {
	display: block;
	text-align: center;
	font-size: 12px;
	line-height: 1;
}

/*=====================*/
/*お問い合わせ*/
#all_wrap .rctFixed {
	width: 680px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	flex-wrap: wrap;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	z-index: 100;
	border-radius: 10px 10px 0 0;
	background: #24335a;
	opacity: 0;
	transition: all 0.3s ease;
}
#all_wrap .rctFixed.fixed {
	opacity: 1;
	transition: all 0.3s ease;
}
#all_wrap .rctFixed > li {
	width: calc(100% / 3);
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1;
}
#all_wrap .rctFixed > li a {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	padding: 20px;
	margin: 0;
	background: #049dd3;
	transition: all 0.3s ease;
}
#all_wrap .rctFixed > li:nth-child(3) a {
	background: #2bd1ef;
	border-radius: 0 10px 0 0;
}
#all_wrap .rctFixed > li a img {
	width: auto;
	height: 20px;
	padding: 0;
	margin: 0 10px 0 0;
}
#all_wrap .rctFixed > li a:hover {
	opacity: 0.8;
	transition: all 0.3s ease;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*LPフッター*/
	#rctFooter {
		width: 100%;
		padding: 40px 0 150px;
		margin: 0 auto;
		background: #fff;
		position: relative;
		text-align: center;
	}
	#rctFooter > .rctFooterBox {
		width: auto;
		display: inline-flex;
		display: -webkit-inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		padding: 0;
		margin: 0 auto;
	}
	#rctFooter > .rctFooterBox > figure {
		width: auto;
		height: 50px;
		padding: 0;
		margin: 0 auto 10px;
	}
	#rctFooter > .rctFooterBox > figure img {
		width: auto;
		height: 100%;
		padding: 0;
		margin: 0;
	}
	/*電話*/
	#rctFooter > .rctFooterBox > tel {
		width: 100%;
		padding: 0;
		margin: 0;
		text-align: center;
	}
	#rctFooter > .rctFooterBox > tel p {
		padding: 0;
		margin: 0 auto 7px;
		text-align: center;
		font-size: 12px;
		line-height: 1;
		font-weight: bold;
	}
	#rctFooter > .rctFooterBox > tel a {
		display: inline-flex;
		display: -webkit-inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		padding: 0;
		margin: 0 0 5px;
		font-size: 30px;
		line-height: 1;
		font-weight: bold;
		color: #24335a;
	}
	#rctFooter > .rctFooterBox > tel a img {
		width: auto;
		height: 25px;
		padding: 0;
		margin: 0;
		margin-right: 10px;
	}
	#rctFooter > .rctFooterBox > tel span {
		display: block;
		text-align: center;
		font-size: 12px;
		line-height: 1;
	}

	/*=====================*/
	/*お問い合わせ*/
	#all_wrap .rctFixed {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		flex-wrap: wrap;
		position: fixed;
		bottom: 0;
		left: 0;
		transform: translate(0,0);
		-webkit-transform: translate(0,0);
		z-index: 100;
		border-radius: 0;
		background: #24335a;
		opacity: 0;
		transition: all 0.3s ease;
	}
	#all_wrap .rctFixed.fixed {
		opacity: 1;
		transition: all 0.3s ease;
	}
	#all_wrap .rctFixed > li {
		width: calc(100% / 3);
		padding: 0;
		margin: 0;
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		font-size: 14px;
		font-weight: bold;
		color: #fff;
		text-align: center;
		line-height: 1;
	}
	#all_wrap .rctFixed > li a {
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		width: 100%;
		height: 100%;
		padding: 20px 0;
		margin: 0;
		background: #049dd3;
		transition: all 0.3s ease;
	}
	#all_wrap .rctFixed > li:nth-child(3) a {
		background: #2bd1ef;
		border-radius: 0;
	}
	#all_wrap .rctFixed > li a img {
		width: auto;
		height: 13px;
		padding: 0;
		margin: 0 5px 0 0;
	}
	#all_wrap .rctFixed > li a:hover {
		opacity: 0.8;
		transition: all 0.3s ease;
	}
	
	.grecaptcha-badge {
		width: 256px;
		height: 60px;
		display: block;
		transition: right 0.3s ease 0s;
		position: fixed;
		bottom: 61px !important;
		right: -186px;
		box-shadow: grey 0px 0px 5px;
		border-radius: 2px;
		overflow: hidden;
		z-index: 100;
	}
	.bottomFooter__topBtn {
		bottom: 126px !important;
	}
}

/*=====================*/
/*お問い合わせ*/
#all_wrap .rctFixedBan {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	width: 800px;
	padding: 20px;
	margin: 0;
	background-color: rgba(0, 123, 199, 0.8);
	border-radius: 10px 10px 0 0;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,100%);
	-webkit-transform: translate(-50%,100%);
	transition: all 0.3s ease;
	z-index: 100;
}
#all_wrap .rctFixedBan.fixed {
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	transition: all 0.3s ease;
	z-index: 100;
}
#all_wrap .rctFixedBan .rctFixed_tel {
	width: 30%;
	padding: 20px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	transition: all 0.3s ease;
}
#all_wrap .rctFixedBan .rctFixed_tel:hover {
	background: rgba(255,255,255,0.8);
	transition: all 0.3s ease;
}
#all_wrap .rctFixedBan .rctFixed_mail {
	width: 67%;
	padding: 20px;
	margin: 0;
	background: #f1ac4a;
	border-radius: 10px;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#all_wrap .rctFixedBan .rctFixed_tel a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#all_wrap .rctFixedBan .rctFixed_tel h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	position: relative;
	font-size: 25px;
	line-height: 1;
	font-weight: bold;
	color: #049dd3;
}
#all_wrap .rctFixedBan .rctFixed_tel h2 img {
	width: auto;
	height: 30px;
	padding: 0;
	margin: 0 7px 0 0;
}
#all_wrap .rctFixedBan .rctFixed_tel span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 10px auto 0;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	font-weight: bold;
	color: #252525;
}
#all_wrap .rctFixedBan .rctFixed_mail h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	position: relative;
	font-size: 25px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
}
#all_wrap .rctFixedBan .rctFixed_mail h2 img {
	width: auto;
	height: 20px;
	padding: 0;
	margin: 0 10px 0 0;
}
#all_wrap .rctFixedBan .rctFixed_mail ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap .rctFixedBan .rctFixed_mail ul > li {
	width: 48%;
	padding: 0;
	margin: 0;
}
#all_wrap .rctFixedBan .rctFixed_mail ul > li > a {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	padding: 12px 25px;
	margin: 0 auto;
	position: relative;
	font-size: 15px;
	line-height: 1;
	font-weight: bold;
	color: #2d3348;
	background: #fff;
	border: 5px solid #f1f1f1;
	box-shadow: 0 5px 0 rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	border-radius: 50px;
	white-space: nowrap;
	letter-spacing: -0.05em;
}
#all_wrap .rctFixedBan .rctFixed_mail ul > li > a:hover {
	border: 5px solid #049dd3;
	color: #049dd3;
	transform: translateY(5px);
	box-shadow: 0 0 0 rgba(0,0,0,0.1);
	filter: brightness(1.1);
}
#all_wrap .rctFixedBan .rctFixed_mail ul > li > a::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	margin: 0;
	background: none;
	border-top: 2px solid #2d3348;
	border-right: 2px solid #2d3348;
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translate(0,-50%) rotate(45deg);
	-webkit-transform: translate(0,-50%) rotate(45deg);
}
#all_wrap .rctFixedBan .rctFixed_mail ul > li > a:hover::after {
	border-top: 2px solid #049dd3;
	border-right: 2px solid #049dd3;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .rctFixedBan {
		width: 100%;
		padding: 10px;
		border-radius: 0;
		flex-wrap: wrap;
	}
	#all_wrap .rctFixedBan .rctFixed_tel {
		width: 100%;
		padding: 10px;
		margin: 0 auto 10px;
	}
	#all_wrap .rctFixedBan .rctFixed_mail {
		width: 100%;
		padding: 10px;
		margin: 0;
	}
	#all_wrap .rctFixedBan .rctFixed_tel h2 {
		width: 100%;
		font-size: 20px;
	}
	#all_wrap .rctFixedBan .rctFixed_tel h2 img {
		width: auto;
		height: 20px;
		padding: 0;
		margin: 0 7px 0 0;
	}
	#all_wrap .rctFixedBan .rctFixed_tel span {
		display: none;
	}
	#all_wrap .rctFixedBan .rctFixed_mail h2 {
		width: 100%;
		margin: 0 auto 10px;
		font-size: 20px;
	}
	#all_wrap .rctFixedBan .rctFixed_mail h2 img {
		width: auto;
		height: 15px;
		padding: 0;
		margin: 0 7px 0 0;
	}
	#all_wrap .rctFixedBan .rctFixed_mail ul {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#all_wrap .rctFixedBan .rctFixed_mail ul > li {
		width: 48.5%;
		padding: 0;
		margin: 0;
	}
	#all_wrap .rctFixedBan .rctFixed_mail ul > li > a {
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		width: 100%;
		padding: 10px 20px;
		margin: 0 auto;
		position: relative;
		font-size: 12px;
		line-height: 1;
		font-weight: bold;
		color: #2d3348;
		background: #fff;
		border: 5px solid #f1f1f1;
		box-shadow: 0 5px 0 rgba(0,0,0,0.1);
		transition: all 0.3s ease;
		border-radius: 50px;
		white-space: nowrap;
		letter-spacing: -0.05em;
	}
	#all_wrap .rctFixedBan .rctFixed_mail ul > li > a::after {
		content: '';
		display: block;
		width: 6px;
		height: 6px;
		padding: 0;
		margin: 0;
		background: none;
		border-top: 1px solid #2d3348;
		border-right: 1px solid #2d3348;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translate(0,-50%) rotate(45deg);
		-webkit-transform: translate(0,-50%) rotate(45deg);
	}
	
	
	#all_wrap .rctFixedBan_sp {
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		flex-wrap: nowrap;
		width: 100%;
		padding: 0;
		margin: 0;
		background-color: rgba(0, 123, 199, 0.9);
		position: fixed;
		bottom: 0;
		left: 0;
		transition: all 0.3s ease;
		z-index: 100;
		list-style: none;
	}
	#all_wrap .rctFixedBan_sp > li {
		width: calc(100% / 3);
		padding: 0;
		margin: 0;
		text-align: center;
		border-right: 1px solid rgba(255,255,255,0.5);
	}
	#all_wrap .rctFixedBan_sp > li > a {
		display: flex;
		display: -webkit-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		width: 100%;
		height: 100%;
		padding: 10px 10px;
		margin: 0;
		background: none;
		text-align: center;
		font-size: 15px;
		line-height: 1.2em;
		font-weight: bold;
		color: #ffe41a;
		text-shadow: 2px 2px 0 rgba(36,51,90,0.5);
		text-shadow:0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7),0 0 3px rgba(64,115,195,0.7);
		white-space: nowrap;
		position: relative;
		z-index: 0;
	}
	#all_wrap .rctFixedBan_sp > li > a::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		background-repeat: no-repeat;
		background-size: auto 70%;
		background-position: center;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		opacity: 0.5;
	}
	#all_wrap .rctFixedBan_sp > li:nth-child(1) > a::before {
		background-image: url('http://wj-inter.co.jp/wp-content/uploads/icon_tel_w.svg');
	}
	#all_wrap .rctFixedBan_sp > li:nth-child(2) > a::before,
	#all_wrap .rctFixedBan_sp > li:nth-child(3) > a::before {
		background-size: auto 50%;
		background-image: url('http://wj-inter.co.jp/wp-content/uploads/icon_mail_w.svg');
	}
}


/************************************************************/
/*　改修
/************************************************************/

.underline {
	display: inline;
	background: linear-gradient(transparent 60%,#fbeb64 60%);
}

/*リスト*/
#all_wrap .l-wrapper .pageContents .content .cp_list {
	width: 100%;
	padding: 5px;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 3px;
	grid-row-gap: 3px;
	border: 1px solid #0476AE;
}
#all_wrap .l-wrapper .pageContents .content .cp_list > li {
	width: calc(100% / 3 - 2px);
	padding: 10px;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: #0476AE;
	font-size: 15px;
	line-height: 1.2em;
	font-weight: bold;
	color: #fff;
	text-align: center;
	min-height: 50px;
	position: relative;
}
#all_wrap .l-wrapper .pageContents .content .cp_list > li::before,
#all_wrap .l-wrapper .pageContents .content .cp_list > li::after {
	display: none;
}

#all_wrap .l-wrapper .content p.graybox {
	padding: 20px;
	margin: 0;
	background: #f5f5f5;
	border-radius: 10px;
}

/*メリット*/
#all_wrap .l-wrapper .pageContents .content .tab_ttl {
	display: inline-block;
	padding: 12px 20px;
	margin: 0;
	background: #0476AE;
	border-radius: 10px 10px 0 0;
	font-size: 18px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
}
#all_wrap .l-wrapper .pageContents .content .tab_ttl::before,
#all_wrap .l-wrapper .pageContents .content .tab_ttl::after {
	display: none;
}
#all_wrap .l-wrapper .pageContents .content .merit_list {
	width: 100%;
	padding: 30px;
	margin: 0;
	background: #CFEAF9;
	border-radius: 0 10px 10px 10px;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .l-wrapper .pageContents .content .merit_list > li {
	padding: 0 0 0 22px;
	margin: 0;
	position: relative;
	column-gap: 5px;
	font-weight: bold;
}
#all_wrap .l-wrapper .pageContents .content .merit_list > li::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	background: none;
	border: 3px double #0476AE;
	position: absolute;
	top: 0.1em;
	left: 0;
	transform: unset;
}
#all_wrap .l-wrapper .pageContents .content .merit_list > li small {
	font-weight: 400;
}
#all_wrap .l-wrapper .pageContents .content .tab_box {
	width: 100%;
	padding: 30px;
	margin: 0;
	background: #f7f7f7;
	border-radius: 0 10px 10px 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*リスト*/
	#all_wrap .l-wrapper .pageContents .content .cp_list {
		width: 100%;
		padding: 5px;
		column-gap: 2px;
		grid-row-gap: 2px;
		border: 1px solid #0476AE;
	}
	#all_wrap .l-wrapper .pageContents .content .cp_list > li {
		width: calc(100% / 2 - 1px);
		padding: 10px;
		font-size: 14px;
		min-height: auto;
	}

	/*メリット*/
	#all_wrap .l-wrapper .pageContents .content .tab_ttl {
		display: inline-block;
		padding: 10px 15px;
		margin: 0;
		background: #0476AE;
		border-radius: 10px 10px 0 0;
		font-size: 15px;
		line-height: 1;
		font-weight: bold;
		color: #fff;
	}
	#all_wrap .l-wrapper .pageContents .content .tab_ttl::before,
	#all_wrap .l-wrapper .pageContents .content .tab_ttl::after {
		display: none;
	}
	#all_wrap .l-wrapper .pageContents .content .merit_list {
		width: 100%;
		padding: 20px;
		margin: 0;
		background: #CFEAF9;
		border-radius: 0 10px 10px 10px;
		display: flex;
		display: -webkit-flex;
		flex-direction: column;
		grid-row-gap: 10px;
	}
	#all_wrap .l-wrapper .pageContents .content .merit_list > li {
		padding: 0 0 0 20px;
		margin: 0;
		position: relative;
		column-gap: 5px;
		font-weight: bold;
	}
	#all_wrap .l-wrapper .pageContents .content .merit_list > li::before {
		content: '';
		display: inline-block;
		width: 16px;
		height: 16px;
		background: none;
		border: 3px double #0476AE;
		position: absolute;
		top: 0.1em;
		left: 0;
		transform: unset;
	}
	#all_wrap .l-wrapper .pageContents .content .merit_list > li small {
		font-weight: 400;
	}
	#all_wrap .l-wrapper .pageContents .content .tab_box {
		width: 100%;
		padding: 20px;
		margin: 0;
		background: #f7f7f7;
		border-radius: 0 10px 10px 10px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
}



/************************************************************/
/*　動画紹介
/************************************************************/
#all_wrap #movie {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#all_wrap #movie h2 {
	padding: 0;
	margin: 0 auto 30px;
	background: none;
	border: none;
	text-align: center;
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
	color: #0476AE;
}
#all_wrap #movie h2 span {
	display: block;
	text-align: center;
	padding: 0;
	margin: 0 auto 10px;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: bold;
	color: #222;
}
#all_wrap #movie p {
	padding: 0;
	margin: 0 auto 40px;
	background: none;
	border: none;
	text-align: center;
	font-size: 1em;
	line-height: 1.6em;
	font-weight: normal;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap #movie {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap #movie h2 {
		padding: 0;
		margin: 0 auto 20px;
		background: none;
		border: none;
		text-align: center;
		font-size: 25px;
		line-height: 1;
		font-weight: bold;
		font-feature-settings: "palt";
		letter-spacing: 0.1em;
	}
	#all_wrap #movie h2 span {
		display: block;
		text-align: center;
		padding: 0;
		margin: 0 auto 10px;
		font-size: 15px;
		font-weight: bold;
		color: #222;
	}
	#all_wrap #movie p {
		padding: 0;
		margin: 0 auto 20px;
		background: none;
		border: none;
		text-align: center;
		font-size: 1em;
		line-height: 1.6em;
		font-weight: normal;
	}
}

/*動画一覧*/
#all_wrap .movie_list {
	list-style: none;
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .movie_list li {
	width: calc(100% / 2 - 15px);
	padding: 0;
	margin: 0;
}
#all_wrap .movie_list li figure {
	width: 100%;
	padding: 0;
	margin: 0 0 15px;
	position: relative;
	overflow: hidden;
}
#all_wrap .movie_list li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
	margin: 0;
}
#all_wrap .movie_list li figure > img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: 0.5s;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	-webkit-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	padding: 0;
	margin: 0;
	transition: 0.2s;
}
#all_wrap .movie_list li figure > img:hover {
	opacity: 0.8;
	transition: 0.2s;
}
#all_wrap .movie_list li figure span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	-webkit-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
}
#all_wrap .movie_list li figure span svg,
#all_wrap .movie_list li figure span img {
	width: 50px;
	height: auto;
	padding: 0;
	margin: 0 auto;
	transition: 0.2s;
	text-align: center;
}
#all_wrap .movie_list li h3 {
	font-size: 18px;
	line-height: 1.2em;
	font-feature-settings: "palt";
	text-align: center;
	color: #323232;
	border: none;
	background: none;
	padding: 0;
	margin: 0 auto 10px;
}
#all_wrap #movie .movie_list li a > p {
	padding: 0;
	margin: 0;
	line-height: 1.4em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .youtube_btn {
	text-align: center;
	padding: 0;
	margin: 0 auto 40px;
}
#all_wrap .youtube_btn a {
	display: inline-block;
	padding: 15px 40px;
	margin: 0 auto;
	background: #eb3223;
	color: #fff;
	text-align: center;
	transition: 0.2s;
	border-radius: 5px;
}
#all_wrap .youtube_btn a:hover {
	opacity: 0.8;
	transition: 0.2s;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*動画一覧*/
	#all_wrap .movie_list {
		list-style: none;
		width: 95%;
		max-width: 95%;
		padding: 0;
		margin: 0 auto;
		display: -webkit-flex;
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		align-content: flex-start;
		flex-wrap: wrap;
	}
	#all_wrap .movie_list::after {
		display: none;
	}
	#all_wrap .movie_list li {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .movie_list li figure {
		width: 100%;
		padding: 0;
		margin: 0 0 10px;
		position: relative;
		overflow: hidden;
	}
	#all_wrap .movie_list li figure::before {
		content: '';
		display: block;
		padding-top: 56.25%;
		margin: 0;
	}
	#all_wrap .movie_list li figure > img {
		width: 100%;
		height: auto;
		object-fit: cover;
		transition: 0.5s;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) scale(1);
		-webkit-transform: translate(-50%, -50%) scale(1);
		-ms-transform: translate(-50%, -50%) scale(1);
		padding: 0;
		margin: 0;
		transition: 0.2s;
	}
	#all_wrap .movie_list li figure > img:hover {
		opacity: 0.8;
		transition: 0.2s;
	}
	#all_wrap .movie_list li figure span {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) scale(1);
		-webkit-transform: translate(-50%, -50%) scale(1);
		-ms-transform: translate(-50%, -50%) scale(1);
	}
	#all_wrap .movie_list li figure span svg,
	#all_wrap .movie_list li figure span img {
		width: 50px;
		height: auto;
		padding: 0;
		margin: 0 auto;
		transition: 0.2s;
		text-align: center;
	}
	#all_wrap .movie_list li h3 {
		font-size: 20px;
		line-height: 1.2em;
		font-feature-settings: "palt";
		text-align: center;
		color: #323232;
		border: none;
		background: none;
		padding: 0;
		margin: 0 auto 5px;
	}
	#all_wrap #movie .movie_list li a > p {
		padding: 0;
		margin: 0;
		line-height: 1.4em;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .youtube_btn {
		text-align: center;
		padding: 0;
		margin: 0 auto 40px;
	}
	#all_wrap .youtube_btn a {
		display: inline-block;
		padding: 10px 20px;
		margin: 0 auto;
		color: #fff;
		text-align: center;
		transition: 0.2s;
	}
	#all_wrap .youtube_btn a:hover {
		opacity: 0.8;
		transition: 0.2s;
	}
}

/************************************************************/
/*　トップページ　数字で見る西日本国際人材センター
/************************************************************/
#topVoice {
	width: 100%;
	padding: 0 0 150px;
	margin: 0 auto;
	background-color: #fff;
}
#topVoice > strong {
	display: block;
	width: 100%;
	max-width: 1100px;
	position: relative;
	padding: 20px 0 0;
	margin: 0 auto 10px;
	font-family: 'Urbanist', sans-serif;
	font-size: 60px;
	font-weight: 500;
	line-height: 1;
	color: #0476AE;
	opacity: 0;
}
#topVoice > strong::before {
	content: '';
	display: block;
	width: 35px;
	height: 4px;
	border-radius: 20px;
	background: #2BD1EF;
	position: absolute;
	top: 0;
	left: 0;
}
#topVoice > strong::after {
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 20px;
	background: #2BD1EF;
	position: absolute;
	top: 0;
	left: 40px;
}
#topVoice > h2 {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto 20px;
	font-size: 16px;
	line-height: 1;
	color: #222;
	font-weight: bold;
	border: none;
	background: none;
	opacity: 0;
}
#all_wrap .voiceList {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 50px;
	position: relative;
}
#all_wrap .voiceList .voiceBox {
	width: calc(100% / 2 - 25px);
	padding: 0;
	margin: 0;
	position: relative;
	background: #F7F7F7;
	border-radius: 10px;
	filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.2));
}
#all_wrap .voiceList .voiceBox::after {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	background: #F7F7F7;
	position: absolute;
	bottom: -19px;
	right: 30px;
	clip-path: polygon(10% 0, 0 100%, 100% 0);
}
#all_wrap .voiceList .voiceBox dt {
	padding: 15px;
	margin: 0;
	background: #0476AE;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	text-align: center;
	border-radius: 10px 10px 0 0;
}
#all_wrap .voiceList .voiceBox dd {
	padding: 15px;
	margin: 0;
	border-radius: 0 0 10px 10px;
}
#all_wrap .voiceList .voiceBox dd p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .voiceList .voiceBox dd p strong {
	font-weight: bold;
	color: #0476AE;
	display: inline;
	background: linear-gradient(
		transparent 60%,
		#fbeb64 60%
	);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topVoice {
		width: 100%;
		padding: 40px 0 60px;
		margin: 0 auto;
		background-color: #fff;
	}
	#topVoice > strong {
		display: block;
		width: 90%;
		max-width: 90%;
		position: relative;
		padding: 10px 0 0;
		margin: 0 auto 5px;
		font-family: 'Urbanist', sans-serif;
		font-size: 40px;
		font-weight: 500;
		line-height: 1;
		color: #0476AE;
		opacity: 0;
	}
	#topVoice > strong::before {
		content: '';
		display: block;
		width: 35px;
		height: 4px;
		border-radius: 20px;
		background: #2BD1EF;
		position: absolute;
		top: 0;
		left: 0;
	}
	#topVoice > strong::after {
		content: '';
		display: block;
		width: 4px;
		height: 4px;
		border-radius: 20px;
		background: #2BD1EF;
		position: absolute;
		top: 0;
		left: 40px;
	}
	#topVoice > h2 {
		width: 90%;
		max-width: 90%;
		padding: 0;
		margin: 0 auto 20px;
		font-size: 16px;
		line-height: 1;
		color: #222;
		font-weight: bold;
		border: none;
		background: none;
		opacity: 0;
	}

	#all_wrap .voiceList {
		width: 90%;
		max-width: 90%;
		grid-row-gap: 30px;
	}
	#all_wrap .voiceList .voiceBox {
		width: calc(100%);
	}
	#all_wrap .voiceList .voiceBox::after {
		content: '';
		display: block;
		width: 20px;
		height: 20px;
		background: #F7F7F7;
		position: absolute;
		bottom: -19px;
		right: 20px;
		clip-path: polygon(10% 0, 0 100%, 100% 0);
	}
	#all_wrap .voiceList .voiceBox dt {
		padding: 15px;
		margin: 0;
		background: #0476AE;
		color: #fff;
		font-size: 20px;
		line-height: 1;
		font-weight: bold;
		text-align: center;
		border-radius: 10px 10px 0 0;
	}
}

/*テーブル*/
#all_wrap .l-wrapper .pageContents table.serviceTable {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 1px 3px;
	border: none;
	background: none;
}
#all_wrap .l-wrapper .pageContents table.serviceTable th {
	width: 25%;
	padding: 15px;
	margin: 0;
	background: #CFEAF9;
	border: none;
	font-size: 15px;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
}
#all_wrap .l-wrapper .pageContents table.serviceTable td {
	padding: 15px;
	margin: 0;
	background: #E9F8FF;
	border: none;
	font-size: 15px;
	line-height: 1.7em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .l-wrapper .pageContents table.serviceTable tr:nth-child(odd) td {
	background: #E9F8FF;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
}


/*サービス内容*/
.servicePoint {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
.serviceBox {
	width: calc(100% / 2 - 10px);
	padding: 20px 0 0;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	position: relative;
}
.serviceBox dt {
	width: calc(100% - 20px);
	padding: 5px 10px 5px 20px;
	margin: 0;
	background: #0476AE;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: bold;
	color: #fff;
}
.serviceBox dt img {
	width: 40px;
	padding: 0;
	margin: 0;
}
.serviceBox dd {
	padding: 20px;
	margin: 0;
}
#all_wrap .serviceBox dd > p {
	padding: 0;
	margin: 0;
	font-size: 12px;
	line-height: 1.7em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.servicePoint {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.serviceBox {
		width: calc(100%);
		padding: 20px 0 0;
		border: 1px solid #c8c8c8;
	}
	#all_wrap .serviceBox dd > p {
		font-size: 14px;
	}
}