@charset "utf-8";

/*------------------------------
  functions
-------------------------------*/
.sp-hide{
    display: block;
}
.sp-ib-hide{
    display: inline-block;
}
.sp-fl-hide{
    display: flex;
}

.pc-hide{
    display: none;
}
.pc-ib-hide{
    display: none;
}
.pc-fl-hide{
    display: none;
}

@media all and (max-width:896px){
    .sp-hide{
        display: none;
    }
    .sp-ib-hide{
        display: none;
    }
    .sp-fl-hide{
        display: none;
    }

    .pc-hide{
        display: block;
    }
    .pc-ib-hide{
        display: inline-block;
    }
    .pc-fl-hide{
        display: flex;
    }
}

/*------------------------------
  all
-------------------------------*/
.wrapper{
    visibility: hidden;
    position: relative;
    width: 100%;
}

.bg{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;'; /*IE対策*/
}

.anchor{
    cursor: pointer;
}


/*------------------------------
  header
-------------------------------*/

header .inner{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #1e2d3b;
    z-index: 10000;
    opacity: 1;
    transition: all 0.3s ease;
}

header .inner.hide{
    z-index: -1;
    opacity: 0;
}

header .header-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 332px;
    height: 104px;
    background: #edcd1e;
}

header .header-logo img{
    width: 100%;
}

header .header-menu{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100px;
    padding-left: 345px;
}

header .header-menu ul{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin: 0 0 20px 0;
    padding-inline-start: 0;
}

header .header-menu ul li{
    padding-right: 45px;
    list-style-position: inside;
    list-style: none;
    font-size: 14px;
    color: #FFF;
    transition: all 0.3s ease;
    cursor: pointer;
}
header .header-menu ul li:hover{
    color: #edcd1e;
}

@media all and (max-width:896px){
    header .inner{
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 29vw;
        background: #edcd1e;
        z-index: 10000;
        padding: 0 4vw;
    }
    header .header-logo{
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        left: 0;
        top: 0;
        width: 66.4vw;
        height: 20.8vw;
        background: #edcd1e;
    }
    header .header-menu{
        position: fixed;
        top: 28.8vw;
        right: -100%;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: flex-end;
        width: 50%;
        height: 100vh;
        padding-left: 0;
        background: #edcd1e;
        transition: all 0.3s ease;
    }
    header .header-content.active .header-menu{
        right: 0;
        display: block;
    }
    header .header-menu ul{
        display: block;
        flex-wrap: nowrap;
        justify-content: flex-end;
        margin: 0 0 0 0;
        padding-inline-start: 0;
    }
    header .header-menu ul li{
        padding: 3vw 4vw;
        list-style-position: inside;
        list-style: none;
        font-size: 4vw;
        color: #000;
        transition: inherit;
        cursor: pointer;
        text-align: right;
    }
    header .header-menu ul li:hover{
        color: inherit;
    }
    header .header-menu ul li.active{
        color: #FFF;
    }
    .nav-toggle {
      display: block;
      position: absolute;    /* bodyに対しての絶対位置指定 */
      right: 4vw;
      top: 50%;
      transform: translate(0,-50%);
      width: 8vw;
      height: 8vw;
      cursor: pointer;
      z-index: 3;
      text-align: center;
    }
    .nav-toggle span {
      display: block;
      position: absolute;    /* .nav-toggleに対して */
      width: 8vw;
      border-bottom: solid 3px #000;
      border-radius: 2px;
      -webkit-transition: .3s ease-in-out;
      -moz-transition: .3s ease-in-out;
      transition: .3s ease-in-out;
      left: 0px;
    }
    .nav-toggle span:nth-child(1) {
      top: 0px;
    }
    .nav-toggle span:nth-child(2) {
      top: 2.6vw;
    }
    .nav-toggle span:nth-child(3) {
      top: 5.2vw;
    }
    /* 最初のspanをマイナス45度に */
    .header-content.active .nav-toggle span:nth-child(1) {
      top: 2.6vw;
      left: 0px;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    /* 2番目と3番目のspanを45度に */
    .header-content.active .nav-toggle span:nth-child(2),
    .header-content.active .nav-toggle span:nth-child(3) {
      top: 2.6vw;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      transform: rotate(45deg);
    }
}

/*------------------------------
  main
-------------------------------*/

/* main all */
main .inner{
    padding-top: 100px;
}

.btn-more-link{
    text-align: center;
}

.btn-more-link a{
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #000;
    font-family: serif;
    font-size: 14px;
    text-decoration: none;
    color: #000;
    background: #FFF;
    transition: all 0.3s ease;
}

.btn-more-link a:hover{
    background: #000;
    color: #FFF;
}


@media all and (max-width:896px){
    main .inner{
        padding-top: 20.7vw;
    }
    .btn-more-link a{
        display: inline-block;
        padding: 4vw 4vw;
        border: 1px solid #000;
        font-family: serif;
        font-size: 4.6vw;
        text-decoration: none;
        line-height: 1;
        color: #000;
        background: #FFF;
        transition: all 0.3s ease;
    }
}

/* mv */
.mv{
}
.mv .mv-content{
    height: 930px;
    text-align: center;
}

.mv .mv-content p{
    width: 100%;
    margin-top: 320px;
    margin-bottom: 238px;
    font-size: 60px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.05em;
    line-height: 1.1em;
    color: #FFF;
}

.mv .mv-content img{
    margin: 0 auto;
}

@media all and (max-width:896px){
    .mv .mv-content{
        position: relative;
        height: 83vw;
        text-align: center;
    }
    .mv .mv-content p{
        position: absolute;
        bottom: 2vw;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 7.6vw;
        font-family: 'Anton', sans-serif;
        letter-spacing: 0.05em;
        line-height: 1.1em;
        color: #FFF;
        text-align: center;
    }
    .mv .mv-content img{
        position: absolute;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 7.6000000000000005vw;
        height: auto;
    }
}

/* seibi */
#seibi {
    background: #FFF;
    padding: 70px 0 20px 0;
}

#seibi .section-head{
    text-align: center;
}

#seibi .section-head h2{
    position: relative;
    margin-bottom: 75px;
    font-size: 55px;
    line-height: 1;
    letter-spacing: 0.06em;
}

#seibi .section-head h2:after{
    content: "";
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translate(-50% ,0);
    width: 120px;
    height: 10px;
    background: #edcd1e;
}

#seibi .section-content{
    width: 980px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
}

#seibi .flex-3col{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

#seibi .flex-3col li{
    width: 31.8%;
    background: #f7f7f7;
    list-style: none;
}

#seibi .flex-3col .flex-3col-inner{
    padding: 25px 25px 30px 25px;
}

#seibi .flex-3col li:nth-of-type(2) .flex-3col-inner{
    padding: 30px 15px;
}

#seibi .flex-3col li h3{
    font-size: 22px;
    font-weight: normal;
    color: #3d5875;
}

#seibi .flex-3col li p{
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.seibi-jisseki{
    background: #edcd1e;
}

.seibi-jisseki-inner{
    max-width: 1060px;
    margin: 20px auto 0 auto;
    padding: 20px 20px 20px 20px;
}

.seibi-jisseki-list{
    display: flex;
    justify-content: space-between;
}

.seibi-jisseki-list li{
    width: 25%;
    list-style: none;
    text-align: center;
}

.seibi-jisseki-list li p{
    font-size: 30px;
    color: #FFF;
}

.seibi-jisseki-list li p span{
    font-size: 50px;
    font-weight: bold;
}

.seibi-jisseki-list li .seibi-jisseki-list-separator{
    display: block;
    height: 40px;
    border-right: 2px solid #FFF;
}

.seibi-jisseki-list li:last-of-type .seibi-jisseki-list-separator{
    border-right: none;
}

.seibi-jisseki-list li h3{
    font-size: 22px;
    font-weight: normal;
    color: #3d5875;
}

@media all and (max-width:896px){
    #seibi {
        background: #FFF;
        padding: 12vw 4vw 12vw 4vw;
    }
    #seibi .section-head h2{
        position: relative;
        margin-bottom: 18vw;
        font-size: 11vw;
        line-height: 1.4;
        letter-spacing: 0;
    }
    #seibi .section-head h2:after{
        content: "";
        position: absolute;
        bottom: -8.5vw;
        left: 50%;
        transform: translate(-50% ,0);
        width: 24vw;
        height: 3vw;
        background: #edcd1e;
    }
    #seibi .section-content{
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    #seibi .flex-3col{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 20px;
    }
    #seibi .flex-3col li{
        width: 100%;
        background: #f7f7f7;
        list-style: none;
        margin-bottom: 4vw;
    }
    #seibi .flex-3col li img{
        width: 100%;
    }
    #seibi .flex-3col .flex-3col-inner{
        padding: 6vw 4vw 8vw 4vw;
    }
    #seibi .flex-3col li:nth-of-type(2) .flex-3col-inner{
        padding: 6vw 4vw 8vw 4vw;
    }
    #seibi .flex-3col li h3{
        font-size: 6.4vw;
        font-weight: normal;
        color: #3d5875;
    }
    #seibi .flex-3col li p{
        margin-top: 2vw;
        font-size: 4.4vw;
        line-height: 1.6;
        color: #333;
    }
    .seibi-jisseki{
        background: #edcd1e;
    }
    .seibi-jisseki-inner{
        width: 100%;
        margin: 0px auto 0 auto;
        padding: 8vw 4vw 0 4vw;
    }
    .seibi-jisseki-list{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .seibi-jisseki-list li{
        width: 50%;
        list-style: none;
        text-align: center;
        margin-bottom: 8vw;
    }
    .seibi-jisseki-list li p{
        font-size: 7vw;
        color: #FFF;
    }
    .seibi-jisseki-list li p span{
        font-size: 8vw;
        font-weight: bold;
    }
    .seibi-jisseki-list li .seibi-jisseki-list-separator{
        display: none;
        height: 40px;
        border-right: 2px solid #FFF;
    }
    .seibi-jisseki-list li:last-of-type .seibi-jisseki-list-separator{
        border-right: none;
    }
    .seibi-jisseki-list li h3{
        font-size: 5.6vw;
        font-weight: normal;
        color: #3d5875;
    }
}

/* kaigo */
#kaigo{
    position: relative;
    height: 682px;
    margin-bottom: 260px;
}

#kaigo .kaigo-bg-wrap{
    clip: rect(0,auto,auto,0);
    position: absolute;
    width: 100%;
    height: 682px;
    overflow: hidden;
    z-index: 0;
}
#kaigo .kaigo-bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    will-change: transform;
}
#kaigo .kaigo-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: unset;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

#kaigo .kaigo-wrap{
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

#kaigo .kaigo-wrap .kaigo-box{
    width: 50%;
    padding: 70px 0 20px 0;
    background: #f7f7f7;
}

#kaigo .kaigo-wrap .kaigo-box .kaigo-box-inner{
    position: relative;
    width: 470px;
    left: 50vw;
    transform: translate(-100%,0);
}

#kaigo .section-head{
    text-align: left;
}

#kaigo .section-head h2{
    position: relative;
    margin-bottom: 75px;
    font-size: 55px;
        line-height: 1.4;
        letter-spacing: 0;
}

#kaigo .section-head h2:after{
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    transform: translate(0 ,0);
    width: 120px;
    height: 10px;
    background: #edcd1e;
}

#kaigo .section-content p{
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

@media all and (max-width:896px){
    #kaigo{
        position: relative;
        height: 100%;
        margin-bottom: 0;
    }
    #kaigo .kaigo-bg-wrap{
        clip: unset;
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
        z-index: 0;
    }
    #kaigo .kaigo-bg {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        will-change: transform;
    }
    #kaigo .kaigo-bg img{
        width: 100%;
        height: 77vw;
        object-fit: cover;
        max-width: unset;
        position: relative;
        top: 0;
        transform: none;
    }
    #kaigo .kaigo-wrap{
        position: relative;
        display: block;
        justify-content: space-between;
        z-index: 1;
    }
    #kaigo .kaigo-wrap .kaigo-box{
        width: 100%;
        padding: 12vw 4vw 12vw 4vw;
        background: #f7f7f7;
    }
    #kaigo .kaigo-wrap .kaigo-box .kaigo-box-inner{
        position: relative;
        width: 100%;
        left: 0;
        transform: none;
    }
    #kaigo .section-head{
        text-align: center;
    }
    #kaigo .section-head h2{
        position: relative;
        margin-bottom: 18vw;
        font-size: 11vw;
        line-height: 1.4;
        letter-spacing: 0;
    }
    #kaigo .section-head h2:after{
        content: "";
        position: absolute;
        bottom: -8.5vw;
        left: 50%;
        transform: translate(-50% ,0);
        width: 24vw;
        height: 3vw;
        background: #edcd1e;
    }
    #kaigo .section-content p{
        margin-top: 2vw;
        margin-bottom: 8vw;
        font-size: 4.4vw;
        line-height: 1.6;
        color: #333;
    }
}

/* seibishi */
#seibishi {
    background: #FFF;
    margin-bottom: 300px;
    padding: 70px 0 0 0;
}

#seibishi .section-head{
    text-align: center;
}

#seibishi .section-head h2{
    position: relative;
    margin-bottom: 75px;
    font-size: 55px;
    line-height: 1;
    letter-spacing: 0.06em;
}

#seibishi .section-head h2:after{
    content: "";
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translate(-50% ,0);
    width: 120px;
    height: 10px;
    background: #edcd1e;
}

#seibishi .section-content{
    width: 980px;
    margin: 0 auto;
    padding: 20px;
}

#seibishi .section-content p{
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

#seibishi .section-content .seibishi-visual{
    position: relative;
    width: 100%;
    height: 100%;
    margin: 40px auto 60px auto;
}

#seibishi .section-content .seibishi-visual img{
    width: 100%;
}

#seibishi .section-content .seibishi-visual p{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    background: none;
    transition: all 0.3s ease;
}

#seibishi .section-content .seibishi-visual p:hover{
    background: rgba(255,255,255,0.8);
    opacity: 1;
}

#seibishi .section-content .seibishi-visual p span{
    display: block;
    font-size: 22px;
}

@media all and (max-width:896px){
    #seibishi {
        background: #FFF;
        margin-bottom: 80vw;
        padding: 12vw 4vw 6vw 4vw;
    }
    #seibishi .section-head{
        text-align: center;
    }
    #seibishi .section-head h2{
        position: relative;
        margin-bottom: 18vw;
        font-size: 11vw;
        line-height: 1.4;
        letter-spacing: 0;
    }
    #seibishi .section-head h2:after{
        content: "";
        position: absolute;
        bottom: -8.5vw;
        left: 50%;
        transform: translate(-50% ,0);
        width: 24vw;
        height: 3vw;
        background: #edcd1e;
    }
    #seibishi .section-content{
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    #seibishi .section-content p{
        font-size: 4.4vw;
        color: #333;
        line-height: 1.6;
    }
    #seibishi .section-content .seibishi-visual{
        position: relative;
        width: 100%;
        height: 100%;
        margin: 6vw auto 6vw auto;
    }
    #seibishi .section-content .seibishi-visual img{
        width: 100%;
    }
    #seibishi .section-content .seibishi-visual p{
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-align: center;
        opacity: 0;
        background: none;
        transition: all 0.3s ease;
    }
    #seibishi .section-content .seibishi-visual p:hover{
        background: rgba(255,255,255,0.8);
        opacity: 1;
    }
    #seibishi .section-content .seibishi-visual p span{
        display: block;
        font-size: 22px;
    }
}

/* overview */
#overview {
    background: #FFF;
    padding: 70px 0 0 0;
}

#overview .section-head{
    text-align: center;
}

#overview .section-head h2{
    position: relative;
    margin-bottom: 75px;
    font-size: 55px;
    line-height: 1;
    letter-spacing: 0.06em;
}

#overview .section-head h2:after{
    content: "";
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translate(-50% ,0);
    width: 120px;
    height: 10px;
    background: #edcd1e;
}

#overview .section-content{
    width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

#overview .section-content .overview-wrap{
    padding: 40px 20px;
}

#overview .section-content .overview-wrap h3{
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: normal;
}

#overview .section-content .overview-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

#overview .section-content .overview-box:nth-of-type(1){
    width: 50%;
}

#overview .section-content .overview-box:nth-of-type(2){
    width: 35%;
}

#overview .section-content table th,
#overview .section-content table td{
    padding: 0 0 0 0;
    border: none;
    font-size: 14px;
}

#overview .section-content .overview-box a{
    color: #333;
}

#overview .section-content .overview-box a:hover{
    text-decoration: none;
}

#overview .section-content .overview-box h4{
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
}

#overview .section-content .group-list li{
    list-style: none;
    font-size: 14px;
}

@media all and (max-width:896px){
    #overview {
        background: #FFF;
        margin-bottom: 0;
        padding: 12vw 0 6vw 0;
    }
    #overview .section-head{
        text-align: center;
    }
    #overview .section-head h2{
        position: relative;
        margin-bottom: 18vw;
        font-size: 11vw;
        line-height: 1.4;
        letter-spacing: 0;
    }
    #overview .section-head h2:after{
        content: "";
        position: absolute;
        bottom: -8.5vw;
        left: 50%;
        transform: translate(-50% ,0);
        width: 24vw;
        height: 3vw;
        background: #edcd1e;
    }
    #overview .section-content{
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    #overview .section-content .overview-map iframe{
        height: 80vw;
    }
    #overview .section-content .overview-wrap{
        padding: 8vw 4vw;
    }
    #overview .section-content .overview-wrap h3{
        margin-bottom: 6vw;
        font-size: 6vw;
        font-weight: normal;
    }
    #overview .section-content .overview-list{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #overview .section-content .overview-box:nth-of-type(1){
        width: 100%;
        margin-bottom: 8vw;
    }
    #overview .section-content .overview-box:nth-of-type(2){
        width: 100%;
    }
    #overview .section-content table th{
        min-width: 6em;
    }
    #overview .section-content table th,
    #overview .section-content table td{
        padding: 0 0 0 0;
        border: none;
        font-size: 4.4vw;
    }
    #overview .section-content .overview-box a{
        color: #333;
    }
    #overview .section-content .overview-box a:hover{
        text-decoration: none;
    }
    #overview .section-content .overview-box h4{
        margin-bottom: 0;
        font-size: 4.4vw;
        font-weight: normal;
    }
    #overview .section-content .group-list li{
        list-style: none;
        font-size: 4.4vw;
    }
}

/*------------------------------
  footer
-------------------------------*/
footer .inner{
    background: #FFF;
}

footer .footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 980px;
    height: 96px;
    margin: 0 auto;
    padding: 20px 20px 45px 20px;
}

footer .copyright{
    font-size: 14px;
}
footer .footer-sns a{
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-left: 5px;
}
footer .footer-sns a img{
    width: 100%;
}

@media all and (max-width:896px){
    footer .footer-content{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 4vw;
    }
    footer .copyright{
        width: 100%;
        font-size: 14px;
    }
    footer .footer-sns{
        margin-top: 6vw;
    }
    footer .footer-sns a{
        display: inline-block;
        width: 10vw;
        height: 10vw;
        margin-left: 5px;
    }
    footer .footer-sns a img{
        width: 100%;
    }
}

@media all and (min-width:897px) and (max-width: 990px){

    #seibi .section-content{
        width: 100%;
    }

    #seibishi .section-content{
        width: 100%;
    }

    #overview .section-content{
        width: 100%;
    }

    footer .footer-content{
        width: 100%;
    }
}

aside{
    display: none;
}

aside #contact_chat .contact-chat{
    position: fixed;
    right: 20px;
    bottom: 20px;
}

aside #contact_chat .round-header{
    position: relative;
    box-sizing: border-box;
    height: 60px;
    width: 60px;
    background-color: rgb(237, 205, 31);
    color: rgb(59, 58, 58);
    padding-top: 1px;
    box-shadow: 0 0 4px 0 rgba(22,45,61,.25);
    border-radius: 50%;
}

aside #contact_chat .round-header:hover{
    box-shadow: 0 0 8px 0 rgba(22,45,61,.5);
}

aside #contact_chat .round-header button{
    width: 60px;
    height: 60px;
    color: inherit;
    outline: none;
    position: absolute;
    top: 0;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    padding-top: 4px;
}

@media all and (max-width:896px){
    aside{
        display: block;
        position: fixed;
        right: 4vw;
        bottom: 4vw;
        z-index: 10001;
    }
    aside #back_to_top{
        width: 14vw;
        height: 14vw;
        position: fixed;
        right: 4vw;
        bottom: 21vw;
    }
    aside #contact_chat button._2Xkzz{
        position: relative;
        background: rgb(0, 138, 252);
        border: none;
        border-radius: 50%;
        box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 8px 0px;
        width: 14vw;
        height: 14vw;
        outline: none;
        margin: 0;
        padding: 0;
        z-index: 10002;
    }
    aside #contact_chat button._2Xkzz ul{
        list-style: none;
        width: 14vw;
        height: 14vw;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transform-style: preserve-3d;
    }
    aside #contact_chat button._2Xkzz ul li{
        position: relative;
        display: block;
        height: 14vw;
        width: 6px;
        margin: 0 1.5px 0 1.5px;
        padding: 0;
        line-height: 14vw;
    }
    aside #contact_chat button._2Xkzz ul li:before{
        position: relative;
        background: rgb(255, 255, 255);
        content: "";
        top: -3px;
        height: 6px;
        width: 6px;
        display: inline-block;
        border-radius: 27px;
        transition: all .3s ease;
        opacity: 1;
        transform: scale(1);
        margin: 0 0 0 0;
        padding: 0;
    }
    aside #contact_chat button._2Xkzz.active ._2H8r6:before{
        width: 17px;
        height: 3px;
        transform: translate(4px,-2px) rotate(-45deg);
    }
    aside #contact_chat button._2Xkzz.active ._2iopU:before{
        height: 0;
        width: 0;
        opacity: 0;
        transition: opacity .3s;
    }
    aside #contact_chat button._2Xkzz.active ._2RAFK:before{
        width: 17px;
        height: 3px;
        margin-right: 0;
        transform: translate(-14px,-2px) rotate(45deg);
    }
    aside #contact_chat .contact-list a{
        display: block;
        position: relative;
        margin-bottom: 3vw;
        z-index: 10002;
    }
    aside #contact_chat .contact-list a .contact-list-icon{
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        width: 14vw;
        height: 14vw;
        color: #FFF;
        box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 8px 0px;
    }
    aside #contact_chat .contact-list a .contact-list-icon svg{
        fill: #FFF;
        width: 6vw;
        height: 6vw;
    }
    aside #contact_chat .contact-list a.contact-list-phone .contact-list-icon{
        background: rgb(99, 201, 86);
    }
    aside #contact_chat .contact-list a.contact-list-email .contact-list-icon{
        background: rgb(190, 24, 103);
    }
    aside #contact_chat .contact-list a.contact-list-facebook .contact-list-icon{
        background: rgb(60, 90, 153);
    }
    aside #contact_chat .contact-list a.contact-list-chat .contact-list-icon{
        background: rgb(237, 205, 31);
    }
    aside #contact_chat .contact-list a .contact-list-text{
        position: absolute;
        max-width: 160px;
        top: 50%;
        left: -16px;
        transform: translate(-100%,-50%);
        padding: 6px 8px;
        color: #1d2d3c;
        background-color: #fff;
        border-radius: 4px;
        box-shadow: 0 0 8px #ccc;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        font-size: 4vw;
    }
    aside .contact-list-wrap{
        display: none;
    }
    aside .bg-white{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.8);
        z-index: 10001;
    }
}