@charset "UTF-8";

/*全体共通*/
:root,
html {
    font-size: 10px;
}

* {
    box-sizing: border-box;
}

body {
    --max-width: 900px;
    --c-base: #292929;
    --c-main: #0d5dc7;
    --c-accent: #cfd52f;
    --ff-main: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    --ff-en: "Montserrat", sans-serif;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--ff-main);
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    color: #292929;
    letter-spacing: 0.05em;
    background: #ffffff;
}

/* IE表示用のCSS　*/
@media all and (-ms-high-contrast:none) {
    body {
        font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    }
}

a {
    display: inline-block;
    color: inherit;
    font-weight: inherit;
}

a:hover {
    cursor: pointer;
}

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

img,
svg {
    display: inline-block;
    max-width: 100%;
    vertical-align: bottom;
}

select {
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.--ff-en {
    font-family: var(--ff-en);
}

.--ff-g {
    font-family: var(--ff-g);
}

.--c-red {
    color: #e61927 !important;
}

.--c-white {
    color: #fff !important;
}

.--c-yellow {
    color: #cfd52f !important;
}

.--c-blue {
    color: #0d5dc7 !important;
}

.--c-green {
    color: #009d42 !important;
}

.--center {
    text-align: center !important;
}

.--ta-l {
    text-align: left !important;
}

.--ta-r {
    text-align: right !important;
}

.--ta-justify {
    text-justify: inter-ideograph;
    text-align: justify;
    text-align-last: left;
}

.--bold {
    font-weight: bold !important;
}

.--thin {
    font-weight: 100 !important;
}

.--nowrap {
    white-space: nowrap;
}

.--kerning {
    font-feature-settings: "palt";
}

.--overflow-ellipsis {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.--under {
    border-bottom: 1px solid #888;
}

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

.--img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.--clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.--d-ib {
    display: inline-block !important;
}

.--d-n {
    display: none !important;
}

.--d-f {
    display: flex !important;
}

.--justify-center {
    display: flex;
    justify-content: center;
}

a.--h-opacity,
.--h-opacity a {
    transition: opacity .3s;
}

a.--h-opacity:hover,
.--h-opacity a:hover {
    opacity: .6;
}

/* PC */
@media (min-width: 900px) {
    .--tab {
        display: none !important;
    }

    .--sp {
        display: none !important;
    }

    .--tab-sp {
        display: none !important;
    }
}

/* TAB */
@media screen and (max-width: 899px) and (min-width: 481px) {
    .--pc {
        display: none !important;
    }

    .--sp {
        display: none !important;
    }

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

/* SP */
@media screen and (max-width: 480px) {
    .--pc {
        display: none !important;
    }

    .--tab {
        display: none !important;
    }

    .--pc-tab {
        display: none !important;
    }
}

/* アニメーション */
@keyframes inview_img_before {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }

    50% {
        transform-origin: left;
        transform: scaleX(1);
    }

    51% {
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}

@keyframes inview_img {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

._Inview {
    opacity: 0;
    transition: 1.5s ease .5s;
}

._Inview.in {
    opacity: 1;
}

._Inview.-slide {
    transform: translateX(-20px);
}

._Inview.-slide.in {
    transform: translateX(0);
}

._Inview.-up {
    transform: translateY(20px);
}

._Inview.-up.in {
    transform: translateY(0);
}

._Inview.-img {
    position: relative;
    opacity: 1;
}

._Inview.-img img {
    opacity: 0;
}

._Inview.-img.in img {
    animation: inview_img 1s ease .5s forwards;
}

._Inview.-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--c-main);
    transform: scaleX(0);
    z-index: 2;
}

._Inview.-img.in::before {
    animation: inview_img_before 1s ease .5s forwards;
}

/* SP */
@media screen and (max-width: 480px) {
    ._Inview {
        transition-delay: 0s;
    }

    ._Inview.-img.in img,
    ._Inview.-img.in::before {
        animation-delay: 0s;
    }
}

/* 共通 */
.cntInner,
._Inner {
    width: 100%;
    margin: 0 auto;
}

._Title {
    padding-top: 55px;
    margin-bottom: 50px;
}

._Title .ja {
    font-size: 3.0rem;
    letter-spacing: .05em;
}

._Title02 {
    font-size: 3.0rem;
    letter-spacing: .05em;
    position: relative;
    padding: 5px 0 5px 20px;
    margin-bottom: 5px;
}

._Title02::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 22px;
    left: 0;
    background: #2f70b0;
    border-radius: 100px;
}

/* TAB */
@media screen and (max-width: 899px) {
    ._Title02 {
        font-size: 2.2rem;
    }

    ._Title02::before {
        top: 17px;
    }
}

/* SP */
@media screen and (max-width: 480px) {
    ._Title {
        padding-top: 25px;
        margin-bottom: 25px;
    }

    ._Title .ja {
        font-size: 2.2rem;
    }

    ._Title02 {
        font-size: 1.9rem;
        padding: 5px 0 5px 12px;
    }

    ._Title02::before {
        width: 8px;
        height: 8px;
        top: 17px;
    }
}



._Box .cntInner {
    max-width: 1200px;
    width: 96%;
    margin: 0 auto;
}

._Box .cntTitle {}

._Box .cntTitle .en {}

._Box .cntTitle .ja {}

._Box .cntText {
    font-weight: 600;
    letter-spacing: .075em;
    line-height: 1.8;
}

.cntBtn {
    width: 100%;
    max-width: 300px;
    margin: auto;
}

.cntBtn.--ta-r {
    margin: 0 0 0 auto;
}

.cntBtn a {
    position: relative;
    font-size: 1.8rem;
    letter-spacing: .05em;
    display: block;
    width: 100%;
    text-align: center;
    margin: auto;
    background: var(--c-main);
    transition: 0.7s;
    padding: 20px 10px;
    border-radius: 100px;
    color: #fff;
}

.cntBtn a:hover {
    background: var(--c-accent);
}

.cntDiv {}

.cntImg {}

._Box.-inver .cntDiv {}

._Box.-inver .cntImg .inner {}

._Box .cntList {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}


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

/* TAB */
@media screen and (max-width: 899px) {
    ._Box .cntText {
        letter-spacing: .075em;
        line-height: 1.6;
    }
}

/* SP */
@media screen and (max-width: 480px) {
    ._Box .cntInner {
        width: 90%;
    }

    .cntBtn {
        max-width: 90%;
    }

    .cntBtn.--ta-r {
        margin: auto;
    }

    .cntBtn a {
        font-size: 1.5rem;
        padding: 15px 10px;
    }

    .cntBtn02 {
        max-width: 90%;
        margin: auto;
    }

    .cntBtn02 a {
        font-size: 1.5rem;
    }

    ._Box .cntText {
        letter-spacing: .05em;
        line-height: 1.6;
    }
}

/* ローディング */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 999;
}


/* ヘッダー */
#header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 101;
}

#header .cntInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    padding: 50px 0;
    margin: 0 auto;
}

#headerLogo {
    width: 40%;
}

#header .cntBox {
    width: 58%;
    max-width: 650px;
}

#header .cntList {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

#header .cntList li {
    width: 17%;
}

#header .cntList li:nth-child(2) {
    width: 23%;
}

#header .cntList li:last-child {
    width: 38%;
}

#header .cntList .item,
#header .cntList .init-bottom {
    display: block;
    text-align: center;
    letter-spacing: .05em;
    font-weight: 700;
    transition: 0.7s;
    color: #fff;
    position: relative;
}

#header .cntList .item::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: rgba(13, 93, 199, 0);
    border-radius: 100%;
    top: -12px;
    right: 0;
    left: 0;
    margin: auto;
    transition: 0.5s;
}

#header .cntList .item .jp,
#header .cntList .init-bottom .jp {
    font-size: 1.6rem;
}

#header .cntList .item.current {}

#header .cntList .item:hover {
    opacity: 1;
}

#header .cntList .item:hover::after,
#header .cntList .item.current::after {
    background: #fff;
}

#header .cntList li:last-child .item .jp {
    font-size: 1.6rem;
}

#header .cntList li:last-child a {
    display: block;
    width: 100%;
    background: #cfd52f;
    border-radius: 100px;
    padding: 15px 0;
    letter-spacing: 0;
}

#header .cntList li:last-child a:hover {
    background: #222;
}

#header .cntList li:last-child a span {
    background: url("../img/top/entry.png")no-repeat left center;
    background-size: 26px;
    padding: 4px 0 4px 35px;
}

#header .cntList li:last-child .item::after {
    position: static;
    display: none;
}

/*#header .cntList ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    }
#header .cntList .menu__second-level li {padding:6px 0;}
#header .cntList .menu__second-level li a:hover {color: #93814f}
#header .cntList li.menu__single {position: relative;}
#header .cntList li.menu__single ul.menu__second-level {
    position: absolute;
    top: 10px;
    width: 220%;
    max-width: 180px;
    background:rgba(255,255,255,0.7);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    color: #333;
    padding:6px;
    box-sizing: border-box;
    text-align: center;
    left: 0;
    font-size: 1.4rem;
    }
#header .cntList li.menu__single:hover ul.menu__second-level {
    top: 22px;
    visibility: visible;
    opacity: 1;
    }*/

@media screen and (max-width: 1220px) {
    #header .cntInner {
        padding: 30px 0;
    }

    #headerLogo {
        width: 30%;
        padding: 0
    }

    #header .cntBox {
        width: 65%;
    }

    #header .cntList .item .jp,
    #header .cntList .init-bottom .jp {
        font-size: 1.5rem;
        letter-spacing: 0
    }

    #header .cntList li:last-child .item .jp {
        font-size: 1.5rem;
    }

    #header .cntList li:last-child a span {
        background: url("../img/top/entry.png")no-repeat left center;
        background-size: 23px;
    }

    #header .cntList li:last-child a {
        padding: 10px 0;
    }
}


/* TAB */
@media screen and (max-width: 899px) {
    #header {
        width: 100%;
    }

    #header .cntInner {
        padding: 10px 0;
    }

    #headerLogo {
        width: 250px;
    }

    #header .cntBox {
        width: auto;
        background: none;
        border: none;
        padding: 0;
    }

    #headerBtn {
        position: absolute;
        top: 8px;
        right: 0;
        width: 50px;
        height: 35px;
        cursor: pointer;
        z-index: 999;
    }

    #headerBtn span {
        position: absolute;
        left: 10px;
        display: inline-block;
        width: calc(100% - 20px);
        height: 3px;
        transition: all .5s;
        background: #fff;
        border-radius: 100px;
    }

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

    #headerBtn span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-1px);
    }

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

    #headerBtn.active span {}

    #headerBtn.active span:nth-of-type(1) {
        transform: translateY(6px) rotate(45deg);
    }

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

    #headerBtn.active span:nth-of-type(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* SP */
@media screen and (max-width: 480px) {
    #headerLogo {
        width: 230px;
    }
}

/* スマホナビ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
    padding-bottom: 70px;
    background: var(--c-main);
    z-index: 100;
    color: #fff;
}

#nav .cntInner {
    text-align: center;
    padding: 70px 20px 0;
}

#nav .cntList .item {
    margin-top: 24px;
    line-height: 1.2;
    letter-spacing: .075em;
}

#nav .cntList {
    font-weight: 600;
    display: block;
}

#nav .cntList .current {
    color: #f3df4e
}

#nav .cntList li.mail {
    text-transform: uppercase;
}



/* フッター */
#footer {
    position: relative;
    padding: 300px 0 50px;
    margin-top: -180px;
    overflow: hidden;
}

#footer::after {
    position: absolute;
    content: "";
    width: 96%;
    height: 100%;
    bottom: 0;
    right: 0;
    background: #0054c4;
    border-radius: 20px 0 0 0;
    transition: 0.7s;
}

@media screen and (max-width: 1400px) {
    #footer::after {
        width: 100%;
        border-radius: 0;
    }

}

#footer .cntInner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

#footer .cntInner .cntList {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

#footer #footerLogo {
    text-align: left;
    max-width: 370px;
    width: 30%;
    margin: 0;
}

#footer .cntList ul {
    width: 65%;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .05em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
}

#footer .cntList ul li {}

#footer .cntList li a {
    color: #fff;
}


#copyright {
    color: #fff;
    display: block;
    font-size: 1.1rem;
    margin: auto;
    text-align: right;
    padding: 100px 0 0;
}

/* トップへ戻るボタン */
#top {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 70px;
    z-index: 100;
}

/* TAB */
@media screen and (max-width: 899px) {

    #footer #footerLogo {
        text-align: center;
        max-width: 370px;
        width: 100%;
        margin: 0 auto;
    }

    #copyright {
        text-align: center;
        padding: 50px 0 0;
    }

    /* トップへ戻るボタン */
    #top {
        width: 50px;
    }
}

/* SP */
@media screen and (max-width: 480px) {
    #footer {
        padding: 40px 0 20px;
        margin-top: 0;
    }

    #footer::after {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    #footer #footerLogo {
        max-width: 270px;
    }

    #copyright {
        padding: 20px 0 0;
    }


}




/*------------------------------------------------------------
	over_effect
------------------------------------------------------------*/
.over_effect {
    width: 100%;
    overflow: hidden;
}

.over_effect a {
    text-decoration: none;
}

.over_effect img {
    transition: 0.7s;
}

.over_effect a:hover img {
    display: block;
    transform: scale(1.1, 1.1);
    transition-duration: 0.8s;
}


@charset "utf-8";

p.post_none {
    text-align: center;
}

/*
Wordpress
__________________________*/
/* single-page*/
.single strong {
    font-weight: bold;
}

.single cite,
.single em,
.single i {
    font-style: italic;
}

.single big {
    font-size: 131.25%;
}

.single ins {
    background: #ffc;
    text-decoration: none;
}

.single blockquote {
    font-style: italic;
    padding: 0.3em;
}

.single blockquotecite,
.single blockquoteem,
.single blockquotei {
    font-style: normal;
}

.single pre {
    background: #f7f7f7;
    color: #222;
    line-height: 18px;
    margin-bottom: 18px;
    overflow: auto;
    padding: 1.5em;
}

.single abbr,
.single acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

.single sup,
.single sub {
    height: 0;
    line-height: 1;
    position: relative;
    vertical-align: baseline;
}

.single sup {
    bottom: 1ex;
}

.single sub {
    top: 0.5ex;
}

.single img,
.single img.alignnone {
    display: inline-block;
    margin-bottom: 20px;
    font-size: inherit;
}

.single img.size-auto,
.single img.size-full,
.single img.size-large,
.single img.size-medium,
.single .attachment img {
    max-width: 100%;
    height: auto;
}

.single .alignleft,
.single img.alignleft {
    display: inline;
    float: left;
    margin-right: 24px;
    margin-top: 4px;
}

.single .alignright,
.single img.alignright {
    display: inline;
    float: right;
    margin-left: 24px;
    margin-top: 4px;
}

.single .aligncenter,
.single img.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.single p {
    display: block;
    margin-bottom: 1em;
}

.single table,
.single th,
.single td {
    border: 1px solid #000;
}

.single table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 28px;
    width: 100%;
}

.single table th,
.single table caption {
    border-width: 0 1px 1px 0;
    padding: 7px;
    text-align: left;
    vertical-align: baseline;
}

.single table td {
    border-width: 0 1px 1px 0;
    padding: 7px;
    vertical-align: baseline;
}

.single ol {
    list-style: decimal outside;
}

.single ul {
    list-style: disc outside;
}

.single li {
    margin-left: 1em;
}

/* h2～h6 */
#subcon .news_bpx h2 {
    font-size: 25px;
    margin: 80px 0 40px;
    position: relative;
    padding: 0 30px;
    /*letter-spacing: 0.075em;*/
    letter-spacing: 0.12em;
}

#subcon .news_bpx h2::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 36px;
    background: #9D934D;
    top: 0;
    left: 0;
}

#subcon .news_bpx h3 {
    font-size: 24px;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
    background: none;
    padding: 0;
    border-radius: 0;
}

#subcon .news_bpx h3::first-letter {
    font-size: 26px;
    text-transform: uppercase;
    color: #9D934D;
}

#subcon .news_bpx h4 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 0;
    padding-left: 1rem;
    border-left: 6px double #9D934D;
}

#subcon .news_bpx h5 {
    font-size: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #9D934D;
    padding-left: 1rem;
}

#subcon .news_bpx h6 {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 2rem;
    position: relative;
}

#subcon .news_bpx h6::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #9D934D;
}


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

    .single .alignleft,
    .single img.alignleft,
    .single .alignright,
    .single img.alignright,
    .single .aligncenter,
    .single img.aligncenter {
        clear: both;
        display: block;
        float: none;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }

    .single img.alignleft,
    .single img.alignright,
    .single img.aligncenter {
        margin-bottom: 12px;
    }
}

/*Contact Form 7*/
.wpcf7-mail-sent-ok {
    display: none !important;
}

.wpcf7-form input[type="checkbox"] {
    width: 1em !important;
    margin: 0 0.1em !important;
}

.wpcf7-form input[type="radio"] {
    width: 1em !important;
    margin: 0 0.1em !important;
}

.wpcf7-list-item {
    display: inline-block !important;
    margin-left: 0em !important;
    margin-right: 0em !important;
}

.wpcf7-list-item-label::after {
    content: "";
    margin-right: 1em;
}

.wpcf7-spinner {
    display: none !important;
}

.cen .wpcf7-form-control {
    margin-bottom: 10px !important;
}

#sub_contents table.defTable01 td.cen input.wpcf7c-btn-back {
    background: #555;
}

div#wpcf7-f56-p54-o3 {
    width: 80%;
    margin: 0 auto;
}

div#wpcf7-f56-p54-o3 table.defTable01 {
    margin-bottom: 50px;
}

div#wpcf7-f56-p54-o3 table.defTable01 td.cen input {
    display: none;
}

input.wpcf7-form-control.has-spinner.wpcf7-submit.contact-form__submit-btn {
    display: block;
    max-width: 100%;
    width: 260px;
    line-height: 40px;
    white-space: nowrap;
    letter-spacing: .075em;
    font-size: 1.8rem;
    font-weight: bold;
    transition: .5s;
    text-align: center;
    position: relative;
    padding: 10px;
    background: #3b424d;
    color: #fff;
    margin: 0 auto;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'MS Ｐゴシック', 'MS PGothic', sans-serif;
    cursor: pointer;
}

input.wpcf7-form-control.wpcf7-previous {
    display: block;
    max-width: 100%;
    width: 260px;
    line-height: 40px;
    white-space: nowrap;
    letter-spacing: .075em;
    font-size: 1.8rem;
    font-weight: bold;
    transition: .5s;
    text-align: center;
    position: relative;
    background: #d9d9d9;
    color: #3b424d;
    padding: 10px;
    margin: 0 auto;
    cursor: pointer;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'MS Ｐゴシック', 'MS PGothic', sans-serif;
    cursor: pointer;
}

input.wpcf7-form-control.wpcf7-back.contact-form__back-btn.wpcf7c-elm-step2.wpcf7c-btn-back {
    display: block;
    max-width: 100%;
    width: 260px;
    line-height: 40px;
    white-space: nowrap;
    letter-spacing: .075em;
    font-size: 1.8rem;
    font-weight: bold;
    transition: .5s;
    text-align: center;
    position: relative;
    padding: 10px;
    background: #fff;
    color: #3b424d;
    margin: 0 auto;
    border: 2px solid #3b424d;
    border-radius: 40px;
    cursor: pointer;
}

.contact-form__back-btn {
    background: #fff !important;
    margin-bottom: 20px !important;
    color: #3b424d !important;
}

span.wpcf7-list-item.first {
    margin-left: 0;
}

/*others*/
.pagenation-wrapper {
    margin-top: 80px;
}

.pagenation li.current span.pages {
    display: none;
}

.thankspage,
.page404 {
    text-align: center;
    line-height: 2;
    padding: 100px 50px;
}

.post_none2 {
    text-align: center;
    margin: 2em auto;
}

img {
    height: auto;
}

.bread_crumb li br {
    display: none;
}

p:has(input.wpcf7-form-control.wpcf7-confirm.contact-form__submit-btn.wpcf7c-elm-step1.wpcf7c-btn-confirm) {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

._Box .cntList.contact {
    display: block;
}
